/* index.css — Typography synced with about.css */
/* font-family, font-size, font-weight, letter-spacing, text-transform matched */

:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162536;
  --navy-deep:   #0A1520;
  --cream:       #F5F0EB;
  --greige:      #EDE8E1;
  --ivory:       #FAF8F4;
  --parchment:   #E6DFD3;
  --terra:       #A0522D;
  --terra-l:     #C4714A;
  --terra-d:     #7A3B1E;
  --gold:        #C9A96E;
  --gold-l:      #E8C98A;
  --gold-d:      #A8873E;
  --text-h:      #0D1B2A;
  --text-b:      #2A3040;
  --text-m:      #7A8090;
  --border:      #E6DFD3;
  --border-terra:       rgba(160,82,45,0.22);
  --border-terra-h:     rgba(160,82,45,0.55);
  --border-gold:        rgba(201,169,110,0.25);
  --border-gold-h:      rgba(201,169,110,0.60);
  --e: cubic-bezier(.25,.46,.45,.94);
  --font-heading: 'Cormorant Garamond';
  --font-body:    'DM Sans';
  /* Aliases */
  --terra-light:  #C4714A;
  --terra-dark:   #7A3B1E;
  --gold-light:   #E8C98A;
  --gold-dark:    #A8873E;
  --text-heading: #0D1B2A;
  --text-body:    #2A3040;
  --text-muted:   #7A8090;
  --text-on-dark: #FAF8F4;
  --text-dark-mid: rgba(250,248,244,0.75);
  --text-dark-low: rgba(250,248,244,0.45);
  --border-terra-hover: rgba(160,82,45,0.55);
  --border-gold-hover:  rgba(201,169,110,0.60);
  --border-light:       #DDD6CC;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 1.125rem; }
body {
 
  background: var(--greige);
  color: var(--text-body);
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: auto;
}
body {
  font-family: 'DM Sans', sans-serif;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════ EYEBROW ═══════════ */
/* "— WHAT WE STAND FOR" / "— HERE TO SUPPORT UK BUSINESS OWNERS" style */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--terra);
  flex-shrink: 0;
}
.eyebrow--dark { color: var(--gold); }
.eyebrow--dark::before { background: var(--gold); }
.eyebrow--lined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}
.eyebrow--lined::before,
.eyebrow--lined::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

/* ═══════════ SECTION TITLES ═══════════ */
h2.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.12;
  margin-bottom: 0.6rem;
}
h2.section-title em { font-style: italic; color: var(--terra); }
h2.section-title--dark { color: var(--ivory); }
h2.section-title--dark em { color: var(--gold); }

.section-intro {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.75;
}
.section-intro--dark { color: var(--text-dark-mid); }
.section-header { margin-bottom: 2rem; }

/* ═══════════ SECTION LABELS ═══════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label.light { color: var(--terra); }
.section-label.dark  { color: var(--gold); }
.section-label-line  { width: 28px; height: 1.5px; }
.section-label.light .section-label-line { background: var(--terra); }
.section-label.dark  .section-label-line { background: var(--gold); }

.section-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-h2.light { color: var(--navy); }
.section-h2.dark  { color: var(--ivory); }
.section-h2 em    { font-style: italic; font-weight: 300; }
.section-h2.light em { color: var(--terra); }
.section-h2.dark  em { color: var(--gold-l); }

.section-body { font-size: 1.05rem; color: var(--text-body); line-height: 1.75; }
.section-body.dark { color: rgba(250,248,244,.7); }
.section-pad { padding: 2.75rem 0; }

/* ═══════════ SECTION ═══════════ */
.section { padding: 3.5rem 2.5rem; }
.section--greige { background: var(--greige); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--navy); }

/* ═══════════ HERO ═══════════ */
#hero {
  position: relative;
  min-height: calc(100vh - 72px);
  height: calc(100vh - 72px);
  display: flex;
  align-items: stretch;
}
.hero-overlay { display: none; }
.hero-left-panel  { position: absolute; inset: 0 50% 0 0; background: var(--ivory); z-index: 0; }
.hero-right-panel {
  position: absolute; inset: 0 0 0 50%;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
  z-index: 0;
}
.hero-right-panel::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,27,42,.45);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center;
  padding: 0; width: 100%; max-width: 100%; margin: 0;
}
.hero-content {
  color: var(--navy);
  padding: 1.5rem 3rem 1.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}

/* Hero eyebrow — same as "— WHAT WE STAND FOR" style */
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--terra);
  flex-shrink: 0;
}
.hero-eyebrow-line { display: none; }

/* Hero H1 — matched to about.css .page-hero h1 */
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.hero-h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--terra);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.hero-checks { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
.hero-check  { display: flex; align-items: center; gap: .75rem; font-size: 0.95rem; color: var(--text-body); }
.hero-check-ic {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,169,110,.18); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-check-ic svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.hero-btns { display: flex; align-items: center; gap: .75rem; flex-wrap: nowrap; overflow: visible; }

/* ═══════════ BUTTONS ═══════════ */
.btn-terra {
  background: var(--terra); color: var(--ivory);
  padding: 0.75rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 6px; border: none; cursor: pointer;
  transition: background .25s;
  display: inline-flex; align-items: center;
  gap: .5rem; white-space: nowrap; text-decoration: none;
}
.btn-terra:hover { background: var(--terra-l); }

.btn-ghost-dark {
  background: transparent; color: var(--terra);
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0; border: none; cursor: pointer;
  transition: color .25s;
  display: inline-flex; align-items: center;
  gap: .4rem; white-space: nowrap; text-decoration: none;
}
.btn-ghost-dark:hover { color: var(--gold-l); }

.btn-terra--book {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.75rem 1.75rem;
  white-space: nowrap;
}

.btn-text-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .01em;
  opacity: .85;
  transition: opacity .2s;
  padding: .5rem 0;
  display: inline-flex; align-items: center;
  border-bottom: 1px solid rgba(13,27,42,.3);
}
.btn-text-link:hover { opacity: 1; border-bottom-color: rgba(250,248,244,.7); }

/* Inline buttons — matched to about.css */
.btn-inline-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ivory); background: var(--terra);
  border: none; border-radius: 6px;
  padding: 0.75rem 1.75rem;
  cursor: pointer; transition: background 0.25s;
  text-decoration: none; white-space: nowrap;
}
.btn-inline-primary:hover { background: var(--terra-l); }

.btn-inline-secondary--dark {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  background: transparent; border: none; padding: 0;
  cursor: pointer; transition: color 0.25s;
  text-decoration: none; white-space: nowrap;
}
.btn-inline-secondary--dark:hover { color: var(--gold-l); }

.section-cta      { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.section-cta--dark { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* Gold / CTA band buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.25rem;
  border: none; border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--navy); background: var(--gold);
  cursor: pointer; transition: background 0.25s;
  white-space: nowrap; text-decoration: none;
}
.btn-gold:hover { background: var(--gold-l); }

.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 1rem 0.5rem;
  border: none; background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--gold-l);
  cursor: pointer; transition: color 0.25s;
  white-space: nowrap; text-decoration: none;
}
.btn-cta-outline:hover { color: var(--ivory); }

/* ═══════════ HERO CARD ═══════════ */
.hero-card {
  background: var(--ivory); border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.hero-card-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.65rem;
}
.hero-card-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--terra);
  flex-shrink: 0;
}
.hero-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .4rem;
  line-height: 1.15;
}
.hero-card p { font-size: 0.9rem; color: var(--text-m); margin-bottom: 1.5rem; }

.hero-form-row { margin-bottom: 1rem; }
.hero-form-row label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: .4rem;
}
.hero-form-row input,
.hero-form-row select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 0.93rem; background: var(--cream);
  color: var(--text-body); transition: border-color .2s; outline: none;
}
.hero-form-row input:focus,
.hero-form-row select:focus { border-color: var(--terra); }
.hero-form-submit {
  width: 100%; padding: 1rem;
  background: var(--terra); color: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  border: none; border-radius: 4px;
  cursor: pointer; transition: background .25s;
  margin-top: .5rem;
}
.hero-form-submit:hover { background: var(--terra-l); }
.hero-card-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-m);
  margin-top: .65rem;
}

/* ═══════════ HERO PANELS ═══════════ */
.hero-panels {
  width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 5;
  min-height: unset; height: 100%;
  padding: 1.5rem 2.5rem 1.5rem 2rem;
}
.panel { display: none; flex-direction: column; justify-content: center; }
.panel.panel-active { display: flex; }
.panel-inner {
  background: var(--ivory); border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  animation: panelIn .35s ease;
}
@keyframes panelIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

.panel-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.panel-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--terra);
  flex-shrink: 0;
}
.panel-label-line { display: none; }

.panel-footnote {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
}

/* Panel clients */
.panel-clients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.panel-client-card {
  background: var(--greige); border: 1px solid var(--border);
  border-radius: 8px; padding: 1rem .9rem;
  display: flex; flex-direction: column; gap: .4rem;
  min-height: 90px; justify-content: center;
}
.panel-client-logo { line-height: 1.3; }
.panel-client-card span {
  font-size: 0.72rem;
  color: var(--text-m);
  font-weight: 500;
  letter-spacing: .04em;
}

/* Panel h3 */
.panel-h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .85rem;
}

/* Panel list */
.panel-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.panel-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.5;
}
.panel-list li svg {
  width: 17px; height: 17px; stroke: var(--terra); fill: none;
  stroke-width: 2; flex-shrink: 0; margin-top: 2px;
}

/* Panel stats */
.panel-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: .85rem; }
.panel-stat-card {
  background: var(--navy); border: 1px solid rgba(201,169,110,0.25);
  border-radius: 8px; padding: .75rem .85rem;
  transition: border-color .25s;
}
.panel-stat-card:hover { border-color: rgba(201,169,110,0.6); }
.panel-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.panel-stat-num sup { font-size: 1rem; color: var(--terra-l); }
.panel-stat-label {
  font-size: 0.78rem;
  color: rgba(250,248,244,.55);
  margin-top: .3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Lines indicator */
.panels-lines {
  display: flex; justify-content: center; gap: .6rem;
  padding: 1.25rem 0 0; z-index: 10; position: relative;
}
.pline {
  height: 3px; width: 40px; border-radius: 2px;
  border: none; background: rgba(255,255,255,.3);
  cursor: pointer; padding: 0; position: relative; overflow: hidden;
  transition: width .3s;
}
.pline.pline-active { width: 64px; background: rgba(255,255,255,.2); }
.pline.pline-active::after {
  content: '';
  position: absolute; top:0; left:0; bottom:0; width:0;
  background: var(--gold);
  animation: fillLine 4s linear forwards;
}
@keyframes fillLine { to { width: 100%; } }

/* ═══════════ SOCIAL PROOF ═══════════ */
.hero-social-proof { display: flex; align-items: center; gap: .65rem; margin-top: 1.25rem; }
.hero-sp-stars { color: var(--gold); font-size: 1rem; letter-spacing: .05em; line-height: 1; flex-shrink: 0; }
.hero-sp-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-m);
  line-height: 1.4;
}

/* ═══════════ TICKER ═══════════ */
#ticker {
  background: var(--navy-mid);
  overflow: hidden;
  padding: .9rem 0;
  border-top: 1px solid rgba(201,169,110,.1);
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.tw { display: flex; width: max-content; animation: ts 55s linear infinite; }
#ticker:hover .tw { animation-play-state: paused; }
@keyframes ts { to { transform: translateX(-50%); } }
.ti { display: flex; align-items: center; gap: .75rem; padding: 0 2.5rem; white-space: nowrap; border-right: 1px solid rgba(201,169,110,.1); }
.ti-ic { stroke: var(--gold); fill: none; width: 14px; height: 14px; flex-shrink: 0; stroke-width: 2; }
.ti-pound { stroke: none; font-size: .9rem; color: var(--gold); font-weight: 600; line-height: 1; width: auto; }
.ti-tx {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,248,244,.5);
}
.ti-hi { color: var(--gold-l); font-weight: 700; }

/* ═══════════ TRUST BAR / PILLARS ═══════════ */
#trust-bar { background: var(--ivory); border-bottom: none; padding: 1.5rem 0 1rem; }
.trust-pillars-wrap { max-width: 100%; margin: 0; padding: 0 3rem; }
.trust-intro { text-align: center; margin-bottom: 3.5rem; }
.trust-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 3.8vw, 3.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .85rem;
  margin-top: .5rem;
}
.trust-h2 em { font-style: italic; color: var(--terra); font-weight: 300; }
.trust-lead {
  font-size: 1.25rem;
  color: var(--text-m);
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.8;
  white-space: nowrap;
}
@media (max-width: 1100px) { .trust-lead { white-space: normal; max-width: 700px; } }

.trust-pillars {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-bottom: 2rem; align-items: stretch;
}
.trust-pillar {
  padding: 2.25rem 2rem;
  background: var(--cream); border: 1px solid var(--border); border-radius: 12px;
  transition: border-color .25s, box-shadow .25s;
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  height: 100%; box-sizing: border-box;
}
.trust-pillar:hover { border-color: rgba(201,169,110,.4); box-shadow: 0 6px 28px rgba(13,27,42,.08); }
.trust-pillar--featured { background: var(--navy); border-color: rgba(201,169,110,.25); }
.trust-pillar--featured:hover { border-color: rgba(201,169,110,.6); box-shadow: 0 6px 28px rgba(13,27,42,.25); }

.trust-pillar-icon {
  width: 54px; height: 54px;
  background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; flex-shrink: 0;
}
.trust-pillar--featured .trust-pillar-icon { background: rgba(201,169,110,.15); border: 1px solid rgba(201,169,110,.3); }
.trust-pillar-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.trust-pillar-icon-pound {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
}
.trust-pillar-num { display: none; }
.trust-pillar h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.trust-pillar--featured h4 { color: var(--ivory); }
.trust-pillar p { font-size: 1.1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 0; flex-grow: 1; }
.trust-pillar--featured p { color: rgba(250,248,244,.7); margin-bottom: 0; flex-grow: 1; }

/* ═══════════ TRUST CREDENTIAL BADGES ═══════════ */
#trust-pills-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  padding: 2rem 2.5rem;
  overflow: hidden;
}
.trust-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  flex-wrap: nowrap; gap: 0;
}
.trust-stat {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 1rem; position: relative; min-width: 0;
}
.trust-stat + .trust-stat::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 40px; width: 1px; background: rgba(201,169,110,0.2);
}
.trust-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 0.35rem;
  white-space: nowrap;
}
.trust-stat-value em { font-style: italic; color: var(--gold); }
.trust-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.45);
  white-space: nowrap;
  line-height: 1;
  min-height: 0.6rem;
}

/* ═══════════ WHY CLIENTS CHOOSE US ═══════════ */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 2.5rem;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.trust-item {
  padding: 1.6rem 2rem 1.6rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.trust-item:nth-child(3n) { padding-right: 0; }
.trust-item-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.trust-item-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.3;
}
.clients-choose-intro {
  font-size: 1.05rem;
  color: var(--text-dark-mid);
  line-height: 1.82;
  margin-bottom: 2rem;
}

/* ═══════════ BELIEFS ═══════════ */
.beliefs-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 1.35rem; }
.beliefs-bottom { grid-column: 1 / 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.belief-card {
  background: var(--cream); border: 1px solid var(--border-terra); border-radius: 10px;
  padding: 2.4rem 2rem 2.1rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: box-shadow 0.25s;
}
.belief-card:hover { box-shadow: 0 6px 28px rgba(13,27,42,0.10); }
.belief-card--navy { background: var(--navy); border-color: transparent; }
.belief-card--navy:hover { box-shadow: 0 6px 28px rgba(13,27,42,0.35); }
.belief-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.belief-card--navy .belief-icon { background: var(--cream); }
.belief-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.belief-icon-text {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  user-select: none;
}
.belief-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.belief-card--navy .belief-title { color: var(--greige); }
.belief-title em { font-style: italic; color: var(--terra); }
.belief-card--navy .belief-title em { color: var(--gold); }
.belief-card--navy .belief-icon svg { stroke: var(--terra); }
.belief-card--navy .belief-icon-text { color: var(--terra); }
.belief-body {
  font-size: 0.91rem;
  line-height: 1.78;
  color: var(--text-body);
}
.belief-card--navy .belief-body { color: var(--greige); }

/* ═══════════ CLIENT QUOTE ═══════════ */
#client-quote { background: var(--navy); padding: 2.5rem 3rem; border-bottom: 1px solid rgba(201,169,110,.1); }
.cq-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.cq-line { width: 48px; height: 2px; background: var(--terra); margin: 0 auto 2rem; }
.cq-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.cq-attr { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.cq-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .1em; }
.cq-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,248,244,.55);
}

/* ═══════════ WHO WE WORK WITH — FLIP CARDS ═══════════ */
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.client-card { perspective: 1200px; height: 240px; cursor: pointer; }
.client-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 8px;
}
.client-card.flipped .client-card-inner { transform: rotateX(180deg); }
.client-card-front,
.client-card-back {
  position: absolute; inset: 0; border-radius: 8px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  overflow: hidden; padding: 1.75rem 2rem;
  display: flex; flex-direction: column;
}
.client-card-front {
  background: var(--cream); border: 1px solid var(--border-terra);
  justify-content: center; align-items: center; text-align: center; gap: 0.75rem;
}
.client-card-back {
  background: var(--navy-mid); border: 1px solid var(--border-gold);
  transform: rotateX(180deg); justify-content: center; gap: 0.75rem;
}
.client-card-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.client-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.client-card-front h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2; margin: 0;
}
.client-card-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--terra);
  opacity: 0.7;
  margin-top: .25rem;
}
.client-card-back h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2; margin: 0;
}
.client-card-back p { font-size: 0.9rem; color: rgba(250,248,244,0.75); line-height: 1.65; margin: 0; }
.client-card-back-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  opacity: 0.6;
  margin-top: auto;
  padding-top: 0.5rem;
}
#who-we-work-with .container { max-width: 1200px; padding: 0 2.5rem; }
.section-intro--dark { color: rgba(250,248,244,0.75); }

/* ═══════════ SERVICES FLIP CARDS ═══════════ */
#services-flip { background: var(--greige); padding: 2.75rem 0; }
#services-flip .sf-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; width: 100%; box-sizing: border-box; }
#services-flip .sf-header { margin-bottom: 3rem; width: 100%; }
#services-flip .sf-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: .8rem;
}
#services-flip .sf-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--terra);
  flex-shrink: 0;
}
#services-flip .sf-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: .6rem;
}
#services-flip .sf-title em { font-style: italic; color: var(--terra); font-weight: 300; }
#services-flip .sf-intro { font-size: 1.1rem; color: var(--text-m); line-height: 1.75; max-width: 640px; }

.sf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; width: 100%; }
.sf-card { perspective: 1200px; height: 280px; cursor: pointer; width: 100%; }
.sf-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4,0.2,0.2,1);
  border-radius: 10px;
}
.sf-card.flipped .sf-card-inner { transform: rotateX(180deg); }
.sf-card-front, .sf-card-back {
  position: absolute; inset: 0; border-radius: 10px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  overflow: hidden; padding: 2rem; display: flex; flex-direction: column;
}
.sf-card-front {
  background: var(--navy); border: 1px solid rgba(201,169,110,.2);
  justify-content: space-between; align-items: flex-start; transition: border-color .25s;
}
.sf-card-front:hover { border-color: rgba(201,169,110,.45); }
.sf-card-back {
  background: var(--cream); border: 1px solid var(--border);
  transform: rotateX(180deg); justify-content: center; gap: .8rem;
}
.sf-icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(201,169,110,.3); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,.08); flex-shrink: 0;
}
.sf-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.sf-card-front h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.3;
}
.sf-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(201,169,110,.6);
}
.sf-back-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
}
.sf-card-back h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.sf-card-back p { font-size: 1rem; color: var(--text-body); line-height: 1.75; flex: 1; }
.sf-back-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: auto;
  opacity: .7;
}

/* ═══════════ CLIENTS TICKER ═══════════ */
#clients {
  background: var(--parchment);
  padding: 2.5rem 0 1.5rem;
  position: relative; overflow: hidden;
}
#clients::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(160,82,45,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cli-header { text-align: center; margin-bottom: 1.75rem; position: relative; }
.cli-rule { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.cli-rule-line { width: 40px; height: 1px; background: var(--terra); opacity: 0.4; }
.cli-rule-diamond { width: 5px; height: 5px; background: var(--terra); transform: rotate(45deg); opacity: 0.6; }
.cli-lb {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  text-align: center; display: block;
  letter-spacing: 0; text-transform: none;
}
.cli-lb em { color: var(--terra); font-style: normal; }
.cli-ou {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}
.cli-tr { display: flex; gap: 0; animation: cs 42s linear infinite; width: max-content; }
.cli-tr:hover { animation-play-state: paused; }
@keyframes cs { to { transform: translateX(-50%); } }
.lg {
  flex-shrink: 0; height: 76px; background: transparent;
  border-left: 1px solid rgba(13,27,42,0.1);
  display: flex; align-items: center; justify-content: center;
  padding: 0 2.5rem; transition: background .3s;
}
.lg:hover { background: rgba(160,82,45,0.05); }
.lg-nm {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: .06em;
  text-align: center; line-height: 1.3; white-space: nowrap;
  transition: color .3s;
}
.lg:hover .lg-nm { color: var(--terra); }
.lg.prem .lg-nm { color: var(--navy); }
.lg-cat { display: none; }
.cli-quote-wrap { max-width: 780px; margin: 1.5rem auto 0; padding: 0 2rem; text-align: center; }
.cli-quote { position: relative; padding: 1.25rem 2.5rem 0; border-top: 1px solid rgba(13,27,42,0.1); }
.cli-quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cli-quote-attr { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.cli-quote-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-m);
}
.cli-quote-role strong { color: var(--terra); font-weight: 600; }
.cli-quote-reg { opacity: .7; }

/* ═══════════ ABOUT ═══════════ */
#about { background: var(--cream); padding: 3rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-pull {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.about-pull em { font-style: italic; color: var(--terra); }
.about-story p { font-size: 1.05rem; color: var(--text-body); line-height: 1.82; margin-bottom: 1.2rem; }
.about-story p:last-child { margin-bottom: 0; }
.about-story p strong { color: var(--navy); font-weight: 600; }
.about-accent { color: var(--terra); font-style: italic; }
.about-gold {
  color: var(--terra);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.08em;
  font-style: italic;
}
.about-callout { border-left: 2px solid rgba(160,82,45,0.4); padding-left: 1.1rem; color: var(--text-body) !important; font-style: italic; opacity: .85; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; box-shadow: 0 20px 60px rgba(13,27,42,.18); }
.about-img-card {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--navy); border-radius: 10px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 12px 40px rgba(13,27,42,.3);
  border: 1px solid rgba(201,169,110,.2);
}
.about-img-card-q {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(250,248,244,.85);
  line-height: 1.5;
  max-width: 220px;
  margin-bottom: .65rem;
}
.about-img-card-by {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.about-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--terra);
}
.about-stat-num sup { font-size: 1.1rem; }
.about-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-m);
}

/* ═══════════ PRICING ═══════════ */
.svc-pricing-section { background: var(--navy); padding: 4rem 2.5rem; }
.svc-pricing-header { margin-bottom: 3rem; text-align: center; }
.svc-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.svc-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--terra);
  flex-shrink: 0;
}
.svc-eyebrow--dark { color: var(--gold); }
.svc-eyebrow--dark::before { background: var(--gold); }
.svc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.12;
  margin-bottom: 0.6rem;
}
.svc-title--dark { color: var(--ivory); }
.svc-title em { font-style: italic; color: var(--terra); }
.svc-title--dark em { color: var(--gold-l); }
.svc-intro { font-size: 1.15rem; color: var(--text-m); line-height: 1.75; }
.svc-intro--dark { color: rgba(250,248,244,0.65); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--cream); border: 1px solid rgba(160,82,45,0.22);
  border-radius: 8px; padding: 2.1rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover { border-color: rgba(160,82,45,0.55); box-shadow: 0 6px 24px rgba(13,27,42,0.07); }
.pricing-card--featured { background: var(--navy); border-color: rgba(201,169,110,0.25); }
.pricing-card--featured:hover { border-color: rgba(201,169,110,0.60); }

.badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--terra); color: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 1rem; border-radius: 20px; white-space: nowrap;
}
.plan-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.pricing-card--featured .plan-label { color: var(--gold); }
.plan-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.75rem;
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price sup { font-size: 2.1rem; vertical-align: top; margin-top: 0.7rem; display: inline-block; }
.pricing-card--featured .plan-price { color: var(--gold); }
.plan-period {
  font-size: 0.92rem;
  color: var(--text-m);
  margin-bottom: 1.6rem;
}
.pricing-card--featured .plan-period { color: rgba(250,248,244,0.45); }
.plan-divider { border: none; border-top: 1px solid #DDD6CC; margin-bottom: 1.35rem; }
.pricing-card--featured .plan-divider { border-top-color: rgba(201,169,110,0.20); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.85rem; flex: 1; }
.plan-features li { font-size: 1rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 0.65rem; line-height: 1.55; }
.pricing-card--featured .plan-features li { color: rgba(250,248,244,0.75); }
.plan-best { font-size: 0.92rem; color: var(--text-m); margin-bottom: 1.35rem; }
.pricing-card--featured .plan-best { color: rgba(250,248,244,0.45); }
.arr { display: inline-block; width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; }
.pricing-footnote {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-m);
  margin-top: 1.75rem;
  letter-spacing: 0.01em;
}

/* Pricing buttons */
.svc-btn {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 4px; padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none; border: 1px solid transparent; text-align: center; width: 100%;
}
.svc-btn + .svc-btn { margin-top: 0.65rem; }
.svc-btn-primary { background: var(--terra); color: var(--ivory); border-color: var(--terra); }
.svc-btn-primary:hover { background: var(--terra-l); border-color: var(--terra-l); }
.svc-btn-primary-dark { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.svc-btn-primary-dark:hover { background: var(--gold-l); }
.svc-btn-soft { background: transparent; color: var(--terra); border-color: rgba(160,82,45,0.38); }
.svc-btn-soft:hover { border-color: var(--terra); background: rgba(160,82,45,0.05); }
.svc-btn-ghost-dark {
  display: block; width: 100%; margin-top: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 1rem;
  border-radius: 4px; padding: 0.85rem 1.5rem;
  background: transparent; color: var(--ivory);
  border: 1px solid rgba(250,248,244,0.28);
  text-decoration: none; text-align: center;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.svc-btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════ PROCESS ═══════════ */
#process { background: var(--greige); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 56px;
  left: calc(16.6% + 44px); right: calc(16.6% + 44px);
  height: 1px;
  background: linear-gradient(90deg, rgba(13,27,42,.15), rgba(13,27,42,.06), rgba(13,27,42,.15));
  z-index: 0;
}
.hw2 { position: relative; z-index: 1; padding: 0 2.5rem; text-align: center; }
.hw2:first-child { padding-left: 0; }
.hw2:last-child  { padding-right: 0; }
.hw2-num-wrap { position: relative; display: inline-flex; margin-bottom: 2rem; }
.hw2-num {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--navy); border: 1.5px solid rgba(13,27,42,.2);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hw2-num::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(13,27,42,.08); }
.hw2-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hw2-icon {
  position: absolute; bottom: -2px; right: -2px;
  width: 30px; height: 30px; background: var(--terra); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy);
}
.hw2-icon svg { width: 13px; height: 13px; stroke: var(--ivory); fill: none; stroke-width: 2; }
.hw2-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .55rem;
}
.hw2-tl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .8rem;
  line-height: 1.15;
}
.hw2-ds { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; }

/* ═══════════ WHO WE HELP ═══════════ */
#who { background: var(--navy); }
.who-header { margin-bottom: 4rem; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.who-card {
  background: var(--cream); border: 1px solid var(--border-terra);
  border-radius: 8px; padding: 2rem 1.75rem;
  transition: border-color .25s, box-shadow .25s;
}
.who-card:hover { border-color: var(--border-terra-h); box-shadow: 0 6px 24px rgba(13,27,42,.12); }
.who-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .55rem;
}
.who-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════ TESTIMONIALS ═══════════ */
#testimonials { background: var(--greige); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.testi-card {
  border-radius: 8px; padding: 1.85rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.testi-card:nth-child(odd)  { background: var(--cream); border: 1px solid var(--border-terra); }
.testi-card:nth-child(odd):hover  { border-color: var(--border-terra-h); box-shadow: 0 5px 22px rgba(13,27,42,0.15); }
.testi-card:nth-child(even) { background: var(--navy); border: 1px solid var(--border-gold); }
.testi-card:nth-child(even):hover { border-color: var(--border-gold-h); box-shadow: 0 5px 22px rgba(13,27,42,0.25); }
.testi-stars { display: flex; gap: 3px; }
.testi-star { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
.testi-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  flex: 1;
}
.testi-card:nth-child(odd)  .testi-quote { color: var(--text-heading); }
.testi-card:nth-child(even) .testi-quote { color: var(--ivory); }
.testi-footer { display: flex; align-items: center; gap: 0.85rem; padding-top: 1rem; }
.testi-card:nth-child(odd)  .testi-footer { border-top: 1px solid var(--border-light); }
.testi-card:nth-child(even) .testi-footer { border-top: 1px solid rgba(201,169,110,0.15); }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-card:nth-child(odd)  .testi-avatar { background: var(--navy); }
.testi-card:nth-child(even) .testi-avatar { background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.25); }
.testi-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.2;
}
.testi-card:nth-child(odd)  .testi-name { color: var(--text-heading); }
.testi-card:nth-child(even) .testi-name { color: var(--ivory); }
.testi-detail { font-size: 0.78rem; }
.testi-card:nth-child(odd)  .testi-detail { color: var(--text-muted); }
.testi-card:nth-child(even) .testi-detail { color: var(--text-dark-low); }

/* tcard variant */
.test-header { text-align: center; margin-bottom: 4rem; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tcard { background: var(--ivory); border: 1px solid rgba(160,82,45,.2); border-radius: 12px; padding: 2rem; transition: border-color .3s, transform .3s; }
.tcard:hover { border-color: rgba(160,82,45,.5); transform: translateY(-3px); }
.tcard-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.tcard-av { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.tcard-nm {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
}
.tcard-role { font-size: 0.82rem; color: var(--text-m); }
.tcard-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.tcard-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.65;
}
.tcard-quote::before {
  content: '\201C';
  font-size: 2.5rem; color: var(--gold);
  line-height: 0; vertical-align: -0.75rem;
  margin-right: .15rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ═══════════ FAQ + CONTACT ═══════════ */
#faq { background: var(--greige); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q svg { width: 18px; height: 18px; stroke: var(--terra); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: 0.95rem; color: var(--text-m); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-contact-card { background: var(--navy); border-radius: 12px; padding: 2.5rem; }
.faq-contact-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: .5rem;
}
.faq-contact-card p { font-size: 0.92rem; color: rgba(250,248,244,.65); margin-bottom: 1.75rem; line-height: 1.65; }
.faq-form-row { margin-bottom: 1rem; }
.faq-form-row input,
.faq-form-row select,
.faq-form-row textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid rgba(201,169,110,.2); border-radius: 6px;
  font-size: 0.93rem;
  background: rgba(255,255,255,.06); color: var(--ivory);
  outline: none; transition: border-color .2s;
}
.faq-form-row input::placeholder,
.faq-form-row textarea::placeholder { color: rgba(250,248,244,.3); }
.faq-form-row input:focus,
.faq-form-row select:focus,
.faq-form-row textarea:focus { border-color: var(--gold); }
.faq-form-row select option { background: var(--navy); }
.faq-form-row textarea { resize: vertical; min-height: 90px; }
.faq-form-submit {
  width: 100%; padding: 1rem;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border: none; border-radius: 4px;
  cursor: pointer; transition: background .25s;
  margin-top: .5rem;
}
.faq-form-submit:hover { background: var(--gold-l); }

/* ═══════════ CTA BAND ═══════════ */
#cta-band { background: var(--terra-d); padding: 2.25rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.cta-inner h2 em { font-style: italic; color: var(--gold-l); }
.cta-inner .cta-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-l);
  opacity: 0.75;
  margin-bottom: 0.45rem;
  display: block;
}
.cta-inner p { font-size: 0.95rem; color: rgba(250,248,244,0.6); margin: 0.4rem 0 0; line-height: 1.6; }
.cta-inner .cta-reassurance { display: flex; align-items: center; gap: 1.25rem; margin-top: 0.85rem; flex-wrap: wrap; }
.cta-inner .cta-pill {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(250,248,244,0.5);
}
.cta-inner .cta-pill svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2.2; flex-shrink: 0; opacity: 0.7; }
.cta-inner-left { flex: 1; min-width: 260px; }
.cta-btns { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; align-items: center; }

/* ═══════════ CUSTOM CURSOR ═══════════ */
#lt-cursor-arrow {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  pointer-events: none; z-index: 999999;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: transform 0.2s cubic-bezier(.25,.46,.45,.94), opacity 0.3s;
}
#lt-cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.55);
  pointer-events: none; z-index: 999998;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: width 0.35s cubic-bezier(.25,.46,.45,.94), height 0.35s cubic-bezier(.25,.46,.45,.94), border-color 0.35s, opacity 0.3s;
}
body.cursor-hover #lt-cursor-ring { width: 42px; height: 42px; border-color: rgba(201,169,110,0.9); }
body.cursor-hover #lt-cursor-arrow { transform: translate(-50%,-50%) scale(1.1); }
body.cursor-click #lt-cursor-ring { width: 18px; height: 18px; border-color: rgba(201,169,110,1); }
@media (hover: none) { #lt-cursor-arrow, #lt-cursor-ring { display: none; } body { cursor: auto !important; } }

/* ═══════════ REVEAL ═══════════ */
.rv { opacity: 1; transform: none; transition: opacity .7s var(--e), transform .7s var(--e); }
.rv.js-ready { opacity: 0; transform: translateY(28px); }
.rv.vis { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left-panel  { inset: 0 0 50% 0; }
  .hero-right-panel { inset: 50% 0 0 0; }
  .hero-content { padding: 3rem 2rem 2rem; }
  .hero-card { max-width: 480px; }
  .hero-panels { min-height: 50vh; padding: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-card { bottom: 1rem; right: 1rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .beliefs-grid { grid-template-columns: 1fr 1fr; }
  .beliefs-bottom { grid-column: 1/3; grid-template-columns: repeat(3,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-pillars { grid-template-columns: 1fr 1fr; }
  .trust-pillars-wrap { padding: 0 1.5rem; }
}

@media (max-width: 900px) {
  .sf-grid { grid-template-columns: repeat(2,1fr); }
  .client-grid { grid-template-columns: repeat(2,1fr); gap: 1.1rem; }
  .client-card { height: 210px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 1rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 2rem 1.25rem; }
  .section-pad { padding: 2rem 0; }

  .nav-links { display: none; }
  .nav-phone { display: none; }
  .burger { display: flex; }

  #hero { height: auto; min-height: auto; flex-direction: column; }
  .hero-left-panel { display: none; }
  .hero-right-panel { position: relative; height: 220px; order: 2; }
  .hero-inner { display: flex; flex-direction: column; padding: 0; }
  .hero-content { background: var(--ivory); padding: 2rem 1.25rem 1.75rem; order: 1; }
  .hero-h1 { font-size: clamp(1.65rem, 6.5vw, 2.2rem); line-height: 1.15; margin-bottom: .75rem; }
  .hero-h1 em { font-size: .85em; }
  .hero-eyebrow { font-size: 0.68rem; margin-bottom: .75rem; }
  .hero-sub { font-size: 0.92rem; margin-bottom: .85rem; }
  .hero-btns { flex-wrap: wrap; gap: .65rem; }
  .btn-terra--book { width: 100%; justify-content: center; padding: .85rem 1.5rem; font-size: .92rem; }
  .btn-ghost-dark  { width: 100%; justify-content: center; font-size: .9rem; padding: .3rem 0; }
  .hero-checks { gap: .55rem; }
  .hero-check { font-size: .9rem; }
  .hero-panels {
    order: 3;
    position: relative !important;
    background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat !important;
    padding: 2rem 1.1rem 2.25rem !important;
    min-height: 300px;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-panels::before {
    content: '' !important; position: absolute !important;
    top:0;left:0;right:0;bottom:0;
    background: rgba(13,27,42,.55) !important;
    pointer-events: none; z-index: 0;
  }
  .hero-panels > * { position: relative; z-index: 1; }
  .panel { width: 100%; }
  .panel-inner { padding: 1.35rem 1.25rem; border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,.28); }
  .panel-clients-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .panel-client-card { min-height: 75px; padding: .75rem; }
  .panel-stats-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .panel-stat-num { font-size: 1.7rem; }
  .panel-h3 { font-size: 1.3rem; }
  .panel-list li { font-size: .87rem; }
  .panel-footnote { font-size: .84rem; margin-bottom: 1.1rem !important; }
  .panel-label { margin-bottom: .75rem; }
  .pline { width: 30px; }
  .pline.pline-active { width: 50px; }

  #ticker { padding: .7rem 0; }
  .ti { padding: 0 1.5rem; gap: .5rem; }
  .ti-tx { font-size: .65rem; }

  #trust-bar { padding: 1.25rem 0 .75rem; }
  .trust-pillars { grid-template-columns: 1fr; gap: 1rem; }
  .trust-intro { margin-bottom: 2rem; }
  .trust-h2 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .trust-lead { font-size: 1rem; white-space: normal; }
  .trust-pillars-wrap { padding: 0 1.25rem; }
  .trust-pillar { padding: 1.75rem 1.5rem; }
  .trust-pillar h4 { font-size: 1.5rem; }
  .trust-pillar p { font-size: 1rem; }

  #trust-pills-bar { padding: 1.5rem 1.25rem; }
  .trust-band-inner { flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
  .trust-stat { flex: 0 0 calc(50% - 1rem); min-width: 120px; }
  .trust-stat + .trust-stat::before { display: none; }
  .trust-stat-value { font-size: 1rem; }
  .trust-stat-label { font-size: .58rem; }

  .beliefs-grid { grid-template-columns: 1fr; gap: .9rem; }
  .beliefs-bottom { grid-column: 1; grid-template-columns: 1fr; gap: .9rem; }
  .belief-card { padding: 1.75rem 1.5rem 1.5rem; }
  .belief-icon { width: 46px; height: 46px; margin-bottom: 1rem; }
  .belief-title { font-size: 1.3rem; }
  .belief-body { font-size: .88rem; }

  .section--dark { padding: 2rem 1.25rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 1.25rem 0; }
  .clients-choose-intro { font-size: .97rem; }
  .section-cta--dark { flex-direction: column; align-items: flex-start; gap: 1rem; }
  h2.section-title { font-size: clamp(2rem, 7vw, 2.8rem); }

  #client-quote { padding: 2rem 1.25rem; }
  .cq-text { font-size: clamp(1.1rem, 4vw, 1.4rem); }

  #services-flip { padding: 2rem 0; }
  #services-flip .sf-inner { padding: 0 1.25rem; }
  #services-flip .sf-header { margin-bottom: 2rem; }
  .sf-grid { grid-template-columns: 1fr; gap: 1rem; }
  .sf-card { height: 260px; }
  .sf-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .sf-intro { font-size: 1rem; }

  #clients { padding: 2rem 0 1.25rem; }
  .cli-lb { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .lg { height: 64px; padding: 0 1.5rem; }
  .lg-nm { font-size: .9rem; }
  .cli-quote-wrap { padding: 0 1.25rem; }
  .cli-quote-text { font-size: clamp(1.05rem, 3.5vw, 1.35rem); }

  #about { padding: 2rem 0; }
  .about-pull { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
  .about-story p { font-size: .97rem; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .about-stat-num { font-size: 2rem; }
  .about-img { aspect-ratio: 16/9; }
  .about-img-card { right: .75rem; bottom: .75rem; padding: 1.1rem 1.25rem; }
  .about-img-card-q { font-size: .95rem; max-width: 180px; }

  .svc-pricing-section { padding: 2.5rem 1.25rem; }
  .svc-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .pricing-card { padding: 1.75rem 1.5rem; }
  .plan-price { font-size: 3.8rem; }

  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps::before { display: none; }
  .hw2, .hw2:first-child, .hw2:last-child { padding: 0 1.25rem; text-align: left; }
  .hw2-num-wrap { display: inline-flex; margin-bottom: 1.25rem; }
  .hw2-tl { font-size: 1.45rem; }
  .hw2-ds { font-size: .9rem; }

  .who-grid { grid-template-columns: 1fr; gap: 1rem; }
  .who-card { padding: 1.5rem 1.25rem; }
  .who-card h3 { font-size: 1.25rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 1.5rem 1.25rem; }
  .testi-quote { font-size: 1.1rem; }
  .test-grid { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-q { font-size: .95rem; }
  .faq-contact-card { padding: 1.75rem 1.25rem; }
  .faq-contact-card h3 { font-size: 1.7rem; }

  #cta-band { padding: 2rem 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cta-inner h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .cta-btns { width: 100%; flex-direction: column; }
  .btn-gold { width: 100%; justify-content: center; }
  .btn-cta-outline { padding: .5rem 0; }
  .cta-inner .cta-reassurance { gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  #footer { padding: 2rem 0 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .f-legal { flex-wrap: wrap; gap: 1rem; }
  .f-col-h { margin-bottom: .85rem; }

  .section-h2 { font-size: clamp(1.9rem, 6.5vw, 2.6rem); }
  .section-label { margin-bottom: .75rem; }
  .section-cta { flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 1.75rem; }
  .btn-inline-primary { width: 100%; justify-content: center; }

  body { overflow-x: hidden; }
  .hero-btns { overflow: visible; }
  .sf-card, .client-card { max-width: 100%; }
}

@media (max-width: 580px) {
  .client-grid { grid-template-columns: 1fr; gap: .9rem; }
  .client-card { height: 190px; }
  #who-we-work-with .container { padding: 0 1.25rem; }
}

@media (max-width: 560px) {
  .sf-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-quote { font-size: 1.05rem; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .beliefs-bottom { grid-column: 1; grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  html { font-size: 14px; }
  .container { padding: 0 1rem; }
  .section { padding: 1.75rem 1rem; }
  .hero-right-panel { height: 180px; }
  .panel-clients-grid { grid-template-columns: 1fr; }
  .panel-stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-stat { flex: 0 0 calc(50% - .5rem); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-img-card { display: none; }
  .sf-card { height: 240px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .eyebrow--lined::before, .eyebrow--lined::after { width: 18px; }
}

/* ═══════════════════════════════════════════════════
   TABLET  ≤ 900px (hero panels bg)
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  #hero { height: auto; min-height: unset; display: block; }
  .hero-left-panel  { display: none; }
  .hero-right-panel { display: none; }
  .hero-inner { display: flex; flex-direction: column; gap: 0; padding: 0; }
  .hero-content { background: var(--ivory); padding: 2.5rem 1.75rem 2rem; order: 1; }
  .hero-h1 { font-size: clamp(1.85rem, 5.5vw, 2.6rem); }
  .hero-panels {
    position: relative !important;
    background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat !important;
    padding: 2.5rem 1.5rem !important;
    order: 2; min-height: 340px;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-panels::before {
    content: '' !important; position: absolute !important;
    top:0;left:0;right:0;bottom:0;
    background: rgba(13,27,42,.55) !important;
    pointer-events: none; z-index: 0;
  }
  .hero-panels > * { position: relative; z-index: 1; }
  .panel-inner { padding: 1.5rem 1.5rem; }
}

/* ═════════════════════════════════════
   SELF-HOSTED FONTS
   ===================================== */
@font-face { font-family:'Cormorant Garamond'; font-style:normal;  font-weight:300; font-display:swap; src:url('cormorant-garamond-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic;  font-weight:300; font-display:swap; src:url('cormorant-garamond-latin-300-italic.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal;  font-weight:400; font-display:swap; src:url('cormorant-garamond-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic;  font-weight:400; font-display:swap; src:url('cormorant-garamond-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal;  font-weight:500; font-display:swap; src:url('cormorant-garamond-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic;  font-weight:500; font-display:swap; src:url('cormorant-garamond-latin-500-italic.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal;  font-weight:600; font-display:swap; src:url('cormorant-garamond-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic;  font-weight:600; font-display:swap; src:url('cormorant-garamond-latin-600-italic.woff2') format('woff2'); }
@font-face { font-family:'DM Sans'; font-style:normal; font-weight:300; font-display:swap; src:url('dm-sans-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family:'DM Sans'; font-style:normal; font-weight:400; font-display:swap; src:url('dm-sans-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'DM Sans'; font-style:normal; font-weight:500; font-display:swap; src:url('dm-sans-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'DM Sans'; font-style:normal; font-weight:600; font-display:swap; src:url('dm-sans-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family:'DM Sans'; font-style:normal; font-weight:700; font-display:swap; src:url('dm-sans-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family:'DM Mono'; font-style:normal; font-weight:400; font-display:swap; src:url('dm-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'DM Mono'; font-style:normal; font-weight:500; font-display:swap; src:url('dm-mono-latin-500-normal.woff2') format('woff2'); }