:root {
  --ink: #0d1727;
  --ink-2: #15233a;
  --ink-3: #22324a;
  --paper: #f5f2ec;
  --paper-2: #ece6dc;
  --white: #fffdf9;
  --gold: #b79158;
  --gold-soft: #d2b786;
  --text-dark: #172132;
  --text-light: #e9e5dd;
  --muted-dark: #687387;
  --muted-light: #9eacbf;
  --line-dark: rgba(196, 211, 231, .14);
  --line-light: rgba(27, 40, 59, .13);
  --shadow: 0 28px 80px rgba(5, 11, 20, .18);
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 30px;
  --wrap: 1200px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--gold-soft); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 11px 16px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 44px), var(--wrap)); margin-inline: auto; }
.narrow { max-width: 760px; }
.serif { font-family: var(--serif); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.eyebrow.no-line::before { display: none; }
.kicker { margin: 0 0 12px; color: var(--gold); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.03;
}
.display em, .section-title em { color: var(--gold-soft); font-weight: 300; }
.section-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 4.8vw, 58px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.12;
}
.section-lead { max-width: 740px; margin: 24px 0 0; color: var(--muted-dark); font-size: clamp(17px, 1.5vw, 20px); }
.section-lead.on-dark { color: var(--muted-light); }
.small-note { color: var(--muted-dark); font-size: 14px; line-height: 1.65; }
.on-dark { color: var(--text-light); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(13, 23, 39, .92);
  border-color: var(--line-dark);
  box-shadow: 0 16px 40px rgba(3, 8, 15, .12);
  backdrop-filter: blur(16px);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(210, 183, 134, .62);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -.08em;
}
.brand-copy strong { display: block; font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: .01em; line-height: 1.2; }
.brand-copy small { display: block; margin-top: 3px; color: var(--muted-light); font-size: 9px; letter-spacing: .17em; line-height: 1.2; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #d9e0e9; font-size: 13px; font-weight: 500; text-decoration: none; }
.nav a:not(.nav-cta) { position: relative; padding: 10px 0; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; inset: auto 0 4px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.nav a:not(.nav-cta):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(210, 183, 134, .55); border-radius: 999px; color: var(--gold-soft) !important; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; content: ""; transition: transform .2s ease, opacity .2s ease; }
body.nav-open .nav-toggle span { opacity: 0; }
body.nav-open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--ink);
  color: var(--text-light);
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 12% 18%, rgba(183, 145, 88, .16), transparent 30%),
    linear-gradient(90deg, rgba(13, 23, 39, 1) 0%, rgba(13, 23, 39, .98) 44%, rgba(13, 23, 39, .35) 73%, rgba(13, 23, 39, .18) 100%);
}
.hero-media { position: absolute; inset: 0 0 0 auto; width: 58%; height: 100%; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 50% 26%; filter: saturate(.82) contrast(1.03); }
.hero-grid { position: relative; z-index: 2; min-height: 820px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr); align-items: center; }
.hero-copy { max-width: 710px; padding: 152px 0 112px; }
.hero-copy .lead { max-width: 610px; margin: 26px 0 0; color: #b4c0d0; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); box-shadow: 0 16px 38px rgba(183, 145, 88, .2); }
.button-primary:hover { background: var(--gold-soft); }
.button-secondary { border-color: rgba(224, 232, 242, .24); color: var(--white); }
.button-secondary:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--ink-2); }
.button-ghost { border-color: var(--line-light); color: var(--ink); }
.button-ghost:hover { border-color: var(--gold); }
.button svg { width: 18px; height: 18px; flex: none; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; color: #9cabbf; font-size: 13px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-caption { position: absolute; right: 30px; bottom: 34px; z-index: 3; padding: 10px 14px; border: 1px solid var(--line-dark); border-radius: 8px; background: rgba(13, 23, 39, .46); color: #d9e0e9; font-size: 12px; backdrop-filter: blur(10px); }

.trust-bar { position: relative; z-index: 4; margin-top: -1px; background: var(--ink-2); color: var(--text-light); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 22px 26px; border-right: 1px solid var(--line-dark); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted-light); font-size: 12px; }

.section { padding: clamp(86px, 9vw, 132px) 0; }
.section-dark { background: var(--ink); color: var(--text-light); }
.section-ink2 { background: var(--ink-2); color: var(--text-light); }
.section-paper { background: var(--paper); }
.section-paper2 { background: var(--paper-2); }
.section-rule { border-top: 1px solid var(--line-light); }
.section-dark.section-rule, .section-ink2.section-rule { border-top-color: var(--line-dark); }

.quote-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(52px, 8vw, 120px); align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.quote-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.quote-list li { display: flex; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: clamp(23px, 2.4vw, 32px); font-style: italic; font-weight: 300; line-height: 1.38; }
.quote-list li::before { content: "—"; color: var(--gold); font-style: normal; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.info-card { min-height: 280px; padding: 32px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); }
.info-card .number { color: var(--gold); font-family: var(--serif); font-size: 16px; }
.info-card h3 { margin: 46px 0 14px; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.25; }
.info-card p { margin: 0; color: var(--muted-light); font-size: 16px; }

.eligibility { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 54px; }
.eligibility-card { padding: clamp(28px, 4vw, 44px); border-radius: var(--radius); }
.eligibility-card.yes { background: var(--ink); color: var(--text-light); }
.eligibility-card.no { border: 1px solid var(--line-light); background: rgba(255,255,255,.42); }
.eligibility-card h3 { margin: 0 0 20px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.clean-list { margin: 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 15px 0 15px 28px; border-bottom: 1px solid var(--line-light); }
.yes .clean-list li { border-color: var(--line-dark); }
.clean-list li::before { position: absolute; left: 0; top: 16px; content: "✓"; color: var(--gold); font-weight: 700; }
.eligibility-card.no .clean-list li::before { content: "—"; color: var(--muted-dark); }
.eligibility-card .small-note { margin: 22px 0 0; }
.eligibility-card.yes .small-note { color: var(--muted-light); }

.service-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); align-items: end; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 44px; margin: 54px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.service-list li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line-dark); color: #dfe5ed; }
.service-list .icon { color: var(--gold); font-family: var(--serif); font-size: 17px; }
.service-note { margin-top: 30px; padding: 22px 24px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.03); color: var(--muted-light); }

.timeline { margin-top: 55px; border-top: 1px solid var(--line-light); counter-reset: step; }
.timeline-item { display: grid; grid-template-columns: 80px .75fr 1.25fr; gap: 30px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--line-light); }
.timeline-item::before { counter-increment: step; content: counter(step, decimal-leading-zero); color: var(--gold); font-family: var(--serif); font-size: 24px; }
.timeline-item h3 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.timeline-item p { margin: 0; color: var(--muted-dark); }

.office-feature { position: relative; min-height: 680px; overflow: hidden; background: var(--ink); }
.office-feature picture, .office-feature img { width: 100%; height: 100%; }
.office-feature img { position: absolute; inset: 0; object-fit: cover; object-position: center 38%; }
.office-feature::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(13,23,39,.96) 0%, rgba(13,23,39,.84) 35%, rgba(13,23,39,.28) 70%, rgba(13,23,39,.08) 100%); }
.office-feature .container { position: relative; z-index: 2; min-height: 680px; display: flex; align-items: center; }
.office-copy { max-width: 550px; padding: 100px 0; color: var(--text-light); }
.office-copy p { color: #acb8c8; }
.office-copy .button { margin-top: 20px; }

.profile-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.profile-media { position: relative; }
.profile-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 24%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.profile-media::after { position: absolute; right: -22px; bottom: -22px; z-index: -1; width: 54%; height: 42%; border: 1px solid var(--gold); border-radius: var(--radius); content: ""; opacity: .45; }
.profile-copy .section-title { font-size: clamp(36px, 4.2vw, 52px); }
.profile-copy p { color: var(--muted-dark); }
.credentials { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.credentials li { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.credentials strong { font-weight: 600; }
.credentials span { color: var(--muted-dark); font-size: 14px; text-align: right; }

.faq { margin-top: 50px; border-top: 1px solid var(--line-light); }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary { position: relative; padding: 24px 50px 24px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(20px, 2vw, 24px); font-weight: 400; line-height: 1.4; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; right: 8px; top: 22px; color: var(--gold); content: "+"; font-family: var(--sans); font-size: 26px; font-weight: 300; }
.faq details[open] summary::after { content: "–"; }
.faq p { max-width: 850px; margin: -4px 0 24px; color: var(--muted-dark); }

.cta-section { position: relative; overflow: hidden; background: var(--ink); color: var(--text-light); }
.cta-section::before { position: absolute; top: -130px; right: -80px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(183,145,88,.18), transparent 66%); content: ""; }
.cta-grid { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 50px; align-items: end; }
.cta-grid p { max-width: 730px; color: var(--muted-light); }
.cta-actions { display: flex; justify-content: flex-end; }

.page-hero { padding: 170px 0 92px; background: var(--ink); color: var(--text-light); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.page-hero p { color: var(--muted-light); }
.page-hero-media img { width: 100%; max-height: 560px; object-fit: cover; object-position: center 22%; border-radius: var(--radius-lg); }
.breadcrumbs { margin-bottom: 22px; color: var(--muted-light); font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.content-prose { max-width: 790px; }
.content-prose h2 { margin: 54px 0 18px; font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); font-weight: 350; line-height: 1.2; }
.content-prose h3 { margin: 36px 0 12px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.content-prose p, .content-prose li { color: var(--muted-dark); }
.content-prose a { color: #7e633c; }
.content-prose ul { padding-left: 22px; }
.callout { margin: 36px 0; padding: 26px 28px; border-left: 3px solid var(--gold); background: var(--paper-2); }
.callout p { margin: 0; color: var(--text-dark); }

.gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 50px; }
.gallery img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: var(--radius); }
.gallery img:first-child { object-position: center 40%; }
.gallery img:last-child { object-position: center; }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(44px, 8vw, 100px); align-items: start; }
.contact-card { padding: 34px; border-radius: var(--radius); background: var(--ink); color: var(--text-light); }
.contact-card h2 { margin: 0 0 18px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.contact-card p { color: var(--muted-light); }
.contact-list { margin: 30px 0 0; padding: 0; list-style: none; }
.contact-list li { padding: 16px 0; border-top: 1px solid var(--line-dark); }
.contact-list strong { display: block; color: var(--gold-soft); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.contact-list span, .contact-list a { color: var(--text-light); text-decoration: none; }
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line-light); border-radius: 8px; background: rgba(255,255,255,.55); color: var(--text-dark); outline: none; transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(183,145,88,.13); }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--muted-dark); font-size: 13px; }
.checkbox input { margin-top: 5px; }
.hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }

.site-footer { padding: 70px 0 28px; background: #09111e; color: var(--text-light); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 50px; }
.footer-brand p { max-width: 440px; color: var(--muted-light); font-size: 14px; }
.footer-title { margin: 0 0 16px; color: var(--gold-soft); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 10px 0; }
.footer-links a { color: #c7d0dc; font-size: 14px; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: #8493a7; font-size: 12px; }

.mobile-dock { position: fixed; right: 14px; bottom: 14px; left: 14px; z-index: 90; display: none; transform: translateY(120px); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.mobile-dock.visible { transform: translateY(0); opacity: 1; }
.mobile-dock .button { width: 100%; box-shadow: 0 18px 45px rgba(0,0,0,.28); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav { gap: 18px; }
  .nav a { font-size: 12px; }
  .hero-media { width: 54%; }
  .hero::before { background: linear-gradient(90deg, rgba(13,23,39,1) 0%, rgba(13,23,39,.98) 50%, rgba(13,23,39,.42) 78%, rgba(13,23,39,.28) 100%); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 78px; }
  .container { width: min(calc(100% - 32px), var(--wrap)); }
  .header-inner { height: 74px; }
  .brand-copy small { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 74px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 18px 100px;
    background: rgba(13,23,39,.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.nav-open .nav { opacity: 1; pointer-events: auto; transform: none; }
  .nav a { padding: 17px 10px !important; border-bottom: 1px solid var(--line-dark); font-size: 16px; }
  .nav a::after { display: none; }
  .nav-cta { margin-top: 16px; border-radius: 8px; text-align: center; }

  .hero { min-height: 940px; }
  .hero-media { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; }
  .hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(13,23,39,.12) 0%, rgba(13,23,39,.30) 28%, rgba(13,23,39,.92) 57%, rgba(13,23,39,1) 100%); }
  .hero::before { background: linear-gradient(90deg, rgba(13,23,39,.52), rgba(13,23,39,.08) 75%), radial-gradient(circle at 20% 20%, rgba(183,145,88,.13), transparent 32%); }
  .hero-grid { min-height: 940px; grid-template-columns: 1fr; align-items: start; }
  .hero-copy { max-width: 640px; padding: 300px 0 72px; }
  .hero-caption { display: none; }
  .display { font-size: clamp(42px, 12vw, 64px); }

  .quote-layout, .service-intro, .profile-grid, .page-hero-grid, .contact-layout, .cta-grid { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .card-grid { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .info-card h3 { margin-top: 28px; }
  .service-list { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 56px 1fr; }
  .timeline-item p { grid-column: 2; }
  .office-feature, .office-feature .container { min-height: 630px; }
  .office-feature::after { background: linear-gradient(180deg, rgba(13,23,39,.2) 0%, rgba(13,23,39,.93) 70%, rgba(13,23,39,1) 100%); }
  .office-feature .container { align-items: end; }
  .office-copy { padding: 280px 0 70px; }
  .profile-grid { gap: 54px; }
  .profile-media { max-width: 580px; }
  .cta-actions { justify-content: flex-start; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; padding-bottom: 78px; }
  .section { padding: 82px 0; }
  .eyebrow { font-size: 10px; letter-spacing: .15em; }
  .eyebrow::before { width: 26px; }
  .hero-media { height: 430px; }
  .hero-media img { object-position: center 20%; }
  .hero-copy .lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { display: grid; gap: 9px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .trust-item:last-child { border-bottom: 0; }
  .eligibility { grid-template-columns: 1fr; }
  .service-list { gap: 0; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 16px; }
  .office-feature img { object-position: 56% 38%; }
  .credentials li { grid-template-columns: 1fr; gap: 3px; }
  .credentials span { text-align: left; }
  .page-hero { padding: 132px 0 72px; }
  .page-hero-media img { max-height: 460px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-dock { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 620px) {
  .hero { min-height: 930px; }
  .hero-grid { min-height: 930px; }
  .hero-copy { padding-top: 282px; }
  .hero-media { height: 100%; }
  .hero-media img { object-position: 58% 10%; }
}
