/* ============================================
   2:20 Partners — Shared site stylesheet
   Direction B: Warm Editorial — Refined v2
   ============================================ */
:root {
  --gold:        #C8A96E;
  --gold-dark:   #b8922f;
  --gold-deep:   #8a6a1d;
  --cream:       #f2ece1;
  --cream-alt:   #ece6da;
  --cream-deep:  #e3dccc;
  --ink:         #1c1a16;
  --ink-mid:     #6b6557;
  --ink-light:   #9a9080;
  --line:        rgba(28,26,22,0.10);
  --line-mid:    rgba(28,26,22,0.20);
  --shadow-soft: 0 18px 40px rgba(28,26,22,0.10);
  --shadow-strong: 0 30px 80px rgba(28,26,22,0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #fff; }

.serif { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.italic { font-style: italic; }

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.eyebrow.centered { justify-content: center; }
.gold-rule {
  width: 48px; height: 2px; background: var(--gold);
  border: 0; margin: 24px 0;
}
.container { max-width: 1440px; margin: 0 auto; padding: 0 72px; }
section { padding: 120px 0; }

/* ANNOUNCEMENT BAR — animated marquee, top of page */
.ann-bar {
  background: linear-gradient(90deg, var(--ink) 0%, #2a2620 50%, var(--ink) 100%);
  color: var(--cream);
  border-bottom: 1px solid rgba(200,169,110,0.25);
  overflow: hidden;
  position: relative;
}
.ann-bar::before, .ann-bar::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ann-bar::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.ann-bar::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.ann-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: ann-scroll 38s linear infinite;
  padding: 11px 0;
  width: max-content;
}
.ann-track span {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(242,236,225,0.78);
  display: inline-flex; align-items: center; gap: 56px;
}
.ann-track span::after {
  content: "✦"; color: var(--gold); font-size: 10px;
}
@keyframes ann-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAV */
.gold-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  width: 100%;
}
nav.top {
  background: rgba(242,236,225,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 84px;
  max-width: 1440px; margin: 0 auto;
  padding: 0 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark { width: 52px; height: 42px; }
.logo-word {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1;
}
.logo-sub {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.logo-sub::before, .logo-sub::after {
  content: ""; height: 1px; width: 14px; background: var(--gold);
}
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color .25s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--gold);
  transform-origin: left;
  animation: underline-in .35s ease forwards;
}
.nav-links a:not(.active)::after { animation: none; }
@keyframes underline-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  position: relative;
}
.btn::after {
  content: "→"; font-size: 14px; transition: transform .3s ease;
  letter-spacing: 0;
}
.btn:hover::after { transform: translateX(4px); }
.btn-dark    { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-gold    { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost   { background: transparent; color: var(--ink); border: 1px solid var(--line-mid); }
.btn-ghost:hover { border-color: var(--ink); }
.btn.no-arrow::after { content: ""; }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0;
  transition: all .3s ease;
}

/* SECTION HEADER */
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--line); padding-bottom: 24px;
  gap: 32px;
}
.sec-head .sec-left { max-width: 720px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.sec-title .it { font-style: italic; color: var(--gold); }
.link-arrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  font-weight: 500;
  flex-shrink: 0;
}
.link-arrow::after { content: "  →"; }

/* PAGE HERO — sub-pages, redesigned bolder/more editorial */
.page-hero {
  padding: 120px 0 96px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,169,110,0.18), transparent 60%);
  pointer-events: none;
  animation: hero-glow 14s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  0%   { transform: translate(0,0) scale(1); opacity: 0.7; }
  100% { transform: translate(-40px,30px) scale(1.1); opacity: 1; }
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 32px;
}
.page-hero .crumbs a { color: var(--ink-mid); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs span.sep { color: var(--gold); }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 96px;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  max-width: 1100px;
}
.page-hero h1 .it { font-style: italic; color: var(--gold-dark); }
.page-hero h1 .word-anim {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
  animation: word-rise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes word-rise {
  to { opacity: 1; transform: none; }
}
.page-hero p.lede {
  color: var(--ink-mid);
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}
.page-hero .hero-meta {
  display: flex; gap: 48px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.page-hero .hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.page-hero .hero-meta small {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500;
}
.page-hero .hero-meta strong {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 26px; color: var(--ink);
}

/* HOME HERO — cinematic with image animation */
.home-hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-alt) 100%);
  overflow: hidden;
}
.home-hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.home-hero-text .eyebrow { margin-bottom: 28px; }
.home-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 108px;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  color: var(--ink);
}
.home-hero-text h1 .it { font-style: italic; color: var(--gold-dark); }
.home-hero-text h1 .underline-it {
  position: relative; display: inline-block;
}
.home-hero-text h1 .underline-it::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.4), transparent);
  z-index: -1;
}
.home-hero-text p {
  color: var(--ink-mid);
  font-size: 18px; line-height: 1.7;
  max-width: 560px;
  margin: 0 0 40px;
}
.home-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.home-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}
.home-hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,26,22,0.55));
  z-index: 2; pointer-events: none;
}
.home-hero-visual img,
.home-hero-visual .visual-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: ken-burns 18s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  0%   { transform: scale(1.0)  translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1.5%); }
}
.home-hero-visual .visual-tag {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 3;
  color: #fff; display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
}
.home-hero-visual .visual-tag div { display: flex; flex-direction: column; }
.home-hero-visual .visual-tag small {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.home-hero-visual .visual-tag strong {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 22px;
  color: rgba(255,255,255,0.95);
}
.home-hero-visual .visual-tag .badge {
  background: rgba(200,169,110,0.95);
  color: var(--ink);
  padding: 8px 14px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
}
.home-hero-visual .corner-frame {
  position: absolute; z-index: 3;
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
}
.home-hero-visual .corner-frame.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.home-hero-visual .corner-frame.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

/* STATS STRIP */
.stats-strip {
  background: var(--ink);
  padding: 64px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  color: #fff;
}
.stats-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
  padding: 0 24px;
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 72px; line-height: 1; color: var(--gold);
  letter-spacing: -0.02em;
}
.stat .num .it { font-style: italic; }
.stat .lab {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 12px; font-weight: 500;
}

/* WORKFLOW / PROCESS */
.workflow {
  background: var(--cream-alt);
  position: relative;
}
.workflow .container { position: relative; }
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.workflow-line {
  position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  z-index: 1;
}
.wf-step {
  position: relative; z-index: 2;
  background: transparent;
  padding: 0 18px;
  text-align: center;
}
.wf-step .num-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 30px; font-style: italic;
  color: var(--gold-dark);
  margin: 0 auto 24px;
  transition: all .35s ease;
  position: relative;
}
.wf-step:hover .num-circle {
  background: var(--gold); color: #fff; transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(200,169,110,0.35);
}
.wf-step h4 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 22px; line-height: 1.2; margin: 0 0 12px;
  color: var(--ink);
}
.wf-step p {
  font-size: 13px; color: var(--ink-mid); line-height: 1.65;
  margin: 0; max-width: 220px; margin-left: auto; margin-right: auto;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px 32px 32px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.testi-card::before {
  content: "❝"; position: absolute; top: 8px; left: 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 80px;
  color: var(--gold); opacity: 0.55; line-height: 1;
}
.testi-stars {
  display: flex; gap: 4px; margin-bottom: 20px;
  position: relative;
}
.testi-stars span { color: var(--gold); font-size: 16px; }
.testi-card blockquote {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-style: italic;
  font-size: 22px; line-height: 1.45;
  color: var(--ink); margin: 0 0 28px;
  letter-spacing: -0.005em;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 18px; font-style: italic;
  flex-shrink: 0;
}
.testi-author-info { display: flex; flex-direction: column; line-height: 1.3; }
.testi-author-info strong { font-size: 13px; font-weight: 600; color: var(--ink); }
.testi-author-info small {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-dark); margin-top: 2px;
}

/* FEATURED QUOTE BAND */
.quote-band {
  background: var(--ink); color: var(--cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "❝";
  position: absolute; top: -40px; left: -10px;
  font-family: 'Cormorant Garamond', serif; font-size: 280px;
  color: var(--gold); opacity: 0.18; line-height: 1;
}
.quote-band .container { position: relative; }
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-style: italic;
  font-size: 42px; line-height: 1.35;
  color: rgba(255,255,255,0.96);
  max-width: 900px; margin: 0;
  letter-spacing: -0.01em;
}
.quote-band cite {
  display: block; margin-top: 32px;
  font-style: normal; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}

/* FOOTER */
footer {
  background: var(--ink); color: rgba(255,255,255,0.6);
  padding: 64px 0 44px;
}
.foot-top {
  max-width: 1440px; margin: 0 auto; padding: 0 72px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-top h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin: 0 0 22px;
}
.foot-top p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.foot-top ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-top a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: color .25s ease;
}
.foot-top a:hover { color: var(--gold); }
.foot-bottom {
  max-width: 1440px; margin: 0 auto; padding: 32px 72px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.foot-logo { display: flex; align-items: center; gap: 12px; }
.foot-logo .logo-word { color: rgba(255,255,255,0.7); font-size: 16px; }
.foot-copy { font-size: 11px; color: rgba(255,255,255,0.35); }

/* FAB — bigger, bolder, shows phone number */
.fab-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: #fff;
  padding: 18px 28px 18px 22px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(28,26,22,0.32), 0 4px 12px rgba(184,146,47,0.45);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  -webkit-tap-highlight-color: transparent;
  border: 2px solid rgba(255,255,255,0.85);
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: calc(24px + env(safe-area-inset-right));
}
.fab-call:hover, .fab-call:focus { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 18px 48px rgba(28,26,22,0.40), 0 6px 16px rgba(184,146,47,0.55); }
.fab-call:active { transform: translateY(0); }
.fab-call .fab-icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}
.fab-call .fab-icon svg { width: 26px; height: 26px; fill: currentColor; }
.fab-call .fab-label { display: inline-flex; flex-direction: column; line-height: 1.05; }
.fab-call .fab-label small {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.85;
  margin-bottom: 3px;
}
.fab-call .fab-label strong { font-size: 17px; font-weight: 700; letter-spacing: 0.01em; }
.fab-call::before {
  content: ""; position: absolute; inset: -2px; border-radius: 999px;
  border: 2px solid var(--gold); opacity: 0.6;
  animation: fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  80%  { transform: scale(1.40); opacity: 0; }
  100% { transform: scale(1.40); opacity: 0; }
}

/* Nav-call mobile pill */
.nav-call-mobile {
  display: none;
  align-items: center; gap: 6px;
  color: var(--ink); font-size: 12px; font-weight: 500;
  padding: 8px 12px; border: 1px solid var(--gold);
  text-decoration: none; margin-right: 6px;
}
.nav-call-mobile svg { width: 14px; height: 14px; fill: var(--gold); }

/* CARDS — reusable */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 14px;
  color: var(--gold-dark); letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.card h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 28px; line-height: 1.15; margin: 0 0 14px;
  color: var(--ink);
}
.card h3 .it { font-style: italic; color: var(--gold-dark); }
.card p {
  font-size: 13.5px; color: var(--ink-mid); line-height: 1.75;
  margin: 0;
}

/* IMG-PLACEHOLDER (uses SVG art when no real image present) */
.img-ph {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream-alt) 0%, var(--cream-deep) 100%);
  overflow: hidden;
}
.img-ph svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: all .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .home-hero-text h1 { font-size: 88px; }
  .page-hero h1 { font-size: 76px; }
}
@media (max-width: 1024px) {
  .container, .nav-inner, .foot-top, .foot-bottom { padding-left: 40px; padding-right: 40px; }
  .sec-title { font-size: 44px; }
  .page-hero h1 { font-size: 64px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-hero-text h1 { font-size: 78px; }
  .home-hero-visual { aspect-ratio: 16/10; max-width: 720px; margin: 0 auto; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .stat { border-right: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
  .workflow-line { display: none; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; }
  .nav-call-mobile { display: inline-flex; }
  .nav-inner .btn-dark { display: none; }
  .ann-track { animation-duration: 24s; }
  .ann-track span { font-size: 10px; gap: 36px; }
  .pill { padding: 9px 16px; font-size: 11px; }
  .btn { padding: 14px 24px; font-size: 11px; min-height: 44px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sec-title { font-size: 36px; }
  .container { padding: 0 28px; }
  .nav-inner, .foot-top, .foot-bottom { padding: 0 28px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; padding-top: 0; padding-bottom: 32px; }
  .foot-bottom { flex-direction: column; gap: 16px; text-align: center; padding-top: 24px; }
  section { padding: 72px 0; }
  .page-hero { padding: 64px 0 56px; }
  .page-hero h1 { font-size: 46px; }
  .page-hero p.lede { font-size: 15px; }
  .page-hero .hero-meta { gap: 24px; }
  .page-hero .hero-meta strong { font-size: 22px; }
  .home-hero { padding: 48px 0 60px; }
  .home-hero-text h1 { font-size: 54px; line-height: 0.96; }
  .home-hero-text p { font-size: 16px; }
  .stats-strip { padding: 48px 0; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat .num { font-size: 56px; }
  .quote-band blockquote { font-size: 26px; }
  .workflow-steps { grid-template-columns: 1fr; gap: 32px; }
  .wf-step .num-circle { width: 60px; height: 60px; font-size: 26px; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .card h3 { font-size: 24px; }
  .nav-links { flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
               background: var(--cream); padding: 8px 0; border-bottom: 1px solid var(--line);
               box-shadow: 0 12px 32px rgba(0,0,0,0.10); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 28px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a.active::after, .nav-links a:hover::after { display: none; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-toggle span { transition: transform .2s ease, opacity .2s ease; }
  footer { padding-bottom: 110px; }
  .gold-bar { height: 2px; }
}
@media (max-width: 540px) {
  .fab-call {
    padding: 14px 20px 14px 16px;
    gap: 10px;
    font-size: 15px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: calc(16px + env(safe-area-inset-right));
    left: calc(16px + env(safe-area-inset-left));
    justify-content: center;
  }
  .fab-call .fab-icon { width: 24px; height: 24px; padding: 3px; }
  .fab-call .fab-icon svg { width: 22px; height: 22px; }
  .fab-call .fab-label small { font-size: 8px; letter-spacing: 0.18em; margin-bottom: 2px; }
  .fab-call .fab-label strong { font-size: 15px; }
}

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