/* =====================================================
   Happy2Investt 2.0 — Main Stylesheet
   Fonts  : Fraunces (display) + Instrument Sans (UI)
   Colors : #0f2317 / #1a3a24 / #f5f0e8 / #ede6d6 / #b8912a
   Width  : 1440px canvas · 130px side padding
   ===================================================== */

/* ── Variables ───────────────────────────────────────── */
:root {
  --green-dark  : #0f2317;
  --green-mid   : #1a3a24;
  --green-light : #2a4d33;
  --cream       : #f5f0e8;
  --beige       : #ede6d6;
  --gold        : #b8912a;
  --gold-light  : #d4aa44;
  --gold-pale   : rgba(184,145,42,.15);
  --white       : #ffffff;
  --text-dark   : #0d1f11;
  --text-mid    : #3a3a2e;
  --text-muted  : #7a7a6e;
  --text-ondk   : rgba(245,240,232,.80);

  --font-display : 'Fraunces', Georgia, serif;
  --font-ui      : 'Instrument Sans', system-ui, -apple-system, sans-serif;

  --cw  : 1280px;   /* content max-width */
  --pad : clamp(20px, 9.03vw, 130px);  /* 130px @ 1440 */

  --r-sm : 4px;
  --r-md : 8px;
  --r-lg : 16px;

  --ease : cubic-bezier(.4,0,.2,1);
  --t    : .25s var(--ease);
}

@media (max-width: 767px) {
  :root { --pad: 16px; }
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-ui); color: var(--text-dark); background: var(--cream); line-height: 1.6; }
img { max-width: 100%; display: block; }
picture { display: block; }
picture img { max-width: 100%; display: block; }
video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
/* WP reset: img tags default safe */
img { height: auto; }

/* ── Container ───────────────────────────────────────── */
.container { max-width: calc(var(--cw) + var(--pad) * 2); padding-inline: var(--pad); margin-inline: auto; }

/* ── Typography helpers ──────────────────────────────── */
.text-italic  { font-style: italic; font-family: var(--font-display); }
.section-tag  { display: inline-block; font-size: .6875rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.section-tag--gold { color: var(--gold); }

/* ── Buttons ─────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: .8125rem; font-weight: 600; letter-spacing: .06em; white-space: nowrap; cursor: pointer; transition: var(--t); }
.btn-gold         { background: var(--gold); color: var(--green-dark); padding: 12px 24px; border-radius: var(--r-sm); border: 2px solid var(--gold); }
.btn-gold:hover   { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-dark { background: transparent; color: var(--green-dark); padding: 11px 24px; border: 1.5px solid var(--green-dark); border-radius: var(--r-sm); }
.btn-outline-dark:hover { background: var(--green-dark); color: var(--white); }
.btn-outline-light{ background: transparent; color: var(--cream); padding: 11px 24px; border: 1.5px solid rgba(245,240,232,.5); border-radius: var(--r-sm); }
.btn-outline-light:hover{ border-color: var(--cream); background: rgba(245,240,232,.08); }
.btn-dark         { background: var(--green-dark); color: var(--cream); padding: 12px 28px; border-radius: var(--r-sm); }
.btn-dark:hover   { background: var(--green-mid); }
.btn-wa           { background: transparent; color: var(--green-dark); padding: 10px 16px; border: 1.5px solid rgba(13,31,17,.2); border-radius: var(--r-sm); }
.btn-wa:hover     { border-color: var(--green-dark); }

/* ─────────────────────────────────────────────────────
   CREDENTIALS TICKER
───────────────────────────────────────────────────── */
.credentials-ticker {
  background: var(--green-dark);
  height: 36px;
  overflow: hidden;
  position: relative;
}
.credentials-ticker::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--green-dark));
  pointer-events: none;
  z-index: 1;
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-inline: 32px;
  font-family: var(--font-ui);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,240,232,.5);
  white-space: nowrap;
}
.ticker-item strong { color: #d4a843; font-weight: 700; }
.ticker-dot { width: 3px; height: 3px; border-radius: 1.5px; background: #b8912a; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(13,31,17,.10);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 4px 16px rgba(13,31,17,.08); }

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 56px; width: auto; }

/* Nav links */
.nav-links { display: flex; align-items: center; }
.nav-ul { display: flex; align-items: center; }
.nav-ul li a {
  display: block;
  padding: 8px 11px;
  font-family: var(--font-ui);
  font-size: .75rem;             /* 12px */
  font-weight: 500;
  letter-spacing: .02em;         /* 0.24px at 12px */
  color: rgba(13,31,17,.50);
  transition: color var(--t);
  position: relative;
  white-space: nowrap;
}
.nav-ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 11px; right: 11px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-ul li a:hover { color: #0d1f11; }
.nav-ul li a:hover::after,
.nav-ul li.current-menu-item > a::after { transform: scaleX(1); }
.nav-ul li.current-menu-item > a { color: #0d1f11; font-weight: 500; }

/* Right actions */
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* CLIENT LOGIN — same height as WhatsApp (7px top/bottom) */
.nav-login.btn {
  background: transparent;
  color: rgba(13,31,17,.50);
  border: 1px solid rgba(13,31,17,.10);
  border-radius: 0;
  padding: 7px 12px;
  font-size: .71875rem;          /* 11.5px */
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nav-login.btn:hover { background: rgba(13,31,17,.05); color: #0d1f11; }

/* WhatsApp */
.nav-wa.btn {
  background: rgba(26,58,36,.07);
  color: #265235;
  border: none;
  border-radius: 0;
  padding: 7px 12px;
  gap: 5px;
  font-size: .71875rem;          /* 11.5px */
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nav-wa.btn:hover { background: rgba(26,58,36,.12); }
.nav-wa.btn svg { width: 13px; height: 13px; flex-shrink: 0; }

/* BOOK FREE CALL */
.nav-cta.btn {
  background: #b8912a;
  color: #0f2317;
  border: none;
  border-radius: 0;
  padding: 14px 28px;
  width: 200px;
  justify-content: center;
  font-size: .8125rem;           /* 13px */
  font-weight: 600;
  letter-spacing: .07em;         /* 0.91px at 13px */
  text-transform: uppercase;
}
.nav-cta.btn:hover { background: var(--gold-light); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: var(--t); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.section-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  background-color: var(--green-dark);
  overflow: hidden;
}

/* Video BG */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,35,23,.88) 0%,
    rgba(15,35,23,.72) 55%,
    rgba(15,35,23,.50) 100%
  );
}

/* Content */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 80px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 680px;
}

/* Eyebrow */
.hero-top-tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.htag-line {
  display: block;
  width: 28px;
  height: 1px;
  background: #b8912a;
  flex-shrink: 0;
}
.htag-text {
  font-family: var(--font-ui);
  font-size: .65625rem;          /* 10.5px */
  font-weight: 600;
  letter-spacing: .22em;         /* 2.31px at 10.5px */
  text-transform: uppercase;
  color: rgba(245,240,232,.42);
  white-space: nowrap;
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.7vw, 5.125rem);  /* 82px at 1440 */
  font-weight: 900;
  line-height: .97;
  letter-spacing: -.04em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.hero-line-cream {
  display: block;
  color: #f5f0e8;
  font-weight: 900;
  font-style: normal;
}
.hero-line-gold {
  display: block;
  color: #f0cc7a;
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}

/* Subtext */
.hero-sub {
  font-family: var(--font-ui);
  font-size: 1.0625rem;          /* 17px */
  font-weight: 400;
  line-height: 1.8;              /* 30.6px at 17px */
  color: rgba(245,240,232,.52);
  max-width: 420px;
  margin: 0;
}
.hero-sub strong {
  font-weight: 600;
  color: rgba(245,240,232,.82);
}

/* Buttons */
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b8912a;
  color: #0f2317;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: .84375rem;          /* 13.5px */
  font-weight: 600;
  letter-spacing: .06em;         /* 0.81px at 13.5px */
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--t);
  border: none;
}
.hero-btn-gold:hover { background: #d4a843; }

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid rgba(245,240,232,.35);
  color: #f5f0e8;
  font-family: var(--font-ui);
  font-size: .84375rem;          /* 13.5px */
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color var(--t), background var(--t);
}
.hero-btn-outline:hover { border-color: rgba(245,240,232,.7); background: rgba(245,240,232,.06); }

/* ─────────────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────────────── */
.section-marquee {
  background: #1a3a24;
  height: 44px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.mq-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: mq-scroll 32s linear infinite;
}
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-inline: 28px;
  font-family: var(--font-ui);
  font-size: .6875rem;           /* 11px */
  font-weight: 700;
  letter-spacing: .16em;         /* 1.76px at 11px */
  text-transform: uppercase;
  color: #d4a843;                /* Old Gold */
  white-space: nowrap;
}
.mq-bull {
  color: #b8912a;                /* Marigold */
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

/* ─────────────────────────────────────────────────────
   ABOUT  (node 1:4921 — exact Figma match)
───────────────────────────────────────────────────── */
.section-about {
  background: var(--cream);
  padding-block: 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 554px 1fr;
  gap: 60px;
  align-items: start;
}

/* ── LEFT column ── */
.about-left { display: flex; flex-direction: column; gap: 0; }

.av-main {
  position: relative;
  width: 100%;
  aspect-ratio: 544 / 625;
  overflow: hidden;
}
/* Absolute fill — picture + img fill container exactly, no stretch */
.av-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.av-picture img,
.av-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top;
}

/* Floating stat tile — bottom-right of image */
.av-float-stat {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold);
  padding: 20px 24px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 20px rgba(184,145,42,.35);
}
.avst-num { display: flex; align-items: flex-end; gap: 2px; line-height: 1; }
.avst-big {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--green-dark);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  letter-spacing: -.03em;
  line-height: 1;
}
.avst-small {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--green-dark);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  line-height: 1;
  padding-bottom: 2px;
}
.avst-label {
  font-family: var(--font-ui);
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(13,31,17,.55);
  line-height: 1;
}

/* Award strip */
.av-award-strip {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  width: 100%;
}
.ava-icon { font-size: 1.25rem; flex-shrink: 0; }
.ava-text { display: flex; flex-direction: column; gap: 5px; }
.ava-title {
  font-family: var(--font-ui);
  font-size: .80625rem;
  font-weight: 700;
  color: #d4a843;
  letter-spacing: .03em;
  line-height: 1;
}
.ava-sub {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(245,240,232,.65);
  letter-spacing: .03em;
  line-height: 1;
}

/* ── RIGHT column ── */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 20px;
}

/* Eyebrow */
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.aey-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.aey-text {
  font-family: var(--font-ui);
  font-size: .65625rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Headline */
.about-headline {
  font-family: var(--font-display);
  font-size: 3.125rem;           /* 50px — exact Figma */
  font-weight: 900;
  line-height: 1.06;             /* 53px at 50px */
  letter-spacing: -.035em;       /* -1.75px at 50px */
  color: var(--green-dark);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin-bottom: 28px;
}
.about-h-black { font-weight: 900; color: var(--green-dark); }
.about-h-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

/* Gold rule */
.about-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* Lead paragraph (gold left border) */
.about-lead {
  border-left: 1.6px solid var(--gold);
  padding-left: 19.6px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(13,31,17,.50);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin-bottom: 32px;
}

/* Body paragraphs */
.about-body {
  font-family: var(--font-ui);
  font-size: .96875rem;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(13,31,17,.50);
  margin-bottom: 20px;
}
.about-body:last-of-type { margin-bottom: 0; }

/* Stats row */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(13,31,17,.10);
  margin-top: 36px;
}
.asr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 28px 24px;
  border-right: .8px solid rgba(13,31,17,.10);
  text-align: center;
}
.asr:last-child { border-right: none; }
.asr-n { display: flex; align-items: flex-end; gap: 2px; justify-content: center; }
.asr-big {
  font-family: var(--font-display);
  font-size: 2.125rem;           /* 34px */
  font-weight: 900;
  color: #1a3a24;                /* Celtic — Figma exact */
  letter-spacing: -.03em;
  line-height: 1;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.asr-suf {
  font-family: var(--font-display);
  font-size: 1.275rem;           /* 20.4px */
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  padding-bottom: 2px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.asr-l {
  font-family: var(--font-ui);
  font-size: .625rem;            /* 10px */
  font-weight: 400;
  letter-spacing: .12em;         /* 1.2px */
  text-transform: uppercase;
  color: rgba(13,31,17,.25);
  line-height: 1;
}

/* responsive */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-right { padding-top: 40px; }
  .av-main { aspect-ratio: 4/3; max-height: 380px; }
}

/* ─────────────────────────────────────────────────────
   SERVICES  (node 1:4972 — Fraunces + Instrument Sans)
───────────────────────────────────────────────────── */
.section-services {
  background: #0f2317;
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}

/* Rotated watermark */
.svc-watermark {
  position: absolute;
  right: -40px;
  top: 580px;
  transform: rotate(90deg);
  transform-origin: top right;
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 900;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  color: rgba(255,255,255,.024);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.svc-wrap {
  position: relative;
  z-index: 1;
  /* No extra x-padding — container already has 130px; accordion uses own indents */
}

/* ── Header ── */
.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;              /* right col aligns to bottom of headline */
  padding: 0 0 40px 0;
}
.svc-header-l { display: flex; flex-direction: column; gap: 14px; }
.svc-eyebrow {
  font-family: var(--font-ui);
  font-size: .65625rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #d4a843;
  line-height: 1;
}
.svc-h2 { font-family: var(--font-display); font-style: normal; margin: 0; }
.svc-h2-black {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;          /* 64px — fixed, no clamp wrapping issue */
  font-weight: 900;
  letter-spacing: -.04em;
  color: #f5f0e8;
  line-height: 1;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.svc-h2-italic {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -.04em;
  color: #f0cc7a;
  line-height: 1;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.svc-header-r { padding-bottom: 4px; }
.svc-header-p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245,240,232,.45);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}

/* ── Accordion list ── */
.svc-acc { border-top: .8px solid rgba(245,240,232,.10); }
.svc-item { border-bottom: .8px solid rgba(245,240,232,.10); }

/* Trigger button — num | name | [spacer] | tags | toggle */
.svc-trigger {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.svc-num {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 700;
  color: #b8912a;
  letter-spacing: .08em;
  flex-shrink: 0;
  width: 28px;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  line-height: 1;
}

.svc-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #f5f0e8;
  letter-spacing: -.02em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  line-height: 1;
  transition: color var(--t);
  /* no flex-shrink: 0 — allow to push tags right */
}
.svc-item.is-open .svc-name,
.svc-trigger:hover .svc-name { color: #f0cc7a; }

/* Tags pushed to the right */
.svc-tags-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-left: auto;  /* push to right */
  flex-shrink: 0;
}
.svc-tag {
  background: rgba(245,240,232,.06);
  border-radius: 2px;
  padding: 8px 10px;
  font-family: var(--font-ui);
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.35);
  white-space: nowrap;
  line-height: 1;
}

/* Toggle — LAST in trigger, flex-shrink: 0 */
.svc-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,232,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(245,240,232,.50);
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
}
.svc-toggle.is-open {
  background: #b8912a;
  border-color: #b8912a;
  color: #0f2317;
  transform: rotate(45deg);
}

/* Body panel */
.svc-body {
  overflow: hidden;
  max-height: 36px;   /* peek — one line of text + thin image strip */
  transition: max-height .42s cubic-bezier(.4,0,.2,1);
}
.svc-item.is-open .svc-body { max-height: 520px; }

.svc-body-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 0 0 28px 48px; /* left-indent to align with service name */
}
.svc-desc-col { display: flex; align-items: flex-start; }
.svc-desc {
  font-family: var(--font-display);
  font-size: 1.0625rem; /* 17px */
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,.60);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}

/* Service image */
.svc-img-col { display: block; border-radius: 4px; overflow: hidden; }
.svc-pic { display: block; border-radius: 4px; overflow: hidden; }
.svc-pic img {
  display: block !important;
  width: 100% !important;
  height: 285px !important;
  object-fit: cover !important;
  border-radius: 4px;
}

/* Footer CTA */
.svc-cta-row { margin-top: 40px; }
.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245,240,232,.35);
  padding: 14.8px 28.8px;
  font-family: var(--font-ui);
  font-size: .84375rem; /* 13.5px */
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #f5f0e8;
  transition: border-color var(--t), color var(--t);
}
.svc-cta-btn:hover { border-color: #b8912a; color: #b8912a; }

/* Responsive */
@media (max-width: 1024px) {
  .section-services { padding-inline: 40px; }
  .svc-header { grid-template-columns: 1fr; gap: 24px; }
  .svc-body-in { grid-template-columns: 1fr; }
  .svc-tags-row { display: none; }
}
@media (max-width: 640px) {
  .section-services { padding: 60px 20px; }
  .svc-wrap { padding-inline: 0; }
  .svc-h2-black, .svc-h2-italic { font-size: 2.2rem; }
  .svc-name { font-size: 1.25rem; }
}

/* ─────────────────────────────────────────────────────
   WHY
───────────────────────────────────────────────────── */
.section-why { background: var(--cream); padding-block: 80px; }

.why-intro {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.why-headline {
  font-family: var(--font-display);
  font-size: 3.75rem;          /* 60px */
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--green-dark);
  margin: 0;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.why-headline em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.why-divider { width: 40px; height: 2px; background: var(--gold); flex-shrink: 0; }

/* Rows */
.why-rows { display: flex; flex-direction: column; }
.why-row {
  display: flex;
  align-items: flex-start;
  border-top: .8px solid rgba(13,31,17,.10);
}
.why-row:last-child { border-bottom: .8px solid rgba(13,31,17,.10); }

/* Number column — equal width, vertical divider on right */
.why-num {
  flex: 1 0 0;
  padding: 48px 40px;
  display: flex;
  align-items: flex-end;
  border-right: .8px solid rgba(13,31,17,.10);
  font-family: var(--font-display);
  font-size: 7rem;             /* 112px */
  font-weight: 900;
  color: #ede6d6;
  letter-spacing: -.04em;
  line-height: .9;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}

/* Content column — equal width */
.why-content {
  flex: 1 0 0;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.625rem;         /* 26px */
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.why-desc {
  font-family: var(--font-ui);
  font-size: .9375rem;         /* 15px */
  color: rgba(13,31,17,.50);
  line-height: 1.75;
  margin: 0;
}

/* ─────────────────────────────────────────────────────
   CREDENTIALS
───────────────────────────────────────────────────── */
.section-credentials {
  background: var(--green-mid);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}
.cred-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23f5f0e8' fill-opacity='.04'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cred-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.cred-header-left { display: flex; flex-direction: column; gap: 10px; }
.cred-headline {
  font-family: var(--font-display);
  font-size: 3rem;               /* 48px — fits "Recognised for Excellence" in 2 lines */
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin: 0;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.cred-headline span { display: block; }
.cred-headline em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: #d4a843;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.cred-subtext {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(245,240,232,.60);
  line-height: 1.7;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  align-self: flex-end;          /* bottom-aligns with headline */
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(245,240,232,.12);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: rgba(245,240,232,.05);
}
.cred-card {
  padding: 36px;
  border-right: 1px solid rgba(245,240,232,.12);
  border-bottom: 1px solid rgba(245,240,232,.12);
  transition: background var(--t), color var(--t);
  cursor: default;
}
.cred-card:nth-child(even) { border-right: none; }

/* Hover: gold bg, dark text (same as Figma hover state) */
.cred-card:hover { background: var(--gold); }
.cred-card:hover .cred-cat  { color: rgba(13,31,17,.65); }
.cred-card:hover .cred-title { color: var(--green-dark); }
.cred-card:hover .cred-desc  { color: rgba(13,31,17,.75); }

.cred-cat {
  display: block;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b8912a;
  margin-bottom: 16px;
  transition: color var(--t);
}
.cred-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color var(--t);
}
.cred-desc { font-size: .8125rem; color: var(--text-ondk); line-height: 1.65; transition: color var(--t); }

.cred-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.cred-quote {
  font-family: var(--font-display);
  font-size: 1.625rem;
  line-height: 1.4;
  max-width: 620px;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.cq-bold {
  display: block;
  font-weight: 700;
  font-style: normal;
  color: #f5f0e8;
}
.cq-italic {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,.55);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
/* Square button in cred-bottom — overrides global .btn-gold radius */
.cred-bottom .btn-gold {
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 28px;
  border: none;
}

/* ─────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────── */
.section-testimonials { background: var(--beige); padding-block: 80px; }

/* Header: left headline col + right intro col */
.testi-header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px;
}
.testi-hl {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.testi-headline {
  font-family: var(--font-display);
  font-size: 4.5rem;             /* 72px */
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--green-dark);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.testi-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.testi-intro {
  flex: 1;
  padding-top: 9px;
  border-top: .8px solid rgba(13,31,17,.10);
  font-family: var(--font-display);
  font-size: 1.25rem;            /* 20px */
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(13,31,17,.50);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}

/* Items */
.testi-stack { display: flex; flex-direction: column; }
.testi-item {
  display: flex;
  align-items: flex-start;
  padding-block: 48px;
  border-top: .8px solid rgba(13,31,17,.10);
}
.testi-item:last-child { border-bottom: .8px solid rgba(13,31,17,.10); }

.testi-num {
  flex: 0 0 auto;
  width: 114px;
  padding-right: 48px;
  padding-top: 7px;
  font-family: var(--font-display);
  font-size: 3.75rem;            /* 60px */
  font-weight: 900;
  color: #e2d9c5;
  letter-spacing: -.04em;
  line-height: .9;
  text-align: right;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.testi-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ti-stars { display: flex; gap: 2px; color: var(--gold); font-size: .875rem; line-height: 1; }
.ti-quote {
  font-family: var(--font-display);
  font-size: 1.375rem;           /* 22px */
  font-weight: 700;
  color: #0f2317;
  line-height: 1.4;
  letter-spacing: -.02em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.ti-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.ti-dash {
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.ti-name {
  font-family: var(--font-ui);
  font-size: .8125rem;           /* 13px */
  font-weight: 600;
  color: #0d1f11;
  line-height: 1;
}
.ti-role {
  font-family: var(--font-ui);
  font-size: .75rem;             /* 12px */
  font-weight: 400;
  color: rgba(13,31,17,.25);
  line-height: 1;
  margin-top: 3px;
}

/* ─────────────────────────────────────────────────────
   CASE STUDIES
───────────────────────────────────────────────────── */
.section-case-studies { background: var(--cream); padding-block: 80px; }

/* Header */
.cs-hd {
  display: flex;
  gap: 64px;
  align-items: flex-end;
  margin-bottom: 32px;
}
.cs-hd-l {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-headline {
  font-family: var(--font-display);
  font-size: 4rem;               /* 64px */
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.04em;
  color: var(--green-dark);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.cs-headline span { display: block; }
.cs-headline em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.cs-intro {
  flex: 1 0 0;
  font-family: var(--font-display);
  font-size: 1.1875rem;          /* 19px */
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(13,31,17,.50);
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}

/* Magazine grid */
.cs-mag {
  display: flex;
  gap: 1px;
  background: rgba(13,31,17,.10);
  border: 1px solid rgba(13,31,17,.10);
  overflow: hidden;
}

/* Shared tag */
.cs-tag {
  display: block;
  font-family: var(--font-ui);
  font-size: .625rem;            /* 10px */
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* Shared link */
.cs-link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .78125rem;          /* 12.5px */
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1a3a24;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Shared sublabel */
.cs-sublabel {
  font-family: var(--font-ui);
  font-size: .75rem;             /* 12px */
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(13,31,17,.25);
  line-height: 1;
  margin: 0;
}

/* Featured (left col) */
.cs-feat {
  flex: 0 0 54.5%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.cs-feat-img {
  flex: 1 0 0;
  min-height: 320px;
  overflow: hidden;
}
.cs-feat-img picture { display: block; width: 100%; height: 100%; }
.cs-feat-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.cs-feat-body {
  border-top: .8px solid rgba(13,31,17,.10);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cs-feat-title {
  font-family: var(--font-display);
  font-size: 1.75rem;            /* 28px */
  font-weight: 900;
  color: #0f2317;
  line-height: 1.15;
  letter-spacing: -.025em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.cs-feat-stat {
  font-family: var(--font-display);
  font-size: 4rem;               /* 64px */
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.04em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  padding-top: 5px;
}

/* Right cells col */
.cs-cells {
  flex: 1 0 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(13,31,17,.10);
}
.cs-cell {
  background: var(--cream);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 0;
}
.cs-cell-top { display: flex; flex-direction: column; gap: 8px; padding-bottom: 10px; }
.cs-cell-bot { display: flex; flex-direction: column; gap: 7px; padding-top: 12px; }
.cs-cell-title {
  font-family: var(--font-display);
  font-size: 1.25rem;            /* 20px */
  font-weight: 900;
  color: #0f2317;
  line-height: 1.15;
  letter-spacing: -.025em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.cs-cell-stat {
  font-family: var(--font-display);
  font-size: 2.625rem;           /* 42px */
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.04em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}

/* CTA below grid */
.cs-cta-row { margin-top: 28px; }
.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: .84375rem;          /* 13.5px */
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1a3a24;
  border: 1px solid #1a3a24;
  padding: 14px 28px;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.cs-cta-btn:hover { background: #1a3a24; color: var(--cream); }

/* ─────────────────────────────────────────────────────
   LEAD MAGNET
───────────────────────────────────────────────────── */
.section-lead-magnet {
  background: #0f2317;
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}

/* Corner triangles */
.lm-corner {
  position: absolute;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 0;
}
.lm-corner--tr {
  top: 0; right: 0;
  border-top: 160px solid rgba(245,240,232,.04);
  border-left: 160px solid transparent;
}
.lm-corner--bl {
  bottom: 0; left: 0;
  border-bottom: 160px solid #ede6d6;
  border-right: 160px solid transparent;
}

/* Main layout */
.lm-inner {
  display: flex;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT: doc card */
.lm-doc {
  flex: 0 0 calc(50% - 48px);
  background: rgba(245,240,232,.06);
  border: 1px solid rgba(245,240,232,.12);
  border-radius: 0;
  padding: 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lm-free-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #b8912a;
  color: #0f2317;
  font-family: var(--font-ui);
  font-size: .5625rem;           /* 9px */
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
}
.lm-doc-icon { display: block; margin-bottom: 4px; }
.lm-doc-icon img { display: block; width: 36px; height: 36px; }
.lm-doc-title {
  font-family: var(--font-display);
  font-size: 1.75rem;            /* 28px */
  font-weight: 900;
  color: #f5f0e8;
  line-height: 1.2;
  letter-spacing: -.025em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
  padding-top: 11px;
}
.lm-doc-sub {
  font-family: var(--font-ui);
  font-size: .75rem;             /* 12px */
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.40);
  padding-bottom: 16px;
  margin: 0;
}
.lm-doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: .8px solid rgba(245,240,232,.10);
  padding-top: 20px;
  padding-left: 0;               /* no browser default ul indent */
  margin: 0;
  list-style: none;
}
.lm-doc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: .8125rem;           /* 13px */
  color: rgba(245,240,232,.55);
  line-height: 1.4;
  padding-left: 0;
}
.lm-doc-list li::before {
  content: '—';
  font-size: .625rem;
  color: rgba(245,240,232,.25);
  flex-shrink: 0;
  line-height: 1;
}

/* RIGHT: CTA */
.lm-right {
  flex: 0 0 calc(50% - 48px);
  display: flex;
  flex-direction: column;
  gap: 6px;                      /* tight gap like Figma */
}
.lm-right .section-tag { margin-bottom: 0; }
.lm-right .lm-body { margin-top: 6px; margin-bottom: 12px; }
.lm-headline {
  font-family: var(--font-display);
  font-size: 3.25rem;            /* 52px */
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
  margin: 0;
}
.lm-headline span {
  display: block;
  color: #f5f0e8;
}
.lm-headline em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: #f0cc7a;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}
.lm-body {
  font-family: var(--font-display);
  font-size: 1.125rem;           /* 18px */
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,.60);
  margin: 0;
  padding-bottom: 6px;
  font-variation-settings: 'SOFT' 0,'WONK' 1;
}

/* Form — matches Figma exactly */
.lm-form-wrap {
  background: rgba(245,240,232,.06);
  border: 1px solid rgba(245,240,232,.12);
  padding: 29px;                 /* Figma exact: 28.8px */
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lm-form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: .65625rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,240,232,.40);
}
.lm-form-row {
  display: flex;
  border: 1px solid rgba(245,240,232,.20);
  overflow: hidden;
}
.lm-email-input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(245,240,232,.05);
  border: none;
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--white);
  outline: none;
  min-width: 0;
}
.lm-email-input::placeholder { color: rgba(245,240,232,.25); }

.lm-btn {
  background: #b8912a;
  color: #0f2317;
  border: none;
  padding: 13px 22px;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t);
}
.lm-btn:hover { background: #d4a843; }
.lm-disclaimer {
  font-family: var(--font-ui);
  font-size: .71875rem;          /* 11.5px */
  color: rgba(245,240,232,.30);
  margin: 0;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────
   BLOG
───────────────────────────────────────────────────── */
/* ── Blog Preview ── */
.section-blog { background: var(--cream); padding-block: 80px; }
.blog-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 72px; }
.blog-top-left { display: flex; flex-direction: column; gap: 12px; }
.blog-top-left .section-tag { margin-bottom: 0; }
.blog-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--green-dark);
  margin: 0;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.blog-headline span { display: block; color: var(--green-dark); }
.blog-headline em   { display: block; font-style: italic; font-weight: 300; color: var(--gold); }

.section-blog .btn-outline-dark {
  border-radius: 0;
  border-width: 1px;
  border-color: #1a3a24;
  color: #1a3a24;
  padding: 15px 29px;
  font-size: .84375rem;
  letter-spacing: .06em;
  font-weight: 600;
}
.section-blog .btn-outline-dark:hover { background: #1a3a24; color: var(--cream); }

.blog-list { display: flex; flex-direction: column; }
.blog-item {
  display: grid;
  grid-template-columns: 70px 1fr 20px;
  gap: 48px;
  align-items: center;
  padding-block: 36px;
  border-top: .8px solid rgba(13,31,17,.10);
  transition: background var(--t);
}
.blog-item:last-child { border-bottom: .8px solid rgba(13,31,17,.10); }
.blog-item:hover { background: rgba(13,31,17,.02); }
.blog-num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 900;
  color: #ede6d6;
  line-height: 1;
  text-align: right;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.blog-item-body { display: flex; flex-direction: column; gap: 3px; }
.blog-cat  { display: block; font-family: var(--font-ui); font-size: .625rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.blog-title { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.3; color: var(--green-dark); margin: 3px 0 0; font-variation-settings: 'SOFT' 0, 'WONK' 1; }
a.blog-title:hover { color: var(--gold); }
.blog-meta  { font-family: var(--font-ui); font-size: .75rem; color: rgba(13,31,17,.25); }
.blog-arrow { font-size: 1.25rem; color: rgba(13,31,17,.25); flex-shrink: 0; transition: var(--t); }
.blog-item:hover .blog-arrow { color: var(--gold); transform: translateX(4px); }

/* ─────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────── */
/* ── FAQ ── */
.section-faq { background: var(--beige); padding-block: 80px; }
.faq-inner { display: grid; grid-template-columns: 5fr 8fr; gap: 96px; align-items: start; }

.faq-left {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.faq-left .section-tag { margin-bottom: 0; }

.faq-headline {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.04em;
  margin: 0;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.faq-headline span { display: block; color: var(--green-dark); }
.faq-headline em   { display: block; font-style: italic; font-weight: 300; color: var(--gold); }

.faq-divider { width: 40px; height: 2px; background: var(--gold); flex-shrink: 0; }
.faq-subtext { font-size: .875rem; color: rgba(13,31,17,.5); line-height: 1.75; margin: 0; }

.faq-cta {
  display: inline-flex;
  align-items: center;
  background: #1a3a24;
  color: var(--cream);
  padding: 15px 29px;
  font-family: var(--font-ui);
  font-size: .84375rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 0;
  white-space: nowrap;
  transition: background var(--t);
}
.faq-cta:hover { background: var(--green-dark); }

.faq-right { border-top: .8px solid rgba(13,31,17,.10); }
.faq-item  { border-bottom: .8px solid rgba(13,31,17,.10); }

.faq-btn {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  padding-block: 28px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #e2d9c5;
  line-height: 1;
  letter-spacing: -.04em;
  text-align: right;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.faq-item.is-open .faq-num { color: var(--gold); }

.faq-q {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--green-dark);
  padding-top: 6px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.faq-tog {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(13,31,17,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.125rem;
  color: rgba(13,31,17,.25);
  flex-shrink: 0;
  margin-top: 4px;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
}
.faq-item.is-open .faq-tog {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-answer { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-item.is-open .faq-answer { max-height: 500px; }
.faq-answer p {
  padding: 0 0 28px 64px;
  font-family: var(--font-ui);
  font-size: .90625rem;
  color: rgba(13,31,17,.5);
  line-height: 1.8;
  margin: 0;
}

/* ─────────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────────── */
.section-fcta {
  position: relative;
  background: #0f2317;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.fcta-bg {
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
}
.fcta-bg picture,
.fcta-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fcta-deco {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 25rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(13,31,17,.07);
  pointer-events: none;
  user-select: none;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.fcta-in {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14.7px;
}

.fcta-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fcta-ey-line {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(245,240,232,0.35);
  flex-shrink: 0;
}

.fcta-ey-text {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}

.fcta-h {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 69.84px;
  letter-spacing: -2.88px;
  margin: 0;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.fcta-h span { display: block; color: #f5f0e8; }
.fcta-h em   { display: block; font-style: italic; font-weight: 300; color: #f5f0e8; }
.fcta-h-ie   { display: inline; font-style: italic; font-weight: 300; color: #f5f0e8; font-variation-settings: 'SOFT' 0, 'WONK' 1; }

.fcta-sub {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 1.7;
  color: #f5f0e8;
  max-width: 540px;
  margin: 0;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.fcta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 23px;
}

.fcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.91px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.fcta-btn--fill {
  background: #1a3a24;
  border-color: #1a3a24;
  color: #f5f0e8;
}
.fcta-btn--fill:hover  { background: #0f2317; border-color: #f5f0e8; color: #f5f0e8; }
.fcta-btn--outline {
  background: transparent;
  border-color: #f5f0e8;
  color: #f5f0e8;
}
.fcta-btn--outline:hover { background: rgba(245,240,232,.08); }

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
/* ── Footer ── */
.site-footer { background: var(--green-dark); margin: 0; padding: 0; }

.footer-top { padding-top: 72px; padding-bottom: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 311fr 207fr 207fr 290fr;
  gap: 56px;
  padding-bottom: 73px;
  border-bottom: .8px solid rgba(245,240,232,.07);
  align-items: start;
}

/* Brand col */
.footer-brand { display: flex; flex-direction: column; gap: 10px; }

.footer-logo-link { display: inline-block; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #f5f0e8;
  letter-spacing: -.03em;
  line-height: 1;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.footer-logo-text em { font-style: italic; font-weight: 300; color: #d4a843; }

.footer-tagline {
  font-family: var(--font-ui);
  font-size: .8125rem;
  color: rgba(245,240,232,.35);
  line-height: 1.65;
  max-width: 250px;
  margin: 0;
}

.footer-social { display: flex; gap: 8px; padding-top: 10px; }
.footer-soc-btn {
  width: 32px; height: 32px;
  border: 1px solid rgba(245,240,232,.10);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  color: rgba(245,240,232,.32);
  transition: border-color var(--t), color var(--t);
  text-transform: lowercase;
}
.footer-soc-btn:hover { border-color: #d4a843; color: #d4a843; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; padding-top: 6px; }
.fct { display: flex; align-items: center; gap: 6px; }
.fct-ico { display: block; flex-shrink: 0; color: rgba(245,240,232,.35); }
.fct strong { font-size: .75rem; font-weight: 700; color: rgba(245,240,232,.58); line-height: 1; }
.fct a { color: inherit; transition: color var(--t); display: inline-flex; align-items: center; line-height: 1; }
.fct a:hover strong { color: #d4a843; }

/* Link columns */
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title {
  font-family: var(--font-ui);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .125em;
  text-transform: uppercase;
  color: #d4a843;
  opacity: .75;
  margin: 0;
}
.footer-link-list { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin: 0; }
.footer-link-list li a {
  font-family: var(--font-ui);
  font-size: .8125rem;
  color: rgba(245,240,232,.35);
  transition: color var(--t);
}
.footer-link-list li a:hover { color: rgba(245,240,232,.70); }

/* Newsletter col */
.footer-newsletter { gap: 14px; }
.footer-nl-title {
  font-family: var(--font-ui);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .125em;
  text-transform: uppercase;
  color: #d4a843;
  opacity: .75;
  margin: 0;
}
.footer-nl-body {
  font-family: var(--font-ui);
  font-size: .8125rem;
  color: rgba(245,240,232,.35);
  line-height: 1.65;
  margin: 0;
}
.footer-nl-wrap {
  border: 1px solid rgba(245,240,232,.10);
  margin-bottom: 0;
}
.footer-nl-form { display: flex; }
.footer-nl-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: rgba(245,240,232,.05);
  border: none;
  font-family: var(--font-ui);
  font-size: .8125rem;
  color: rgba(245,240,232,.80);
  outline: none;
}
.footer-nl-input::placeholder { color: rgba(245,240,232,.20); }
.footer-nl-btn {
  flex-shrink: 0;
  padding: 11px 14px;
  background: #b8912a;
  color: #0f2317;
  font-family: var(--font-ui);
  font-size: .71875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background var(--t);
}
.footer-nl-btn:hover { background: #d4a843; }
.footer-nl-disclaimer {
  font-family: var(--font-ui);
  font-size: .6875rem;
  color: rgba(245,240,232,.18);
  line-height: 1.65;
  margin: 0;
}

/* Bottom bar */
.footer-bottom { padding-top: 18px; padding-bottom: 80px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy {
  font-family: var(--font-ui);
  font-size: .71875rem;
  color: rgba(245,240,232,.20);
  margin: 0;
}
.footer-legal { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-legal a {
  font-family: var(--font-ui);
  font-size: .71875rem;
  color: rgba(245,240,232,.28);
  transition: color var(--t);
}
.footer-legal a:hover { color: rgba(245,240,232,.60); }

/* ─────────────────────────────────────────────────────
   PICTURE / IMAGE SIZING (explicit, overrides WP resets)
───────────────────────────────────────────────────── */
.nav-logo-img-picture,
.nav-logo-img-picture img { display: block; }
.nav-logo-img-picture img { height: 56px !important; width: auto !important; object-fit: contain; }

.about-visual picture,
.about-img-picture { display: block; width: 100%; }
.about-visual picture img,
.about-img-picture img { display: block; width: 100% !important; height: 540px !important; object-fit: cover !important; border-radius: var(--r-lg); }

.svc-img-picture { display: block; width: 100%; }
.svc-img-picture img { display: block; width: 100% !important; border-radius: var(--r-md); }

.cs-img-picture { display: block; width: 100%; }
.cs-img-picture img { display: block; width: 100% !important; height: 300px !important; object-fit: cover !important; border-radius: var(--r-sm); margin-bottom: 24px; }

.testi-photo picture { display: block; width: 100%; }
.testi-photo picture img { display: block; width: 100% !important; height: 280px !important; object-fit: cover !important; }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .about-grid, .svc-panel-inner { grid-template-columns: 1fr; }
  .lm-inner { flex-direction: column; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .faq-headline { font-size: 2.5rem; }
  .faq-btn { grid-template-columns: 36px 1fr 28px; gap: 12px; }
  .faq-num { font-size: 1.75rem; }
  .faq-q { font-size: 1rem; }
  .faq-answer p { padding: 0 0 20px 48px; }
  .why-num { font-size: 5rem; padding: 32px 24px; }
  .why-content { padding: 32px 24px; }
  .cred-header { grid-template-columns: 1fr; gap: 24px; }
  .cred-headline { font-size: 2.2rem; }
}

@media (max-width: 1099px) {
  .nav-ul { display: none; }
}
@media (max-width: 1099px) and (min-width: 481px) {
  .fcta-h { font-size: 2.25rem !important; line-height: 1.2 !important; letter-spacing: -.02em !important; }
  .fcta-h2 { font-size: 2.25rem !important; line-height: 1.2 !important; letter-spacing: -.02em !important; }
  .ab-cta-heading { font-size: 2.25rem !important; line-height: 1.2 !important; }
  .ins-fcta-h { font-size: 2.25rem !important; line-height: 1.2 !important; }
  .cstu-fcta-h { font-size: 2.25rem !important; line-height: 1.2 !important; }
  /* Hero h1 — fill 1025–1099px gap (matches their ≤1024px size) */
  .ab-h1 { font-size: 72px !important; letter-spacing: -3px; }
  /* Section headings — ≤960px blocks below override at smaller widths */
  .testi-headline { font-size: 3rem !important; line-height: 1.15 !important; letter-spacing: -.02em !important; }
  .cs-headline    { font-size: 2.75rem !important; line-height: 1.15 !important; }
  .why-headline   { font-size: 2.5rem !important; line-height: 1.15 !important; }
  .faq-headline   { font-size: 2.5rem !important; line-height: 1.15 !important; }
  .about-headline { font-size: 2.75rem !important; line-height: 1.15 !important; }
}
@media (max-width: 960px) {
  .svc-header { grid-template-columns: 1fr; gap: 20px; }
  .cs-hd { flex-direction: column; gap: 24px; align-items: flex-start; }
  .cs-headline { font-size: 2.8rem; }
  .cs-mag { flex-direction: column; }
  .cs-feat { flex: none; }
  .cs-feat-img { min-height: 240px; }
  .cs-cells { gap: 1px; }
  .cred-grid { grid-template-columns: 1fr; }
  .cred-bottom { flex-direction: column; align-items: flex-start; }
  .testi-header { grid-template-columns: 1fr; gap: 32px; }
  .testi-intro { border-top: none; padding-top: 0; }
  .testi-num { width: 64px; font-size: 2.5rem; padding-right: 24px; }
}

@media (max-width: 768px) {
  .hero-btns { flex-direction: column; }
  .about-stats { gap: 24px; }
  .why-row { flex-direction: column; }
  .why-num { border-right: none; border-bottom: .8px solid rgba(13,31,17,.10); padding: 24px 20px; font-size: 3.5rem; }
  .why-content { padding: 24px 20px; }
  .why-headline { font-size: 2.5rem; }
  .why-intro { margin-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-item { grid-template-columns: 44px 1fr 20px; gap: 16px; padding-block: 24px; }
  .blog-num { font-size: 2.5rem; }
  .blog-title { font-size: 1.125rem; }
  .blog-headline { font-size: 2.25rem; }
  .testi-photo-strip { flex-wrap: wrap; }
  .testi-photo { flex: 0 0 calc(50% - 1px); }
  .blog-top { flex-direction: column; align-items: flex-start; }
  .lm-inner { gap: 40px; }
  .fcta-h { font-size: 3rem; }
  .fcta-sub { font-size: 1.125rem; }
  .fcta-btns { flex-direction: column; align-items: flex-start; }
  .fcta-deco { font-size: 14rem; left: -10px; }
}

@media (max-width: 1099px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid rgba(13,31,17,.10); padding: 24px var(--pad); transform: translateY(-110%); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s var(--ease); z-index: 99; max-height: calc(100vh - 68px); overflow-y: auto; }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links .nav-ul { flex-direction: column; align-items: flex-start; gap: 4px; display: flex; }
  .nav-ul li a { font-size: .875rem; padding: 10px 4px; }
}

/* ============================================================
   ABOUT PAGE — HERO BANNER
   Figma: node 1:1172 | 1440×823px reference
   ============================================================ */

.ab-hero {
  position: relative;
  background: #0f2317;
  overflow: hidden;
  min-height: 823px;
  display: flex;
  flex-direction: column;
}

/* Gold gradient accent line — top */
.h2i-hero-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b8912a 0%, #d4a843 40%, rgba(212,168,67,0) 100%);
  z-index: 4;
}

/* Crosshatch grid texture */

/* Background photo overlay */
.ab-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ab-hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.ab-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
}

/* Inner wrapper */
.ab-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--cw) + var(--pad) * 2);
  margin: 0 auto;
  padding: 80px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* ── Breadcrumb ── */
/* ── Common breadcrumb — all page banners ── */
.h2i-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48.8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
}
.h2i-bc-link {
  color: rgba(245,240,232,0.28);
  text-decoration: none;
  transition: color .2s;
}
.h2i-bc-link:hover { color: rgba(245,240,232,0.55); }
.h2i-bc-sep {
  font-size: 10px;
  color: rgba(245,240,232,0.20);
}
.h2i-bc-active { color: #d4a843; }

/* ── Hero 2-column grid ── */
.ab-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  padding-bottom: 81px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  align-items: end;
}

/* Left column */
.ab-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
}

/* Tag pill */
.ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.22);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d4a843;
  width: fit-content;
}
.ab-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d4a843;
  flex-shrink: 0;
}

/* H1 */
.ab-h1 {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.94;
  letter-spacing: -5px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}
.ab-h1-black {
  display: block;
  font-weight: 900;
  font-style: normal;
  color: #f5f0e8;
}
.ab-h1-italic {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: #f0cc7a;
}

/* Right column */
.ab-hero-right {
  display: flex;
  flex-direction: column;
  gap: 44px;
  justify-content: flex-end;
}

/* Body text with gold left border */
.ab-body-wrap {
  border-left: 2px solid #b8912a;
  padding-left: 18px;
}
.ab-body {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.80);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

/* Buttons */
.ab-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ab-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 28px;
  background: #b8912a;
  color: #0f2317;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.91px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  width: fit-content;
  transition: background .2s, color .2s;
}
.ab-btn-gold:hover { background: #d4a843; }
.ab-btn-gold svg { flex-shrink: 0; }

.ab-btn-outline {
  display: inline-flex;
  align-items: center;
  height: 46px;
  width: 267px;
  padding: 0 29px;
  background: transparent;
  border: 1px solid rgba(245,240,232,0.35);
  color: #f5f0e8;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.91px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.ab-btn-outline:hover {
  border-color: rgba(245,240,232,0.65);
  background: rgba(245,240,232,0.05);
}

/* ── About CTA Strip ── */
.ab-cta-strip {
  background: var(--dark-green, #0f2317);
  padding: 80px 0;
}
.ab-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ab-cta-text { flex: 1; }
.ab-cta-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #f5f0e8;
  margin: 0 0 12px;
  line-height: 1.2;
}
.ab-cta-sub {
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  margin: 0;
  line-height: 1.6;
}
.ab-cta-btn { white-space: nowrap; flex-shrink: 0; }

@media (max-width: 768px) {
  .ab-cta-inner { flex-direction: column; align-items: flex-start; }
  .ab-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .ab-cta-strip { padding: 44px 0; }
  .ab-cta-heading { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; }
  .ab-cta-sub { font-size: .9375rem; }
}

/* ── Stats bar ── */
.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 35px;
}
.ab-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 29px 24px 28px 0;
  border-top: 1px solid rgba(245,240,232,0.07);
  border-right: 1px solid rgba(245,240,232,0.07);
}
.ab-stat:first-child { padding-left: 0; }
.ab-stat:not(:first-child) { padding-left: 24px; }
.ab-stat:last-child { border-right: none; }

.ab-stat-n {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: #f0cc7a;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.ab-stat-l {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.30);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ab-h1 { font-size: 72px; letter-spacing: -3px; }
  .ab-hero-grid { column-gap: 56px; }
  .ab-body { font-size: 19px; }
}

@media (max-width: 768px) {
  .ab-hero-inner { padding: 60px 24px; gap: 32px; }
  .ab-hero-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .ab-h1 { font-size: 56px; letter-spacing: -2px; }
  .ab-body { font-size: 17px; line-height: 1.6; }
  .ab-btn-outline { width: 100%; }
  .ab-stats { grid-template-columns: repeat(2, 1fr); }
  .ab-stat:nth-child(2) { border-right: none; }
  .ab-stat:nth-child(3) { border-right: 1px solid rgba(245,240,232,0.07); }
}
@media (max-width: 480px) {
  .ab-hero-inner { padding: 44px 16px; gap: 20px; }
  .ab-hero-grid { padding-bottom: 32px; }
  .ab-h1 { font-size: clamp(2.25rem, 8vw, 2.75rem); letter-spacing: -1.2px; line-height: 1.05; }
  .ab-body { font-size: 1rem; }
  .ab-btns { flex-direction: column; gap: 10px; }
  .ab-btn-gold, .ab-btn-outline { width: 100%; justify-content: center; }
  .ab-stats { grid-template-columns: repeat(2, 1fr); padding-top: 16px; }
  .ab-stat { padding-top: 20px; padding-bottom: 20px; }
  .ab-stat:nth-child(3) { padding-left: 0; }
  .ab-stat-n { font-size: 28px; }
}

/* ============================================================
   ABOUT PAGE — FOUNDER SECTION
   Figma: node 1:1219  |  bg #f5f0e8  |  gap 80px  |  1180px
   ============================================================ */

.fo-section {
  background: #f5f0e8;
  padding: 80px 0;
}

.fo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── LEFT column ── */
.fo-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Image frame — no border, clean flush edges */
.fo-img-frame {
  display: flex;
  flex-direction: column;
}

.fo-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 550 / 690;
  overflow: hidden;
  /* no border — Figma border is invisible on cream bg */
}

.fo-img-wrap picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.fo-img {
  position: absolute;
  width: 100%;
  height: 118.04%;
  top: -2.18%;
  left: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Figma radial vignette — transparent center, dark edges */
.fo-img-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    rgba(0,0,0,0) 0%,
    rgba(24,28,26,0.25) 25%,
    rgba(48,56,52,0.50) 50%,
    rgba(73,85,77,0.75) 75%,
    rgba(97,113,103,1) 100%
  );
  mix-blend-mode: multiply;
  opacity: 0.35;
  pointer-events: none;
}

/* Award strip — dark green, flush below image */
.fo-award {
  background: #0f2317;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
}

.fo-award-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.fo-award-text {
  display: flex;
  flex-direction: column;
  gap: 1.9px;
}

.fo-award-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #f5f0e8;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.fo-award-sub {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  color: rgba(245,240,232,0.45);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* 2×2 cert grid — Figma: row1=100px, row2=86px, gap=1px */
.fo-certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100px 86px;
  gap: 1px;
  background: rgba(13,31,17,0.10);
  border: 1px solid rgba(13,31,17,0.10);
}

.fo-cert {
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px 22px;
}

.fo-cert-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #0f2317;
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

.fo-cert-desc {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(13,31,17,0.25);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* ── RIGHT column — gap 6px between all direct children ── */
.fo-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Eyebrow: gold line + label */
.fo-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fo-ey-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #b8912a;
  flex-shrink: 0;
}

.fo-ey-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: #b8912a;
  font-variation-settings: 'wdth' 100;
}

/* Name block — pt 12px, pb 26px */
.fo-name-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 26px;
}

.fo-name {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2.4px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.fo-name-black {
  display: block;
  font-weight: 900;
  font-style: normal;
  color: #0f2317;
  margin-bottom: 8px;
}

.fo-name-italic {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: #b8912a;
  margin-bottom: 16px;
}

/* Subtitle — uppercase, very muted */
.fo-subtitle {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(13,31,17,0.25);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* Pull quote — linen bg, gold left border */
.fo-pull {
  background: #fbf6ea;
  border-left: 3px solid #b8912a;
  padding: 28px 28px 28px 31px;
  margin: 0;
}

.fo-pull-q {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 33px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

/* Story — pt 28px, pb 30px, paragraph gap 20.9px */
.fo-story {
  padding-top: 28px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20.9px;
}

.fo-story p {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 29.6px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

.fo-story p strong,
.fo-story p b {
  font-family: var(--font-ui);
  font-weight: 600;
  color: #0f2317;
  font-variation-settings: 'wdth' 100;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .fo-inner { gap: 48px; }
  .fo-name { font-size: 48px; line-height: 52px; }
  .fo-certs { grid-template-rows: auto auto; }
}

@media (max-width: 768px) {
  .fo-section { padding: 60px 0; }
  .fo-inner { grid-template-columns: 1fr; gap: 40px; }
  .fo-name { font-size: 40px; line-height: 44px; letter-spacing: -1.5px; }
  .fo-pull-q { font-size: 18px; line-height: 28px; }
  .fo-certs { grid-template-rows: auto auto; }
}
@media (max-width: 480px) {
  .fo-section { padding: 44px 0; }
  .fo-story { padding-bottom: 0; }
  .fo-name { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; }
  .fo-pull-q { font-size: 1rem; line-height: 1.6; }
  .fo-body { font-size: .9375rem; }
}

/* ============================================================
   ABOUT PAGE — OUR STORY / TIMELINE SECTION
   Figma: node 1:1271  |  bg #0f2317  |  dark green
   ============================================================ */

.st-section {
  background: #0f2317;
  padding: 80px 0;
}

.st-inner {
  display: flex;
  flex-direction: column;
  gap: 79.99px;
}

/* ── Section header ── */
.st-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: end;
  min-height: 166.66px;
}

/* Left: eyebrow + H2 */
.st-header-left {
  display: flex;
  flex-direction: column;
  gap: 12.91px;
  justify-content: flex-end;
}

.st-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.st-ey-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #d4a843;
  flex-shrink: 0;
}

.st-ey-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: #d4a843;
  font-variation-settings: 'wdth' 100;
}

.st-headline {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 69.84px;
  letter-spacing: -2.88px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.st-h2-black {
  display: block;
  font-weight: 900;
  font-style: normal;
  color: #f5f0e8;
}

.st-h2-italic {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: #f0cc7a;
}

/* Right: intro text with top border */
.st-header-right {
  border-top: 1px solid rgba(245,240,232,0.10);
  padding-top: 20.17px;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
}

.st-intro {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 32.68px;
  color: rgba(245,240,232,0.50);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

/* ── Timeline ── */
.st-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Vertical line — left: 52px, centered on dots */
.st-tl-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52px;
  width: 1px;
  background: rgba(245,240,232,0.08);
}

/* Each timeline item — 2-col grid */
.st-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  column-gap: 40px;
  padding: 40px 0 41px;
  border-bottom: 1px solid rgba(245,240,232,0.06);
}

.st-item--last {
  border-bottom: none;
}

/* Year column — centered horizontally, year + dot stacked */
.st-year-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  gap: 0;
}

.st-year {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 24px;
  font-weight: 900;
  letter-spacing: -0.72px;
  color: #b8912a;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  display: block;
}

/* Dot — 10×10px, gold fill + lighter border, centered on vertical line */
.st-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #b8912a;
  border: 2px solid #d4a843;
  flex-shrink: 0;
  margin-top: 8px;
  box-sizing: border-box;
}

/* Timeline body content */
.st-body {
  display: flex;
  flex-direction: column;
  gap: 7.1px;
}

.st-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  letter-spacing: -0.65px;
  color: #f5f0e8;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.st-p {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 26.25px;
  color: rgba(245,240,232,0.48);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* Optional badge */
.st-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.20);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #d4a843;
  font-variation-settings: 'wdth' 100;
  width: fit-content;
  margin-top: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .st-headline { font-size: 56px; line-height: 56px; letter-spacing: -2px; }
}

@media (max-width: 768px) {
  .st-section { padding: 60px 0; }
  .st-inner { gap: 48px; }
  .st-header { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .st-headline { font-size: 44px; line-height: 44px; letter-spacing: -1.5px; }
  .st-intro { font-size: 16px; line-height: 27px; }
  .st-item { grid-template-columns: 80px 1fr; column-gap: 24px; }
  .st-tl-line { left: 40px; }
  .st-title { font-size: 20px; line-height: 26px; }
}
@media (max-width: 480px) {
  .st-section { padding: 44px 0; }
  .st-inner { gap: 36px; }
  .st-headline { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; }
  .st-intro { font-size: .9375rem; line-height: 1.65; }
  .st-item { grid-template-columns: 56px 1fr; column-gap: 16px; }
  .st-tl-line { left: 28px; }
  .st-title { font-size: 1.0625rem; line-height: 1.4; }
  .st-desc { font-size: .875rem; }
}

/* ============================================================
   ABOUT PAGE — PHILOSOPHY SECTION
   Figma: node 1:1366  |  bg #f5f0e8  |  cream
   ============================================================ */

.ph-section {
  background: #f5f0e8;
  padding: 80px 0;
}

.ph-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ── Header ── */
.ph-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.ph-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ph-ey-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #b8912a;
  flex-shrink: 0;
}

.ph-ey-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: #b8912a;
  font-variation-settings: 'wdth' 100;
}

.ph-headline {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -2.56px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.ph-h2-black {
  display: block;
  font-weight: 900;
  font-style: normal;
  color: #0f2317;
}

.ph-h2-italic {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: #b8912a;
}

/* Deck — left gold border, Fraunces italic */
.ph-deck-wrap {
  border-left: 2px solid #b8912a;
  padding-left: 18px;
}

.ph-deck {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 34.4px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

/* ── 3-column cards wrapper ── */
.ph-cols-wrap {
  background: rgba(13,31,17,0.10);
  border: 1px solid rgba(13,31,17,0.10);
  padding: 1px;
}

.ph-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

/* Each card */
.ph-card {
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 48px 36px;
  box-shadow: inset 3px 0 0 transparent;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.ph-card:hover {
  box-shadow: inset 3px 0 0 #b8912a;
  background: #ede6d6;
}

.ph-card:hover .ph-card-num {
  color: #b8912a;
}

/* Big watermark number */
.ph-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 80px;
  font-weight: 900;
  letter-spacing: -4px;
  color: #e2d9c5;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  transition: color 0.25s ease;
}

.ph-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 32.2px;
  font-weight: 700;
  letter-spacing: -0.7px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
  padding-top: 10px;
}

.ph-card-body {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* ── Never/Always compare box ── */
.ph-compare {
  background: #0f2317;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  padding: 52px;
}

.ph-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Column labels */
.ph-col-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
}

.ph-col-label--bad  { color: rgba(229,115,104,0.65); }
.ph-col-label--good { color: rgba(82,183,136,0.65); }

/* Item list */
.ph-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ph-col-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 21.75px;
  font-variation-settings: 'wdth' 100;
}

.ph-col-item--bad  { color: rgba(245,240,232,0.50); }
.ph-col-item--good { color: rgba(245,240,232,0.60); }

.ph-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 21.75px;
}

.ph-mark svg {
  display: block;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ph-headline { font-size: 48px; line-height: 50px; letter-spacing: -2px; }
  .ph-card-num { font-size: 60px; line-height: 60px; }
  .ph-card-title { font-size: 22px; line-height: 28px; }
}

@media (max-width: 768px) {
  .ph-section { padding: 60px 0; }
  .ph-headline { font-size: 38px; line-height: 40px; letter-spacing: -1.5px; }
  .ph-cols { grid-template-columns: 1fr; }
  .ph-compare { grid-template-columns: 1fr; gap: 40px; padding: 36px 24px; }
  .ph-header { max-width: 100%; }
}
@media (max-width: 480px) {
  .ph-section { padding: 44px 0; }
  .ph-inner { gap: 36px; }
  .ph-headline { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; }
  .ph-deck { font-size: .9375rem; line-height: 1.65; }
  .ph-card { padding: 28px 20px; }
  .ph-card-num { font-size: 2.25rem; line-height: 1; }
  .ph-card-title { font-size: 1.2rem; line-height: 1.4; }
  .ph-compare { padding: 28px 20px; gap: 28px; }
}

/* ============================================================
   ABOUT PAGE — CREDENTIALS & RECOGNITION SECTION
   Figma: node 1:1420  |  bg #ede6d6  |  beige
   ============================================================ */

.cr-section {
  background: #ede6d6;
  padding: 80px 0;
}

.cr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

/* ── Centered header ── */
.cr-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  gap: 12.8px;
  padding-bottom: 78.99px;
  width: 100%;
}

.cr-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cr-ey-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #b8912a;
  flex-shrink: 0;
}

.cr-ey-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: #b8912a;
  font-variation-settings: 'wdth' 100;
}

.cr-headline {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 58.24px;
  letter-spacing: -2.24px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  text-align: center;
  margin: 0;
}

.cr-h2-black {
  display: block;
  font-weight: 900;
  font-style: normal;
  color: #0f2317;
}

.cr-h2-italic {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: #b8912a;
}

.cr-sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 30.6px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  text-align: center;
  margin: 0;
}

/* ── Main credential grid ── */
.cr-main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Top row — 2 cols with 1px separator */
.cr-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(13,31,17,0.10);
  border: 1px solid rgba(13,31,17,0.10);
}

/* Left: dark award card */
.cr-award {
  background: #0f2317;
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 428px;
}

.cr-award-trophy {
  display: block;
  line-height: 1;
  margin-bottom: 17px;
}
.cr-award-trophy svg { display: block; }

.cr-award-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.cr-award-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d4a843;
  font-variation-settings: 'wdth' 100;
  margin-bottom: 4px;
}

.cr-award-title {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 37.4px;
  letter-spacing: -1.02px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.cr-awt-black {
  display: block;
  font-weight: 900;
  font-style: normal;
  color: #f5f0e8;
}

.cr-awt-italic {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: #f0cc7a;
}

.cr-award-body {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 26.25px;
  color: rgba(245,240,232,0.50);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* Right: 2-row cert grid */
.cr-cert-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: rgba(13,31,17,0.10);
}

.cr-cert {
  background: #f5f0e8;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 40px;
  transition: background 0.2s ease;
}

.cr-cert:hover {
  background: #ede6d6;
}

.cr-cert-icon {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  padding-top: 2px;
}
.cr-cert-icon svg { display: block; }

.cr-cert-body {
  display: flex;
  flex-direction: column;
  gap: 4.3px;
}

.cr-cert-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.cr-cert-desc {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* Bottom strip — 4 equal tiles */
.cr-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(13,31,17,0.10);
  border: 1px solid rgba(13,31,17,0.10);
  border-top: none;
}

.cr-tile {
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.9px;
  padding: 28px;
  transition: background 0.2s ease;
  cursor: default;
}

.cr-tile:hover {
  background: #ede6d6;
}

.cr-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4.1px;
}
.cr-tile-icon svg { display: block; }

.cr-tile-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  letter-spacing: -0.16px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
  text-align: center;
}

.cr-tile-sub {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  line-height: 15.4px;
  color: rgba(13,31,17,0.25);
  font-variation-settings: 'wdth' 100;
  margin: 0;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cr-headline { font-size: 44px; line-height: 48px; letter-spacing: -1.8px; }
  .cr-award-title { font-size: 28px; }
}

@media (max-width: 768px) {
  .cr-section { padding: 60px 0; }
  .cr-header { padding-bottom: 48px; max-width: 100%; }
  .cr-headline { font-size: 36px; line-height: 40px; letter-spacing: -1.4px; }
  .cr-top { grid-template-columns: 1fr; }
  .cr-strip { grid-template-columns: repeat(2, 1fr); }
  .cr-award { padding: 40px 28px; min-height: auto; }
}
@media (max-width: 480px) {
  .cr-section { padding: 44px 0; }
  .cr-header { padding-bottom: 32px; }
  .cr-headline { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; }
  .cr-strip { grid-template-columns: 1fr; }
  .cr-award { padding: 28px 20px; }
  .cr-cert { padding: 28px 20px; }
  .cr-cert-body { gap: 12px; }
  .cr-award-title { font-size: 1.25rem; }
  /* cr-tile: match cr-cert layout (icon left spans rows, title+sub stacked right) */
  .cr-tile { display: grid; grid-template-columns: 22px 1fr; grid-template-rows: auto auto; column-gap: 16px; row-gap: 4px; align-items: start; text-align: left; padding: 28px 20px; }
  .cr-tile-icon { grid-column: 1; grid-row: 1 / 3; margin-bottom: 0; padding-top: 2px; align-self: start; }
  .cr-tile-title { grid-column: 2; grid-row: 1; font-size: 20px; line-height: 24px; letter-spacing: -0.4px; text-align: left; }
  .cr-tile-sub { grid-column: 2; grid-row: 2; font-size: 13px; line-height: 20.8px; color: rgba(13,31,17,.5); text-align: left; margin-top: 8px; }
}

/* ── Key Numbers ────────────────────────────────────────── */
.section-kn {
  background: #b8912a;
  padding: 80px var(--pad);
}

.kn-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
  align-items: center;
  max-width: var(--cw);
  margin: 0 auto;
}

.kn-left {
  display: flex;
  flex-direction: column;
  gap: 9.43px;
}

.kn-heading {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 54.6px;
  letter-spacing: -2.08px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.kn-italic {
  font-weight: 300;
  font-style: italic;
}

.kn-sub {
  font-family: var(--font-ui);
  font-size: 13.5px;
  line-height: 22.95px;
  color: rgba(13,31,17,0.55);
  max-width: 260px;
  margin: 0;
}

.kn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(13,31,17,0.15);
}

.kn-cell {
  display: flex;
  flex-direction: column;
  gap: 5.3px;
  padding: 36px 25px 36px 24px;
  border-right: 1px solid rgba(13,31,17,0.15);
  transition: background 0.2s ease;
  cursor: default;
}

.kn-cell:hover {
  background: rgba(13,31,17,0.07);
}

.kn-n {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: -2.24px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.kn-label {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 14.18px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  color: rgba(13,31,17,0.50);
}

@media (max-width: 1100px) {
  .kn-inner { grid-template-columns: 1fr 2fr; gap: 48px; }
  .kn-heading { font-size: 40px; line-height: 44px; letter-spacing: -1.6px; }
  .kn-n { font-size: 32px; }
}

@media (max-width: 768px) {
  .section-kn { padding: 60px var(--pad); }
  .kn-inner { grid-template-columns: 1fr; gap: 36px; }
  .kn-sub { max-width: 100%; }
  .kn-grid { grid-template-columns: repeat(2, 1fr); border-left: none; }
  .kn-cell { border-left: 1px solid rgba(13,31,17,0.15); }
}

@media (max-width: 480px) {
  .section-kn { padding: 44px var(--pad); }
  .kn-inner { gap: 32px; }
  .kn-grid { grid-template-columns: 1fr; }
  .kn-cell { border-left: none; border-right: none; border-bottom: 1px solid rgba(13,31,17,0.15); padding: 28px 0; }
  .kn-cell:last-child { border-bottom: none; }
}

/* ── Principles ─────────────────────────────────────────── */
.section-pr {
  background: var(--cream);
  padding: 80px var(--pad);
}

.pr-wrap {
  max-width: var(--cw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Header */
.pr-header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  align-items: end;
}

.pr-header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pr-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pr-ey-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.pr-ey-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: var(--gold);
}

.pr-heading {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -2.4px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.pr-h-gold {
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
}

.pr-header-right {
  border-top: 1px solid rgba(13,31,17,0.10);
  padding-top: 19px;
}

.pr-intro {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 30.96px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

/* Principles list */
.pr-list {
  border-top: 1px solid rgba(13,31,17,0.10);
}

.pr-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 40px;
  align-items: start;
  padding: 44px 0 45px;
  border-bottom: 1px solid rgba(13,31,17,0.10);
  cursor: default;
}

.pr-row--last {
  border-bottom: none;
  padding-bottom: 44px;
}

.pr-row:hover .pr-num {
  color: var(--gold);
  transition: color 0.25s ease;
}

.pr-row:hover .pr-title {
  color: var(--gold);
  transition: color 0.25s ease;
}

.pr-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  line-height: 60.8px;
  letter-spacing: -3.2px;
  color: #e2d9c5;
  text-align: right;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  user-select: none;
  transition: color 0.25s ease;
}

.pr-body {
  display: flex;
  flex-direction: column;
  gap: 9.1px;
}

.pr-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 34.5px;
  letter-spacing: -0.75px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
  transition: color 0.25s ease;
}

.pr-p {
  font-family: var(--font-ui);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 28.21px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .pr-heading { font-size: 48px; line-height: 50px; letter-spacing: -1.9px; }
  .pr-header { column-gap: 48px; }
}

@media (max-width: 768px) {
  .section-pr { padding: 60px var(--pad); }
  .pr-wrap { gap: 48px; }
  .pr-header { grid-template-columns: 1fr; gap: 32px; }
  .pr-header-right { border-top: none; padding-top: 0; }
  .pr-heading { font-size: 40px; line-height: 44px; letter-spacing: -1.6px; }
  .pr-row { grid-template-columns: 56px 1fr; column-gap: 24px; padding: 32px 0; }
  .pr-num { font-size: 48px; line-height: 48px; }
  .pr-title { font-size: 24px; line-height: 30px; }
}

@media (max-width: 480px) {
  .section-pr { padding: 44px var(--pad); }
  .pr-wrap { gap: 36px; }
  .pr-heading { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; }
  .pr-intro { font-size: .9375rem; }
  .pr-row { grid-template-columns: 1fr; padding: 24px 0; }
  .pr-num { text-align: left; font-size: 2rem; line-height: 1; }
  .pr-title { font-size: 1.2rem; line-height: 1.4; margin-top: 16px; }
}

/* ── About page testimonials — bottom-align header cols ── */
.section-testimonials--about .testi-header {
  align-items: flex-end;
}

.section-testimonials--about .testi-intro {
  padding-top: 19px;
  align-self: flex-end;
}
@media (max-width: 480px) {
  .section-testimonials--about .testi-intro { padding-top: 0; }
}

/* ══════════════════════════════════════════════════════
   SERVICES PAGE — HERO BANNER
══════════════════════════════════════════════════════ */
.sv-hero {
  position: relative;
  background: #0f2317;
  overflow: hidden;
  padding: 0;
}

/* .sv-hero-topbar → merged into .ab-hero-topline selector above */

.sv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.sv-hero-bg-img {
  width: 100%;
  height: 132.83%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: -32.87%;
  left: 0;
  opacity: 0.10;
  display: block;
}


.sv-wrap {
  position: relative;
  z-index: 2;
  max-width: calc(var(--cw) + var(--pad) * 2);
  margin: 0 auto;
  padding: 80px var(--pad) 80px;
}

/* Breadcrumb */
/* sv-bc → now uses .h2i-bc common class (see above) */
.sv-bc-active {
  color: #d4a843;
  font-variation-settings: 'wdth' 100;
}

/* Main grid */
.sv-grid {
  display: flex;
  gap: 80px;
  align-items: flex-end;
  padding-bottom: 80.8px;
  border-bottom: 0.8px solid rgba(245,240,232,0.08);
}

/* H1 */
.sv-h1 {
  flex: 1 0 0;
  min-width: 1px;
  margin: 0;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.sv-h1-cream {
  display: block;
  font-size: 100px;
  font-weight: 900;
  line-height: 94px;
  letter-spacing: -5px;
  color: #f5f0e8;
}
.sv-h1-gold {
  display: block;
  font-size: 100px;
  font-weight: 300;
  font-style: italic;
  line-height: 94px;
  letter-spacing: -5px;
  color: #f0cc7a;
}

/* Right column */
.sv-right {
  flex: 0 0 552px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sv-deck {
  padding-left: 18px;
  border-left: 1.6px solid #b8912a;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 34.4px;
  color: #ffffff;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.sv-principle {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 16.8px 20.8px;
  font-family: var(--font-ui);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 28.88px;
  font-variation-settings: 'wdth' 100;
  margin: 0;
}
.sv-pr-italic {
  font-style: italic;
  color: #d4a843;
}
.sv-pr-body {
  color: #ffffff;
}

/* Jump-to tabs */
.sv-tabs {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sv-tabs::-webkit-scrollbar { display: none; }

.sv-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 21.6px 28px 20px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
  border-top: 1.6px solid rgba(245,240,232,0.6);
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.sv-tab:hover,
.sv-tab--active {
  border-top-color: #b8912a;
  color: #f5f0e8;
}

/* ── Services Philosophy (gold 3-col) ── */
.sv-phil {
  background: #b8912a;
  padding: 80px var(--pad);
}

.sv-phil-in {
  display: flex;
  align-items: stretch;
  border-left: 0.8px solid rgba(13,31,17,0.15);
  max-width: calc(var(--cw) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0;
}

.sv-phil-item {
  flex: 1 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 4.9px;
  padding: 36px 36.8px 36px 36px;
  border-right: 0.8px solid rgba(13,31,17,0.15);
}

.sv-phil-num {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: -2.24px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.sv-phil-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 25.2px;
  letter-spacing: -0.42px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
  padding-top: 2.5px;
}

.sv-phil-p {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 23.1px;
  color: rgba(13,31,17,0.60);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

@media (max-width: 768px) {
  .sv-phil-in { flex-direction: column; border-left: none; border-top: 0.8px solid rgba(13,31,17,0.15); }
  .sv-phil-item { border-right: none; border-bottom: 0.8px solid rgba(13,31,17,0.15); }
  .sv-phil-num { font-size: 40px; line-height: 40px; }
}

/* ── Service Sections (Figma node 1:3822) ── */
.svc-section {
  background: #f5f0e8;
  border-bottom: 1px solid rgba(13,31,17,0.06);
}
.svc-section--alt {
  background: #ede6d6;
}

.svc-section-inner {
  max-width: calc(var(--cw) + var(--pad) * 2);
  margin: 0 auto;
  padding: 80px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header row */
.svc-section .svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.svc-header-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 678px;
}

.svc-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.svc-idx {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.08px;
  color: var(--gold);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  white-space: nowrap;
}

.svc-idx-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.svc-cat {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: rgba(13,31,17,0.25);
  font-variation-settings: 'wdth' 100;
  white-space: nowrap;
}

.svc-section .svc-h2 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.svc-section .svc-h2-black {
  font-size: 68px;
  font-weight: 900;
  line-height: 68px;
  letter-spacing: -2.72px;
  color: #0f2317;
}

.svc-section .svc-h2-italic {
  font-size: 68px;
  font-weight: 300;
  font-style: italic;
  line-height: 68px;
  letter-spacing: -2.72px;
  color: var(--gold);
}

.svc-sub {
  padding-left: 18px;
  border-left: 1.6px solid var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 36.3px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.svc-deco-num {
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 900;
  line-height: 220px;
  letter-spacing: -11px;
  color: rgba(13,31,17,0.04);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  user-select: none;
  align-self: center;
}

/* Content grid */
.svc-content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Image + problems row */
.svc-img-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.svc-img-card {
  flex: 1;
  border: 1px dashed rgba(13,31,17,0.10);
  border-radius: 8px;
  overflow: hidden;
}

.svc-img-picture {
  display: block;
  width: 100%;
}

.svc-img-photo {
  width: 100%;
  display: block;
}

.svc-img-placeholder {
  position: absolute;
  inset: 0;
  background: rgba(13,31,17,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-img-num {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: rgba(13,31,17,0.08);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.svc-problems-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-section-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-lbl-dash {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.svc-lbl-text {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: 'wdth' 100;
}

.svc-prob-h {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.48px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.svc-prob-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc-prob-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14.5px;
  line-height: 22.48px;
  color: rgba(13,31,17,0.50);
  font-variation-settings: 'wdth' 100;
}

.svc-prob-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(184,145,42,0.12);
  border: 1px solid rgba(184,145,42,0.25);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--gold);
  line-height: 1;
  margin-top: 2px;
}

/* PMS prose paragraphs (replaces bullet list) */
.svc-prob-para {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(13,31,17,0.5);
  margin: 0;
}
.svc-prob-para + .svc-prob-para { margin-top: 16px; }

/* Deliverables */
.svc-deliverables {
  background: #0f2317;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.svcd-label {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.30);
  font-variation-settings: 'wdth' 100;
}

.svcd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svcd-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svcd-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 6px;
}

.svcd-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  letter-spacing: -0.16px;
  color: #f5f0e8;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.svcd-desc {
  font-family: var(--font-ui);
  font-size: 12.5px;
  line-height: 18.75px;
  color: rgba(245,240,232,0.45);
  font-variation-settings: 'wdth' 100;
}

/* Audience */
.svc-audience {
  background: #fbf6ea;
  border: 1px solid #e8d49a;
  padding: 36.8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svca-label {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: 'wdth' 100;
}

.svca-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svca-pill {
  background: #fff;
  border: 1px solid #e8d49a;
  padding: 7px 14.8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  color: #0f2317;
  font-variation-settings: 'wdth' 100;
  white-space: nowrap;
}

/* CTA bar */
.svc-cta-bar {
  background: #e2d9c5;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.svc-section--alt .svc-cta-bar {
  border-left: 2.4px solid var(--gold);
  padding-left: 30px;
}

.svc-cta-text {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.svc-cta-q {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.svc-cta-a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 26px;
  color: var(--gold);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}

.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: #1a3a24;
  color: #f5f0e8;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.91px;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
  text-decoration: none;
  border: 1px solid #1a3a24;
  transition: background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
}
.svc-cta-btn:hover { background: #0f2317; border-color: #f5f0e8; }

/* Responsive */
@media (max-width: 1100px) {
  .svc-h2-black, .svc-h2-italic { font-size: 52px; line-height: 54px; letter-spacing: -2px; }
  .svc-deco-num { font-size: 160px; line-height: 160px; }
}
@media (max-width: 768px) {
  .svc-section-inner { padding: 60px var(--pad); gap: 32px; }
  .svc-header { flex-direction: column; }
  .svc-deco-num { display: none; }
  .svc-h2-black, .svc-h2-italic { font-size: 40px; line-height: 44px; letter-spacing: -1.5px; }
  .svc-sub { font-size: 18px; line-height: 28px; }
  .svc-img-row { flex-direction: column; }
  .svc-img-card { min-height: 300px; }
  .svcd-grid { grid-template-columns: 1fr; }
  .svc-cta-bar { flex-direction: column; align-items: flex-start; }
}

/* ═══ SERVICE COMPARISON ═══ */
.svc-comp {
  background: #0f2317;
  border-bottom: 1px solid rgba(245,240,232,0.06);
  position: relative;
  overflow: hidden;
}
.svc-comp::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(255,255,255,0.016) 0%, rgba(255,255,255,0) 7.24%),
    linear-gradient(90deg, rgba(255,255,255,0.016) 0%, rgba(255,255,255,0) 5.556%);
  pointer-events: none;
  z-index: 0;
}
.svc-comp-inner {
  max-width: calc(var(--cw) + var(--pad) * 2);
  margin: 0 auto;
  padding: 80px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.comp-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}
.comp-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comp-ey-line {
  width: 24px;
  height: 1px;
  background: #d4a843;
  flex-shrink: 0;
}
.comp-ey-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: #d4a843;
  font-variation-settings: 'wdth' 100;
}
.comp-h2 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}
.comp-h2-black {
  font-size: 56px;
  font-weight: 900;
  line-height: 58.8px;
  letter-spacing: -2.24px;
  color: #f5f0e8;
}
.comp-h2-italic {
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  line-height: 58.8px;
  letter-spacing: -2.24px;
  color: #f0cc7a;
}
.comp-sub {
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: rgba(245,240,232,0.48);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  font-variation-settings: 'wdth' 100;
}
.comp-table-wrap {
  border: 1px solid rgba(245,240,232,0.08);
  overflow-x: auto;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.comp-th {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  background: rgba(245,240,232,0.03);
  border-bottom: 0.8px solid rgba(245,240,232,0.08);
  padding: 18px 24px;
  text-align: left;
  font-variation-settings: 'wdth' 100;
}
.comp-th:not(.comp-th-feat) { text-align: center; }
.comp-td-feat {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #f5f0e8;
  letter-spacing: -0.17px;
  line-height: 1.45;
  padding: 18px 24px;
  border-bottom: 0.8px solid rgba(245,240,232,0.06);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  width: 52%;
}
.comp-td {
  padding: 18px 24px;
  border-bottom: 0.8px solid rgba(245,240,232,0.06);
  text-align: center;
  vertical-align: middle;
}
.comp-row:last-child .comp-td-feat,
.comp-row:last-child .comp-td { border-bottom: none; }
.comp-check {
  font-size: 15px;
  color: #52b788;
  line-height: 21px;
}
.comp-cross {
  font-size: 13px;
  color: rgba(245,240,232,0.20);
  line-height: 18.2px;
}
.comp-sometimes {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  color: #d4a843;
  letter-spacing: 0.48px;
  font-variation-settings: 'wdth' 100;
}

/* ═══ HOW IT WORKS ═══ */
.svc-how {
  background: #f5f0e8;
}
.svc-how-inner {
  max-width: calc(var(--cw) + var(--pad) * 2);
  margin: 0 auto;
  padding: 80px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.how-header {
  display: flex;
  align-items: flex-end;
  gap: 64px;
}
.how-header-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.how-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.how-ey-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.how-ey-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: 'wdth' 100;
}
.how-h2 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}
.how-h2-black {
  font-size: 54px;
  font-weight: 900;
  line-height: 56.7px;
  letter-spacing: -2.16px;
  color: #0f2317;
}
.how-h2-italic {
  font-size: 54px;
  font-weight: 300;
  font-style: italic;
  line-height: 56.7px;
  letter-spacing: -2.16px;
  color: var(--gold);
}
.how-intro {
  flex: 1;
  border-top: 0.8px solid rgba(13,31,17,0.1);
  padding-top: 19px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(13,31,17,0.5);
  line-height: 1.7;
  margin: 0;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(13,31,17,0.1);
  position: relative;
}
.how-step {
  padding: 40px 28px;
  border-right: 0.8px solid rgba(13,31,17,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.how-step:last-child { border-right: none; }
.hs-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f2317;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: #d4a843;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.hs-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: #0f2317;
  letter-spacing: -0.42px;
  line-height: 1.2;
  margin: 0;
  padding-top: 15px;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.hs-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(13,31,17,0.5);
  line-height: 1.7;
  margin: 0;
  font-variation-settings: 'wdth' 100;
}
.hs-note {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.345px;
  margin-top: 4px;
  font-variation-settings: 'wdth' 100;
}

/* ═══ WHY CONFLICT-FREE ═══ */
.svc-wcf { border-bottom: 1px solid rgba(13,31,17,0.06); }
.svc-wcf-inner {
  max-width: calc(var(--cw) + var(--pad) * 2);
  margin: 0 auto;
  padding: 80px var(--pad);
  display: flex;
  gap: 80px;
  align-items: center;
}
.wcf-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wcf-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wcf-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wcf-ey-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.wcf-ey-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: 'wdth' 100;
}
.wcf-h2 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}
.wcf-h2-black {
  font-size: 52px;
  font-weight: 900;
  line-height: 54.6px;
  letter-spacing: -2.08px;
  color: #0f2317;
}
.wcf-h2-italic {
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  line-height: 54.6px;
  letter-spacing: -2.08px;
  color: var(--gold);
}
.wcf-sub {
  padding-left: 16px;
  border-left: 1.6px solid var(--gold);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.72;
  color: rgba(13,31,17,0.5);
  margin: 0;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.wcf-compare-wrap {
  border: 1px solid rgba(13,31,17,0.1);
  overflow-x: auto;
}
.wcf-compare {
  width: 100%;
  border-collapse: collapse;
}
.wcf-th {
  background: #e2d9c5;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(13,31,17,0.25);
  padding: 18px 22px;
  text-align: left;
  font-variation-settings: 'wdth' 100;
}
.wcf-th:first-child { border-right: 0.8px solid rgba(13,31,17,0.1); }
.wcf-row { border-top: 0.8px solid rgba(13,31,17,0.1); }
.wcf-td {
  padding: 18px 22px;
  vertical-align: top;
  font-family: var(--font-ui);
  font-size: 13.9px;
  line-height: 1.52;
  display: table-cell;
  font-variation-settings: 'wdth' 100;
}
.wcf-td-good {
  border-right: 0.8px solid rgba(13,31,17,0.1);
  color: #0f2317;
  font-weight: 600;
}
.wcf-td-bad {
  color: rgba(13,31,17,0.25);
  font-weight: 400;
}
.wcf-td-good .wcf-check,
.wcf-td-bad .wcf-cross { margin-right: 8px; flex-shrink: 0; }
.wcf-check { color: #265235; font-size: 14px; }
.wcf-cross { color: rgba(192,57,43,0.5); font-size: 13px; }
.wcf-img-card {
  border: 1px dashed rgba(13,31,17,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.wcf-img-card img {
  width: 100%;
  height: auto;
  display: block;
}
.wcf-awards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wcf-award {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
}
.wcf-award--dark {
  background: #0f2317;
}
.wcf-award--light {
  background: #fbf6ea;
  border: 1px solid #e8d49a;
}
.wcf-award-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.wcf-award-title {
  font-family: var(--font-ui);
  font-size: 13.4px;
  font-weight: 700;
  line-height: 1.41;
  margin: 0 0 6px;
  font-variation-settings: 'wdth' 100;
}
.wcf-award--dark .wcf-award-title { color: #d4a843; }
.wcf-award--light .wcf-award-title { color: #0f2317; }
.wcf-award-body {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  font-variation-settings: 'wdth' 100;
}
.wcf-award--dark .wcf-award-body { color: rgba(245,240,232,0.6); }
.wcf-award--light .wcf-award-body { color: rgba(13,31,17,0.5); }

/* Services FAQ overrides */
.svc-faq { background: var(--cream); }
.svc-faq .faq-inner { grid-template-columns: 2fr 3fr; }
.svc-faq .faq-divider { display: none; }
.svc-faq .section-tag--gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.svc-faq .section-tag--gold::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.svc-faq .faq-headline { font-size: 48px; line-height: 50.4px; letter-spacing: -1.68px; }
.svc-faq .faq-btn { padding-block: 26px; }
.svc-faq .faq-answer p { padding-left: 58px; }
.svc-faq .faq-cta,
.svc-faq-cta {
  background: var(--gold);
  color: #0f2317;
  border-color: var(--gold);
}
.svc-faq .faq-cta:hover,
.svc-faq-cta:hover {
  background: #d4a843;
  border-color: #d4a843;
  color: #0f2317;
}

/* Responsive — Comparison + How It Works */
@media (max-width: 1100px) {
  .comp-h2-black, .comp-h2-italic { font-size: 44px; line-height: 48px; }
  .how-h2-black, .how-h2-italic { font-size: 42px; line-height: 46px; }
}
@media (max-width: 900px) {
  .how-header { flex-direction: column; align-items: flex-start; gap: 32px; }
  .how-intro { border-top: none; padding-top: 0; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .how-step { border-bottom: 0.8px solid rgba(13,31,17,0.1); }
  .how-step:nth-child(2n) { border-right: none; }
}
@media (max-width: 768px) {
  /* wcf — why-conflict-free */
  .svc-wcf-inner { flex-direction: column; gap: 40px; padding: 60px var(--pad); }
  .wcf-h2-black, .wcf-h2-italic { font-size: 38px; line-height: 42px; letter-spacing: -1.5px; }
}
@media (max-width: 600px) {
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; }
  .comp-h2-black, .comp-h2-italic { font-size: 34px; line-height: 38px; }
  .how-h2-black, .how-h2-italic { font-size: 34px; line-height: 38px; }
}
@media (max-width: 480px) {
  /* sv-phil */
  .sv-phil { padding: 44px var(--pad); }
  .sv-phil-item { padding: 24px 20px; }
  .sv-phil-num { font-size: 2.25rem; line-height: 1; }
  .sv-phil-title { font-size: 1.2rem; line-height: 1.4; padding-top: 8px; }
  .sv-phil-p { font-size: .875rem; }
  /* svc-section (each service) */
  .svc-section-inner { padding: 44px var(--pad); gap: 24px; }
  .svc-h2-black, .svc-h2-italic { font-size: 1.75rem !important; line-height: 1.2; letter-spacing: -.02em; }
  .svc-sub { font-size: 1rem; line-height: 1.65; }
  /* svc-wcf */
  .svc-wcf-inner { padding: 44px var(--pad); gap: 32px; }
  .wcf-h2-black, .wcf-h2-italic { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; }
  .wcf-deck { font-size: 1rem; line-height: 1.65; }
  /* comparison */
  .svc-comp-inner { padding: 44px var(--pad); gap: 40px; }
  .comp-h2-black, .comp-h2-italic { font-size: 1.75rem !important; line-height: 1.2; letter-spacing: -.02em; }
  /* how it works */
  .svc-how-inner { padding: 44px var(--pad); }
  .how-h2-black, .how-h2-italic { font-size: 1.75rem !important; line-height: 1.2; letter-spacing: -.02em; }
  .how-step { padding: 24px 16px; }
  /* sv-section (old) */
  .sv-section { padding: 44px 0; }
  .sv-sec-title { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.02em; }
  /* faq */
  .svc-faq .faq-headline { font-size: 1.75rem !important; line-height: 1.2; letter-spacing: -.02em; }
}

/* Old sv-section classes kept below (now unused) */
.sv-section {
.sv-section--alt {
  background: var(--beige);
}

.sv-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sv-section--alt .sv-section-inner {
  direction: rtl;
}
.sv-section--alt .sv-section-inner > * {
  direction: ltr;
}

.sv-sec-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sv-sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sv-sec-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: rgba(13,31,17,0.2);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  letter-spacing: -0.2px;
}
.sv-sec-tag {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: 'wdth' 100;
}

.sv-sec-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  line-height: 46px;
  letter-spacing: -1.2px;
  color: #0f2317;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.sv-sec-tagline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 28px;
  color: rgba(13,31,17,0.55);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

.sv-sec-desc {
  font-family: var(--font-ui);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(13,31,17,0.60);
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

.sv-sec-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sv-sec-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(13,31,17,0.70);
  font-variation-settings: 'wdth' 100;
}
.sv-feat-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(184,145,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--gold);
}

.sv-sec-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  padding: 14px 28px;
  background: #1a3a24;
  color: #f5f0e8;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.91px;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
  text-decoration: none;
  border: 1px solid #1a3a24;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.sv-sec-btn:hover {
  background: #0f2317;
  border-color: #f5f0e8;
}

.sv-sec-img-col { position: relative; }
.sv-sec-picture { display: block; }
.sv-sec-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.sv-sec-img-placeholder {
  width: 100%;
  height: 500px;
  background: rgba(13,31,17,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-sec-img-num {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: rgba(13,31,17,0.08);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sv-h1-cream, .sv-h1-gold { font-size: 72px; line-height: 70px; letter-spacing: -3.5px; }
  .sv-grid { gap: 48px; }
  .sv-right { flex: 0 0 420px; }
}

@media (max-width: 768px) {
  .sv-wrap { padding: 60px var(--pad) 0; }
  .sv-grid { flex-direction: column; gap: 36px; padding-bottom: 48px; }
  .sv-h1-cream, .sv-h1-gold { font-size: 52px; line-height: 52px; letter-spacing: -2.5px; }
  .sv-deck { font-size: 17px; line-height: 28px; }
  .sv-section { padding: 64px 0; }
  .sv-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .sv-section--alt .sv-section-inner { direction: ltr; }
  .sv-sec-title { font-size: 32px; line-height: 36px; }
  .sv-sec-img { height: 300px; }
  .sv-sec-img-placeholder { height: 300px; }
}


/* ==============================================
   BUSINESS PAGE
   ============================================== */

/* ── Key Statistics Bar ── */
.biz-stats {
  background: #b8912a;
  width: 100%;
}
.biz-stats-inner {
  display: flex;
  align-items: stretch;
  height: 66px;
}
.biz-stat-item {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-right: .8px solid rgba(13,31,17,.15);
}
.biz-stat-item:last-child { border-right: none; }
.biz-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: #0f2317;
  letter-spacing: -.84px;
  white-space: nowrap;
  line-height: 1;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.biz-stat-label {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(13,31,17,.55);
  letter-spacing: .84px;
  text-transform: uppercase;
  line-height: 13.65px;
  font-variation-settings: 'wdth' 100;
}

@media (max-width: 900px) {
  .biz-stats-inner { flex-wrap: wrap; height: auto; }
  .biz-stat-item { flex: 0 0 50%; border-right: none; border-bottom: .8px solid rgba(13,31,17,.15); padding: 16px 20px; justify-content: flex-start; }
  .biz-stat-item:nth-child(odd) { border-right: .8px solid rgba(13,31,17,.15); }
}
@media (max-width: 480px) {
  .biz-stat-item { flex: 0 0 50%; padding: 14px 12px; }
  .biz-stat-num { font-size: 22px; letter-spacing: -.5px; }
  .biz-stat-label { font-size: 9px; letter-spacing: .5px; }
}

/* ── CAREER — OUR VALUES (node 54:5451) ─────────────────── */
.ov-section {
  background-color: var(--green-dark);
  padding: 140px var(--pad);
  position: relative;
  overflow: hidden;
}
.ov-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg,   rgba(255,255,255,.016) 0%, rgba(255,255,255,0) 6.74%),
    linear-gradient(90deg,  rgba(255,255,255,.016) 0%, rgba(255,255,255,0) 5.56%);
  pointer-events: none;
}
.ov-inner {
  max-width: var(--cw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Header */
.ov-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.ov-header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ov-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.31px;
  text-transform: uppercase;
  color: #d4a843;
  font-variation-settings: 'wdth' 100;
}
.ov-eyebrow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #d4a843;
  flex-shrink: 0;
}
.ov-h2 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  line-height: 64px;
  letter-spacing: -2.56px;
  color: #f5f0e8;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}
.ov-h2 em {
  font-style: italic;
  font-weight: 300;
  color: #f0cc7a;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.ov-header-right {
  border-top: 1px solid rgba(245,240,232,.1);
  padding-top: 18px;
}
.ov-desc {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  line-height: 32.68px;
  color: rgba(245,240,232,.5);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}

/* Grid */
.ov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,240,232,.07);
  border: 1px solid rgba(245,240,232,.07);
  padding: 1px;
}
.ov-card {
  background: var(--green-dark);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ov-icon {
  font-size: 28px;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.ov-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 29.9px;
  letter-spacing: -.65px;
  color: #f5f0e8;
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  margin: 0;
}
.ov-card-body {
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 25.38px;
  color: rgba(245,240,232,.48);
  font-variation-settings: 'wdth' 100;
  margin: 0;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .ov-section { padding: 100px var(--pad); }
  .ov-h2 { font-size: 52px; line-height: 54px; letter-spacing: -2px; }
  .ov-inner { gap: 60px; }
}
@media (max-width: 860px) {
  .ov-header { grid-template-columns: 1fr; gap: 32px; }
  .ov-h2 { font-size: 44px; line-height: 48px; }
  .ov-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ov-section { padding: 80px var(--pad); }
  .ov-h2 { font-size: 36px; line-height: 40px; letter-spacing: -1.4px; }
  .ov-grid { grid-template-columns: 1fr; }
  .ov-card { padding: 36px 24px; }
}

/* ================================================================
   GLOBAL RESPONSIVE PATCH — all pages, all breakpoints
   ================================================================ */

/* ── Large screens (1600px+) ─── */
@media (min-width: 1600px) {
  :root { --pad: 130px; }
}

/* ── Tablet / Small desktop (1024px) ─── */
@media (max-width: 1024px) {
  /* About hero */
  .ab-hero { min-height: auto; }
  .ab-hero-inner { padding: 72px 40px; }

  /* Services hero */
  .sv-hero { min-height: auto; }
  .sv-wrap { padding: 72px 40px; }
  .sv-h1-cream, .sv-h1-gold { font-size: 60px; line-height: 60px; }

  /* Home hero */
  .section-hero { min-height: 700px; }
  .hero-headline { font-size: clamp(2.8rem, 4.5vw, 4rem); }

  /* Sections vertical padding */
  .section-why,
  .section-credentials,
  .section-testimonials,
  .section-case-studies,
  .section-lead-magnet,
  .section-faq { padding-block: 72px; }

  /* Credentials 2-col header still ok at 1024 but tighten gap */
  .cred-header { gap: 40px; }

  /* FAQ */
  .faq-inner { gap: 64px; }
}

/* ── Tablet (768px) ─── */
@media (max-width: 768px) {
  /* Global section padding reduction */
  .site-header { height: auto; }

  /* About */
  .ab-hero { min-height: auto; }
  .ab-h1 { font-size: 48px; letter-spacing: -2px; line-height: 1; }
  .ab-stats { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .sv-h1-cream, .sv-h1-gold { font-size: 48px; line-height: 48px; letter-spacing: -2px; }
  .sv-deck { font-size: 17px; }
  .sv-right { flex: none; width: 100%; }
  .sv-grid { flex-direction: column; gap: 32px; padding-bottom: 40px; }

  /* Footer newsletter form */
  .footer-nl-form { flex-direction: column; gap: 8px; }
  .footer-nl-input { border-right: 1px solid rgba(245,240,232,.12); }
  .footer-nl-btn { width: 100%; justify-content: center; }

  /* Footer bottom */
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Home hero */
  .section-hero { min-height: 620px; }
  .hero-sub { font-size: .9375rem; }
  .hero-inner { padding-block: 60px; }
  .hero-content { max-width: 100%; }

  /* Credentials */
  .cred-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .cred-headline { font-size: 2.25rem; }

  /* Testimonials */
  .testi-headline { font-size: 2.5rem; }
  .testi-item { padding-block: 32px; }

  /* Lead magnet */
  .lm-inner { flex-direction: column; gap: 40px; }
  .lm-doc { flex: none; width: 100%; padding: 40px; }
  .lm-right { flex: none; width: 100%; }
  .lm-headline { font-size: 2.25rem; }

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: relative; top: auto; }
  .faq-headline { font-size: 2.5rem; }
  .faq-answer p { padding: 0 0 28px 0; }

  /* Case studies */
  .cs-cell { padding: 24px; }

  /* Why */
  .section-why { padding-block: 60px; }
}

/* ── Mobile (480px) ─── */
@media (max-width: 480px) {
  /* About hero */
  .ab-hero { min-height: auto; }
  .ab-hero-inner { padding: 48px 20px; gap: 24px; }
  .ab-h1 { font-size: 40px; letter-spacing: -1.6px; }
  .ab-stats { grid-template-columns: 1fr 1fr; }

  /* Services hero */
  .sv-wrap { padding: 44px 16px; }
  .sv-h1-cream, .sv-h1-gold { font-size: clamp(2.25rem, 8vw, 2.75rem); line-height: 1.05; letter-spacing: -1.2px; }
  .sv-grid { flex-direction: column; gap: 20px; padding-bottom: 28px; }
  .sv-right { flex: none; width: 100%; }
  .sv-deck { font-size: 1rem; line-height: 1.65; }
  .sv-principle { font-size: .9375rem; line-height: 1.6; padding: 14px 16px; }
  .sv-tab { padding: 14px 16px 12px; font-size: 11px; }

  /* Home hero */
  .section-hero { min-height: 520px; }
  .hero-inner { padding-block: 48px; }
  .hero-btn-gold, .hero-btn-outline { width: 100%; justify-content: center; }

  /* Nav right — keep only CTA on small mobile */
  .nav-right .nav-cta { font-size: .625rem; padding: 10px 16px; letter-spacing: .04em; }

  /* Footer */
  .footer-top { padding-top: 44px; }
  .footer-grid { padding-bottom: 44px; }
  .footer-social { flex-wrap: wrap; }
  .footer-bottom { padding-bottom: 44px; }
  .footer-bottom .container { justify-content: center; }
  .footer-legal { flex-direction: column; gap: 8px; }

  /* About stats */
  .about-stats-row .asr { padding: 20px 12px; }
  .asr-big { font-size: 1.625rem; }

  /* Credentials */
  .cred-card { padding: 24px; }

  /* Testimonials */
  .testi-headline { font-size: 2rem; }
  .testi-item { padding-block: 24px; }
  .testi-num { width: 56px; padding-right: 20px; font-size: 2.25rem; }

  /* Lead magnet */
  .lm-doc { padding: 28px; }

  .lm-headline { font-size: 1.875rem; }

  /* FAQ */
  .faq-headline { font-size: 1.875rem; }
  .faq-btn { grid-template-columns: 32px 1fr 24px; gap: 12px; }
  .faq-num { font-size: 1.5rem; }

  /* Why */
  .why-headline { font-size: 2rem; }

  /* Case studies */
  .cs-cell { padding: 20px; }
  .cs-feat-body { padding: 24px; }
  .cs-headline { font-size: 2.25rem; }
}

/* ── Very small mobile (360px) ─── */
@media (max-width: 375px) {
  .nav-right .nav-cta { display: none; }
  .hero-headline { font-size: 2.5rem; }
  .ab-h1 { font-size: 36px; }
  .sv-h1-cream, .sv-h1-gold { font-size: 34px; line-height: 36px; }
  .footer-legal a { font-size: .7rem; }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE RESPONSIVE — SECTION PADDING + TYPOGRAPHY
   Desktop untouched. Mobile/tablet only.
═══════════════════════════════════════════════════ */

/* ── Tablet 1024px ───────────────────────────────── */
@media (max-width: 1024px) {
  /* Section vertical padding: 80 → 64px */
  .section-about,
  .section-services,
  .section-why,
  .section-credentials,
  .section-testimonials,
  .section-case-studies,
  .section-lead-magnet,
  .section-blog,
  .section-faq { padding-block: 64px; }
  .section-fcta { padding-top: 64px; padding-bottom: 64px; }

  /* Hero */
  .hero-inner { padding-block: 64px; }

  /* About headline */
  .about-headline { font-size: 2.75rem; }

  /* Testimonials */
  .testi-headline { font-size: 3.5rem; }

  /* FAQ 2-col still fine but tighten */
  .faq-inner { gap: 64px; }
}

/* ── Tablet 768px ────────────────────────────────── */
@media (max-width: 768px) {
  /* Section vertical padding: 80 → 52px */
  .section-about,
  .section-services,
  .section-why,
  .section-credentials,
  .section-testimonials,
  .section-case-studies,
  .section-lead-magnet,
  .section-blog,
  .section-faq { padding-block: 52px; }
  .section-fcta { padding-top: 52px; padding-bottom: 52px; }

  /* Hero */
  .hero-inner { padding-block: 52px; }

  /* About headline */
  .about-headline { font-size: 2.25rem; }

  /* Services heading */
  .svc-h2-black, .svc-h2-italic { font-size: 2.5rem; }

  /* Why */
  .why-headline { font-size: 2.5rem; }
  .why-intro { margin-bottom: 48px; }

  /* Credentials */
  .cred-headline { font-size: 2.25rem; }

  /* Testimonials */
  .testi-headline { font-size: 2.5rem; }
  .testi-item { padding-block: 32px; }

  /* Case Studies */
  .cs-headline { font-size: 2.5rem; }
  .cs-cell { padding: 24px; }
  .cs-feat-body { padding: 28px; }

  /* Lead Magnet */
  .lm-inner { flex-direction: column; gap: 40px; }
  .lm-doc, .lm-right { flex: none; width: 100%; }
  .lm-doc { padding: 40px; }
  .lm-headline { font-size: 2.25rem; }

  /* Blog */
  .blog-headline { font-size: 2rem; }

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: relative; top: auto; }
  .faq-headline { font-size: 2.25rem; }
  .faq-answer p { padding: 0 0 24px 0; }
}

/* ── Mobile 480px ────────────────────────────────── */
@media (max-width: 480px) {
  /* Section vertical padding: 80 → 44px */
  .section-about,
  .section-services,
  .section-why,
  .section-credentials,
  .section-testimonials,
  .section-case-studies,
  .section-lead-magnet,
  .section-blog,
  .section-faq { padding-block: 44px; }
  .section-fcta { padding-top: 44px; padding-bottom: 44px; }

  /* Hero */
  .section-hero { min-height: 500px; }
  .hero-inner { padding-block: 44px; }
  .hero-headline { font-size: clamp(2.25rem, 8vw, 2.75rem); }
  .hero-sub { font-size: .875rem; max-width: 100%; }
  .hero-btn-gold, .hero-btn-outline { width: 100%; justify-content: center; }

  /* About */
  .about-headline { font-size: 1.875rem; }
  .about-lead { font-size: 1.0625rem; }
  .about-stats-row .asr { padding: 18px 10px; }
  .asr-big { font-size: 1.5rem; }
  .asr-suf { font-size: 1rem; }

  /* Services */
  .svc-h2-black, .svc-h2-italic { font-size: 2rem; }

  /* Why */
  .why-headline { font-size: 2rem; }
  .why-intro { margin-bottom: 36px; }

  /* Credentials */
  .cred-headline { font-size: 1.875rem; }
  .cred-card { padding: 24px; }

  /* Testimonials */
  .testi-headline { font-size: 2rem; }
  .testi-item { padding-block: 24px; }
  .testi-num { width: 52px; padding-right: 16px; font-size: 2rem; }
  .ti-quote { font-size: 1.125rem; }

  /* Case Studies */
  .cs-headline { font-size: 2rem; }
  .cs-cell { padding: 20px; }
  .cs-feat-body { padding: 20px; }

  /* Lead Magnet */
  .lm-doc { padding: 28px; }
  .lm-headline { font-size: 1.875rem; }

  /* Blog */
  .blog-headline { font-size: 1.75rem; }

  /* FAQ */
  .faq-headline { font-size: 1.875rem; }
  .faq-btn { grid-template-columns: 32px 1fr 22px; gap: 10px; padding-block: 20px; }
  .faq-num { font-size: 1.5rem; }
  .faq-q { font-size: 1.0625rem; }

  /* Why rows */
  .why-num { font-size: 2.75rem; padding: 18px; }
  .why-content { padding: 18px; }
  .why-title { font-size: 1.1875rem; }
  .why-desc { font-size: .875rem; }

  /* Blog */
  .blog-top { gap: 14px; margin-bottom: 36px; }
  .blog-item { gap: 12px; padding-block: 20px; }
  .blog-num { font-size: 2rem; }
  .blog-title { font-size: 1rem; line-height: 1.4; }

  /* Testimonials */
  .testi-intro { font-size: 1rem; line-height: 1.65; }
  .testi-num { width: 40px; padding-right: 12px; font-size: 1.75rem; }
  .ti-quote { font-size: 1.0625rem; line-height: 1.5; letter-spacing: -.01em; }
  .testi-item { padding-block: 20px; }

  /* Case studies */
  .cs-intro { font-size: .875rem; }
  .cs-feat-stat { font-size: 2.625rem; }
  .cs-feat-body { gap: 12px; }

  /* Final CTA */
  .fcta-btn { width: 100%; justify-content: center; }
  .fcta-desc { font-size: 1rem; line-height: 1.7; }
}

/* ─── 375px: Very tight screens ─── */
@media (max-width: 375px) {
  .why-num { font-size: 2.25rem; }
  .blog-num { font-size: 1.75rem; }
  .testi-num { font-size: 1.5rem; width: 36px; }
}

/* ═══════════════════════════════════════════════════════
   SINGLE BLOG / INSIGHT PAGE
═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.sb-hero {
  background: var(--dark-green, #0f2317);
  padding: 100px 0 60px;
}
.sb-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad, 24px);
}

.sb-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.sb-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin: 0 0 28px;
}
.sb-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245,240,232,.12);
  padding-top: 20px;
}
.sb-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sb-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184,145,42,.2);
  border: 2px solid rgba(184,145,42,.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sb-av img { width: 100%; height: 100%; object-fit: cover; }
.sb-av span { font-size: 0.875rem; font-weight: 700; color: #b8912a; }
.sb-author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f5f0e8;
}
.sb-author-role {
  display: block;
  font-size: 0.78rem;
  color: rgba(245,240,232,.55);
}
.sb-meta-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,.6);
  font-size: 0.83rem;
}
.sb-date, .sb-readtime {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sb-sep { opacity: .4; }

/* ── Featured image (full-width top) ── */
.sb-thumb { width: 100%; }
.sb-thumb picture,
.sb-thumb img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ── Article body ── */
.sb-body-wrap {
  max-width: 820px;
  margin: 48px auto 64px;
  padding: 0 var(--pad, 24px);
}
.sb-content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #1a1a1a;
}
.sb-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f2317;
  margin: 2em 0 .75em;
  line-height: 1.25;
}
.sb-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2317;
  margin: 1.75em 0 .6em;
}
.sb-content p { margin: 0 0 1.4em; }
.sb-content ul, .sb-content ol {
  margin: 0 0 1.4em 1.5em;
  padding: 0;
}
.sb-content li { margin-bottom: .5em; }
.sb-content blockquote {
  border-left: 3px solid #b8912a;
  margin: 2em 0;
  padding: .75em 1.25em;
  background: rgba(184,145,42,.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #2a2a2a;
}
.sb-content a { color: #b8912a; text-decoration: underline; }
.sb-content a:hover { color: #0f2317; }
.sb-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5em 0; }
.sb-content strong { font-weight: 700; }

/* ── Share bar ── */
.sb-share {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid #e8e4dc;
  padding-top: 28px;
  margin-top: 40px;
}
.sb-share-label {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #666;
}
.sb-share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sb-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.sb-share-btn:hover { opacity: .8; }
.sb-share-wa  { background: #25d366; color: #fff; }
.sb-share-li  { background: #0077b5; color: #fff; }
.sb-share-tw  { background: #000; color: #fff; }
.sb-share-copy { background: #f0ece4; color: #333; }

/* ── Related posts grid ── */
.ins-grid {
  background: #f7f4ef;
  padding: 72px 0;
}
.ins-grid-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--pad, 24px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .sb-hero { padding: 80px 0 40px; }
  .sb-title { font-size: 1.625rem; }
  .sb-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sb-thumb picture, .sb-thumb img { height: 240px; }
  .sb-body-wrap { margin: 32px auto 48px; }
  .sb-content { font-size: 1rem; }
  .sb-share { flex-direction: column; align-items: flex-start; gap: 12px; }
}
