/* ============================================================================
   Compass Estates — Duncan Ure homepage rework
   Navy + gold, Ivar Soft + Instrument Sans, photography-led.
   ========================================================================== */

@font-face {
  font-family: 'Ivar Soft';
  src: url('/fonts/IvarSoft-Medium.otf') format('opentype');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette (canonical, from live build) */
  --navy: #363c52;
  --navy-deep: #252a3a;
  --navy-900: #1c2230;
  --navy-soft: #4a5168;
  --navy-line: #474e66;
  --navy-dark: #252a3a;
  --navy-light: #4a5168;
  --gold: #e0b940;
  --gold-dark: #c9a430;
  --gold-ink: #b8952a;
  --off-white: #f2f3f0;
  --paper: #f2f3f0;
  --paper-warm: #faf9f5;
  --white: #ffffff;
  --line: #e3e3df;
  --fg: #252a3a;
  --fg-muted: #5a6178;
  --fg-subtle: #7b8197;
  --on-ink: #eef0f2;
  --on-ink-muted: #aab0c0;
  --hairline-gold: rgba(184,149,42,0.45);

  --font-display: 'Ivar Soft', Georgia, 'Times New Roman', serif;
  --font-sans: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --track-widest: 0.26em;
  --track-wide: 0.14em;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 260ms;
  --dur-slow: 600ms;
  --max-w: 1200px;
  --max-w-prose: 720px;
  --shadow-sm: 0 2px 8px rgba(28,34,48,0.06);
  --shadow-md: 0 10px 30px rgba(28,34,48,0.10), 0 2px 8px rgba(28,34,48,0.06);
  --shadow-lg: 0 28px 60px rgba(28,34,48,0.18), 0 8px 18px rgba(28,34,48,0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ---- type primitives ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--gold-ink);
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--hairline-gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: var(--hairline-gold); }
.eyebrow.on-ink { color: var(--gold); }
.eyebrow.on-ink::before, .eyebrow.on-ink::after { background: rgba(224,185,64,0.5); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--navy-deep);
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--navy); }
.display.on-ink { color: var(--white); }
.display.on-ink em { color: var(--gold); }

.section-title { font-size: clamp(2rem, 3.6vw, 3rem); }
.lead {
  font-size: 1.12rem;
  line-height: 1.62;
  color: var(--fg-muted);
  margin: 18px 0 0;
  text-wrap: pretty;
}
.lead.on-ink { color: var(--on-ink-muted); }

/* gold hairline rule under section heads */
.rule-gold { width: 54px; height: 2px; background: var(--gold); border: 0; margin: 22px 0 0; }
.rule-gold.center { margin-left: auto; margin-right: auto; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-navy { background: var(--navy-deep); color: var(--off-white); }
.btn-navy:hover { background: var(--navy-900); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; }
.btn-ghost-navy { background: transparent; color: var(--navy-deep); border-color: rgba(54,60,82,0.35); }
.btn-ghost-navy:hover { background: rgba(54,60,82,0.05); border-color: var(--navy); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

/* ============================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; flex-direction: column; gap: 7px; text-decoration: none; }
.nav__logo {
  height: 21px; width: auto; display: block;
  transition: filter var(--dur) var(--ease-out);
  filter: drop-shadow(0 1px 10px rgba(20,24,34,0.30));
}
.nav__kicker {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--on-ink);
  transition: color var(--dur) var(--ease-out); position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__phone { text-decoration: none; font-weight: 700; font-size: 0.98rem; color: var(--white); white-space: nowrap; }

/* scrolled state */
.nav.scrolled { background: var(--navy-deep); box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.18); }
.nav.scrolled .nav__inner { padding-top: 12px; padding-bottom: 12px; }

/* nav on light sections (toggled by JS when over light bg) */
.nav.on-light { background: rgba(250,249,245,0.92); backdrop-filter: blur(8px); border-bottom-color: var(--line); }
.nav.on-light .nav__link, .nav.on-light .nav__phone { color: var(--navy-deep); }
.nav.on-light .nav__logo { filter: brightness(0) saturate(100%) invert(18%) sepia(13%) saturate(1100%) hue-rotate(190deg) brightness(96%); }

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('/images/strip-1-aerial-loch.jpg');
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,34,48,0.55) 0%, rgba(28,34,48,0.05) 26%, rgba(28,34,48,0.12) 52%, rgba(28,34,48,0.82) 100%),
    linear-gradient(90deg, rgba(28,34,48,0.55) 0%, rgba(28,34,48,0) 60%);
}
.hero__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 28px clamp(56px, 9vh, 110px);
}
.hero__content { max-width: 860px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(20,24,34,0.35);
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 26px 0 0;
  max-width: 620px;
  text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 40px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.hero__meta-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

/* scroll cue */
.hero__cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px; z-index: 2;
}
.hero__cue span { width: 3px; height: 8px; border-radius: 2px; background: rgba(255,255,255,0.8); animation: cue 1.8s var(--ease-out) infinite; }
@keyframes cue { 0%{opacity:0;transform:translateY(-3px);} 40%{opacity:1;} 80%{opacity:0;transform:translateY(7px);} 100%{opacity:0;} }

/* ============================================================================
   GENERIC SECTION
   ========================================================================== */
section { position: relative; }
.band { padding: clamp(64px, 9vw, 128px) 0; position: relative; overflow: hidden; }
.band--paper { background: var(--paper); }
.band--white { background: var(--white); }
.band--navy { background: var(--navy-deep); color: var(--on-ink); }
.band--navy .display { color: #fff; }
.band > .wrap { position: relative; z-index: 1; }

/* compass-ray (sunburst) brand flourish */
.band--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/brand-starburst-navy.png') no-repeat;
  background-position: center center;
  background-size: max(155vw, 2000px) auto;
  -webkit-mask-image: radial-gradient(ellipse 100% 92% at 50% 50%, #000 46%, transparent 92%);
  mask-image: radial-gradient(ellipse 100% 92% at 50% 50%, #000 46%, transparent 92%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.band--rays-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/brand-starburst-light.png') no-repeat;
  background-position: center center;
  background-size: max(155vw, 2000px) auto;
  -webkit-mask-image: radial-gradient(ellipse 100% 92% at 50% 50%, #000 46%, transparent 92%);
  mask-image: radial-gradient(ellipse 100% 92% at 50% 50%, #000 46%, transparent 92%);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.sec-head { max-width: 760px; }
.sec-head.center { margin: 0 auto; text-align: center; }

/* ============================================================================
   INCLUDES — photo-led alternating rows (show, don't list)
   ========================================================================== */
.includes { margin-top: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; gap: clamp(36px, 5vw, 64px); }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media {
  position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__num {
  font-family: var(--font-display); font-style: italic; font-size: 2.4rem; line-height: 1;
  color: var(--gold-ink); margin: 0 0 14px;
}
.feature__title { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: var(--navy-deep); margin: 0 0 12px; }
.feature__body { color: var(--fg-muted); margin: 0; font-size: 1.04rem; }
.feature__tag {
  display: inline-block; margin-top: 18px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--gold-ink);
  border: 1px solid var(--hairline-gold); border-radius: 999px; padding: 6px 14px;
}

/* ============================================================================
   MARKETING SHOWCASE (navy, big cinematic still)
   ========================================================================== */
.showcase__media {
  position: relative; margin-top: clamp(36px, 5vw, 56px); border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 16 / 8; cursor: pointer;
}
.showcase__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.showcase__media:hover img { transform: scale(1.03); }
.showcase__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,34,48,0.12), rgba(28,34,48,0.42));
}
.play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.showcase__media:hover .play { transform: translate(-50%,-50%) scale(1.08); background: #fff; }
.play::before {
  content: ""; width: 0; height: 0; margin-left: 6px;
  border-left: 22px solid var(--navy-deep);
  border-top: 14px solid transparent; border-bottom: 14px solid transparent;
}
.showcase__cap {
  position: absolute; left: 24px; bottom: 22px; z-index: 2; color: #fff;
  font-size: 0.86rem; letter-spacing: var(--track-wide); text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.showcase__cap .pill { background: var(--gold); color: var(--navy-deep); padding: 5px 12px; border-radius: 4px; }

/* ============================================================================
   WHY DIFFERENT — 2x2 on paper
   ========================================================================== */
.why-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.why-card { background: var(--paper-warm); padding: clamp(28px, 3vw, 44px); }
.why-card__ico {
  width: 46px; height: 46px; border-radius: 8px; background: rgba(224,185,64,0.14);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.why-card__ico svg { width: 22px; height: 22px; stroke: var(--gold-ink); }
.why-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--navy-deep); margin: 0 0 10px; }
.why-card p { margin: 0; color: var(--fg-muted); font-size: 1.02rem; }

/* ============================================================================
   RECENT WORK strip (navy)
   ========================================================================== */
.work-grid { margin-top: clamp(36px, 4vw, 56px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card { border-radius: 8px; overflow: hidden; background: var(--navy); border: 1px solid var(--navy-line); }
.work-card__img { aspect-ratio: 3 / 2; overflow: hidden; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.work-card:hover .work-card__img img { transform: scale(1.05); }
.work-card__body { padding: 20px 22px 24px; }
.work-card__loc { font-family: var(--font-display); font-size: 1.25rem; color: #fff; margin: 0 0 4px; }
.work-card__meta { font-size: 0.9rem; color: var(--on-ink-muted); margin: 0; }
.work-note { margin-top: 30px; font-size: 0.96rem; color: var(--on-ink-muted); text-align: center; }

/* ============================================================================
   COVERAGE MAP (ported from standalone)
   ========================================================================== */
.map-figure {
  position: relative; margin: clamp(36px,4vw,56px) 0 0; background: var(--paper-warm);
  border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-md);
  padding: clamp(12px, 2.4vw, 28px); overflow: hidden;
}
.map-figure::after {
  content: ""; position: absolute; right: -60px; bottom: -70px; width: 320px; height: 320px;
  background: url('/images/compass-symbol-gold.png') center / contain no-repeat; opacity: 0.05; pointer-events: none;
}
.map-svg { display: block; width: 100%; height: auto; overflow: visible; }
.land { fill: var(--navy); stroke: var(--gold); stroke-width: 1.25; stroke-linejoin: round; paint-order: stroke; }
.road { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.road-primary { stroke: var(--gold); stroke-width: 2.4; opacity: 0.95; }
.road-secondary { stroke: rgba(242,243,240,0.40); stroke-width: 1.5; }
.road-label { font-family: var(--font-sans); font-weight: 700; font-size: 11px; letter-spacing: 0.06em; text-anchor: middle; paint-order: stroke; stroke: rgba(18,22,32,0.78); stroke-width: 3.2px; stroke-linejoin: round; }
.road-label.primary-l { fill: var(--gold); }
.road-label.secondary-l { fill: rgba(242,243,240,0.78); }
.sea-label { font-family: var(--font-display); font-style: italic; fill: var(--navy); opacity: 0.30; letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; }
.town { cursor: pointer; }
.town:focus { outline: none; }
.pin-ring { fill: none; stroke: var(--gold); stroke-width: 1.5; opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0.4); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.pin-dot { fill: var(--gold); stroke: var(--navy-deep); stroke-width: 1.4; transform-box: fill-box; transform-origin: center; transition: transform var(--dur) var(--ease-out), filter var(--dur) var(--ease-out); }
.town-label { font-family: var(--font-sans); font-weight: 600; font-size: 15px; fill: var(--gold); paint-order: stroke; stroke: rgba(16,20,28,0.82); stroke-width: 3.6px; stroke-linejoin: round; opacity: 0; transform-box: fill-box; transform: scale(0.88); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); pointer-events: none; }
.label-start { text-anchor: start; transform-origin: left center; }
.label-end { text-anchor: end; transform-origin: right center; }
.label-mid { text-anchor: middle; transform-origin: center center; }
.town:hover .town-label, .town:focus-visible .town-label { opacity: 1; transform: scale(1); }
.town:hover .pin-dot, .town:focus-visible .pin-dot { transform: scale(1.4); filter: drop-shadow(0 0 6px rgba(224,185,64,0.95)); }
.town:hover .pin-ring, .town:focus-visible .pin-ring { opacity: 1; transform: scale(1); }
.map-legend { display: flex; flex-wrap: wrap; gap: 14px 24px; justify-content: center; align-items: center; margin: 22px auto 0; }
.leg { display: flex; align-items: center; gap: 9px; font-size: 0.8125rem; color: var(--fg-muted); }
.sw-pin { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(224,185,64,0.22); flex: none; }
.sw-road { width: 24px; border-top: 2.5px solid var(--gold); flex: none; }

/* ============================================================================
   CLOSING CTA (photo + scrim)
   ========================================================================== */
.cta {
  position: relative; color: #fff; text-align: center;
  padding: clamp(80px, 12vw, 150px) 0; overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; background: url('/images/strip-1-aerial-loch.jpg') center 30% / cover; }
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,34,48,0.78), rgba(28,34,48,0.62)); }
.cta::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: min(900px, 130%); aspect-ratio: 1/1; transform: translate(-50%,-50%);
  background: url('/images/brand-starburst-navy.png') center / contain no-repeat;
  -webkit-mask-image: radial-gradient(circle, #000 18%, transparent 62%);
  mask-image: radial-gradient(circle, #000 18%, transparent 62%);
  opacity: 0.32; mix-blend-mode: screen; pointer-events: none;
}
.cta__inner { position: relative; max-width: 740px; margin: 0 auto; padding: 0 28px; z-index: 1; }
.cta h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 0; color: #fff; line-height: 1.08; }
.cta p { font-size: 1.12rem; color: rgba(255,255,255,0.88); margin: 18px 0 34px; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy-900); color: var(--on-ink-muted); padding: clamp(56px, 7vw, 88px) 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 22px; width: auto; display: block; margin-bottom: 16px; }
.footer__kicker { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 22px; }
.footer__line { margin: 0 0 8px; }
.footer__line a { color: #fff; text-decoration: none; font-weight: 600; }
.footer h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: var(--track-wide); color: var(--on-ink-muted); margin: 0 0 18px; font-weight: 600; }
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: var(--on-ink); text-decoration: none; transition: color var(--dur) var(--ease-out); }
.footer__links a:hover { color: var(--gold); }
.footer__badge { display: inline-block; border: 1px solid var(--navy-line); border-radius: 4px; padding: 8px 12px; font-size: 0.75rem; letter-spacing: 0.08em; color: var(--on-ink); }
.footer__legal { margin-top: 14px; font-size: 0.84rem; line-height: 1.6; }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--navy-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 0.84rem; }

/* ============================================================================
   SCROLL MOTION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; transform: none; }
  .hero__cue span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 920px) {
  .nav__links { display: none; }
  .feature { grid-template-columns: 1fr; gap: 22px; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .showcase__media { aspect-ratio: 16 / 11; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero__inner { padding-left: 20px; padding-right: 20px; }
  .nav__kicker { display: none; }
  .play { width: 64px; height: 64px; }
  .play::before { border-left-width: 16px; border-top-width: 10px; border-bottom-width: 10px; }
  .town-label { font-size: 17px; }
}

/* ============================================================================
   Compass Estates — town/area page components
   Loads ALONGSIDE homepage.css. Shared tokens, nav, footer, .band, .feature,
   .why-grid, .eyebrow, .display, .btn all come from homepage.css.
   ========================================================================== */

/* town pages: nav is solid navy from the top (hero is navy, not a light photo) */
.nav--solid { background: var(--navy-deep); border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ---- breadcrumb ---- */
.crumb { font-size: 0.82rem; color: var(--on-ink-muted); margin: 0 0 22px; letter-spacing: 0.02em; }
.crumb a { color: var(--on-ink-muted); text-decoration: none; transition: color var(--dur) var(--ease-out); }
.crumb a:hover { color: var(--gold); }
.crumb span { color: var(--gold); }

/* ============================================================================
   TOWN HERO — navy + starburst, faint aerial behind
   ========================================================================== */
.thero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  padding: clamp(118px, 16vh, 168px) 0 clamp(56px, 8vw, 92px);
}
.thero__photo {
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.thero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 75% 30%, rgba(54,60,82,0) 0%, rgba(37,42,58,0.6) 70%),
    linear-gradient(180deg, rgba(28,34,48,0.55), rgba(28,34,48,0.78));
}
.thero::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: max(150vw, 1900px); aspect-ratio: 1/1; transform: translate(-50%,-50%);
  background: url('/images/brand-starburst-navy.png') center / contain no-repeat;
  -webkit-mask-image: radial-gradient(ellipse 100% 92% at 50% 50%, #000 44%, transparent 90%);
  mask-image: radial-gradient(ellipse 100% 92% at 50% 50%, #000 44%, transparent 90%);
  opacity: 0.5; pointer-events: none;
}
.thero__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.thero__content { max-width: 860px; }
.thero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -0.014em;
  margin: 0; color: #fff; text-wrap: balance;
}
.thero h1 em { font-style: normal; color: var(--gold); }
.thero__sub { font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.55; color: rgba(255,255,255,0.9); margin: 24px 0 0; max-width: 640px; text-wrap: pretty; }
.thero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ============================================================================
   TRUST STRIP
   ========================================================================== */
.trust { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.06); }
.trust__row {
  max-width: var(--max-w); margin: 0 auto; padding: 20px 28px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px;
}
.trust__item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--on-ink); white-space: nowrap; }
.trust__item svg { width: 18px; height: 18px; stroke: var(--gold); flex: none; }
.trust__stars { display: inline-flex; gap: 2px; }
.trust__stars svg { width: 15px; height: 15px; fill: var(--gold); stroke: none; }
.trust__sep { width: 1px; height: 20px; background: rgba(255,255,255,0.14); }
@media (max-width: 760px) { .trust__sep { display: none; } }

/* ============================================================================
   PROSE (Selling your home in X)
   ========================================================================== */
.prose { max-width: var(--max-w-prose); }
.prose p { font-size: 1.08rem; line-height: 1.7; color: var(--fg); margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose .lead-first::first-letter { /* subtle, no drop cap clutter */ }

/* two-column intro: text + image */
.intro-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.intro-media { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.intro-media img { width: 100%; height: 100%; object-fit: cover; }
.intro-media__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px; color: #fff;
  font-size: 0.82rem; letter-spacing: 0.04em;
  background: linear-gradient(180deg, transparent, rgba(28,34,48,0.82));
}
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } .intro-media { aspect-ratio: 16/10; max-height: 420px; } }

/* ============================================================================
   LOCAL KNOWLEDGE
   ========================================================================== */
.facts { margin-top: clamp(36px, 4vw, 56px); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.fact { background: var(--paper-warm); padding: clamp(24px, 2.6vw, 34px); }
.fact__ico { width: 42px; height: 42px; border-radius: 8px; background: rgba(224,185,64,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fact__ico svg { width: 20px; height: 20px; stroke: var(--gold-ink); fill: none; }
.fact h3 { font-family: var(--font-sans); font-weight: 600; font-size: 0.74rem; letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--gold-ink); margin: 0 0 8px; }
.fact p { margin: 0; color: var(--fg); font-size: 1.02rem; line-height: 1.55; }
@media (max-width: 680px) { .facts { grid-template-columns: 1fr; } }

/* ============================================================================
   MARKET SNAPSHOT card
   ========================================================================== */
.snapshot { margin-top: clamp(34px, 4vw, 52px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.snap-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 30px 28px; box-shadow: var(--shadow-sm); }
.snap-card__label { font-size: 0.72rem; font-weight: 600; letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--fg-subtle); margin: 0 0 12px; }
.snap-card__value { font-family: var(--font-display); font-weight: 600; font-size: 2rem; line-height: 1.05; color: var(--navy-deep); margin: 0; }
.snap-card__value .pre { color: var(--gold-ink); }
.snap-card__note { font-size: 0.92rem; color: var(--fg-muted); margin: 10px 0 0; line-height: 1.5; }
.snap-foot { margin-top: 18px; font-size: 0.86rem; color: var(--fg-subtle); }
@media (max-width: 760px) { .snapshot { grid-template-columns: 1fr; max-width: 460px; } }

/* ============================================================================
   FAQ accordion
   ========================================================================== */
.faq { max-width: 820px; margin: clamp(32px,4vw,48px) auto 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; font-size: 1.12rem; color: var(--navy-deep);
  padding: 24px 44px 24px 0; position: relative; display: block;
  transition: color var(--dur) var(--ease-out);
}
.faq__q:hover { color: var(--gold-ink); }
.faq__q::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--gold-ink); border-bottom: 2px solid var(--gold-ink);
  transform: translateY(-65%) rotate(45deg); transition: transform var(--dur) var(--ease-out);
}
.faq__item[open] .faq__q::after { transform: translateY(-35%) rotate(-135deg); }
.faq__q:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.faq__a { padding: 0 44px 26px 0; color: var(--fg-muted); font-size: 1.05rem; line-height: 1.7; }
.faq__a p { margin: 0; }
/* hide native marker */
.faq__item summary { list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }

/* ============================================================================
   NEARBY AREAS
   ========================================================================== */
.nearby-grid { margin-top: clamp(34px, 4vw, 52px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.nearby-card {
  position: relative; display: block; text-decoration: none; border-radius: 8px; overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.nearby-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.nearby-card:hover img { transform: scale(1.06); }
.nearby-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,34,48,0.05) 30%, rgba(28,34,48,0.82)); }
.nearby-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px 18px; z-index: 1; }
.nearby-card__town { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin: 0 0 3px; }
.nearby-card__go { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; }
@media (max-width: 860px) { .nearby-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .nearby-grid { grid-template-columns: 1fr; } .nearby-card { aspect-ratio: 16/9; } }

/* marketing feature list reused from homepage .feature; town variant spacing */
.mini-feats { margin-top: clamp(36px,4vw,56px); display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.mini-feat { background: var(--navy); padding: clamp(26px,3vw,38px); }
.mini-feat__num { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold); margin: 0 0 10px; }
.mini-feat h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.18rem; color: #fff; margin: 0 0 8px; }
.mini-feat p { margin: 0; color: var(--on-ink-muted); font-size: 1rem; line-height: 1.55; }
@media (max-width: 680px) { .mini-feats { grid-template-columns: 1fr; } }

.town-note { margin-top: 30px; padding: 22px 26px; background: rgba(224,185,64,0.10); border: 1px solid var(--hairline-gold); border-radius: 8px; color: var(--on-ink); font-size: 1.02rem; line-height: 1.6; }
.town-note strong { color: var(--gold); font-weight: 600; }



/* ============================================================================
   PRODUCTION ADD-ONS — alias tokens + functional-page styles
   (ported so the valuation form, cookie banner, mobile nav etc. keep working
    on the mockup design system)
   ========================================================================== */
:root{
  --text:var(--fg); --text-muted:var(--fg-muted); --border:var(--line);
  --border-mid:rgba(54,60,82,0.22); --error:#dc2626; --success:#10b981;
  --r:5px; --r2:8px; --ease:var(--dur) var(--ease-out);
  --s1:.5rem; --s2:1rem; --s3:1.5rem; --s4:2rem; --s5:2.5rem; --s6:3rem; --s8:4rem; --s10:5rem; --s12:6rem;
  --max-w-sm:var(--max-w-prose);
  --wa-green:#25d366;
}
body.no-scroll{overflow:hidden;}

/* skip link + a11y */
.skip-link{position:absolute;top:-100%;left:24px;background:var(--gold);color:var(--navy-deep);font-weight:600;padding:8px 18px;z-index:999;border-radius:5px;font-size:.875rem;}
.skip-link:focus{top:12px;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* ---- NAV: hamburger + mobile menu ---- */
.nav__toggle{display:none;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:44px;height:44px;padding:10px;background:rgba(255,255,255,.10);border:0;border-radius:5px;cursor:pointer;transition:background var(--ease);}
.nav.on-light .nav__toggle{background:rgba(54,60,82,.08);}
.nav__toggle span{display:block;height:2px;width:20px;background:#fff;border-radius:2px;transition:transform var(--ease),opacity var(--ease);}
.nav.on-light .nav__toggle span{background:var(--navy-deep);}
.nav__toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav__toggle.open span:nth-child(2){opacity:0;}
.nav__toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.mobile-nav{display:none;position:fixed;inset:0;z-index:60;background:var(--navy-900);padding:96px 28px 40px;flex-direction:column;overflow-y:auto;}
.mobile-nav.open{display:flex;}
.mobile-nav a{font-family:var(--font-display);font-size:1.8rem;font-weight:600;color:#fff;border-bottom:1px solid rgba(255,255,255,.08);padding:18px 0;text-decoration:none;}
.mobile-nav a:hover{color:var(--gold);}
.mobile-nav__foot{margin-top:auto;padding-top:28px;}
.mobile-nav__foot .nav__phone{display:block;margin-bottom:16px;color:rgba(255,255,255,.7);}
@media (max-width:920px){ .nav__toggle{display:flex;} .nav__right .nav__phone{display:none;} }

/* ---- PAGE HERO for prose pages (sell/about/contact/privacy/etc.) ---- */
.phero{position:relative;background:var(--navy-deep);color:#fff;overflow:hidden;padding:clamp(120px,16vh,170px) 0 clamp(48px,7vw,80px);}
.phero::after{content:"";position:absolute;top:50%;left:50%;width:max(150vw,1900px);aspect-ratio:1/1;transform:translate(-50%,-50%);background:url('/images/brand-starburst-navy.png') center/contain no-repeat;-webkit-mask-image:radial-gradient(ellipse 100% 92% at 50% 50%,#000 44%,transparent 90%);mask-image:radial-gradient(ellipse 100% 92% at 50% 50%,#000 44%,transparent 90%);opacity:.5;pointer-events:none;}
.phero__inner{position:relative;z-index:1;max-width:var(--max-w);margin:0 auto;padding:0 28px;}
.phero h1{font-family:var(--font-display);font-weight:600;font-size:clamp(2.2rem,5vw,3.6rem);line-height:1.05;letter-spacing:-.014em;margin:0;color:#fff;text-wrap:balance;}
.phero h1 em{font-style:normal;color:var(--gold);}
.phero__sub{font-size:clamp(1.05rem,1.4vw,1.25rem);line-height:1.55;color:rgba(255,255,255,.85);margin:22px 0 0;max-width:640px;}

/* ---- PROSE (legal/long form) ---- */
.prose-page{max-width:var(--max-w-prose);}
.prose-page h2{font-family:var(--font-display);font-weight:600;font-size:1.7rem;color:var(--navy-deep);margin:44px 0 14px;}
.prose-page h3{font-family:var(--font-display);font-weight:600;font-size:1.3rem;color:var(--navy-deep);margin:30px 0 10px;}
.prose-page p{margin:0 0 18px;color:var(--fg-muted);}
.prose-page ul{margin:14px 0;padding-left:22px;list-style:disc;}
.prose-page li{margin-bottom:8px;color:var(--fg-muted);}
.prose-page strong{color:var(--navy-deep);}
.prose-page a{color:var(--gold-ink);text-decoration:underline;}

/* ---- FORMS ---- */
.form-card{background:var(--white);border:1px solid var(--line);border-radius:10px;box-shadow:var(--shadow-md);padding:clamp(28px,4vw,48px);}
.form-group{margin-bottom:22px;}
.form-group label{display:block;font-size:.9rem;font-weight:600;color:var(--navy-deep);margin-bottom:8px;}
.req{color:var(--gold-ink);margin-left:2px;} .opt{font-size:.78rem;font-weight:400;color:var(--fg-subtle);margin-left:6px;}
.form-control{width:100%;padding:14px 16px;font-family:var(--font-sans);font-size:1rem;color:var(--fg);background:var(--white);border:1.5px solid var(--line);border-radius:5px;transition:border-color var(--ease),box-shadow var(--ease);appearance:none;}
.form-control:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(224,185,64,.16);}
.form-control.is-error{border-color:var(--error);} .form-control.is-ok{border-color:var(--success);}
.field-error{display:block;font-size:.82rem;color:var(--error);margin-top:6px;min-height:1rem;}
.field-hint{display:block;font-size:.82rem;color:var(--fg-subtle);margin-top:6px;}
select.form-control{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23363C52' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;padding-right:46px;cursor:pointer;}
textarea.form-control{resize:vertical;min-height:120px;}
.radio-group{display:flex;flex-direction:column;gap:10px;}
.radio-opt{display:flex;align-items:center;gap:12px;cursor:pointer;padding:12px 16px;border:1.5px solid var(--line);border-radius:5px;transition:border-color var(--ease),background var(--ease);font-size:.95rem;}
.radio-opt input[type=radio]{position:absolute;opacity:0;pointer-events:none;}
.radio-dot{width:18px;height:18px;border-radius:50%;border:2px solid var(--line);flex:none;position:relative;transition:all var(--ease);}
.radio-opt:has(input:checked){border-color:var(--gold);background:rgba(224,185,64,.07);}
.radio-opt:has(input:checked) .radio-dot{border-color:var(--gold-dark);background:var(--gold-dark);}
.radio-opt:has(input:checked) .radio-dot::after{content:'';position:absolute;inset:3px;background:#fff;border-radius:50%;}
.form-progress{display:flex;align-items:center;gap:10px;margin-bottom:34px;}
.prog-step{display:flex;align-items:center;gap:10px;}
.prog-num{width:34px;height:34px;border-radius:50%;border:2px solid var(--line);display:flex;align-items:center;justify-content:center;font-size:.82rem;font-weight:700;color:var(--fg-subtle);transition:all var(--ease);flex:none;}
.prog-step.active .prog-num{border-color:var(--gold-dark);background:var(--gold);color:var(--navy-deep);}
.prog-step.done .prog-num{border-color:var(--success);background:var(--success);color:#fff;}
.prog-label{font-size:.78rem;font-weight:600;color:var(--fg-subtle);display:none;}
.prog-step.active .prog-label{color:var(--navy-deep);}
.prog-line{flex:1;height:2px;background:var(--line);transition:background var(--ease);}
.prog-line.done{background:var(--gold);}
.form-step{display:none;} .form-step.active{display:block;}
.step-title{font-family:var(--font-display);font-size:1.5rem;font-weight:600;color:var(--navy-deep);margin-bottom:6px;}
.step-sub{font-size:.95rem;color:var(--fg-muted);margin-bottom:28px;}
.form-nav{display:flex;gap:12px;margin-top:28px;}
.submit-error{display:none;font-size:.9rem;color:var(--error);margin-top:16px;} .submit-error.show{display:block;}
@media (min-width:560px){ .prog-label{display:block;} }

/* ---- INCLUDES checklist (sell page) ---- */
.includes-list{display:grid;grid-template-columns:1fr;gap:10px;margin:26px 0;}
.inc-item{display:flex;align-items:center;gap:14px;padding:14px 18px;background:var(--white);border:1px solid var(--line);border-radius:6px;font-size:.98rem;font-weight:500;}
.inc-item::before{content:'';width:22px;height:22px;border-radius:50%;flex:none;background:#effaf5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;border:1.5px solid #10b981;}
@media (min-width:640px){ .includes-list{grid-template-columns:repeat(2,1fr);} }

/* ---- STEPS (process) ---- */
.steps{display:flex;flex-direction:column;}
.step{display:grid;grid-template-columns:52px 1fr;gap:24px;padding-bottom:40px;position:relative;}
.step:not(:last-child)::after{content:'';position:absolute;left:25px;top:54px;bottom:0;width:2px;background:linear-gradient(to bottom,var(--hairline-gold),var(--line));}
.step__num{width:52px;height:52px;background:var(--navy-deep);border-radius:50%;display:flex;align-items:center;justify-content:center;flex:none;z-index:1;font-family:var(--font-display);font-size:1.35rem;font-weight:600;color:var(--gold);border:2px solid rgba(224,185,64,.3);}
.step h3{font-family:var(--font-display);font-size:1.3rem;color:var(--navy-deep);margin:0 0 8px;}
.step p{color:var(--fg-muted);margin:0;}

/* ---- CONTACT method cards ---- */
.contact-method{display:flex;align-items:center;gap:18px;padding:22px 26px;border-radius:10px;text-decoration:none;transition:transform var(--ease),opacity var(--ease);margin-bottom:14px;}
.contact-method:hover{transform:translateY(-2px);opacity:.95;}
.contact-method__icon{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex:none;}
.contact-method__icon svg{width:24px;height:24px;}
.contact-method__label{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:5px;}
.contact-method__value{font-size:1.15rem;font-weight:700;}
.contact-method--phone{background:var(--navy-deep);} .contact-method--phone .contact-method__icon{background:rgba(224,185,64,.15);} .contact-method--phone .contact-method__label{color:rgba(242,243,240,.5);} .contact-method--phone .contact-method__value{color:var(--off-white);} .contact-method--phone svg{stroke:var(--gold);fill:none;stroke-width:2;}
.contact-method--email{background:var(--white);border:1px solid var(--line);} .contact-method--email .contact-method__icon{background:rgba(54,60,82,.06);} .contact-method--email .contact-method__label{color:var(--fg-muted);} .contact-method--email .contact-method__value{color:var(--navy-deep);font-size:1rem;} .contact-method--email svg{stroke:var(--navy-deep);fill:none;stroke-width:2;}
.contact-method--wa{background:var(--wa-green);} .contact-method--wa .contact-method__icon{background:rgba(0,0,0,.1);} .contact-method--wa .contact-method__label{color:rgba(255,255,255,.75);} .contact-method--wa .contact-method__value{color:#fff;} .contact-method--wa svg{fill:#fff;}
.contact-method--sms{background:var(--white);border:1px solid var(--line);} .contact-method--sms .contact-method__icon{background:rgba(54,60,82,.06);} .contact-method--sms .contact-method__label{color:var(--fg-muted);} .contact-method--sms .contact-method__value{color:var(--navy-deep);} .contact-method--sms svg{fill:var(--navy-deep);}
.contact-method--valuation{background:var(--gold);} .contact-method--valuation .contact-method__icon{background:rgba(54,60,82,.12);} .contact-method--valuation .contact-method__label{color:rgba(54,60,82,.65);} .contact-method--valuation .contact-method__value{color:var(--navy-deep);font-size:1rem;} .contact-method--valuation svg{stroke:var(--navy-deep);fill:none;stroke-width:2;}

/* ---- COOKIE banner ---- */
.cookie-banner{display:none;position:fixed;left:0;right:0;bottom:0;background:var(--navy-900);z-index:200;padding:22px 28px;border-top:1px solid rgba(224,185,64,.2);box-shadow:0 -4px 24px rgba(0,0,0,.25);}
.cookie-banner.show{display:block;}
.cookie-inner{max-width:var(--max-w);margin:0 auto;display:flex;flex-direction:column;gap:16px;}
.cookie-text{font-size:.9rem;color:rgba(242,243,240,.78);line-height:1.6;} .cookie-text a{color:var(--gold);text-decoration:underline;}
.cookie-actions{display:flex;gap:12px;flex-wrap:wrap;}
.btn-cookie-accept{background:var(--gold);color:var(--navy-deep);font-size:.82rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;padding:11px 24px;border-radius:5px;border:0;cursor:pointer;}
.btn-cookie-accept:hover{background:var(--gold-dark);}
.btn-cookie-decline{background:transparent;color:rgba(242,243,240,.55);font-size:.82rem;font-weight:600;text-decoration:underline;border:0;cursor:pointer;padding:11px;}
@media (min-width:640px){ .cookie-inner{flex-direction:row;align-items:center;justify-content:space-between;} }

/* ---- WhatsApp float ---- */
.wa-float{position:fixed;bottom:24px;right:22px;z-index:150;width:54px;height:54px;background:var(--wa-green);border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.45);opacity:0;transform:scale(.6);transition:transform var(--ease),opacity var(--ease);}
.wa-float.wa-visible{opacity:1;transform:scale(1);}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:28px;height:28px;fill:#fff;}
.wa-float__dismiss{position:absolute;top:-6px;right:-6px;width:20px;height:20px;background:var(--navy-deep);border-radius:50%;border:0;cursor:pointer;color:rgba(242,243,240,.7);font-size:11px;line-height:1;}

/* ---- footer social ---- */
.footer__social{display:flex;gap:.75rem;margin-top:16px;}
.footer__social-link{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);color:rgba(242,243,240,.75);transition:background .2s,color .2s;text-decoration:none;}
.footer__social-link:hover{background:rgba(255,255,255,.2);color:#fff;}

/* ---- thank-you / 404 ---- */
.center-page{min-height:70vh;display:flex;align-items:center;text-align:center;padding:clamp(80px,12vw,140px) 0;}
.error-num{font-family:var(--font-display);font-size:clamp(5rem,15vw,9rem);font-weight:600;color:var(--gold);line-height:1;margin-bottom:18px;}
.check-circle{width:72px;height:72px;background:rgba(16,185,129,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 24px;border:2px solid rgba(16,185,129,.3);}
.check-circle svg{width:36px;height:36px;stroke:var(--success);fill:none;stroke-width:2.5;}

/* ---- testimonials (homepage) ---- */
.tgrid{margin-top:clamp(36px,4vw,56px);display:grid;grid-template-columns:1fr;gap:24px;}
@media (min-width:780px){ .tgrid{grid-template-columns:repeat(3,1fr);} }
.tcard{position:relative;background:var(--paper-warm);border:1px solid var(--line);border-radius:10px;padding:42px 30px 30px;}
.tcard::before{content:'\201C';position:absolute;top:8px;left:24px;font-family:var(--font-display);font-size:5rem;line-height:1;color:var(--gold);opacity:.35;}
.tcard__text{font-family:var(--font-display);font-size:1.08rem;line-height:1.6;font-style:italic;color:var(--fg);margin:0 0 18px;}
.tcard__author{font-weight:700;color:var(--navy-deep);}
.tcard__loc{font-size:.85rem;color:var(--fg-subtle);margin-top:2px;}

/* ---- photo strip (homepage) ---- */
.photo-strip{overflow:hidden;background:var(--navy-900);border-top:1px solid rgba(224,185,64,.2);border-bottom:1px solid rgba(224,185,64,.2);}
.photo-strip__eyebrow{text-align:center;padding:40px 28px 18px;}
.photo-strip__track{display:flex;gap:4px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:40px;cursor:grab;}
.photo-strip__track::-webkit-scrollbar{display:none;}
.photo-strip__item{flex:0 0 85vw;scroll-snap-align:start;height:320px;overflow:hidden;}
.photo-strip__item img{width:100%;height:100%;object-fit:cover;}
@media (min-width:640px){ .photo-strip__item{flex:0 0 48vw;height:380px;} }
@media (min-width:980px){ .photo-strip__item{flex:0 0 32vw;height:420px;} }

/* reveal delay helpers already in homepage.css */

/* ---- main.js compatibility ---- */
.reveal.is-visible { opacity: 1; transform: none; }      /* main.js adds .is-visible */
.hamburger { display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; width:44px; height:44px; padding:10px; background:rgba(255,255,255,.10); border:0; border-radius:5px; cursor:pointer; transition:background var(--dur) var(--ease-out); }
.nav:not(.nav--solid):not(.scrolled) .hamburger { background:rgba(255,255,255,.14); }
.hamburger span { display:block; height:2px; width:20px; background:#fff; border-radius:2px; transition:transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out); }
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
@media (max-width:920px){ .hamburger{ display:flex; } .nav__links{ display:none; } .nav__right .nav__phone{ display:none; } }


/* ============================================================
   v6.1 TWEAKS — full-logo nav, clean heroes, portal links,
   legacy-page compatibility (sell / about / contact / blog)
   ============================================================ */

/* -- Full logo lockup in nav: gold compass symbol + wordmark -- */
.nav__brand { flex-direction: row; align-items: center; gap: 13px; }
.nav__symbol { height: 42px; width: auto; flex: none; display: block; }
.nav__brand-text { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 600px){ .nav__symbol { height: 36px; } .nav__kicker { display: none; } }

/* -- Clean internal heroes: navy + starburst only (drop faint photo) -- */
.thero__photo { display: none; }

/* -- Trust strip: portal + Google-review links -- */
a.trust__item { cursor: pointer; text-decoration: none; transition: color var(--dur) var(--ease-out); }
a.trust__item:hover { color: var(--gold); }
a.trust__item:hover .trust__stars svg { fill: #fff; }
.trust__item a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out); }
.trust__item a:hover { color: var(--gold); border-bottom-color: rgba(224,185,64,0.5); }

/* ============================================================
   LEGACY PAGE COMPATIBILITY LAYER
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; width: 100%; }
.container--sm { max-width: 760px; }

.section { padding: clamp(60px,8vw,104px) 0; background: var(--paper-warm); }
.section--white { background: var(--white); }
.section--paper { background: var(--paper-warm); }
.section--navy { background: var(--navy-deep); color: #fff; }

/* page hero -> navy + starburst */
.page-hero { position: relative; background: radial-gradient(ellipse 82% 74% at 50% 42%, #323a54 0%, var(--navy-deep) 68%); color: #fff; overflow: hidden; padding: clamp(124px,16vh,172px) 0 clamp(52px,7vw,84px); text-align: center; }
.page-hero::after { content: ""; position: absolute; top: 50%; left: 50%; width: max(150vw,1900px); aspect-ratio: 1/1; transform: translate(-50%,-50%); background: url('/images/brand-starburst-navy.png') center/contain no-repeat; -webkit-mask-image: radial-gradient(circle at 50% 46%, #000 0%, rgba(0,0,0,0.45) 48%, transparent 82%); mask-image: radial-gradient(circle at 50% 46%, #000 0%, rgba(0,0,0,0.45) 48%, transparent 82%); opacity: .7; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { justify-content: center; color: var(--gold) !important; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { content: ""; width: 30px; height: 1px; background: rgba(224,185,64,0.5); }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem,5vw,3.6rem); line-height: 1.05; letter-spacing: -.014em; color: #fff; margin: 18px 0 0; text-wrap: balance; }
.page-hero .lead { color: rgba(255,255,255,0.85); margin: 20px auto 0; max-width: 600px; }

/* section header */
.section-header { text-align: center; max-width: 680px; margin: 0 auto clamp(36px,4vw,52px); display: flex; flex-direction: column; align-items: center; }
.section-header .eyebrow { justify-content: center; }
.section-header h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem,3.4vw,2.7rem); line-height: 1.1; letter-spacing: -.014em; color: var(--navy-deep); margin: 14px 0 0; text-wrap: balance; }
.section--navy .section-header h2 { color: #fff; }
.accent-line { width: 54px; height: 2px; background: var(--gold); margin: 20px auto 0; border: 0; }

/* generic prose inside legacy sections */
.section h2 { font-family: var(--font-display); font-weight: 600; color: var(--navy-deep); letter-spacing: -.01em; }
.section h3 { font-family: var(--font-display); font-weight: 600; color: var(--navy-deep); }
.lead { font-size: clamp(1.08rem,1.5vw,1.28rem); line-height: 1.6; color: var(--fg-muted); text-wrap: pretty; }

/* buttons */
.btn--primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--navy-deep); color: #fff; font-weight: 600; font-size: .95rem; padding: 14px 28px; border-radius: 6px; text-decoration: none; border: 0; cursor: pointer; transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.btn--primary:hover { background: var(--navy-900); transform: translateY(-1px); }
.btn--secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: var(--navy-deep); font-weight: 600; font-size: .95rem; padding: 13px 26px; border-radius: 6px; border: 1.5px solid var(--navy-deep); text-decoration: none; cursor: pointer; transition: background var(--dur) var(--ease-out); }
.btn--secondary:hover { background: rgba(54,60,82,0.06); }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.section--navy .btn--primary { background: var(--gold); color: var(--navy-deep); }
.section--navy .btn--primary:hover { background: var(--gold-dark); }

/* steps */
.step__content h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy-deep); margin: 0 0 8px; }
.step__content p { color: var(--fg-muted); margin: 0; }

/* cta band */
.cta-band { padding: clamp(60px,8vw,104px) 0; text-align: center; }
.cta-band .container { display: flex; flex-direction: column; align-items: center; }
.cta-band h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem,3.6vw,2.8rem); color: #fff; margin: 0 0 14px; text-wrap: balance; }
.cta-band .lead { color: rgba(255,255,255,0.85); margin: 0 0 28px; }

/* legacy FAQ accordion (main.js toggles .open) */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__trigger { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy-deep); }
.faq-item__trigger::after { content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px; border-right: 2px solid var(--gold-ink); border-bottom: 2px solid var(--gold-ink); transform: translateY(-65%) rotate(45deg); transition: transform var(--dur) var(--ease-out); }
.faq-item.open .faq-item__trigger::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item__content, .faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-item.open .faq-item__content, .faq-item.open .faq-item__answer { max-height: 800px; }
.faq-item__content p, .faq-item__answer p { margin: 0 0 14px; color: var(--fg-muted); line-height: 1.7; padding-top: 4px; }
.faq-item__content > :last-child, .faq-item__answer > :last-child { padding-bottom: 22px; }

/* blog */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 640px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .blog-grid { grid-template-columns: repeat(3,1fr); } }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__img-placeholder, .blog-card__img { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy-deep), var(--navy-900)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card__img-placeholder::before { content: ""; position: absolute; inset: 0; background: url('/images/brand-starburst-navy.png') center / 150% no-repeat; opacity: .5; }
.blog-card__img-placeholder svg { position: relative; width: 46px; height: 46px; stroke: var(--gold); opacity: .95; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-ink); margin: 0 0 10px; }
.blog-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; line-height: 1.22; color: var(--navy-deep); margin: 0 0 10px; }
.blog-card__excerpt { color: var(--fg-muted); font-size: .97rem; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.blog-card__link { font-weight: 600; color: var(--gold-ink); text-decoration: none; font-size: .92rem; }
.blog-card__link:hover { color: var(--gold-dark); }

/* newsletter strip */
.newsletter-strip { padding: clamp(56px,7vw,90px) 0; background: var(--navy-deep); position: relative; overflow: hidden; }
.newsletter-strip::after { content: ""; position: absolute; top: 50%; left: 50%; width: max(140vw,1700px); aspect-ratio: 1/1; transform: translate(-50%,-50%); background: url('/images/brand-starburst-navy.png') center/contain no-repeat; -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, #000 42%, transparent 86%); mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, #000 42%, transparent 86%); opacity: .45; pointer-events: none; }
.newsletter-strip .container { position: relative; z-index: 1; }
.newsletter-strip h2 { font-family: var(--font-display); font-weight: 600; }
.newsletter-form__row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 480px; margin: 22px auto 0; }
.newsletter-form__input { flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; font-family: var(--font-sans); font-size: 1rem; }
.newsletter-form__input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form__input:focus { outline: none; border-color: var(--gold); }
.newsletter-form__btn { flex: none; }

/* video lightbox */
.video-modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: rgba(16,20,30,0.92); padding: 24px; }
.video-modal.open { display: flex; }
.video-modal__frame { position: relative; width: min(1000px, 100%); aspect-ratio: 16/9; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
.video-modal__frame iframe, .video-modal__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 0; color: #fff; font-size: 22px; cursor: pointer; line-height: 1; }
.video-modal__close:hover { background: rgba(255,255,255,0.25); }


/* legacy: extra container + utility pages */
.container--xs { max-width: 560px; }
.thankyou-page { position: relative; background: var(--navy-deep); color:#fff; overflow:hidden; padding: clamp(124px,16vh,172px) 0 clamp(48px,7vw,80px); }
.thankyou-page::after { content:""; position:absolute; top:50%; left:50%; width:max(150vw,1900px); aspect-ratio:1/1; transform:translate(-50%,-50%); background:url('/images/brand-starburst-navy.png') center/contain no-repeat; -webkit-mask-image:radial-gradient(ellipse 100% 90% at 50% 50%,#000 42%,transparent 88%); mask-image:radial-gradient(ellipse 100% 90% at 50% 50%,#000 42%,transparent 88%); opacity:.5; pointer-events:none; }
.thankyou-page .container { position:relative; z-index:1; }
.thankyou-page h1 { font-family:var(--font-display); font-weight:600; color:#fff; }
.thankyou-page .lead { color:rgba(255,255,255,0.82) !important; }
.thankyou-page .check-circle { background:rgba(224,185,64,0.12); border-color:rgba(224,185,64,0.35); }
.thankyou-page .check-circle svg { stroke:var(--gold); }
.thankyou-page a[href^="tel"] { color:#fff !important; }
.thankyou-page > .container > div { background:rgba(255,255,255,0.06) !important; border-color:rgba(255,255,255,0.14) !important; }


/* hero meta links + Google review link */
.hero__meta a, a.hero__meta-item { color: inherit; text-decoration: none; }
.hero__meta a { border-bottom: 1px solid transparent; transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out); }
.hero__meta a:hover { color: var(--gold); border-bottom-color: rgba(224,185,64,0.5); }
a.hero__meta-item:hover { color: var(--gold); }
a.hero__meta-item:hover .dot { background: var(--gold); }


/* ============================================================
   v6.2 MOBILE FIXES
   ============================================================ */
@media (max-width: 920px){
  /* header: only logo + hamburger on mobile (CTA lives in the menu) */
  .nav__right .btn-gold,
  .nav__right .btn,
  .nav__right .nav__phone { display: none !important; }
  .nav__right { gap: 0; }
  .nav__inner { gap: 14px; }
  .nav__symbol { height: 38px; }
}
@media (max-width: 600px){
  /* homepage hero: shrink so it clears the fixed nav and fits */
  .hero { min-height: 100svh; padding-top: 86px; }
  .hero h1 { font-size: clamp(1.85rem, 7.6vw, 2.5rem); line-height: 1.07; }
  .hero__sub { font-size: 1rem; line-height: 1.5; margin-top: 16px; }
  .hero__inner { padding-bottom: 34px; }
  .hero__cta { gap: 10px; width: 100%; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__meta { gap: 9px 20px; margin-top: 22px; }
  .hero__meta-item { font-size: 0.9rem; }

  /* tighten internal heroes on phones */
  .thero h1, .phero h1, .page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .thero__cta, .page-hero .btn--primary { width: 100%; }
  .thero__cta .btn { width: 100%; justify-content: center; }

  /* section padding a touch tighter */
  .section, .band, .cta-band, .newsletter-strip { padding-top: clamp(48px,11vw,72px); padding-bottom: clamp(48px,11vw,72px); }
}


/* ============================================================
   v6.3 FIXES — logo, FAQ, valuation form, navy CTA buttons,
   inline video, about/portrait, blog feature image
   ============================================================ */

/* -- NAV LOGO: single wide wordmark + kicker stacked -- */
.nav__symbol { display: none !important; }
.nav__brand { flex-direction: column; align-items: flex-start; gap: 6px; }
.nav__logo { height: 26px; width: auto; }
@media (max-width: 600px){ .nav__logo { height: 22px; } }

/* -- NAVY-ON-NAVY BUTTON FIX: any primary button on a dark ground is gold -- */
.cta-band .btn--primary,
.thero .btn--primary, .thero__cta .btn--primary,
.phero .btn--primary, .page-hero .btn--primary,
.band--navy .btn--primary, .newsletter-strip .btn--primary,
.cta .btn--primary, .thankyou-page .btn--primary,
.section--navy .btn--primary {
  background: var(--gold); color: var(--navy-deep);
}
.cta-band .btn--primary:hover,
.thero .btn--primary:hover, .thero__cta .btn--primary:hover,
.phero .btn--primary:hover, .page-hero .btn--primary:hover,
.band--navy .btn--primary:hover, .newsletter-strip .btn--primary:hover,
.cta .btn--primary:hover, .thankyou-page .btn--primary:hover,
.section--navy .btn--primary:hover { background: var(--gold-dark); color: var(--navy-deep); }

/* -- FAQ: correct selectors (markup uses .faq-item__body + .faq-icon) -- */
.faq-item__trigger::after { content: none !important; } /* kill the wrong chevron */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 0;
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--navy-deep);
}
.faq-icon {
  flex: none; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-ink); transition: transform var(--dur) var(--ease-out);
}
.faq-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item__body {
  max-height: 0; overflow: hidden; color: var(--fg-muted); line-height: 1.7;
  transition: max-height var(--dur-slow) var(--ease-out), padding var(--dur-slow) var(--ease-out);
  padding: 0;
}
.faq-item.open .faq-item__body { max-height: 600px; padding: 0 0 22px; }

/* -- VALUATION form card + full-width button -- */
.valuation-form-wrapper {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: clamp(26px,4vw,44px); max-width: 560px; margin: 0 auto;
}
.btn--full { width: 100%; }
.btn--primary.btn--full { justify-content: center; }

/* -- ABOUT: portrait frame fallback (in case markup kept) -- */
.portrait-frame { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.portrait-frame img { display: block; width: 100%; height: auto; }

/* -- BLOG: real photo feature image -- */
.blog-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(37,42,58,0.86); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* -- INLINE VIDEO: iframe fills the showcase box, hide play UI once playing -- */
.showcase__media.playing { cursor: default; }
.showcase__media.playing img, .showcase__media.playing .play,
.showcase__media.playing .showcase__cap { display: none; }
.showcase__media.playing::after { content: none; }
.showcase__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }


/* ============================================================
   v6.4 — Valuation landing (PPC): two-column pitch + form
   ============================================================ */
.val-hero { position: relative; background: radial-gradient(ellipse 82% 74% at 50% 42%, #323a54 0%, var(--navy-deep) 68%); color: #fff; overflow: hidden; padding: clamp(116px,14vh,160px) 0 clamp(54px,7vw,86px); }
.val-hero::after { content:""; position:absolute; top:50%; left:50%; width:max(150vw,1900px); aspect-ratio:1/1; transform:translate(-50%,-50%); background:url('/images/brand-starburst-navy.png') center/contain no-repeat; -webkit-mask-image:radial-gradient(ellipse 100% 90% at 50% 50%,#000 42%,transparent 88%); mask-image:radial-gradient(ellipse 100% 90% at 50% 50%,#000 42%,transparent 88%); opacity:.42; pointer-events:none; }
.val-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(34px,4.5vw,68px); align-items: center; }
.val-hero__pitch .eyebrow { color: var(--gold); }
.val-hero__pitch h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem,4vw,3.2rem); line-height: 1.06; letter-spacing: -.014em; color: #fff; margin: 16px 0 0; text-wrap: balance; }
.val-hero__pitch .lead { color: rgba(255,255,255,0.82); margin: 20px 0 0; max-width: 520px; }
.val-points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.val-points li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.9); font-size: 1.02rem; line-height: 1.4; }
.val-points svg { flex: none; width: 22px; height: 22px; margin-top: 1px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.val-trust { margin-top: 28px; }
.val-stars { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.val-stars__row { display: inline-flex; gap: 3px; }
.val-stars__row svg { width: 19px; height: 19px; fill: var(--gold); }
.val-stars__txt { color: rgba(255,255,255,0.78); font-size: 0.92rem; font-weight: 600; border-bottom: 1px solid transparent; transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out); }
.val-stars:hover .val-stars__txt { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }

.val-hero__formcol .valuation-form-wrapper { margin: 0; max-width: none; box-shadow: var(--shadow-lg); }
.vform-head { margin-bottom: 22px; }
.vform-head__title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--navy-deep); margin: 0 0 4px; }
.vform-head__sub { font-size: 0.92rem; color: var(--fg-muted); margin: 0; line-height: 1.5; }
.vform-foot { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; font-size: 0.82rem; color: var(--fg-subtle); }
.vform-foot svg { flex: none; width: 15px; height: 15px; stroke: var(--fg-subtle); fill: none; stroke-width: 2; }

@media (max-width: 880px){
  .val-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .val-hero { padding-top: 104px; }
  .val-hero__pitch .lead { max-width: none; }
}


/* ============================================================
   v6.5 — blog post CTA + newsletter visibility
   ============================================================ */
/* gold button on the article CTA panel (was navy-on-navy) */
.post-cta .btn--primary { background: var(--gold); color: var(--navy-deep); }
.post-cta .btn--primary:hover { background: var(--gold-dark); color: var(--navy-deep); }
.post-cta h3 { color: #fff; }
.post-cta p { color: rgba(255,255,255,0.82); }
/* ensure the newsletter strip reads solid navy (inline blocks reference --navy-dark) */
.newsletter-strip { background: var(--navy-deep); }


/* white starburst behind the blog-post hero heading */
.post-hero { position: relative; overflow: hidden; }
.post-hero::after { content: ""; position: absolute; top: 50%; left: 50%; width: max(150vw,1700px); aspect-ratio: 1/1; transform: translate(-50%,-50%); background: url('/images/brand-starburst-navy.png') center/contain no-repeat; -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 0%, rgba(0,0,0,0.5) 46%, transparent 80%); mask-image: radial-gradient(circle at 50% 48%, #000 0%, rgba(0,0,0,0.5) 46%, transparent 80%); opacity: .55; pointer-events: none; z-index: 0; }
.post-hero .container { position: relative; z-index: 1; }


/* ============================================================
   v7.0 — Sell page refresh (visual, photography-led)
   ============================================================ */
/* standout testimonial pull-quote (navy band) */
.pullquote { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.pullquote__mark { font-family: var(--font-display); font-size: 4.5rem; line-height: .5; color: var(--gold); opacity: .55; display: block; }
.pullquote__text { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.32; color: #fff; margin: 22px 0 0; text-wrap: balance; }
.pullquote__stars { display: inline-flex; gap: 4px; margin-top: 30px; }
.pullquote__stars svg { width: 22px; height: 22px; fill: var(--gold); }
.pullquote__author { margin: 18px 0 0; font-weight: 600; color: #fff; font-size: 1.02rem; }
.pullquote__loc { font-size: .9rem; color: rgba(255,255,255,.62); margin-top: 3px; }

/* fees */
.fees-grid { display: grid; grid-template-columns: 1fr; gap: clamp(18px,2.4vw,26px); max-width: 860px; margin: clamp(36px,4vw,52px) auto 0; }
@media (min-width: 760px){ .fees-grid { grid-template-columns: 1fr 1fr; } }
.fee-card { padding: clamp(28px,3.6vw,42px); border-radius: 14px; border: 1px solid var(--line); background: var(--paper-warm); display: flex; flex-direction: column; }
.fee-card__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); margin: 0 0 14px; }
.fee-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--navy-deep); margin: 0 0 10px; }
.fee-card p { color: var(--fg-muted); font-size: .96rem; line-height: 1.65; margin: 0; }
.fee-card--feature { background: var(--navy-deep); border-color: transparent; position: relative; overflow: hidden; }
.fee-card--feature .fee-card__label { color: var(--gold); }
.fee-card--feature h3, .fee-card--feature .fee-figure { color: #fff; }
.fee-card--feature p { color: rgba(255,255,255,.8); }
.fee-card--feature strong { color: #fff; }
.fee-figure { font-family: var(--font-display); font-weight: 600; font-size: 2rem; line-height: 1; margin: 0 0 12px; }

/* compact essentials cards */
.mini-grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px,2vw,22px); margin-top: clamp(34px,4vw,50px); }
@media (min-width: 680px){ .mini-grid { grid-template-columns: repeat(3,1fr); } }
.mini-card { padding: clamp(24px,3vw,32px); background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.mini-card__n { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gold-ink); margin: 0 0 12px; }
.mini-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--navy-deep); margin: 0 0 9px; }
.mini-card p { font-size: .93rem; color: var(--fg-muted); line-height: 1.62; margin: 0; }

/* sell process intro / generic centered lead helper for v7 */
.lead--center { max-width: 620px; margin-left: auto; margin-right: auto; }
