:root {
  --fdo-teal-950: #15201f;
  --fdo-teal-900: #1a2625;
  --fdo-teal-800: #22302e;
  --fdo-teal-700: #314e52;
  --fdo-teal-600: #4e7c67;
  --fdo-gold: #c7a24e;
  --fdo-gold-soft: #e3c77e;
  --fdo-paper: #fbfaf6;
  --fdo-paper-deep: #f2eee3;
  --fdo-border: #ece7da;
  --fdo-text: #22302e;
  --fdo-muted: #5b635e;
  --fdo-soft-muted: #8a8474;
  --fdo-white: #ffffff;
  --fdo-heading: "Spectral", Georgia, "Times New Roman", serif;
  --fdo-body: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fdo-shadow: 0 34px 90px -48px rgba(18, 31, 29, .72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--fdo-paper);
  color: var(--fdo-text);
  font-family: var(--fdo-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

a,
button,
input {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid rgba(199, 162, 78, .55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--fdo-gold);
  color: var(--fdo-text);
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container-xl,
.container-lg {
  --bs-gutter-x: 2rem;
}

.site-header .container-xl {
  max-width: none;
  padding-right: 56px;
  padding-left: 56px;
}

main .container-xl {
  max-width: 1240px;
  padding-right: 56px;
  padding-left: 56px;
}

.page-about main .container-xl {
  max-width: 1100px;
}

.faq-section .container-lg {
  max-width: 900px;
  padding-right: 56px;
  padding-left: 56px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 14px 34px -32px rgba(18, 31, 29, .72);
}

.topbar {
  border-bottom: 1px solid rgba(199, 162, 78, .12);
  background: var(--fdo-teal-950);
  color: #aebab8;
  font-size: .8125rem;
}

.topbar__inner,
.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar__inner {
  justify-content: space-between;
  min-height: 34px;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #d3dcda;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.topbar__link:hover {
  color: var(--fdo-white);
}

.topbar__note {
  color: #8fa09d;
}

.topbar__extra {
  display: inline-flex;
  align-items: center;
  color: #8fa09d;
}

.site-nav {
  border-bottom: 1px solid rgba(199, 162, 78, .16);
  background: var(--fdo-teal-800);
  padding-block: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-right: 1rem;
  padding-block: 0;
}

.site-logo__mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 45px;
  border-radius: 2px;
  background: var(--fdo-white);
  color: var(--fdo-teal-700);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .04em;
  line-height: 1;
}

.site-logo__mark span:first-child,
.site-logo__mark span:last-child {
  font-size: .88rem;
}

.site-logo__mark span:nth-child(2) {
  width: 26px;
  height: 1px;
  margin: 4px 0;
  background: rgba(49, 78, 82, .7);
}

.site-logo__text {
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.08;
}

.site-nav .nav-link {
  color: #c7d2d0;
  font-size: .92rem;
  font-weight: 500;
  padding-inline: .55rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--fdo-white);
}

.site-nav .nav-link.is-active {
  border-bottom: 2px solid var(--fdo-gold);
  color: var(--fdo-white);
  padding-bottom: 4px;
}

.site-nav__links {
  gap: .62rem;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
}

.site-nav__dropdown-trigger svg {
  width: .86rem;
  height: .86rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.site-nav__dropdown:hover .site-nav__dropdown-trigger svg,
.site-nav__dropdown:focus-within .site-nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 230px;
  border: 1px solid rgba(199, 162, 78, .22);
  border-radius: 10px;
  background: #1b2928;
  box-shadow: 0 26px 70px -34px rgba(0, 0, 0, .72);
  opacity: 0;
  padding: .55rem;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.site-nav__dropdown-menu::before {
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  height: 15px;
  content: "";
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  color: #d8e1df;
  font-size: .9rem;
  font-weight: 600;
  padding: .72rem .82rem;
  text-decoration: none;
}

.site-nav__dropdown-menu a::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(199, 162, 78, .72);
  border-right: 2px solid rgba(199, 162, 78, .72);
  content: "";
  transform: rotate(45deg);
}

.site-nav__dropdown-menu a:hover,
.site-nav__dropdown-menu a:focus {
  background: rgba(255, 255, 255, .07);
  color: var(--fdo-white);
}

.site-nav__mega-menu {
  left: auto;
  right: -58px;
  width: min(560px, calc(100vw - 40px));
  min-width: 560px;
  padding: 1rem;
  transform: translateY(8px);
}

.site-nav__dropdown:hover .site-nav__mega-menu,
.site-nav__dropdown:focus-within .site-nav__mega-menu {
  transform: translateY(0);
}

.site-nav__mega-menu::before {
  right: 0;
  left: auto;
  width: 170px;
}

.site-nav__mega-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 .15rem .7rem;
  padding: 0 .25rem .75rem;
  border-bottom: 1px solid rgba(199, 162, 78, .2);
}

.site-nav__mega-heading > span {
  color: var(--fdo-gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-nav__mega-heading a {
  display: inline-flex;
  gap: .45rem;
  padding: 0;
  color: #dce7e4;
  font-size: .8rem;
  font-weight: 700;
}

.site-nav__mega-heading a::after {
  display: none;
}

.site-nav__mega-heading a span {
  color: var(--fdo-gold);
}

.site-nav__mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .1rem .35rem;
}

.site-nav__mega-links a {
  min-width: 0;
  padding: .58rem .66rem;
  font-size: .82rem;
}

.site-nav__desktop {
  display: flex;
  margin-left: auto;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: .72rem;
}

.site-nav__toggle:focus {
  box-shadow: none;
}

.site-nav__toggle-line {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--fdo-white);
}

.site-drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  background: rgba(13, 21, 20, .5);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity .3s ease, visibility .3s ease;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  width: min(86%, 360px);
  height: 100%;
  background: #1b2928;
  box-shadow: -26px 0 70px rgba(0, 0, 0, .5);
  transform: translateX(108%);
  transition: transform .34s cubic-bezier(.45, .05, .2, 1);
}

.site-drawer.is-open {
  transform: translateX(0);
}

.site-drawer-scrim.is-open {
  visibility: visible;
  opacity: 1;
}

.site-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 1.25rem 1.375rem;
}

.site-drawer__header span {
  color: var(--fdo-gold);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.site-drawer__close {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 9px;
  background: transparent;
}

.site-drawer__close:hover {
  background: rgba(255, 255, 255, .08);
}

.site-drawer__close::before,
.site-drawer__close::after {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--fdo-white);
  content: "";
}

.site-drawer__close::before {
  transform: rotate(45deg);
}

.site-drawer__close::after {
  transform: rotate(-45deg);
}

.site-drawer__links {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: auto;
  padding: .875rem 1rem;
}

.site-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  color: #e0e8e6;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  padding: 1.0625rem .75rem;
  text-decoration: none;
  transform: translateX(14px);
  transition: color .18s ease, opacity .3s ease, transform .3s ease;
}

.site-drawer__link::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #5d7370;
  border-right: 2px solid #5d7370;
  content: "";
  transform: rotate(45deg);
}

.site-drawer__link:hover {
  color: var(--fdo-gold-soft);
}

.site-drawer__link.is-active {
  color: var(--fdo-gold-soft);
}

.site-drawer__location-group {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.site-drawer__location-group > summary {
  width: 100%;
  border-bottom: 0;
  cursor: pointer;
  list-style: none;
}

.site-drawer__location-group > summary::-webkit-details-marker {
  display: none;
}

.site-drawer__location-group > summary::after {
  display: none;
}

.site-drawer__location-chevron {
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid #5d7370;
  border-bottom: 2px solid #5d7370;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .2s ease;
}

.site-drawer__location-group[open] .site-drawer__location-chevron {
  transform: rotate(225deg) translate(-3px, -1px);
}

.site-drawer__subnav {
  display: grid;
  gap: .35rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  margin: -.3rem .75rem .55rem;
  padding: 0 0 .8rem 1rem;
}

.site-drawer__subnav a {
  color: #aebab8;
  font-size: .9rem;
  font-weight: 600;
  padding: .38rem 0;
  text-decoration: none;
}

.site-drawer__subnav a:hover {
  color: var(--fdo-gold-soft);
}

.site-drawer__all-locations {
  display: flex;
  justify-content: space-between;
  color: var(--fdo-gold-soft) !important;
  font-size: .78rem !important;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.site-drawer.is-open .site-drawer__link {
  opacity: 1;
  transform: translateX(0);
}

.site-drawer.is-open .site-drawer__link:nth-child(1) {
  transition-delay: .06s;
}

.site-drawer.is-open .site-drawer__link:nth-child(2) {
  transition-delay: .1s;
}

.site-drawer.is-open .site-drawer__link:nth-child(3) {
  transition-delay: .14s;
}

.site-drawer.is-open .site-drawer__link:nth-child(4) {
  transition-delay: .18s;
}

.site-drawer.is-open .site-drawer__link:nth-child(5) {
  transition-delay: .22s;
}

.site-drawer.is-open .site-drawer__link:nth-child(6) {
  transition-delay: .26s;
}

.site-drawer__footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.125rem 1.125rem 1.625rem;
}

.site-drawer__footer p {
  margin: .875rem 0 0;
  color: #7d8a87;
  font-size: .75rem;
  line-height: 1.5;
  text-align: center;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .floating-actions {
  visibility: hidden;
}

.btn {
  --bs-btn-border-radius: 7px;
  --bs-btn-font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: .62rem;
}

.btn-arrow {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease;
}

.btn:hover .btn-arrow,
.btn:focus-visible .btn-arrow {
  transform: translateX(4px);
}

.btn-lg {
  --bs-btn-padding-x: 1.55rem;
  --bs-btn-padding-y: .88rem;
  --bs-btn-font-size: .98rem;
}

.btn-sm {
  --bs-btn-padding-x: 1.05rem;
  --bs-btn-padding-y: .68rem;
}

.btn-gold {
  --bs-btn-color: var(--fdo-text);
  --bs-btn-bg: var(--fdo-gold);
  --bs-btn-border-color: var(--fdo-gold);
  --bs-btn-hover-color: var(--fdo-text);
  --bs-btn-hover-bg: #d4b25f;
  --bs-btn-hover-border-color: #d4b25f;
  --bs-btn-active-color: var(--fdo-text);
  --bs-btn-active-bg: #bc943b;
  --bs-btn-active-border-color: #bc943b;
}

.btn-teal {
  --bs-btn-color: var(--fdo-white);
  --bs-btn-bg: var(--fdo-teal-700);
  --bs-btn-border-color: var(--fdo-teal-700);
  --bs-btn-hover-color: var(--fdo-white);
  --bs-btn-hover-bg: #21393c;
  --bs-btn-hover-border-color: #21393c;
}

.btn-paper {
  --bs-btn-color: var(--fdo-teal-700);
  --bs-btn-bg: #f4f1e9;
  --bs-btn-border-color: #f4f1e9;
  --bs-btn-hover-color: var(--fdo-teal-700);
  --bs-btn-hover-bg: #ece7da;
  --bs-btn-hover-border-color: #ece7da;
}

.hero-service {
  position: relative;
  overflow: hidden;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  background:
    linear-gradient(90deg, rgba(34, 48, 46, .96), rgba(34, 48, 46, .9)),
    radial-gradient(circle at 92% 18%, rgba(199, 162, 78, .14), transparent 26rem),
    linear-gradient(110deg, var(--fdo-teal-800) 0%, var(--fdo-teal-800) 62%, #2a3b39 100%);
  color: var(--fdo-white);
  padding-block: 68px 79px;
}

.hero-service__tone,
.hero-service__photo,
.hero-service__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-service__tone {
  left: auto;
  width: 46%;
  background: linear-gradient(180deg, #2a3b39, var(--fdo-teal-800));
  opacity: .5;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transition: transform .18s ease-out;
}

.hero-service__photo {
  left: auto;
  width: min(49vw, 705px);
  background:
    linear-gradient(90deg, rgba(34, 48, 46, .98) 0%, rgba(34, 48, 46, .68) 36%, rgba(34, 48, 46, .38) 100%),
    linear-gradient(180deg, rgba(34, 48, 46, .08), rgba(34, 48, 46, .48)),
    url("../img/hero-document-review.webp") center right / cover no-repeat;
  opacity: .34;
  filter: saturate(.72) contrast(.95);
  transform: translate3d(calc(var(--hero-shift-x) * .45), calc(var(--hero-shift-y) * .45), 0) scale(1.03);
  transition: transform .18s ease-out;
}

.hero-service__glow {
  background:
    radial-gradient(circle at 68% 18%, rgba(199, 162, 78, .12), transparent 20rem),
    radial-gradient(circle at 34% 80%, rgba(255, 255, 255, .055), transparent 24rem);
  opacity: .72;
  animation: heroGlowDrift 12s ease-in-out infinite alternate;
}

.hero-service::after {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(44vw, 620px);
  height: 100%;
  content: "";
  opacity: .22;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 30%);
  animation: heroGridDrift 18s linear infinite;
}

.hero-service .container-xl {
  position: relative;
  z-index: 1;
}

.hero-service .section-kicker,
.hero-service__title,
.hero-service__lead,
.hero-service__actions,
.hero-proof,
.eligibility-panel {
  animation: heroContentIn .72s cubic-bezier(.2, .72, .2, 1) both;
}

.hero-service__title {
  animation-delay: .06s;
}

.hero-service__lead {
  animation-delay: .13s;
}

.hero-service__actions {
  animation-delay: .2s;
}

.hero-proof {
  animation-delay: .28s;
}

.eligibility-panel {
  animation-delay: .18s;
}

.hero-service .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  gap: 60px;
}

@media (min-width: 992px) {
  .hero-service .col-lg-7 {
    flex: 1.02 1 0;
    width: auto;
  }

  .hero-service .col-lg-5 {
    flex: 0 0 440px;
    width: 440px;
  }
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  margin: 0 0 24px;
  color: #b98f3e;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading .section-kicker::before,
.trust-panel .section-kicker::before {
  display: none;
}

.section-heading .section-kicker {
  margin-bottom: 14px;
}

.section-kicker--gold {
  color: var(--fdo-gold);
}

.hero-service__title {
  max-width: 700px;
  margin: 0 0 22px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 55px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.hero-service__title em {
  color: var(--fdo-gold-soft);
  font-style: italic;
  font-weight: 300;
}

.hero-service__lead {
  max-width: 520px;
  margin: 0 0 14px;
  color: #c3cfcc;
  font-size: 18px;
  line-height: 1.6;
}

.hero-service__lead--secondary {
  margin-bottom: 28px;
}

.hero-service__actions,
.hero-proof,
.eligibility-panel__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.hero-service__actions {
  align-items: center;
  margin-bottom: 30px;
}

.hero-proof {
  gap: 30px;
  color: #cdd9d7;
  font-size: 14px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.hero-proof .svg-icon {
  animation: heroIconPulse 2.8s ease-in-out infinite;
}

.hero-proof span:nth-child(2) .svg-icon {
  animation-delay: .45s;
}

.svg-icon {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--fdo-gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.eligibility-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: var(--fdo-white);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5);
  color: var(--fdo-text);
  padding: 32px 32px 28px;
  min-height: 300px;
  transform-origin: center right;
}

.eligibility-panel__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 10px;
  color: var(--fdo-teal-700);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eligibility-panel__topline span:last-child {
  color: #9aa19c;
  letter-spacing: 0;
  text-transform: none;
}

.eligibility-panel__progress,
.document-checklist__progress {
  height: 5px;
  border-radius: 3px;
  background: #edeae0;
}

.eligibility-panel__progress .progress-bar,
.document-checklist__progress .progress-bar {
  width: 0;
  border-radius: inherit;
  background: var(--fdo-gold);
}

.eligibility-panel h2 {
  margin: 26px 0 10px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.28;
}

.eligibility-panel p {
  margin: 0 0 26px;
  color: #6b7370;
  font-size: 14px;
  line-height: 1.55;
}

.eligibility-panel__result {
  text-align: center;
}

.eligibility-panel__actions {
  flex-wrap: nowrap;
}

.eligibility-panel__cta {
  margin-top: .75rem;
}

.eligibility-panel__back {
  margin-top: .75rem;
}

.button-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--fdo-soft-muted);
  font-size: .84rem;
  text-decoration: underline;
}

.section-block {
  padding-block: 62px 72px;
}

.section-block--compact {
  padding-block: 0 8px;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading--center {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.process-section h2,
.trust-panel h2,
.final-cta h2,
.cta-strip h2 {
  margin: 0;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
}

#documents {
  padding-block: 76px;
}

.trust-panel h2 {
  font-size: 34px;
  line-height: 1.22;
}

.cta-strip h2 {
  font-size: 24px;
}

.section-heading p:not(.section-kicker) {
  max-width: 580px;
  margin: .8rem auto 0;
  color: var(--fdo-muted);
  line-height: 1.65;
}

.audience-list {
  border-top: 1px solid var(--fdo-border);
}

.audience-item {
  display: grid;
  grid-template-columns: 46px 340px 1fr;
  gap: 30px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--fdo-border);
}

.audience-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--fdo-gold);
  border-radius: 50%;
  color: #9c7a2e;
  font-family: var(--fdo-heading);
  font-size: 1.05rem;
}

.audience-item h3 {
  margin: 0;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.audience-item p {
  margin: 0;
  color: var(--fdo-muted);
  line-height: 1.65;
}

.process-section {
  background: var(--fdo-paper-deep);
  padding-block: 72px;
}

.process-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.process-section__heading > p {
  max-width: 280px;
  margin: 0;
  color: var(--fdo-soft-muted);
  font-size: .9rem;
  line-height: 1.6;
}

.service-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.process-progress {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  margin: 0 0 20px;
  background: #e2dccd;
}

.process-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fdo-gold), #e3c77e);
  transition: width .45s ease;
}

.service-step {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  border: 1px solid #e2dccd;
  border-radius: 12px;
  background: rgba(255, 255, 255, .55);
  color: #8b938e;
  padding: 22px 20px;
  text-align: left;
  font-family: var(--fdo-heading);
  font-size: 17px;
  line-height: 1.3;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}

.service-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #e2dccd;
  transition: background .25s ease;
}

.service-step span {
  position: relative;
  display: block;
  margin-bottom: 6px;
  color: #b3ab98;
  font-size: 15px;
  transition: color .25s ease;
}

.service-step:hover {
  border-color: var(--fdo-gold);
  color: var(--fdo-text);
}

.service-step.is-complete {
  border-color: rgba(201, 168, 79, .55);
  background: rgba(255, 255, 255, .72);
  color: #4f5a56;
}

.service-step.is-complete::before {
  background: rgba(201, 168, 79, .72);
}

.service-step.is-complete span {
  color: #9c7a2e;
}

.service-step.is-active {
  border-color: var(--fdo-gold);
  background: var(--fdo-white);
  color: var(--fdo-text);
  box-shadow: 0 18px 36px -30px rgba(33, 57, 60, .6);
  transform: translateY(-2px);
}

.service-step.is-active::before {
  background: var(--fdo-gold);
}

.service-step.is-active span {
  color: #9c7a2e;
}

.process-detail {
  display: flex;
  gap: 26px;
  align-items: center;
  border: 1px solid #e7e2d6;
  border-radius: 12px;
  background: var(--fdo-white);
  padding: 36px 40px;
}

.process-detail__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 1.35rem;
}

.process-detail h3 {
  margin: 0 0 7px;
  font-family: var(--fdo-heading);
  font-size: 23px;
  font-weight: 400;
}

.process-detail p {
  max-width: 780px;
  margin: 0;
  color: var(--fdo-muted);
  line-height: 1.65;
}

.document-checklist {
  max-width: 760px;
  margin-inline: auto;
}

.document-checklist__status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 24px;
}

.document-checklist__status strong {
  flex: 0 0 auto;
  color: var(--fdo-teal-700);
  font-size: .9rem;
}

.document-checklist__progress .progress-bar {
  background: var(--fdo-teal-600);
}

.document-checklist__note {
  max-width: 680px;
  margin: 34px auto 0;
  color: var(--fdo-muted);
  font-size: .9rem;
  line-height: 1.6;
  text-align: center;
}

.document-item {
  position: relative;
  display: flex;
  height: 100%;
  gap: .9rem;
  align-items: flex-start;
  border: 1px solid var(--fdo-border);
  border-radius: 10px;
  background: var(--fdo-white);
  padding: 18px 20px;
  cursor: pointer;
}

.document-item:hover {
  border-color: var(--fdo-gold);
}

.document-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.document-item__box {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1.5px solid #cfc8b6;
  border-radius: 6px;
  margin-top: 1px;
}

.document-item input:checked + .document-item__box {
  border-color: var(--fdo-teal-600);
  background: var(--fdo-teal-600);
}

.document-item input:checked + .document-item__box::after {
  position: absolute;
  top: 4px;
  left: 8px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--fdo-white);
  border-bottom: 2px solid var(--fdo-white);
  content: "";
  transform: rotate(45deg);
}

.document-item strong,
.document-item small {
  display: block;
}

.document-item strong {
  margin-bottom: .2rem;
  color: var(--fdo-text);
  font-size: .96rem;
}

.document-item small {
  color: #6b7370;
  font-size: .84rem;
  line-height: 1.5;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  border: 1px solid var(--fdo-border);
  border-radius: 16px;
  background: var(--fdo-paper-deep);
  padding: 32px 40px;
}

.cta-strip h2 {
  margin-bottom: .35rem;
  font-size: clamp(1.45rem, 3vw, 1.7rem);
}

.cta-strip p {
  max-width: 620px;
  margin: 0;
  color: var(--fdo-muted);
}

.trust-panel {
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
  padding-block: 72px;
}

.trust-panel h2 {
  max-width: 640px;
  margin-bottom: 1.6rem;
  color: var(--fdo-white);
}

.lawyer-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: #2c3d3b;
  padding: 1.85rem;
  text-align: center;
}

.lawyer-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(199, 162, 78, .5);
  border-radius: 50%;
  margin-bottom: 1rem;
  background: linear-gradient(160deg, #3a4d4a, #2c3d3b);
  color: var(--fdo-gold);
  font-family: var(--fdo-heading);
  font-size: 1.9rem;
}

.trust-panel .lawyer-card__photo {
  display: block;
  width: 100%;
  height: 248px;
  margin: 0 0 18px;
  border: 1px solid rgba(199, 162, 78, .48);
  border-radius: 10px;
  object-fit: cover;
  object-position: center 22%;
}

.lawyer-card h2 {
  margin: 0 0 .2rem;
  font-size: 1.2rem;
}

.lawyer-card p {
  margin: 0 0 1rem;
  color: #9fb0ad;
  font-size: .82rem;
}

.lawyer-card blockquote {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin: 0;
  padding-top: 1rem;
  color: #cdd9d7;
  font-family: var(--fdo-heading);
  font-size: .98rem;
  font-style: italic;
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: #e7eeec;
  padding: 1rem 1.1rem;
  font-size: .92rem;
}

.checkmark {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e7f0e8;
}

.checkmark::after {
  position: absolute;
  top: 15px;
  left: 21px;
  width: 14px;
  height: 24px;
  border-right: 3px solid var(--fdo-teal-600);
  border-bottom: 3px solid var(--fdo-teal-600);
  content: "";
  transform: rotate(45deg);
}

.checkmark--small {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  background: transparent;
}

.checkmark--small::after {
  top: 0;
  left: 6px;
  width: 8px;
  height: 15px;
  border-right: 2px solid var(--fdo-gold);
  border-bottom: 2px solid var(--fdo-gold);
}

.faq-section {
  background: var(--fdo-paper);
  padding-block: 18px 72px;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-intro {
  background: var(--fdo-paper);
  padding-bottom: 22px;
}

.faq-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.faq-intro-card {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px 16px;
  border: 1px solid var(--fdo-border);
  border-radius: 14px;
  background: var(--fdo-white);
  padding: 26px;
}

.faq-intro-card h2 {
  margin: 0;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.26;
}

.faq-intro-card p {
  grid-column: 2;
  margin: 0;
  color: var(--fdo-muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.faq-topic + .faq-topic {
  margin-top: 54px;
}

.faq-topic .section-heading {
  margin-bottom: 28px;
}

.faq-topic .section-heading span {
  display: block;
  max-width: 690px;
  margin: 10px auto 0;
  color: var(--fdo-muted);
  font-size: 16px;
  line-height: 1.65;
}

.faq-list .accordion-item {
  overflow: hidden;
  border: 1px solid var(--fdo-border);
  border-radius: 10px;
  margin-bottom: .75rem;
  background: var(--fdo-white);
  transition: border-color .22s ease, box-shadow .22s ease;
}

.faq-list .accordion-item:hover {
  border-color: rgba(199, 162, 78, .4);
  box-shadow: 0 18px 42px -38px rgba(18, 31, 29, .58);
}

.faq-list .accordion-button {
  background: var(--fdo-white);
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 1.16rem;
  line-height: 1.25;
  box-shadow: none;
  padding: 1.25rem 1.35rem;
  transition: color .22s ease, background-color .22s ease;
}

.faq-list .accordion-button:not(.collapsed) {
  color: var(--fdo-text);
}

.faq-list .accordion-button::after {
  border-radius: 50%;
  background-color: var(--fdo-paper-deep);
  background-position: center;
  background-size: .86rem;
  padding: .9rem;
}

.faq-list .accordion-body {
  padding: 0 1.35rem 1.25rem;
  color: var(--fdo-muted);
  line-height: 1.7;
}

.faq-service-cta {
  background: var(--fdo-paper);
  padding-block: 0 78px;
}

.faq-service-cta__panel {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  background: var(--fdo-teal-800);
  padding: 42px 46px;
}

.faq-service-cta__panel h2 {
  max-width: 560px;
  margin: 0 0 10px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.faq-service-cta__panel span {
  display: block;
  max-width: 620px;
  color: #bcc8c6;
  font-size: 16px;
  line-height: 1.6;
}

.faq-service-cta__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  align-items: center;
}

.final-cta {
  background: var(--fdo-gold);
  padding-block: 3.75rem;
  text-align: center;
}

.final-cta h2 {
  max-width: 700px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 540px;
  margin: .9rem auto 1.8rem;
  color: #4a3f24;
  font-size: 1.05rem;
  line-height: 1.6;
}

.final-cta__actions {
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
}

.page-hero__tone {
  position: absolute;
  inset: 0 0 0 auto;
  width: 42%;
  background: linear-gradient(180deg, #2a3b39, var(--fdo-teal-800));
  opacity: .5;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 78px;
}

.page-hero .section-kicker {
  margin-bottom: 22px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 46px;
  font-weight: 300;
  line-height: 1.14;
}

.page-hero p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: #c3cfcc;
  font-size: 18px;
  line-height: 1.62;
}

.about-relationship {
  padding-block: 72px 20px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 76px;
  align-items: center;
}

.about-split__heading {
  width: auto;
}

.about-split__content {
  max-width: 570px;
}

.about-split__heading h2,
.about-lawyer__content h2,
.about-contact__panel h2 {
  margin: 0;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
}

.about-copy {
  margin-top: 28px;
}

.about-copy p {
  max-width: 540px;
  color: var(--fdo-muted);
  font-size: 16px;
  line-height: 1.72;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-media {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(223, 214, 195, .9);
  border-radius: 14px;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--fdo-white);
  box-shadow: 0 32px 72px -54px rgba(18, 31, 29, .72);
}

.about-media img,
.visual-band__image img,
.recognition-aside-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.about-media:hover img,
.visual-band__image:hover img,
.recognition-aside-image:hover img {
  transform: scale(1.035);
}

.about-copy p {
  margin: 0 0 18px;
  color: #4c554f;
  font-size: 17px;
  line-height: 1.75;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.not-found-page {
  min-height: 52vh;
  display: grid;
  align-items: center;
}

.not-found-page .container-xl {
  max-width: 760px;
}

.not-found-page h1 {
  margin: 0 auto 18px;
}

.not-found-page p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.not-found-page__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.review-section {
  padding: 76px 0;
  background: var(--fdo-paper);
}

.review-section__heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.review-section__heading h2 { margin: 0; max-width: 630px; }
.review-section__rating { display: grid; gap: 4px; text-align: right; color: var(--fdo-muted); font-size: 13px; }
.review-section__rating strong,
.review-card__stars { color: var(--fdo-gold); letter-spacing: 2px; font-size: 18px; }
.review-carousel { display: grid; grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 14px; align-items: center; }
.review-carousel__viewport { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(310px, calc((100% - 32px) / 3)); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 2px; }
.review-carousel__viewport::-webkit-scrollbar { display: none; }
.review-card { min-height: 270px; scroll-snap-align: start; display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(41, 61, 57, .14); border-radius: 12px; background: #fffdf8; box-shadow: 0 18px 38px -34px rgba(24, 42, 38, .9); }
.review-card blockquote { margin: 18px 0 24px; color: var(--fdo-text); font-family: var(--fdo-heading); font-size: 19px; font-weight: 400; line-height: 1.48; }
.review-card footer { display: grid; gap: 3px; margin-top: auto; color: var(--fdo-muted); font-size: 13px; }
.review-card footer strong { color: var(--fdo-text); font-size: 15px; }
.review-carousel__control { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(31, 78, 72, .28); border-radius: 50%; background: transparent; color: var(--fdo-teal); font-size: 23px; transition: .2s ease; }
.review-carousel__control:not(:disabled):hover { color: #fff; border-color: var(--fdo-teal); background: var(--fdo-teal); }
.review-carousel__control:disabled { opacity: .35; cursor: not-allowed; }

@media (max-width: 900px) {
  .review-carousel__viewport { grid-auto-columns: minmax(300px, calc(100% - 20px)); }
}

@media (max-width: 560px) {
  .review-section { padding: 56px 0; }
  .review-section__heading { display: block; }
  .review-section__rating { margin-top: 16px; text-align: left; }
  .review-carousel { grid-template-columns: 1fr; }
  .review-carousel__control { display: none; }
  .review-card { min-height: 250px; padding: 24px; }
}

.pricing-section {
  background: linear-gradient(180deg, var(--fdo-paper) 0%, #f6f2e8 100%);
  padding-block: 70px 34px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1040px;
  margin-inline: auto;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #dfd6c3;
  border-radius: 14px;
  background: var(--fdo-white);
  box-shadow: 0 34px 86px -58px rgba(18, 31, 29, .72);
  padding: 34px;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.pricing-card:hover {
  border-color: rgba(199, 162, 78, .5);
  box-shadow: 0 42px 100px -56px rgba(18, 31, 29, .82);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: rgba(199, 162, 78, .58);
  box-shadow: 0 42px 100px -54px rgba(65, 48, 17, .72);
}

.pricing-card--featured::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--fdo-gold);
  content: "";
}

.pricing-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 30px;
  margin-bottom: 22px;
}

.pricing-card__topline span {
  color: var(--fdo-teal-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pricing-card__topline strong {
  border-radius: 999px;
  background: #f5ead0;
  color: #9c7a2e;
  font-size: .72rem;
  font-weight: 800;
  padding: .42rem .65rem;
}

.pricing-card__price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 12px;
  background: var(--fdo-paper);
  padding: 18px;
}

.pricing-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}

.pricing-card__currency {
  margin-top: 0;
  font-family: var(--fdo-body);
  font-size: .72em;
  font-weight: 800;
  line-height: 1;
}

.pricing-card__tax {
  align-self: center;
  margin-left: 8px;
  color: var(--fdo-muted);
  font-family: var(--fdo-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-card__timeline {
  justify-self: end;
  border: 1px solid rgba(78, 124, 103, .2);
  border-radius: 999px;
  background: var(--fdo-white);
  color: var(--fdo-teal-700);
  font-size: .86rem;
  font-weight: 800;
  padding: .65rem .8rem;
  text-align: center;
}

.pricing-card h2 {
  margin: 24px 0 12px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.22;
}

.pricing-card p {
  margin: 0 0 22px;
  color: var(--fdo-muted);
  line-height: 1.65;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--fdo-text);
  font-size: .92rem;
}

.pricing-card__cta {
  margin-top: auto;
}

.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--fdo-muted);
  font-size: .9rem;
  line-height: 1.65;
  text-align: center;
}

.recognition-guide {
  background: var(--fdo-paper);
  padding-block: 72px 82px;
}

.recognition-guide__layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 340px;
  gap: 54px;
  align-items: start;
}

.recognition-guide__content {
  min-width: 0;
}

.recognition-guide__lead {
  border-left: 4px solid var(--fdo-gold);
  margin: 0 0 42px;
  padding: 6px 0 6px 24px;
  color: #3b4541;
  font-family: var(--fdo-heading);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.55;
}

.recognition-guide__content section {
  border-bottom: 1px solid var(--fdo-border);
  padding-block: 34px;
}

.recognition-guide__content section:first-of-type {
  padding-top: 0;
}

.recognition-guide__content h2 {
  margin: 0 0 14px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.18;
}

.recognition-guide__content p:not(.section-kicker):not(.recognition-guide__lead) {
  margin: 0 0 18px;
  color: #4c554f;
  font-size: 17px;
  line-height: 1.75;
}

.recognition-guide__checklist {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.recognition-guide__checklist div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--fdo-border);
  border-radius: 12px;
  background: var(--fdo-white);
  color: #4c554f;
  font-size: 15.5px;
  line-height: 1.6;
  padding: 18px 20px;
}

.recognition-issue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.recognition-issue-grid article {
  border: 1px solid var(--fdo-border);
  border-radius: 14px;
  background: var(--fdo-white);
  padding: 24px;
}

.recognition-issue-grid h3 {
  margin: 0 0 8px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.recognition-issue-grid p {
  margin: 0;
  color: var(--fdo-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.recognition-guide__aside {
  position: sticky;
  top: 148px;
}

.recognition-aside-image {
  overflow: hidden;
  border: 1px solid var(--fdo-border);
  border-radius: 16px;
  margin: 0 0 18px;
  aspect-ratio: 16 / 10;
  background: var(--fdo-white);
  box-shadow: 0 20px 50px -42px rgba(18, 31, 29, .65);
}

.recognition-summary {
  border-radius: 16px;
  background: var(--fdo-teal-800);
  padding: 30px;
  box-shadow: 0 24px 54px -40px rgba(18, 31, 29, .72);
}

.recognition-summary > p {
  margin: 0 0 14px;
  color: #e3c77e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.recognition-summary h2 {
  margin: 0 0 20px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.recognition-summary ul {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin: 0 0 24px;
  padding: 18px 0 0;
  list-style: none;
}

.recognition-summary li {
  color: #bcc8c6;
  font-size: 14.5px;
  line-height: 1.5;
}

.recognition-summary li + li {
  margin-top: 10px;
}

.about-values {
  padding-block: 54px 8px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-value {
  border: 1px solid var(--fdo-border);
  border-radius: 12px;
  background: var(--fdo-white);
  padding: 30px 28px;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.about-value:hover {
  border-color: rgba(199, 162, 78, .44);
  box-shadow: 0 24px 54px -46px rgba(18, 31, 29, .72);
  transform: translateY(-3px);
}

.about-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  margin-bottom: 18px;
  background: var(--fdo-paper-deep);
}

.about-value__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--fdo-teal-700);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value h2 {
  margin: 0 0 10px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}

.about-value p {
  margin: 0;
  color: var(--fdo-muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.about-lawyer {
  margin-top: 64px;
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
}

.about-lawyer__layout {
  display: flex;
  gap: 72px;
  align-items: center;
  padding-block: 68px;
}

.about-lawyer .lawyer-card {
  width: 380px;
  flex: 0 0 auto;
  padding: 18px;
}

.about-lawyer .lawyer-card__avatar {
  width: 104px;
  height: 104px;
  font-size: 32px;
}

.about-lawyer .lawyer-card__photo {
  display: block;
  width: 100%;
  height: 350px;
  margin: 0 0 18px;
  border: 1px solid rgba(199, 162, 78, .45);
  border-radius: 9px;
  object-fit: cover;
  object-position: center 22%;
}

.about-lawyer .lawyer-card h2 {
  color: var(--fdo-white);
  font-size: 20px;
}

.about-lawyer .lawyer-card p {
  margin-bottom: 0;
}

.about-lawyer__content {
  flex: 1;
}

.about-lawyer__content .section-kicker {
  margin-bottom: 18px;
}

.about-lawyer__content h2 {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--fdo-white);
  line-height: 1.25;
}

.about-lawyer__content p:not(.section-kicker) {
  max-width: 580px;
  margin: 0;
  color: #bcc8c6;
  font-size: 16.5px;
  line-height: 1.7;
}

.about-credentials {
  padding-block: 56px 20px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--fdo-border);
  border-radius: 14px;
  background: var(--fdo-white);
}

.credential-item {
  min-height: 126px;
  border-right: 1px solid var(--fdo-border);
  padding: 30px 26px;
}

.credential-item:last-child {
  border-right: 0;
}

.credential-item h2 {
  margin: 0 0 8px;
  color: var(--fdo-teal-700);
  font-family: var(--fdo-heading);
  font-size: 18px;
  font-weight: 400;
}

.credential-item p {
  margin: 0;
  color: #6b7370;
  font-size: 13.5px;
  line-height: 1.5;
}

.about-contact {
  padding-block: 56px 80px;
}

.about-contact__panel {
  display: flex;
  gap: 56px;
  align-items: center;
  border-radius: 16px;
  background: var(--fdo-paper-deep);
  padding: 48px 50px;
}

.about-contact__panel > div:first-child {
  flex: 1;
}

.about-contact__panel h2 {
  max-width: 440px;
  margin-bottom: 12px;
  font-size: 32px;
}

.about-contact__panel p:not(.section-kicker) {
  max-width: 440px;
  margin: 0;
  color: var(--fdo-muted);
  font-size: 16px;
  line-height: 1.65;
}

.about-contact__actions {
  display: flex;
  width: 300px;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

.contact-section {
  padding-block: 54px 80px;
}

.contact-layout {
  display: flex;
  gap: 54px;
  align-items: flex-start;
}

.contact-form-shell {
  flex: 1.3;
}

.contact-form {
  border: 1px solid var(--fdo-border);
  border-radius: 16px;
  background: var(--fdo-white);
  box-shadow: 0 18px 44px -36px rgba(33, 57, 60, .5);
  padding: 40px 40px 36px;
}

.contact-form h2,
.contact-info-card h2,
.contact-start-card h2 {
  margin: 0;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-weight: 500;
}

.contact-form h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.contact-form p {
  margin: 0 0 28px;
  color: #6b7370;
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form .form-field {
  margin-bottom: 18px;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
  border: 1px solid #dad3c2;
  border-radius: 8px;
  outline: 0;
  background: #fcfbf7;
  color: var(--fdo-text);
  font: 400 15px/1 var(--fdo-body);
  padding: 14px 15px;
}

.contact-form .form-field textarea {
  min-height: 138px;
  line-height: 1.5;
  resize: vertical;
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--fdo-teal-700);
  box-shadow: 0 0 0 3px rgba(49, 78, 82, .1);
}

.contact-topics {
  margin-bottom: 24px;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-form__actions span {
  color: #8a8474;
  font-size: 13px;
  line-height: 1.45;
}

.contact-form__sent {
  text-align: center;
  padding: 30px 10px;
}

.contact-form__sent h2 {
  max-width: 430px;
  margin: 0 auto 10px;
  font-size: 26px;
  line-height: 1.25;
}

.contact-form__sent p {
  max-width: 390px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: 15.5px;
}

.contact-form__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: #e7f0e8;
}

.contact-form__check svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #5c8a6b;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-aside {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  border: 1px solid var(--fdo-border);
  border-radius: 12px;
  background: var(--fdo-white);
  padding: 24px 26px;
}

.contact-info-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--fdo-paper-deep);
}

.contact-info-card__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--fdo-teal-700);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h2 {
  font-size: 18px;
}

.contact-info-card p {
  margin: 0;
  color: var(--fdo-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-detail-card {
  border: 1px solid var(--fdo-border);
  border-radius: 12px;
  background: var(--fdo-white);
  padding: 24px 26px;
}

.contact-detail-card--mobile {
  display: none;
}

.contact-detail-card h2 {
  margin: 0 0 16px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 19px;
  font-weight: 500;
}

.contact-detail-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-detail-card li {
  display: grid;
  gap: 4px;
}

.contact-detail-card span {
  color: #9c7a2e;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-detail-card a,
.contact-detail-card address,
.contact-detail-card p {
  margin: 0;
  color: var(--fdo-text);
  font-size: 14.5px;
  line-height: 1.55;
  text-decoration: none;
}

.contact-detail-card a:hover {
  color: var(--fdo-teal-700);
}

.contact-start-card {
  border-radius: 12px;
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
  padding: 26px;
}

.contact-start-card h2 {
  margin-bottom: 8px;
  color: var(--fdo-white);
  font-size: 19px;
}

.contact-start-card p {
  margin: 0 0 18px;
  color: #bcc8c6;
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-map-section {
  padding-block: 0 82px;
}

.contact-map-shell {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--fdo-border);
  border-radius: 16px;
  background: var(--fdo-white);
  box-shadow: 0 26px 70px -52px rgba(18, 31, 29, .62);
}

.contact-map-copy {
  padding: 36px;
}

.contact-map-copy h2 {
  margin: 0 0 12px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-map-copy p:not(.section-kicker) {
  margin: 0 0 22px;
  color: var(--fdo-muted);
  line-height: 1.65;
}

.contact-map-frame {
  min-height: 360px;
  background: var(--fdo-paper-deep);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.location-hero {
  position: relative;
  overflow: hidden;
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
}

.location-hero__tone {
  position: absolute;
  inset: 0 0 0 auto;
  width: 44%;
  background: linear-gradient(180deg, #2a3b39, var(--fdo-teal-800));
  opacity: .5;
  pointer-events: none;
}

.location-hero__breadcrumbs,
.location-hero__inner {
  position: relative;
  z-index: 1;
}

.location-hero__breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 34px;
  color: #9fb0ad;
  font-size: 13px;
}

.location-hero__breadcrumbs a {
  color: #cdd9d7;
  text-decoration: none;
}

.location-hero__breadcrumbs a:hover {
  color: var(--fdo-white);
}

.location-hero__breadcrumbs strong {
  color: #e3c77e;
  font-weight: 500;
}

.location-hero__inner {
  display: flex;
  gap: 60px;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 78px;
}

.location-hero__copy {
  flex: 1.05;
}

.location-hero .section-kicker {
  margin-bottom: 22px;
}

.location-hero h1 {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
}

.location-hero h1 em {
  color: #e3c77e;
  font-style: italic;
}

.location-hero__copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 0 0 30px;
  color: #c3cfcc;
  font-size: 18px;
  line-height: 1.6;
}

.location-hero__actions {
  display: flex;
  gap: 14px;
}

.location-glance {
  width: 330px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  padding: 28px 30px;
}

.location-glance h2 {
  margin: 0 0 18px;
  color: var(--fdo-gold);
  font-family: var(--fdo-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.location-glance ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-glance li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #e7eeec;
  font-size: 14.5px;
  line-height: 1.45;
  padding: 13px 0;
}

.location-glance li:first-child {
  padding-top: 0;
}

.location-glance li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.location-glance .checkmark {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-color: var(--fdo-gold);
}

.location-glance .checkmark::after {
  width: 5px;
  height: 9px;
  border-color: var(--fdo-gold);
}

.location-lead-form {
  width: 380px;
  flex: 0 0 auto;
}

.location-lead-form form {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: var(--fdo-white);
  box-shadow: 0 28px 60px -38px rgba(0, 0, 0, .7);
  padding: 28px 30px;
}

.location-lead-form h2 {
  margin: 0 0 8px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.22;
}

.location-lead-form p {
  margin: 0 0 18px;
  color: #6b7370;
  font-size: 14px;
  line-height: 1.55;
}

.location-lead-form .form-field {
  margin-bottom: 12px;
}

.location-lead-form .form-field span {
  margin-bottom: 7px;
  color: #3f4843;
}

.location-lead-form .form-field input,
.location-lead-form .form-field textarea {
  width: 100%;
  border: 1px solid #dad3c2;
  border-radius: 8px;
  outline: 0;
  background: #fcfbf7;
  color: var(--fdo-text);
  font: 400 14.5px/1.45 var(--fdo-body);
  padding: 12px 13px;
}

.location-lead-form .form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.location-lead-form .form-field input:focus,
.location-lead-form .form-field textarea:focus {
  border-color: var(--fdo-teal-700);
  box-shadow: 0 0 0 3px rgba(49, 78, 82, .1);
}

.location-lead-form ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.location-lead-form li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4c554f;
  font-size: 12.5px;
  line-height: 1.42;
}

.location-lead-form li .checkmark {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.location-lead-form__sent {
  text-align: center;
  padding-block: 18px;
}

.location-lead-form__sent .checkmark {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-color: #5c8a6b;
  background: #e7f0e8;
}

.location-lead-form__sent .checkmark::after {
  border-color: #5c8a6b;
}

.location-lead-form__sent h2 {
  margin-bottom: 10px;
}

.location-lead-form__sent p {
  margin-bottom: 18px;
}

.location-context {
  padding-block: 66px 20px;
}

.location-split {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.location-split__heading {
  width: 320px;
  flex: 0 0 auto;
}

.location-split__heading h2 {
  margin: 0;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.location-copy {
  flex: 1;
}

.location-copy p {
  margin: 0 0 18px;
  color: #4c554f;
  font-size: 17px;
  line-height: 1.75;
}

.location-copy p:last-child {
  margin-bottom: 0;
}

.location-process {
  margin-top: 60px;
  background: var(--fdo-paper-deep);
  padding-block: 64px;
}

.location-process .section-heading {
  margin-bottom: 42px;
}

.location-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.location-step {
  border: 1px solid #e7e2d6;
  border-radius: 12px;
  background: var(--fdo-white);
  padding: 28px 26px;
}

.location-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 18px;
}

.location-step h3 {
  margin: 0 0 10px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.location-step p {
  margin: 0;
  color: #6b7370;
  font-size: 14px;
  line-height: 1.6;
}

.location-detail-band {
  padding-block: 70px 34px;
}

.location-detail-band .section-heading {
  margin-bottom: 34px;
}

.location-pricing {
  background: linear-gradient(180deg, var(--fdo-paper) 0%, #f6f2e8 100%);
  padding-block: 58px 70px;
}

.pricing-grid--location {
  max-width: 1040px;
}

.location-need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.location-need-card {
  border: 1px solid var(--fdo-border);
  border-radius: 12px;
  background: var(--fdo-white);
  padding: 30px 28px;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.location-need-card:hover {
  border-color: rgba(199, 162, 78, .44);
  box-shadow: 0 24px 54px -46px rgba(18, 31, 29, .72);
  transform: translateY(-3px);
}

.location-need-card h3 {
  margin: 0 0 10px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.28;
}

.location-need-card p {
  margin: 0;
  color: var(--fdo-muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.location-issues {
  padding-block: 42px;
}

.location-issues__layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
  border-radius: 16px;
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
  padding: 48px 50px;
}

.location-issues__layout h2 {
  max-width: 480px;
  margin: 0 0 14px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.location-issues__layout p:not(.section-kicker) {
  max-width: 500px;
  margin: 0;
  color: #bcc8c6;
  font-size: 16px;
  line-height: 1.68;
}

.location-issues__layout ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-issues__layout li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #e7eeec;
  font-size: 15px;
  line-height: 1.55;
}

.location-issues__layout .checkmark {
  flex: 0 0 auto;
  margin-top: 2px;
}

.location-scenario {
  padding-block: 24px 44px;
}

.location-scenario__panel {
  border: 1px solid rgba(199, 162, 78, .34);
  border-radius: 16px;
  background: linear-gradient(135deg, #2b403d, var(--fdo-teal-800));
  color: var(--fdo-white);
  padding: 42px 46px;
}

.location-scenario__panel h2 {
  max-width: 680px;
  margin: 0 0 14px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.22;
}

.location-scenario__panel p:not(.section-kicker) {
  max-width: 820px;
  margin: 0 0 24px;
  color: #d6e0de;
  font-size: 16px;
  line-height: 1.7;
}

.location-faq {
  padding-block: 72px 30px;
}

.location-faq .section-heading {
  margin-bottom: 38px;
}

.location-cities {
  padding-block: 30px 80px;
}

.location-cities .section-heading {
  margin-bottom: 30px;
}

.location-cities .section-heading h2 {
  font-size: 28px;
}

.location-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.location-city-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--fdo-border);
  border-radius: 10px;
  background: var(--fdo-white);
  color: var(--fdo-text);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 18px;
  text-decoration: none;
}

.location-city-link:hover {
  border-color: var(--fdo-gold);
  color: var(--fdo-text);
}

.visual-band {
  padding-block: 34px 0;
}

.visual-band__image {
  overflow: hidden;
  max-width: 980px;
  aspect-ratio: 16 / 8.6;
  border: 1px solid var(--fdo-border);
  border-radius: 16px;
  margin: 0 auto;
  background: var(--fdo-white);
  box-shadow: 0 32px 78px -58px rgba(18, 31, 29, .72);
}

.location-city-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #9c7a2e;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-hero {
  padding-block: 72px 46px;
}

.blog-hero h1 {
  max-width: 680px;
  margin: 0 0 16px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.12;
}

.blog-hero p:not(.section-kicker) {
  max-width: 600px;
  margin: 0;
  color: var(--fdo-muted);
  font-size: 17.5px;
  line-height: 1.6;
}

.blog-filters {
  padding-bottom: 36px;
}

.blog-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-filter {
  border: 1px solid var(--fdo-border);
  border-radius: 999px;
  background: var(--fdo-white);
  color: #4c554f;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 18px;
}

.blog-filter:hover {
  border-color: var(--fdo-gold);
}

.blog-filter.is-active {
  border-color: var(--fdo-teal-700);
  background: var(--fdo-teal-700);
  color: var(--fdo-white);
}

.blog-featured {
  padding-bottom: 18px;
}

.featured-article {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--fdo-border);
  border-radius: 16px;
  background: var(--fdo-white);
  box-shadow: 0 18px 44px -34px rgba(33, 57, 60, .5);
  text-decoration: none;
}

.featured-article:hover {
  border-color: var(--fdo-gold);
}

.featured-article__media {
  position: relative;
  display: flex;
  min-height: 330px;
  width: 46%;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--fdo-teal-700), var(--fdo-teal-800));
}

.featured-article__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.featured-article__media > span {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(24, 39, 37, .78);
  color: #e3c77e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.featured-document {
  width: 200px;
  height: 250px;
  border-radius: 6px;
  background: var(--fdo-white);
  box-shadow: 0 30px 50px -24px rgba(0, 0, 0, .5);
  padding: 24px;
  transform: rotate(-3deg);
}

.featured-document div {
  margin-bottom: 12px;
  color: #b98f3e;
  font-family: var(--fdo-heading);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.featured-document i {
  display: block;
  height: 1px;
  margin-bottom: 16px;
  background: #ece8dc;
}

.featured-document b {
  display: block;
  height: 6px;
  border-radius: 3px;
  margin-bottom: 8px;
  background: #e4e0d4;
}

.featured-document b:nth-of-type(2) {
  width: 92%;
}

.featured-document b:nth-of-type(3) {
  width: 96%;
}

.featured-document b:nth-of-type(4) {
  width: 60%;
  background: #efebe0;
}

.featured-article__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 48px 46px;
}

.featured-article__content p,
.blog-card__body p {
  margin: 0 0 14px;
  color: #9c7a2e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured-article__content h2 {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.featured-article__content > span {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--fdo-muted);
  font-size: 16px;
  line-height: 1.62;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #8a8474;
  font-size: 13.5px;
}

.article-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c3bcab;
}

.blog-grid-section {
  padding-block: 36px 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--fdo-border);
  border-radius: 14px;
  background: var(--fdo-white);
  color: var(--fdo-text);
  flex-direction: column;
  text-decoration: none;
}

.blog-card:hover {
  border-color: var(--fdo-gold);
  color: var(--fdo-text);
}

.blog-card[hidden] {
  display: none;
}

.blog-card__media {
  display: flex;
  height: 205px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--fdo-paper-deep);
}

.blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.035);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.blog-card__body p {
  margin-bottom: 12px;
  font-size: 11px;
}

.blog-card__body h2 {
  margin: 0 0 10px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
}

.blog-card__body > span {
  flex: 1;
  margin-bottom: 18px;
  color: #6b7370;
  font-size: 14.5px;
  line-height: 1.58;
}

.blog-card .article-meta {
  gap: 12px;
  font-size: 12.5px;
}

.article-shell {
  padding-block: 48px 28px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 340px;
  gap: 54px;
  align-items: start;
}

.article-page {
  min-width: 0;
}

.article-header {
  padding: 0 0 0;
}

.article-breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: #8a8474;
  font-size: 13px;
}

.article-breadcrumbs a {
  color: var(--fdo-teal-700);
  text-decoration: none;
}

.article-breadcrumbs a:hover {
  color: var(--fdo-text);
}

.article-category {
  margin: 0 0 18px;
  color: #9c7a2e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-header h1 {
  margin: 0 0 22px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.16;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--fdo-border);
  color: #6b7370;
  font-size: 14px;
  padding-bottom: 30px;
}

.article-byline i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c3bcab;
}

.article-visual {
  overflow: hidden;
  border: 1px solid var(--fdo-border);
  border-radius: 16px;
  margin: 34px 0 0;
  background: var(--fdo-paper-deep);
}

.article-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.article-content {
  padding: 40px 0 20px;
}

.article-content--closing {
  padding-top: 20px;
  padding-bottom: 10px;
}

.article-lead {
  margin: 0 0 30px;
  color: #3b4541;
  font-family: var(--fdo-heading);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.6;
}

.article-content h2 {
  margin: 38px 0 14px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.article-content p:not(.article-lead):not(.article-disclaimer),
.article-content li {
  color: #4c554f;
  font-size: 17px;
  line-height: 1.75;
}

.article-content p:not(.article-lead):not(.article-disclaimer) {
  margin: 0 0 18px;
}

.article-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 3px solid var(--fdo-gold);
  margin: 34px 0;
  padding: 6px 0 6px 26px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
}

.article-inline-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  border-radius: 14px;
  margin: 30px 0;
  background: var(--fdo-teal-800);
  padding: 34px 38px;
}

.article-inline-cta div {
  flex: 1;
}

.article-inline-cta h2 {
  margin: 0 0 6px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 22px;
  font-weight: 400;
}

.article-inline-cta p {
  margin: 0;
  color: #bcc8c6;
  font-size: 15px;
  line-height: 1.55;
}

.article-inline-cta .btn {
  flex: 0 0 auto;
}

.article-disclaimer {
  border-top: 1px solid var(--fdo-border);
  margin: 30px 0 6px;
  padding-top: 24px;
  color: #8a8474;
  font-size: 13.5px;
  line-height: 1.5;
}

.blog-sidebar {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-sidebar__panel {
  border: 1px solid var(--fdo-border);
  border-radius: 14px;
  background: var(--fdo-white);
  padding: 24px;
  box-shadow: 0 18px 40px -36px rgba(33, 57, 60, .45);
}

.blog-sidebar__panel h2 {
  margin: 0 0 16px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.blog-sidebar__cta {
  background: var(--fdo-teal-800);
}

.blog-sidebar__cta p {
  margin: 0 0 12px;
  color: #e3c77e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-sidebar__cta h2 {
  color: var(--fdo-white);
}

.blog-sidebar__cta span {
  display: block;
  margin: 0 0 20px;
  color: #bcc8c6;
  font-size: 14.5px;
  line-height: 1.55;
}

.blog-sidebar__cta .btn + .btn {
  margin-top: 10px;
}

.blog-sidebar__categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-sidebar__categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--fdo-border);
  border-radius: 999px;
  color: #4c554f;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  text-decoration: none;
}

.blog-sidebar__categories a:hover,
.blog-sidebar__categories a.is-active {
  border-color: var(--fdo-teal-700);
  background: var(--fdo-teal-700);
  color: var(--fdo-white);
}

.blog-sidebar__posts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-sidebar__posts a {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  color: var(--fdo-text);
  text-decoration: none;
}

.blog-sidebar__posts a:hover strong {
  color: #9c7a2e;
}

.blog-sidebar__posts img {
  display: block;
  width: 84px;
  height: 66px;
  border-radius: 8px;
  object-fit: cover;
}

.blog-sidebar__posts strong {
  display: block;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.28;
  transition: color .2s ease;
}

.blog-sidebar__posts small {
  display: block;
  margin-top: 7px;
  color: #8a8474;
  font-size: 12px;
  line-height: 1;
}

.article-related {
  margin-top: 30px;
  background: var(--fdo-paper-deep);
  padding-block: 56px 60px;
}

.article-related h2 {
  margin: 0 0 28px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 28px;
  font-weight: 400;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-related__card {
  display: flex;
  overflow: hidden;
  min-height: 0;
  border: 1px solid #e7e2d6;
  border-radius: 14px;
  background: var(--fdo-white);
  color: var(--fdo-text);
  flex-direction: column;
  text-decoration: none;
}

.article-related__card:hover {
  border-color: var(--fdo-gold);
  color: var(--fdo-text);
}

.article-related__card img {
  display: block;
  width: 100%;
  height: 154px;
  object-fit: cover;
}

.article-related__card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.article-related__card p {
  margin: 0 0 12px;
  color: #9c7a2e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-related__card h3 {
  margin: 0 0 14px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
}

.article-related__card span {
  margin-top: auto;
  color: #8a8474;
  font-size: 12.5px;
}

.policy-hero {
  background: var(--fdo-teal-800);
  color: var(--fdo-white);
  padding-block: 56px 50px;
}

.policy-hero h1 {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.14;
}

.policy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-tab {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #cdd9d7;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 20px;
}

.policy-tab:hover {
  color: var(--fdo-white);
}

.policy-tab.is-active {
  border-color: var(--fdo-gold);
  background: var(--fdo-gold);
  color: var(--fdo-teal-800);
}

.policy-layout {
  padding-block: 54px 80px;
}

.policy-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.policy-toc {
  position: sticky;
  top: 24px;
  width: 264px;
  flex: 0 0 auto;
}

.policy-toc > p {
  margin: 0 0 16px;
  color: #9c7a2e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.policy-toc__links {
  display: none;
  flex-direction: column;
  border-left: 1px solid #e2dccd;
}

.policy-toc__links.is-active {
  display: flex;
}

.policy-toc__links a {
  border-left: 1px solid transparent;
  margin-left: -1px;
  color: #4c554f;
  font-size: 14px;
  line-height: 1.4;
  padding: 9px 0 9px 18px;
  text-decoration: none;
}

.policy-toc__links a:hover {
  border-left-color: var(--fdo-gold);
  color: var(--fdo-teal-700);
}

.policy-toc__contact {
  border-radius: 10px;
  margin-top: 26px;
  background: var(--fdo-paper-deep);
  padding: 18px 20px;
}

.policy-toc__contact span {
  display: block;
  color: #6b7370;
  font-size: 13px;
  line-height: 1.55;
}

.policy-toc__contact a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
  color: var(--fdo-teal-700);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.policy-toc__contact a:hover {
  color: var(--fdo-text);
}

.policy-toc__contact svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-content {
  max-width: 720px;
  flex: 1;
}

.policy-document {
  display: none;
}

.policy-document.is-active {
  display: block;
}

.policy-updated {
  border-bottom: 1px solid var(--fdo-border);
  margin-bottom: 26px;
  padding-bottom: 22px;
  color: #8a8474;
  font-size: 13.5px;
}

.policy-intro {
  margin: 0 0 14px;
  color: #3b4541;
  font-family: var(--fdo-heading);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
}

.policy-document section {
  padding-top: 30px;
}

.policy-document h2 {
  margin: 0 0 14px;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.policy-document p:not(.policy-intro) {
  margin: 0 0 16px;
  color: #4c554f;
  font-size: 16px;
  line-height: 1.75;
}

.policy-note {
  border: 1px solid var(--fdo-border);
  border-radius: 12px;
  margin-top: 36px;
  background: var(--fdo-white);
  color: #6b7370;
  font-size: 13.5px;
  line-height: 1.6;
  padding: 22px 24px;
}

.footer-service {
  background: var(--fdo-teal-900);
  color: #9fb0ad;
  padding-block: 2.75rem;
  font-size: .9rem;
}

.footer-service__brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: var(--fdo-white);
  text-decoration: none;
}

.footer-service__brand .site-logo__mark {
  width: 46px;
  height: 40px;
}

.footer-service__brand .site-logo__mark span:first-child,
.footer-service__brand .site-logo__mark span:last-child {
  font-size: .8rem;
}

.footer-service__brand .site-logo__mark span:nth-child(2) {
  width: 24px;
  margin-block: 3px;
}

.footer-service__brand .site-logo__text {
  font-size: 1rem;
}

.footer-service p {
  max-width: 520px;
  margin: 0;
  line-height: 1.65;
}

.footer-service__layout {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) minmax(115px, .72fr) minmax(320px, 1.7fr) minmax(130px, .8fr);
  gap: 2.25rem;
  align-items: start;
}

.footer-service__locations {
  min-width: 0;
}

.footer-service h2 {
  margin: 0 0 .75rem;
  color: var(--fdo-white);
  font-size: .88rem;
  font-weight: 700;
}

.footer-service ul {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-service__location-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: .9rem;
  row-gap: .5rem;
}

.footer-service__location-list a {
  display: block;
  white-space: nowrap;
}

.footer-service a {
  color: #9fb0ad;
  text-decoration: none;
}

.footer-service a:hover {
  color: var(--fdo-white);
}

@media (max-width: 1100px) {
  .footer-service__layout {
    grid-template-columns: minmax(230px, 1.25fr) minmax(150px, .7fr) minmax(260px, 1.25fr);
  }

  .footer-service__column:last-child {
    grid-column: 2;
  }

  .footer-service__locations {
    grid-row: span 2;
  }
}

@media (max-width: 760px) {
  .footer-service__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .footer-service__intro,
  .footer-service__locations {
    grid-column: 1 / -1;
  }

  .footer-service__locations {
    grid-row: auto;
  }
}

@media (max-width: 470px) {
  .footer-service__layout {
    grid-template-columns: 1fr;
  }

  .footer-service__column:last-child,
  .footer-service__intro,
  .footer-service__locations {
    grid-column: auto;
  }

  .footer-service__location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 52px;
  border-radius: 999px;
  box-shadow: 0 14px 32px -10px rgba(20, 32, 30, .55);
  padding: 0 1.25rem;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  pointer-events: auto;
}

.floating-action--call {
  background: var(--fdo-teal-700);
  color: var(--fdo-white);
}

.floating-action--call:hover {
  background: #21393c;
  color: var(--fdo-white);
}

.floating-action--whatsapp {
  background: #25d366;
  color: #0a2e18;
}

.floating-action--whatsapp:hover {
  background: #1ebe5a;
  color: #0a2e18;
}

.floating-action__wa {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.floating-action__icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intake-modal[hidden] {
  display: none;
}

.intake-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-family: var(--fdo-body);
}

.intake-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 30, .55);
}

.intake-modal__dialog {
  position: relative;
  overflow: hidden;
  width: min(540px, 100%);
  border-radius: 18px;
  background: var(--fdo-paper);
  box-shadow: 0 50px 110px -30px rgba(0, 0, 0, .65);
}

.intake-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--fdo-teal-800);
  padding: 1.375rem 1.75rem;
}

.intake-modal__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.intake-modal__brand .site-logo__mark {
  width: 40px;
  height: 35px;
}

.intake-modal__brand .site-logo__mark span:first-child,
.intake-modal__brand .site-logo__mark span:last-child {
  font-size: .68rem;
}

.intake-modal__brand .site-logo__mark span:nth-child(2) {
  width: 20px;
  margin-block: 2px;
}

.intake-modal__brand p {
  margin: 0 0 .32rem;
  color: var(--fdo-gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.intake-modal__brand h2 {
  margin: 0;
  color: var(--fdo-white);
  font-family: var(--fdo-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.intake-modal__close {
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.intake-modal__close:hover {
  background: rgba(255, 255, 255, .1);
}

.intake-modal__close::before,
.intake-modal__close::after {
  position: absolute;
  top: 15px;
  left: 8px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #9fb0ad;
  content: "";
}

.intake-modal__close::before {
  transform: rotate(45deg);
}

.intake-modal__close::after {
  transform: rotate(-45deg);
}

.intake-modal__progress {
  padding: 1.25rem 1.875rem 0;
}

.intake-modal__progress span {
  display: block;
  margin-bottom: .5rem;
  color: #9c7a2e;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.intake-modal__progress .progress {
  height: 5px;
  border-radius: 3px;
  background: var(--fdo-border);
}

.intake-modal__progress .progress-bar {
  width: 50%;
  background: var(--fdo-gold);
}

.intake-modal__body {
  padding: 1.625rem 1.875rem 1.875rem;
}

.intake-step {
  display: none;
}

.intake-step.is-active {
  display: block;
}

.intake-step h3 {
  margin: 0 0 .4rem;
  color: var(--fdo-text);
  font-family: var(--fdo-heading);
  font-size: 1.44rem;
  font-weight: 400;
}

.intake-step p {
  margin: 0 0 1.375rem;
  color: #6b7370;
  font-size: .9rem;
  line-height: 1.5;
}

.form-field {
  display: block;
  margin-bottom: 1rem;
}

.form-field span,
.choice-group legend {
  display: block;
  margin-bottom: .5rem;
  color: #3f4843;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1;
}

.form-field input {
  width: 100%;
  border: 1px solid #dad3c2;
  border-radius: 8px;
  background: var(--fdo-white);
  color: var(--fdo-text);
  font-size: .94rem;
  padding: .875rem .94rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-field input:focus {
  border-color: var(--fdo-teal-700);
  box-shadow: 0 0 0 4px rgba(78, 124, 103, .12);
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: .56rem;
  border: 0;
  margin: 0 0 1.625rem;
  padding: 0;
}

.choice-group legend {
  width: 100%;
}

.choice-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-group span {
  display: inline-flex;
  border: 1px solid #e2dccd;
  border-radius: 999px;
  background: #f4f1e9;
  color: #4c554f;
  padding: .68rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.choice-group input:checked + span {
  border-color: var(--fdo-teal-700);
  background: var(--fdo-teal-700);
  color: var(--fdo-white);
}

.choice-group--compact {
  margin-bottom: 1.625rem;
}

.choice-group--compact span {
  padding-inline: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.intake-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
}

.intake-modal__actions .button-link {
  width: auto;
  padding: 0;
  font-weight: 600;
  text-decoration: none;
}

.intake-step--done {
  text-align: center;
  padding: .875rem .375rem .5rem;
}

.intake-step--done .checkmark {
  margin: 0 auto 1.25rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-strip.reveal-on-scroll {
  transform: none;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 42px 42px, 42px 42px;
  }
}

@keyframes heroGlowDrift {
  from {
    opacity: .52;
    transform: translate3d(-10px, -6px, 0) scale(1);
  }

  to {
    opacity: .82;
    transform: translate3d(12px, 8px, 0) scale(1.04);
  }
}

@keyframes heroIconPulse {
  0%,
  100% {
    opacity: .82;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .about-media img,
  .visual-band__image img,
  .recognition-aside-image img,
  .about-value:hover,
  .pricing-card:hover,
  .location-need-card:hover,
  .btn:hover .btn-arrow,
  .btn:focus-visible .btn-arrow {
    transform: none;
  }

  .hero-service__glow,
  .hero-service__photo,
  .hero-service::after,
  .hero-proof .svg-icon,
  .hero-service .section-kicker,
  .hero-service__title,
  .hero-service__lead,
  .hero-service__actions,
  .hero-proof,
  .eligibility-panel {
    animation: none;
  }

  .hero-service__tone,
  .hero-service__photo {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header .container-xl,
  main .container-xl,
  .faq-section .container-lg {
    padding-right: 26px;
    padding-left: 26px;
  }

  .topbar__note {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .hero-service {
    padding-block: 3.5rem 4rem;
  }

  .eligibility-panel {
    max-width: 620px;
  }

  .process-section__heading,
  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-item {
    grid-template-columns: 54px 1fr;
  }

  .audience-item p {
    grid-column: 2;
  }

  .about-split,
  .about-lawyer__layout,
  .about-contact__panel,
  .contact-layout,
  .location-hero__inner,
  .location-split,
  .policy-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__heading,
  .about-lawyer .lawyer-card,
  .about-contact__actions,
  .about-media,
  .location-split__heading,
  .location-glance,
  .location-lead-form,
  .policy-toc {
    width: 100%;
    flex: 1 1 auto;
  }

  .about-values__grid,
  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-shell,
  .contact-aside {
    width: 100%;
  }

  .contact-map-shell {
    grid-template-columns: 1fr;
  }

  .location-hero__inner {
    gap: 34px;
    padding-bottom: 58px;
  }

  .location-step-grid,
  .location-city-grid,
  .location-need-grid,
  .blog-grid,
  .faq-intro__grid,
  .article-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .recognition-guide__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .recognition-guide__aside {
    position: static;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-sidebar__cta {
    grid-column: 1 / -1;
  }

  .location-issues__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-article {
    flex-direction: column;
  }

  .featured-article__media {
    width: 100%;
  }

  .credential-item:nth-child(2) {
    border-right: 0;
  }

  .credential-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--fdo-border);
  }
}

@media (max-width: 1080px) {
  .site-nav__desktop {
    display: none;
  }

  .navbar-expand-lg .site-nav__toggle {
    display: inline-flex;
  }
}

@media (max-width: 1180px) and (min-width: 1081px) {
  .site-nav__links { gap: .28rem; }
  .site-nav .nav-link { padding-inline: .34rem; font-size: .85rem; }
  .site-nav__mega-menu { right: -18px; }
}

@media (max-width: 640px) {
  .pricing-card {
    padding: 26px;
  }

  .pricing-card__price-row {
    grid-template-columns: 1fr;
  }

  .pricing-card__timeline {
    justify-self: start;
  }

  .topbar__extra {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__contacts {
    justify-content: center;
    width: 100%;
    gap: .65rem 1.125rem;
    flex-wrap: wrap;
  }

  .topbar__link {
    font-size: .875rem;
  }
}

@media (max-width: 600px) {
  .container-xl,
  .container-lg {
    --bs-gutter-x: 2.25rem;
  }

  .site-header .container-xl,
  main .container-xl,
  .faq-section .container-lg {
    padding-right: 18px;
    padding-left: 18px;
  }

  .row {
    --bs-gutter-x: 0;
  }

  .topbar__inner {
    min-height: auto;
    padding-block: .56rem;
  }

  .site-nav {
    padding-block: 1rem;
  }

  .site-logo {
    gap: .72rem;
  }

  .site-logo__mark {
    width: 48px;
    height: 42px;
  }

  .site-logo__mark span:first-child,
  .site-logo__mark span:last-child {
    font-size: .74rem;
  }

  .site-logo__text {
    font-size: .98rem;
  }

  .hero-service {
    padding-block: 4.85rem 4.75rem;
  }

  .hero-service__photo {
    width: 62%;
    opacity: .18;
  }

  .hero-service .section-kicker {
    margin-bottom: 14px;
  }

  .hero-service__title {
    font-size: clamp(28px, 7.95vw, 34px);
    line-height: 1.2;
    max-width: 354px;
    letter-spacing: 0;
  }

  .hero-service__lead {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 335px;
    margin-bottom: 36px;
  }

  .hero-service__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-service .row {
    gap: 50px;
  }

  .final-cta__actions .btn,
  .cta-strip .btn {
    width: 100%;
  }

  .hero-proof {
    gap: .9rem;
  }

  .eligibility-panel {
    margin-top: 0;
  }

  .section-heading h2,
  .process-section h2,
  .trust-panel h2,
  .final-cta h2,
  .cta-strip h2 {
    font-size: clamp(23px, 6.6vw, 31px);
    line-height: 1.2;
  }

  .page-hero__inner {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8.6vw, 40px);
    line-height: 1.12;
  }

  .page-hero p:not(.section-kicker) {
    font-size: 16px;
  }

  .about-relationship {
    padding-block: 46px 10px;
  }

  .about-values {
    padding-block: 36px 8px;
  }

  .about-media,
  .visual-band__image,
  .recognition-aside-image {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .about-values__grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .about-value {
    padding: 26px 24px;
  }

  .about-lawyer {
    margin-top: 46px;
  }

  .about-lawyer__layout {
    padding-block: 48px;
  }

  .about-split__heading h2,
  .about-lawyer__content h2,
  .about-contact__panel h2 {
    font-size: clamp(23px, 6.6vw, 31px);
  }

  .credential-item {
    border-right: 0;
    border-bottom: 1px solid var(--fdo-border);
  }

  .credential-item:last-child {
    border-bottom: 0;
  }

  .about-credentials {
    padding-block: 42px 12px;
  }

  .about-contact {
    padding-block: 42px 58px;
  }

  .about-contact__panel {
    gap: 28px;
    padding: 34px 26px;
  }

  .location-hero__breadcrumbs {
    padding-top: 22px;
    font-size: 12.5px;
  }

  .location-hero__inner {
    padding-top: 26px;
    padding-bottom: 48px;
  }

  .location-hero h1 {
    font-size: clamp(31px, 8.7vw, 40px);
    line-height: 1.12;
  }

  .location-hero__copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .location-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-hero__actions .btn {
    width: 100%;
  }

  .location-lead-form form {
    padding: 26px 24px;
  }

  .location-context {
    padding-block: 46px 8px;
  }

  .location-process {
    margin-top: 42px;
    padding-block: 48px;
  }

  .location-step-grid,
  .location-city-grid,
  .location-need-grid,
  .blog-grid,
  .faq-intro__grid,
  .article-related__grid {
    grid-template-columns: 1fr;
  }

  .location-faq {
    padding-block: 50px 18px;
  }

  .location-cities {
    padding-block: 24px 58px;
  }

  .location-split__heading h2,
  .location-process .section-heading h2,
  .location-faq .section-heading h2,
  .location-cities .section-heading h2,
  .location-detail-band .section-heading h2,
  .location-issues__layout h2,
  .location-scenario__panel h2 {
    font-size: clamp(23px, 6.6vw, 31px);
  }

  .location-detail-band {
    padding-block: 48px 20px;
  }

  .location-need-card {
    padding: 26px 24px;
  }

  .location-issues {
    padding-block: 32px;
  }

  .location-issues__layout {
    border-radius: 14px;
    padding: 34px 26px;
  }

  .location-scenario {
    padding-block: 18px 34px;
  }

  .location-scenario__panel {
    padding: 34px 26px;
  }

  .location-scenario__panel .btn {
    width: 100%;
  }

  .contact-section {
    padding-block: 42px 58px;
  }

  .blog-hero {
    padding-block: 46px 34px;
  }

  .blog-hero h1 {
    font-size: clamp(28px, 8.6vw, 40px);
    line-height: 1.12;
  }

  .blog-hero p:not(.section-kicker) {
    font-size: 16px;
  }

  .blog-filters {
    padding-bottom: 28px;
  }

  .blog-filter-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .blog-filter-list::-webkit-scrollbar {
    display: none;
  }

  .blog-filter {
    white-space: nowrap;
  }

  .featured-article__media {
    min-height: 280px;
  }

  .featured-article__content {
    padding: 34px 26px;
  }

  .featured-article__content h2 {
    font-size: clamp(23px, 6.8vw, 30px);
  }

  .blog-grid-section {
    padding-block: 30px 58px;
  }

  .article-shell {
    padding-block: 34px 18px;
  }

  .article-header,
  .article-content {
    padding-right: 0;
    padding-left: 0;
  }

  .article-header {
    padding-top: 0;
  }

  .article-header h1 {
    font-size: clamp(29px, 8.4vw, 39px);
    line-height: 1.16;
  }

  .article-byline {
    gap: 12px;
  }

  .article-byline i {
    display: none;
  }

  .article-lead {
    font-size: 19px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content p:not(.article-lead):not(.article-disclaimer),
  .article-content li {
    font-size: 16px;
  }

  .article-content blockquote {
    font-size: 20px;
    padding-left: 20px;
  }

  .article-inline-cta {
    align-items: stretch;
    flex-direction: column;
    margin-right: 0;
    margin-left: 0;
    padding: 30px 26px;
  }

  .article-inline-cta .btn {
    width: 100%;
  }

  .article-related {
    padding-block: 46px 58px;
  }

  .faq-section {
    padding-block: 10px 52px;
  }

  .faq-intro {
    padding-block: 34px 14px;
  }

  .faq-intro-card {
    padding: 24px;
  }

  .faq-topic + .faq-topic {
    margin-top: 42px;
  }

  .faq-topic .section-heading h2,
  .faq-service-cta__panel h2 {
    font-size: clamp(23px, 6.6vw, 31px);
  }

  .faq-service-cta {
    padding-bottom: 58px;
  }

  .faq-service-cta__panel {
    align-items: stretch;
    flex-direction: column;
    padding: 34px 26px;
  }

  .faq-service-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-service-cta__actions .btn {
    width: 100%;
  }

  .recognition-guide {
    padding-block: 46px 58px;
  }

  .recognition-guide__lead {
    font-size: 20px;
  }

  .recognition-guide__content h2 {
    font-size: clamp(23px, 6.6vw, 31px);
  }

  .recognition-issue-grid {
    grid-template-columns: 1fr;
  }

  .recognition-summary {
    padding: 26px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-sidebar__panel {
    padding: 22px;
  }

  .article-related__card img {
    height: 176px;
  }

  .policy-hero {
    padding-block: 46px 42px;
  }

  .policy-hero h1 {
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .policy-layout {
    padding-block: 42px 58px;
  }

  .policy-grid {
    gap: 34px;
  }

  .policy-toc {
    position: static;
  }

  .policy-content {
    max-width: none;
  }

  .policy-intro {
    font-size: 19px;
  }

  .contact-layout {
    gap: 26px;
  }

  .contact-detail-card--mobile {
    display: block;
    order: -1;
    width: 100%;
  }

  .contact-aside .contact-detail-card {
    display: none;
  }

  .contact-form {
    border-radius: 14px;
    padding: 30px 24px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .contact-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__actions .btn,
  .contact-start-card .btn {
    width: 100%;
  }

  .contact-info-card {
    padding: 22px 22px;
  }

  .eligibility-panel__topline,
  .eligibility-panel__actions,
  .document-checklist__status,
  .process-detail {
    flex-direction: column;
    align-items: stretch;
  }

  .eligibility-panel__topline {
    gap: .4rem;
  }

  .section-heading--center {
    text-align: center;
  }

  .audience-item {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding-block: 1.35rem;
  }

  .audience-item p {
    grid-column: auto;
  }

  .service-steps {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .service-step {
    min-height: 132px;
    padding: 18px 18px 18px 20px;
    font-size: 16px;
  }

  .process-detail__number {
    width: 54px;
    height: 54px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-service {
    padding-bottom: 2.4rem;
  }

  .floating-action {
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-action span:last-child {
    display: none;
  }
}
