/* ============================================================
   Blues Highway Benefits — "Delta Horizon" design system
   Brand palette per LOGO-SPEC-R2 (binding):
   deep navy #14263D · warm cream #F5ECDC · muted highway gold #C4922E
   Derived supporting tones (tints/shades of the brand three) carry
   the atmosphere; no foreign hues are introduced.
   ============================================================ */

:root {
  --navy: #14263d;
  --navy-deep: #0c1830;      /* shade of navy — dusk sky depth */
  --navy-soft: #1d3550;      /* lifted navy — card fields on dark */
  --cream: #f5ecdc;
  --cream-deep: #eadfc8;     /* shade of cream — quiet alt ground */
  --paper: #fdfaf3;          /* lightened cream — card paper */
  --gold: #c4922e;
  --gold-bright: #e0b34f;    /* lit gold — horizon glow */
  --gold-deep: #9a7420;      /* shaded gold — hover, small text on cream */
  --gold-soft: #e3c077;
  --ink: #202634;
  --ink-soft: #4a5262;
  --line: rgba(20, 38, 61, 0.14);
  --line-strong: rgba(20, 38, 61, 0.28);
  --line-cream: rgba(245, 236, 220, 0.22);
  --shadow-card: 0 1px 2px rgba(12, 24, 48, 0.05), 0 10px 30px -12px rgba(12, 24, 48, 0.18);
  --shadow-lift: 0 2px 4px rgba(12, 24, 48, 0.06), 0 18px 44px -14px rgba(12, 24, 48, 0.28);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --measure: 74rem;
}

* { box-sizing: border-box; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  color-scheme: light;
}

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

body {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.66;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 48rem) { .wrap { padding: 0 2rem; } }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  text-wrap: balance;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 3.9rem); margin: 0 0 1.1rem; }
h2 { font-size: clamp(1.65rem, 3.1vw, 2.35rem); margin: 0 0 1rem; }
h3 { font-size: 1.22rem; line-height: 1.25; }

p { margin: 0 0 1rem; }

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--gold-deep); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn-primary:focus-visible, .nav-cta:focus-visible { outline-color: var(--cream); }

::selection { background: var(--gold); color: var(--navy-deep); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 0.8rem 1.4rem;
  z-index: 200;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 236, 220, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  /* slim highway-gold datum line under the header */
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 55%, var(--gold) 100%);
  opacity: 0.9;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
}
@media (min-width: 48rem) { .header-inner { padding: 0.7rem 2rem; } }

.brand { display: flex; align-items: center; text-decoration: none; line-height: 0; }
.brand-logo { width: 196px; height: 60px; object-fit: contain; display: block; }
.brand-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Nav */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1.5px solid var(--line-strong);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(196, 146, 46, 0.08); }
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  position: relative;
  content: "";
}
.nav-toggle-lines::before { position: absolute; top: -5px; }
.nav-toggle-lines::after { position: absolute; top: 5px; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
  flex-wrap: wrap;
}
.nav-list a {
  color: var(--navy);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 550;
  padding: 0.4rem 0.1rem;
  position: relative;
}
.nav-list a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.nav-list a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 2px 10px -4px rgba(196, 146, 46, 0.7);
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* ============================================================
   HERO — layered Delta horizon scene (pure CSS/SVG)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--cream);
  isolation: isolate;
}
.hero-scene { position: absolute; inset: 0; z-index: -1; }

/* Dusk sky: navy depth easing toward a warm band low on the horizon */
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 72% 96%, rgba(196, 146, 46, 0.30) 0%, rgba(196, 146, 46, 0.10) 32%, rgba(196, 146, 46, 0) 58%),
    linear-gradient(180deg, #0a1425 0%, #0e1c33 34%, #16294a 58%, #1d3356 74%, #24406a 88%, #2a4a76 100%);
}
/* Warm light rising from the horizon line */
.hero-light {
  position: absolute; inset: 0;
  background:
    radial-gradient(46% 34% at 72% 88%, rgba(224, 179, 79, 0.72) 0%, rgba(224, 179, 79, 0.26) 46%, rgba(224, 179, 79, 0) 74%),
    linear-gradient(0deg, rgba(224, 179, 79, 0.16) 0%, rgba(224, 179, 79, 0) 30%);
  mix-blend-mode: screen;
}
/* River contour lines drifting through the lower field */
.hero-river { position: absolute; inset: 0; width: 100%; height: 100%; }
.river-line {
  stroke: rgba(224, 179, 79, 0.55);
  stroke-width: 1.8;
}
.river-line-2 { stroke: rgba(245, 236, 220, 0.26); stroke-width: 1.3; }
/* Highway ribbon climbing to a gold horizon — echoes the shield device */
.hero-road {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: min(78%, 640px);
  width: 100%;
}
.road-ribbon {
  fill: rgba(245, 236, 220, 0.13);
  stroke: rgba(245, 236, 220, 0.5);
  stroke-width: 1.6;
}
.road-horizon {
  stroke: var(--gold-bright);
  stroke-width: 5;
  stroke-linecap: butt;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(224, 179, 79, 0.6));
}
/* Flat field silhouettes along the bottom edge */
.hero-fields {
  position: absolute; inset: 0;
  background:
    linear-gradient(177deg, rgba(10, 20, 37, 0) 82%, rgba(8, 16, 30, 0.55) 88%, rgba(8, 16, 30, 0.9) 100%),
    linear-gradient(183deg, rgba(10, 20, 37, 0) 88%, rgba(6, 12, 24, 0.85) 95%, #060c18 100%);
}
/* Film grain — local SVG turbulence, no external asset */
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.34'/%3E%3C/svg%3E");
}

/* Editorial hero grid: copy left, floating office card right */
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem 4rem;
  align-items: end;
  padding-top: clamp(4.5rem, 9vw, 8rem);
  padding-bottom: clamp(6.5rem, 12vw, 10.5rem);
}
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin: 0 0 1.3rem;
}
.hero h1 { color: #fdfaf3; max-width: 19ch; }
.hero .lede {
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  max-width: 46ch;
  color: rgba(245, 236, 220, 0.92);
}
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.hero-note {
  font-size: 0.95rem;
  color: var(--gold-soft);
  font-style: italic;
  margin: 0;
  max-width: 24ch;
}

/* Editorial photo panel + floating office card — architectural depth against the sky */
.hero-aside { display: flex; flex-direction: column; align-items: flex-end; gap: 1.7rem; }
.hero-photo {
  position: relative;
  width: min(100%, 32rem);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(196, 146, 46, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(245, 236, 220, 0.22),
    10px 12px 0 -7px rgba(234, 223, 200, 0.42),
    var(--shadow-lift);
  transform: rotate(0.4deg);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  object-position: 50% 40%;
}
.hero-card {
  background: linear-gradient(160deg, rgba(245, 236, 220, 0.97), rgba(234, 223, 200, 0.94));
  color: var(--ink);
  border-radius: 14px;
  padding: 1.7rem 1.8rem 1.5rem;
  max-width: 21rem;
  box-shadow: var(--shadow-lift), inset 0 0 0 1px rgba(20, 38, 61, 0.10);
  border-top: 4px solid var(--gold);
  transform: rotate(0.4deg);
}
.hero-card-kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 0.55rem;
}
.hero-card-address {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.hero-card-rule {
  height: 1px;
  background: var(--line-strong);
  margin: 0 0 0.9rem;
}
.hero-card-note { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* Gold horizon band transitioning hero -> content */
.hero-horizon-band {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 45%, var(--gold) 75%, var(--gold-deep));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.85rem 1.7rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  min-height: 3rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 18px -6px rgba(196, 146, 46, 0.65);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(196, 146, 46, 0.08); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.6rem, 7vw, 6rem) 0; background: var(--paper); position: relative; }
.section-head { max-width: 44rem; margin-bottom: 2.6rem; }
.section-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 0.8rem;
}
.section-lede { font-size: 1.1rem; color: var(--ink-soft); margin: 0; }

/* Situations cards — refined, quiet architecture */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.7rem 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(196, 146, 46, 0.5);
}
.card-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(196, 146, 46, 0.32);
  display: block;
  margin-bottom: 0.7rem;
}
.card h3 { margin: 0 0 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.99rem; margin-bottom: 1.1rem; }
.card-link {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.15rem;
}
.card-link:hover { color: var(--gold-deep); }

/* Process — navy band, road feels like it passes through */
.section-process {
  background:
    radial-gradient(90% 60% at 20% 110%, rgba(196, 146, 46, 0.14) 0%, rgba(196, 146, 46, 0) 55%),
    linear-gradient(180deg, var(--navy-deep), var(--navy) 60%, #16294a);
  color: var(--cream);
}
.section-head-inverse h2 { color: #fdfaf3; }
.section-head-inverse .section-lede { color: rgba(245, 236, 220, 0.82); }
.section-head-inverse .section-eyebrow { color: var(--gold-soft); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(245, 236, 220, 0.06);
  border: 1px solid rgba(245, 236, 220, 0.16);
  border-radius: 14px;
  padding: 1.9rem 1.6rem 1.5rem;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.step-num {
  display: inline-flex;
  width: 2.7rem;
  height: 2.7rem;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 50%;
  margin-bottom: 0.9rem;
  box-shadow: 0 0 0 5px rgba(196, 146, 46, 0.18);
}
.step h3 { color: #fdfaf3; margin: 0 0 0.45rem; }
.step p { color: rgba(245, 236, 220, 0.85); font-size: 0.98rem; margin: 0; }

/* Services — asymmetric editorial split */
.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 2.5rem 4.5rem;
  align-items: start;
}
.services-intro { position: sticky; top: 8rem; }
.services-intro .btn { margin-top: 0.6rem; }
.service-rows { display: grid; gap: 0; }
.service-row {
  padding: 1.7rem 0 1.6rem 1.6rem;
  border-left: 3px solid var(--gold);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service-row:first-child { padding-top: 0.4rem; }
.service-row:last-child { border-bottom: 0; }
.service-row::before {
  content: "";
  position: absolute;
  left: -7px; top: 2.1rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--gold);
}
.service-row:first-child::before { top: 0.45rem; }
.service-row h3 { margin: 0 0 0.4rem; }
.service-row p { color: var(--ink-soft); margin: 0; }

/* Why — cream ground, editorial copy + portrait imagery, pillars as vertical statements */
.section-why { background: var(--cream-deep); }
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem 4rem;
  align-items: stretch;
}
.why-col { display: flex; flex-direction: column; }
.why-copy p { max-width: 56ch; }
.pillars {
  list-style: none;
  margin: 1.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
/* Delta couple — supporting editorial imagery (representative brand photography) */
.why-media {
  position: relative;
  min-height: 30rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196, 146, 46, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(245, 236, 220, 0.35),
    var(--shadow-lift);
}
.why-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}
.pillars li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-card);
}
.pillars strong {
  display: block;
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.pillars span { color: var(--ink-soft); font-size: 0.96rem; }

/* About — shield monogram beside copy */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: 2.5rem 4rem;
  align-items: center;
}
.about-mark {
  text-align: center;
  background: var(--navy);
  border-radius: 16px;
  padding: 2.6rem 1.5rem 2.2rem;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.about-mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.about-shield { width: 96px; height: auto; margin-bottom: 1rem; }
.about-initials {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fdfaf3;
  margin: 0 0 0.15rem;
}
.about-role {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin: 0;
}
.credentials {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.credentials li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
}
.credentials abbr {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--gold-deep);
  text-decoration: none;
  min-width: 4.4rem;
}
.credentials span { color: var(--ink); font-size: 0.98rem; }

/* Service area — county chips */
.section-area { background: var(--paper); }
.area-layout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-card);
}
.counties {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.counties li {
  font-family: var(--sans);
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
}
.area-secondary { margin: 0; color: var(--ink-soft); }

/* Contact — navy footer-adjacent band with paper form */
.section-contact {
  background:
    radial-gradient(70% 55% at 85% 0%, rgba(196, 146, 46, 0.12) 0%, rgba(196, 146, 46, 0) 55%),
    linear-gradient(180deg, #16294a, var(--navy-deep));
  color: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem 4.5rem;
  align-items: start;
}
.contact-intro h2 { color: #fdfaf3; }
.contact-intro > p { color: rgba(245, 236, 220, 0.86); max-width: 44ch; }
.contact-intro .section-eyebrow { color: var(--gold-soft); }
.contact-facts {
  margin-top: 1.8rem;
  border-top: 1px solid var(--line-cream);
  padding-top: 1.4rem;
  display: grid;
  gap: 1.1rem;
}
.contact-facts p { margin: 0; color: rgba(245, 236, 220, 0.9); font-size: 0.98rem; }
.contact-facts strong { color: var(--gold-soft); font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; }

.appointment-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 2rem 2rem 1.7rem;
  box-shadow: var(--shadow-lift);
  border-top: 4px solid var(--gold);
}
.field { margin-bottom: 1.15rem; }
label {
  display: block;
  font-family: var(--sans);
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 146, 46, 0.22);
  outline: none;
}
.form-note { font-size: 0.86rem; color: #3d4350; }
.form-response { font-weight: 600; color: var(--navy); margin: 0.9rem 0 0; }
.form-response.error { color: #8c2f1b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 0.95rem;
}
.footer-horizon {
  height: 6px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 45%, var(--gold) 75%, var(--gold-deep));
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem 3rem;
  padding-top: 2.6rem;
  padding-bottom: 1.6rem;
  align-items: start;
}
.footer-brand { display: flex; gap: 1.1rem; align-items: flex-start; }
.footer-shield { width: 52px; flex: none; margin-top: 0.15rem; }
.footer-brand p { margin: 0; color: rgba(245, 236, 220, 0.88); }
.footer-brand strong { color: #fdfaf3; }
.footer-nav {
  display: grid;
  gap: 0.5rem;
  justify-items: start;
  font-family: var(--sans);
  font-size: 0.92rem;
}
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 0.2em; }
.disclosure {
  border-top: 1px solid var(--line-cream);
  padding-top: 1.2rem;
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  color: rgba(245, 236, 220, 0.82);
}
.fine { font-size: 0.8rem; color: rgba(245, 236, 220, 0.6); margin-bottom: 2.4rem; }

/* ---------- Scroll reveal (JS-gated; no-JS shows everything) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */

/* Hero horizon light shifts left on narrow screens so it reads behind the card */
@media (max-width: 1079px) {
  .hero-light {
    background:
      radial-gradient(70% 30% at 50% 92%, rgba(224, 179, 79, 0.66) 0%, rgba(224, 179, 79, 0.22) 48%, rgba(224, 179, 79, 0) 76%),
      linear-gradient(0deg, rgba(224, 179, 79, 0.14) 0%, rgba(224, 179, 79, 0) 30%);
  }
  .hero-grid { grid-template-columns: 1fr; align-items: start; gap: 2.6rem; }
  .hero-aside { align-items: flex-start; }
  .hero-photo { transform: none; }
  .hero-card { transform: none; }
  .services-grid, .why-grid, .about-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .services-intro { position: static; }
  .about-mark { max-width: 22rem; }
  .why-media { min-height: 26rem; }
}
@media (min-width: 721px) and (max-width: 1079px) {
  .brand-logo { width: 172px; height: 53px; }
  .nav-list { gap: 0.25rem 0.9rem; }
  .nav-list a { font-size: 0.86rem; }
  .nav-cta { padding: 0.5rem 0.95rem; }
}

/* Mobile */
@media (max-width: 720px) {
  html { scroll-padding-top: 5.5rem; }
  .header-inner { padding: 0.55rem 1.1rem; }
  .brand-logo { width: 150px; height: 46px; }
  .nav-toggle { display: inline-flex; }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.1rem;
    padding-top: 0.7rem;
    margin-top: 0.6rem;
    border-top: 1px solid var(--line);
  }
  .nav-list.open { display: flex; }
  .nav-list a {
    display: block;
    font-size: 1.02rem;
    padding: 0.75rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-list li:last-child a { border-bottom: 0; }
  .nav-cta { text-align: center; margin-top: 0.7rem; padding: 0.8rem 1rem; }

  .hero-grid {
    padding-top: 3.4rem;
    padding-bottom: 5.5rem;
    gap: 2.4rem;
  }
  .hero h1 { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-card { max-width: 100%; }
  .why-media { min-height: 22rem; }

  .section { padding: 3rem 0; }
  .card { padding: 1.7rem 1.4rem 1.4rem; }
  .appointment-form { padding: 1.6rem 1.3rem 1.4rem; }
  .area-layout { padding: 1.5rem 1.3rem; }
  .counties { flex-direction: column; align-items: flex-start; }
  .footer-brand { flex-direction: column; gap: 0.8rem; }
  .credentials li { flex-direction: column; gap: 0.15rem; }
}

/* Very small screens */
@media (max-width: 380px) {
  h1 { font-size: 2.05rem; }
  .btn { width: 100%; text-align: center; }
  .hero-actions { width: 100%; }
}
