/* ═══════════════════════════════════════════════
   Alongside — Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  /* Core Alongside palette */
  --deep-ink:      #1F2430;
  --warm-cream:    #FFF8EF;
  --coral-apricot: #FF6060;
  --nectar-gold:   #F6B73C;
  --soft-sand:     #F2EADF;
  --sunlit-yellow: #FFD76A;

  /* Derived tints */
  --coral-dk:   #E84848;
  --coral-lt:   #FFF0EE;
  --coral-mid:  #FFD4D4;
  --gold-lt:    #FEF7E8;
  --gold-mid:   #FDECC4;
  --border:     #E2E2E0;
  --text-muted: #6B6B6B;
  --text:       #333333;
  --nav-h:      68px;

  /* Aliases */
  --white:    #FFFFFF;
  --ink:      var(--deep-ink);
  --coral:    var(--coral-apricot);
  --green-dk: var(--deep-ink);
  --grey-lt:  var(--soft-sand);
  --grey-mid: #E2E2E0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--warm-cream);
  color: var(--text);
  line-height: 1.72;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

p { color: var(--text); }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ──────────────────────────────────── */
.wrap     { max-width: 1120px; margin: 0 auto; padding: 0.5rem 2.5rem; }
.wrap--sm { max-width: 720px;  margin: 0 auto; padding: 0.5rem 2.5rem; }
.wrap--lg { max-width: 1240px; margin: 0 auto; padding: 0.5rem 2.5rem; }

/* ── TYPE ────────────────────────────────────── */
.label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral);
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.8rem 1.65rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  border-radius: 100px; cursor: pointer;
  transition: all 0.16s; border: none;
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-coral  { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,90,60,0.3); }
.btn-dark   { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2a28; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-white  { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--grey-lt); }
.btn-ghost  { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  border-bottom: none;
  box-shadow: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 18px rgba(0,0,0,0.07);
}
/* Strip top/bottom padding from .wrap inside nav so nav__inner fills full height */
.nav .wrap { padding-top: 0; padding-bottom: 0; height: 100%; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

/* Logo */
.nav__logo {
  cursor: pointer; display: flex; align-items: baseline;
  gap: 0.4rem; transition: opacity 0.15s;
}
.nav__logo:hover { opacity: 0.65; }
.nav__logo__mark { display: block; height: 30px; width: auto; flex-shrink: 0; }
.nav__logo__word {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 1.1rem; letter-spacing: -0.02em;
  color: var(--deep-ink); line-height: 1;
}

/* Footer logo — white */
.footer__logo-wrap {
  cursor: pointer; display: flex; align-items: center;
  gap: 0.5rem; margin-bottom: 1.25rem;
}
.footer__logo-wrap .nav__logo__mark path { fill: #fff; }
.footer__logo-wrap .nav__logo__word { color: #fff; font-size: 1rem; }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin-top: 0.5rem;
}
.nav__links a {
  font-family: 'Manrope', sans-serif; font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); padding: 0.4rem 0.65rem; border-radius: 6px;
  transition: color 0.14s; display: block;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.active {
  color: var(--ink);
  font-weight: 700;
  background: var(--coral-lt);
  color: var(--coral-dk);
}
.nav__right { display: flex; align-items: center; gap: 0.75rem; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav__mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 1rem 2.5rem 1.5rem; z-index: 199; flex-direction: column;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Manrope', sans-serif; font-size: 0.9rem; font-weight: 500;
  color: var(--text); padding: 0.7rem 0; border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile .btn { margin-top: 1rem; justify-content: center; }
/* Restore button text colours overridden by .nav__mobile a rule */
.nav__mobile .btn-coral { color: #fff; }
.nav__mobile .btn-dark  { color: #fff; }
.nav__mobile .btn-ghost { color: rgba(255,255,255,0.85); }

/* ── SECTIONS ────────────────────────────────── */
.sec      { padding: 6rem 0; background: #fff; }
.sec--sm  { padding: 4rem 0; }
.sec--lg  { padding: 8rem 0; }
.sec--grey  { background: #F5F5F3; }
.sec--dark  { background: var(--deep-ink); }
.sec--dark h1, .sec--dark h2, .sec--dark h3, .sec--dark h4 { color: #fff; }
.sec--dark .label { color: var(--sunlit-yellow); opacity: 0.9; }
.sec--dark p { color: rgba(255,255,255,0.6); }

/* ── HERO ────────────────────────────────────── */
.hero { margin-top: calc(-1 * var(--nav-h)); padding: calc(5.5rem + var(--nav-h)) 0 3rem; position: relative; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  position: relative; z-index: 1;
}
.hero__copy { max-width: 600px; }
.hero__label { margin-bottom: 1.5rem; }
.hero__h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 1.5rem;
}
.hero__h1 em { font-style: normal; color: var(--coral-apricot); }
.hero__sub { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; line-height: 1.75; margin-bottom: 2.5rem; }
.hero__ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero__pricing-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }
.hero__pricing-note strong { color: var(--text); font-weight: 600; }
/* Art is a full-bleed background layer */
.hero__art {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
  display: block;
}
.hero__art svg { width: 100%; height: 100%; max-width: none; }

/* ── HERO ILLUSTRATION ANIMATIONS ──────────────  */
@keyframes orbitA {
  /* Slow, wide orbital path — main coral blob */
  0%   { transform: translate(0px,   0px); }
  20%  { transform: translate(55px, -38px); }
  40%  { transform: translate(28px,  48px); }
  65%  { transform: translate(-52px, 22px); }
  85%  { transform: translate(-18px,-42px); }
  100% { transform: translate(0px,   0px); }
}
@keyframes orbitB {
  /* Medium orbit, counter-phase to A — gold blob */
  0%   { transform: translate(0px,   0px); }
  30%  { transform: translate(-48px, 32px); }
  55%  { transform: translate(22px,  58px); }
  75%  { transform: translate(52px, -18px); }
  100% { transform: translate(0px,   0px); }
}
@keyframes orbitC {
  /* Faster, tighter orbit — yellow accent */
  0%   { transform: translate(0px,   0px); }
  25%  { transform: translate(32px, -48px); }
  50%  { transform: translate(-38px,-22px); }
  75%  { transform: translate(10px,  42px); }
  100% { transform: translate(0px,   0px); }
}
@keyframes pulseOpacity {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes arcDraw {
  from { stroke-dashoffset: 1600; }
  to   { stroke-dashoffset: 0; }
}
@keyframes connectFade {
  /* Arc fades in when circles "meet", fades out as they drift */
  0%, 100% { opacity: 0; }
  35%, 65%  { opacity: 1; }
}
@keyframes scaleBreath {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.18); }
}
.hero-anim-a    { animation: orbitA 18s ease-in-out infinite; transform-origin: 860px 230px; }
.hero-anim-b    { animation: orbitB 22s ease-in-out infinite; transform-origin: 1000px 295px; }
.hero-anim-c    { animation: orbitC 14s ease-in-out infinite; transform-origin: 820px 345px; }
.hero-anim-ring { animation: slowSpin 55s linear infinite; transform-origin: 920px 255px; }
.hero-anim-arc1 {
  stroke-dasharray: 1600;
  animation: arcDraw 3s ease-out forwards, connectFade 18s 3s ease-in-out infinite;
}
.hero-anim-arc2 {
  stroke-dasharray: 900;
  animation: arcDraw 3.5s ease-out forwards, connectFade 22s 3.5s ease-in-out infinite;
}
.hero-anim-dot1 { animation: pulseOpacity 7s ease-in-out infinite; }
.hero-anim-dot2 { animation: pulseOpacity 9s 1.5s ease-in-out infinite; }
.hero-anim-dot3 { animation: scaleBreath 8s 0.8s ease-in-out infinite; }

/* ── PAGE HERO ───────────────────────────────── */
.page-hero { margin-top: calc(-1 * var(--nav-h)); padding: calc(5rem + var(--nav-h)) 0 4.5rem; background: #fff; }
.page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1.25rem; max-width: 760px;
}
.page-hero__sub { font-size: 1.1rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; margin-bottom: 2rem; }
.page-hero .label { margin-bottom: 1rem; }

/* ── SECTION INTRO ───────────────────────────── */
.sec-intro { max-width: 600px; margin-bottom: 4rem; }
.sec-intro h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 0.9rem;
}
.sec-intro p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }
.sec-intro .label { margin-bottom: 0.6rem; }

/* ── LAYOUT GRIDS (replaces inline styles) ───── */
/* Editorial approach split — heading left, body right */
.grid-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
/* Generic 2-column section grid */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* ── STAT BAR ────────────────────────────────── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
}
.stat-item { padding: 2.5rem 2rem; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: var(--coral);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.4rem;
}
.stat-lbl { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* ── TRUST LIST ──────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1rem 2rem; }
.trust-item { font-size: 0.875rem; color: var(--text-muted); display: flex; gap: 0.6rem; line-height: 1.5; }
.trust-item::before { content: '—'; color: var(--coral); flex-shrink: 0; }
.trust-item--light { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.trust-item--light::before { color: var(--coral-apricot); }

/* ── SERVICES ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.svc-card {
  display: flex; flex-direction: column;
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.svc-card:hover { border-color: #FFD76A; background: #FDECC4; }
.svc-card__num {
  font-family: 'Manrope', sans-serif;
  font-size: 3.6rem; font-weight: 800;
  color: var(--coral); opacity: 0.1;
  line-height: 1; margin-bottom: 0.65rem;
  letter-spacing: -0.04em;
  transition: opacity 0.2s;
}
.svc-card:hover .svc-card__num { opacity: 1; }
.svc-card__tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 0.4rem;
}
.svc-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
  line-height: 1.2; flex-grow: 1; margin-bottom: 0.65rem;
}
.svc-card__desc {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 1.25rem;
}
.svc-card__link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--coral);
  display: flex; align-items: center; gap: 0.4rem;
  opacity: 0; transform: translateY(5px);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
}
.svc-card:hover .svc-card__link { opacity: 1; transform: translateY(0); }
.svc-card__arrow { display: inline-block; transition: transform 0.18s 0.08s; }
.svc-card:hover .svc-card__arrow { transform: translateX(4px); }

/* ── VALUE GRID ──────────────────────────────── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 3rem 2.5rem; }
.value-item h4 { font-family:'Manrope',sans-serif; font-size:1rem; font-weight:700; margin-bottom:0.45rem; letter-spacing:-0.01em; }
.value-item p  { font-size:0.9375rem; color:var(--text-muted); line-height:1.75; }

/* ── AUDIENCE ────────────────────────────────── */
.audience-cols { display:grid; grid-template-columns:1fr 1fr; gap:3rem; }
.col-label { font-family:'Manrope',sans-serif; font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:0.13em; color:var(--coral); margin-bottom:1rem; }
.dash-list { list-style:none; display:flex; flex-direction:column; gap:0.65rem; }
.dash-list li { font-size:0.9375rem; color:var(--text-muted); display:flex; gap:0.6rem; align-items:flex-start; line-height:1.65; }
.dash-list li::before { content:'—'; color:var(--coral); flex-shrink:0; }

/* ── PRICING ─────────────────────────────────── */
.pricing-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:#E2E2E0; border:1px solid #E2E2E0; border-radius:20px; overflow:hidden; }
.price-card { background:#fff; padding:2rem; }
.price-card__lbl { font-family:'Manrope',sans-serif; font-size:0.68rem; font-weight:700; letter-spacing:0.13em; text-transform:uppercase; color:var(--coral); margin-bottom:0.75rem; }
.price-card__amt { font-family:'Manrope',sans-serif; font-size:1.6rem; font-weight:800; color:var(--ink); letter-spacing:-0.03em; margin-bottom:0.5rem; }
.price-card p   { font-size:0.875rem; color:var(--text-muted); line-height:1.65; }

/* ── FEATURES ────────────────────────────────── */
.features-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:#E2E2E0; border:1px solid #E2E2E0; border-radius:20px; overflow:hidden; }
.feat-group { background:#fff; padding:2rem; }
.feat-group h4 { font-family:'Manrope',sans-serif; font-size:1rem; font-weight:700; letter-spacing:-0.01em; margin-bottom:1rem; }
.inc-list { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }
.inc-list li { font-size:0.9375rem; color:var(--text-muted); padding-left:1.2rem; position:relative; line-height:1.65; }
.inc-list li::before { content:'—'; position:absolute; left:0; color:var(--coral); }

/* ── PILLARS ─────────────────────────────────── */
.pillars-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1px; background:#E2E2E0; border:1px solid #E2E2E0; border-radius:20px; overflow:hidden; }
.pillar-card { background:#fff; padding:2.25rem; }
.pillar-num { font-family:'Manrope',sans-serif; font-size:2.2rem; font-weight:800; color:var(--coral); opacity:0.2; line-height:1; margin-bottom:1rem; letter-spacing:-0.04em; }
.pillar-card h3 { font-family:'Manrope',sans-serif; font-size:1.05rem; font-weight:700; margin-bottom:0.65rem; letter-spacing:-0.01em; }
.pillar-card p { font-size:0.82rem; color:var(--text-muted); line-height:1.65; margin-bottom:0.75rem; }

/* ── OUTCOMES ────────────────────────────────── */
.outcomes-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:0.75rem; }
.outcome { padding:1.25rem; background:#fff; border:1px solid #E2E2E0; border-radius:12px; font-size:0.875rem; color:var(--text); line-height:1.5; display:flex; gap:0.6rem; align-items:flex-start; }
.outcome::before { content:'✓'; color:var(--coral); font-weight:700; flex-shrink:0; font-family:'Manrope',sans-serif; }

/* ── CALLOUT ─────────────────────────────────── */
.callout {
  padding: 3.5rem 4rem;
  margin: 3rem 0;
  text-align: center;
}
.callout::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--nectar-gold);
  margin: 0 auto 1.75rem;
  border-radius: 2px;
}
.callout p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 100;
  font-style: normal;
  color: var(--deep-ink);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}

/* ── CTA BANNER ──────────────────────────────── */
.cta-band { background: var(--deep-ink); padding: 5.5rem 0; text-align: center; }
.cta-band h2 { color:#fff; font-family:'Manrope',sans-serif; font-size:clamp(2rem,3.5vw,3rem); font-weight:800; letter-spacing:-0.03em; margin-bottom:1rem; max-width:640px; margin-left:auto; margin-right:auto; }
.cta-band p  { color:rgba(255,255,255,0.6); font-size:1rem; max-width:440px; margin:0 auto 2.5rem; line-height:1.75; }
.cta-band-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

.cta-band--gold { background: var(--sunlit-yellow); }
.cta-band--gold h2 { color: var(--deep-ink); }
.cta-band--gold p  { color: rgba(31,36,48,0.65); }
.cta-band--gold .btn-ghost { color: var(--deep-ink); border-color: rgba(31,36,48,0.3); }
.cta-band--gold .btn-ghost:hover { border-color: var(--deep-ink); }

.cta-band--coral { background: var(--coral-apricot); }
.cta-band--coral h2 { color: #fff; }
.cta-band--coral p  { color: rgba(255,255,255,0.75); }
.cta-band--coral .btn-coral { background: #fff; color: var(--coral-apricot); }
.cta-band--coral .btn-coral:hover { background: var(--warm-cream); }

/* ── DARK SECTION ────────────────────────────── */
.promise-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0.75rem; }
.promise-item { padding:1.5rem; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:12px; font-size:0.875rem; color:rgba(255,255,255,0.8); line-height:1.5; display:flex; gap:0.6rem; align-items:flex-start; }
.promise-item::before { content:'→'; color:var(--sunlit-yellow); flex-shrink:0; }

/* ── ABOUT ───────────────────────────────────── */
.bio-wrap { display:grid; grid-template-columns:260px 1fr; gap:5rem; align-items:start; }
.bio-sticky { position:sticky; top:calc(var(--nav-h) + 2rem); }
.bio-initials { width:100%; aspect-ratio:4/5; background:var(--gold-lt); border:1px solid var(--gold-mid); border-radius:20px; display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.bio-initials span { font-family:'Manrope',sans-serif; font-size:3.5rem; font-weight:800; color:var(--coral); letter-spacing:0.05em; }
.bio-photo { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center top; border-radius:20px; margin-bottom:1.25rem; display:block; }
.cred-list { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }
.cred-list li { font-size:0.78rem; color:var(--text-muted); display:flex; gap:0.5rem; align-items:flex-start; line-height:1.4; }
.cred-list li::before { content:'·'; color:var(--coral); font-size:1.2rem; line-height:1; flex-shrink:0; }

.values-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:2rem; }
.val-card { background:#fff; padding:1.75rem 1.5rem; border-radius:12px; border:1px solid var(--border); }
.val-card__icon { width:40px; height:40px; background:var(--gold-lt); border-radius:50%; margin-bottom:1.25rem; display:flex; align-items:center; justify-content:center; }
.val-card h3 { font-family:'Manrope',sans-serif; font-size:0.95rem; font-weight:700; margin-bottom:0.55rem; letter-spacing:-0.01em; }
.val-card p  { font-size:0.82rem; color:var(--text-muted); line-height:1.7; }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--deep-ink); padding:4rem 0; }
.footer__inner { display:flex; justify-content:space-between; align-items:flex-start; gap:3rem; flex-wrap:wrap; }
.footer__tagline { font-size:0.8rem; color:rgba(255,255,255,0.65); max-width:280px; line-height:1.65; }
.footer__col-label { font-size:0.65rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:rgba(255,255,255,0.55); margin-bottom:0.75rem; }
.footer__nav { list-style:none; display:flex; flex-direction:column; gap:0.45rem; }
.footer__nav a { font-size:0.82rem; color:rgba(255,255,255,0.82); transition:color 0.14s; }
.footer__nav a:hover { color:#fff; }
.footer__bottom { margin-top:3rem; padding-top:1.5rem; border-top:1px solid rgba(255,255,255,0.15); font-size:0.72rem; color:rgba(255,255,255,0.45); }

/* ── DIVIDER ─────────────────────────────────── */
.rule { border:none; border-top:1px solid var(--border); margin:3rem 0; }


/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { display: none; }
  /* Layout grids → single column */
  .grid-approach { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2col     { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Stat bar → 2-up */
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .bio-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-sticky { position: static; }
  .bio-initials { aspect-ratio: 1; max-width: 160px; }
  .audience-cols { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .wrap, .wrap--sm { padding: 0 1.5rem; }
  .sec { padding: 4rem 0; }
  .hero { padding: calc(3.5rem + var(--nav-h)) 0 3rem; }
  .page-hero { padding: calc(3rem + var(--nav-h)) 0 3.5rem; }
  .stat-item { padding: 1.75rem 1.25rem; }
  .pricing-grid, .pillars-grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 2rem; }
  .promise-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .callout { padding: 2.5rem 1.75rem; }
}
