/* ════════════════════════════════════════════════════════
   WHOLE & BALANCED — Shared Stylesheet
   Updated palette: editorial contrast, Goop-clean
════════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-weight: 400;
  background: var(--ivory);
  color: var(--t1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── DESIGN TOKENS ────────────────────────────────── */
/* New editorial palette: stark contrast, minimal colors
   3 backgrounds only: white · cream · near-black
   1 hero accent: deeper rose
   1 supporting: deeper sage (for quotes only)        */
:root {
  /* Backgrounds — 3 clear levels */
  --ivory:    #FFFFFF;    /* true white — primary bg for clean sections  */
  --bone:     #F2EDE7;    /* warm cream — alternate sections, clearly different from white */
  --stone:    #E2DDD8;    /* borders / dividers only */
  --mushroom: #D0C8C4;    /* strong borders — rarely used */

  /* Dark */
  --soft-black: #1E1C1A;  /* near-black — hero, footer, pull quote */
  --charcoal:   #2A2826;  /* cards on dark, featured service card */
  --mid-dark:   #242220;  /* deep variant */

  /* Accent: ONE dominant — deeper, more saturated rose */
  --rose:      #9E5F66;   /* main accent — 4.8:1 contrast on white */
  --rose-pale: #F5EFEE;   /* barely-there blush — CTA section bg */
  --rose-dk:   #7A4E4C;   /* dark rose — hover, emphasis text */
  --rose-lt:   #C49096;   /* light rose — on dark backgrounds */

  /* Supporting accent: deep sage — quote marks only */
  --sage:      #5E7267;   /* deeper sage-green */
  --sage-pale: #EBF0EE;   /* pale sage tint — rarely used */
  --sage-dk:   #4A5C54;   /* deep sage */
  --eucalyptus: #A8B8B0;  /* light sage — text on dark backgrounds */

  /* "Matcha" aliases → remapped to sage tones */
  --matcha:    #5E7267;   /* now same as --sage */
  --matcha-lt: #A8B8B0;   /* now same as --eucalyptus */

  /* Text — strong near-black for excellent contrast on white */
  --t1: #1A1A1A;   /* near-black — headings, primary */
  --t2: #585450;   /* warm dark gray — body text */
  --t3: #9B9590;   /* muted — captions, labels */

  --eyebrow-size: 0.62rem;
  --eyebrow-spacing: 0.28em;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Work Sans', system-ui, sans-serif;
  --max:   1240px;
  --pad:   clamp(1.5rem, 5vw, 5rem);
  --sec:   clamp(6rem, 10vw, 12rem);
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── UTILITIES ─────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--rose);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor; flex-shrink: 0;
}
.eyebrow.rose { color: var(--rose); }
.eyebrow.light { color: var(--eucalyptus); }
.eyebrow.light-rose { color: var(--rose-lt); }
.eyebrow.silver-e { color: rgba(255,255,255,0.35); }

/* Scroll reveal */
.r {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.r.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans);
  font-size: clamp(0.6rem, 1.1vw, 0.65rem);
  font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 1.05rem 2.2rem; min-height: 48px;
  cursor: pointer; white-space: nowrap;
  transition: all 0.35s var(--ease); border: none;
}
.btn-primary { background: var(--soft-black); color: var(--ivory); }
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-dk); transform: translateY(-2px); }

.btn-outline { border: 1px solid var(--soft-black); color: var(--soft-black); background: transparent; }
.btn-outline:hover { background: var(--soft-black); color: #fff; }

.btn-outline-rose { border: 1px solid var(--rose); color: var(--rose-dk); background: transparent; }
.btn-outline-rose:hover { background: var(--rose); color: #fff; }

.btn-ghost-light { border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.75); background: transparent; }
.btn-ghost-light:hover { border-color: #fff; color: #fff; }

.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-dk); transform: translateY(-2px); }

/* ── NAV ───────────────────────────────────────────── */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem var(--pad);
  transition: background 0.5s ease, border-color 0.5s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.sc {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--stone);
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
/* On non-hero pages, nav is always solid */
body.page-solid #nav {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--stone);
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 400;
  letter-spacing: 0.06em; color: #fff;
  transition: color 0.4s; flex-shrink: 0;
}
#nav.sc .nav-logo,
body.page-solid #nav .nav-logo { color: var(--t1); }

.nav-center {
  display: flex; align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color 0.3s;
}
#nav.sc .nav-center a,
body.page-solid #nav .nav-center a { color: var(--t2); }

.nav-center a:hover { color: #fff !important; }
#nav.sc .nav-center a:hover,
body.page-solid #nav .nav-center a:hover { color: var(--t1) !important; }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-cta {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--rose); border: 1px solid var(--rose); color: #fff;
  padding: 0.6rem 1.4rem; min-height: 40px;
  display: flex; align-items: center; transition: all 0.3s;
}
#nav.sc .nav-cta,
body.page-solid #nav .nav-cta {
  background: transparent;
  border-color: var(--soft-black);
  color: var(--soft-black);
}
.nav-cta:hover,
#nav.sc .nav-cta:hover,
body.page-solid #nav .nav-cta:hover {
  background: var(--rose) !important;
  border-color: var(--rose) !important;
  color: #fff !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 20px; height: 1px; background: #fff; transition: background 0.3s; }
#nav.sc .hamburger span,
body.page-solid #nav .hamburger span { background: var(--soft-black); }

#mob {
  display: none; position: fixed; inset: 0;
  background: var(--soft-black); z-index: 300;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
}
#mob.open { display: flex; }
.mob-close {
  position: absolute; top: 1.5rem; right: var(--pad);
  color: rgba(255,255,255,0.3); font-size: 1.5rem;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center; transition: color 0.3s;
}
.mob-close:hover { color: #fff; }
.mob-link {
  font-family: var(--serif); font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 400; color: rgba(255,255,255,0.8); transition: color 0.3s;
}
.mob-link:hover { color: var(--rose-lt); }
.mob-cta {
  margin-top: 0.5rem; background: transparent;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.65);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 2.5rem; min-height: 48px;
  display: flex; align-items: center; transition: all 0.3s;
}
.mob-cta:hover { border-color: var(--rose-lt); color: var(--rose-lt); }

/* ── PAGE HEADER (about + insights pages) ─────────── */
.page-header {
  padding: calc(5.5rem + 3vw) var(--pad) clamp(3rem, 6vw, 5rem);
  background: var(--bone);
  border-bottom: 1px solid var(--stone);
}
.page-header-inner { max-width: var(--max); margin: 0 auto; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 400;
  line-height: 1.04; color: var(--t1); margin-bottom: 0.5rem;
}
.page-header h1 em { font-style: italic; color: var(--rose-dk); }
.page-header p {
  font-size: clamp(0.97rem, 1.7vw, 1.1rem); color: var(--t2);
  line-height: 1.8; max-width: 560px; margin-top: 1.2rem;
}

/* ── HERO ──────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--soft-black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1611599537845-1c7aca0091c0?w=1920&q=80') center 40% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,   rgba(30,28,26,0.92) 0%, rgba(30,28,26,0.50) 35%, rgba(30,28,26,0.12) 100%),
    linear-gradient(to right, rgba(30,28,26,0.95) 0%, rgba(30,28,26,0.85) 28%, rgba(30,28,26,0.40) 55%, rgba(30,28,26,0.00) 80%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 8rem var(--pad) clamp(4rem, 8vw, 7rem);
}
.hero-eyebrow {
  font-size: var(--eyebrow-size); font-weight: 500;
  letter-spacing: var(--eyebrow-spacing); text-transform: uppercase;
  color: var(--rose-lt);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--rose-lt); flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7.5rem); font-weight: 400;
  line-height: 1.02; color: #fff;
  letter-spacing: -0.01em; max-width: 16ch;
  margin-bottom: 2.2rem;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 0.5s forwards;
}
.hero-h1 em { font-style: italic; display: block; color: var(--rose-lt); }
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.78); letter-spacing: 0.02em;
  margin-bottom: 1.2rem; max-width: 480px;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 0.65s forwards;
}
.hero-sub {
  font-size: clamp(0.9rem, 1.7vw, 1rem); font-weight: 400;
  color: var(--eucalyptus); max-width: 680px; line-height: 1.9; white-space: nowrap;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 0.8s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.9s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: var(--pad); z-index: 3;
  display: flex; align-items: center; gap: 0.8rem;
  color: rgba(255,255,255,0.18);
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s ease 1.8s forwards;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--rose-lt));
  animation: pulse 2.5s ease-in-out infinite;
}

/* Keyword ticker */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(158,95,102,0.2);
  padding: 0.85rem 0;
  opacity: 0; animation: fadeIn 1s ease 2s forwards;
}
.hero-ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: tickerScroll 90s linear infinite;
}
.hero-ticker-track:hover { animation-play-state: paused; }
.hero-ticker-item {
  display: flex; align-items: center; gap: 2rem; padding: 0 2rem;
  white-space: nowrap;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-ticker-item::after {
  content: '·'; color: var(--rose-lt); opacity: 0.7; font-size: 0.8rem;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MANIFESTO ─────────────────────────────────────── */
#manifesto { padding: var(--sec) var(--pad); background: var(--ivory); }
.manifesto-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2.2fr;
  gap: clamp(4rem, 8vw, 9rem); align-items: start;
}
.manifesto-left { position: sticky; top: 8rem; align-self: start; }
.manifesto-label {
  font-family: var(--sans); font-size: var(--eyebrow-size); font-weight: 500;
  letter-spacing: var(--eyebrow-spacing); text-transform: uppercase;
  color: var(--rose); display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.manifesto-label::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--rose); flex-shrink: 0;
}
.manifesto-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 11rem); font-weight: 400;
  line-height: 1; color: var(--stone); user-select: none;
  letter-spacing: -0.03em;
}
.manifesto-opener {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 400;
  line-height: 1.25; color: var(--t1);
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--stone);
}
.manifesto-opener em { font-style: italic; color: var(--rose-dk); }
.manifesto-body p {
  font-size: clamp(0.95rem, 1.7vw, 1.05rem); font-weight: 400;
  line-height: 2; color: var(--t2); margin-bottom: 1.4rem;
}
.manifesto-body p:last-child {
  margin-bottom: 0; font-style: italic;
  font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--sage);
}

/* ── THE DIFFERENCE ────────────────────────────────── */
#difference { padding: var(--sec) var(--pad); background: var(--bone); }
.diff-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 10rem); align-items: start;
}
.diff-h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 400;
  line-height: 1.04; color: var(--t1); margin-bottom: 1.5rem;
}
.diff-h2 em { font-style: italic; color: var(--rose-dk); }
.diff-intro {
  font-size: clamp(1rem, 1.8vw, 1.1rem); font-weight: 400; color: var(--t2);
  line-height: 1.9; margin-bottom: 2rem;
  border-left: 2px solid var(--rose); padding-left: 1.5rem;
}
.diff-p {
  font-size: clamp(0.9rem, 1.6vw, 0.97rem);
  font-weight: 400; color: var(--t2); line-height: 1.88; margin-bottom: 1rem;
}
.diff-right { padding-top: clamp(0rem, 4vw, 5rem); }
.diff-pillars { display: flex; flex-direction: column; }
.pillar {
  padding: 2rem 0; border-bottom: 1px solid var(--stone);
  display: grid; grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem; align-items: start;
}
.pillar:first-child { border-top: 1px solid var(--stone); }
.pillar-num {
  font-family: var(--serif); font-size: 0.8rem; font-weight: 400;
  color: var(--rose); padding-top: 0.2rem;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 400;
  color: var(--t1); margin-bottom: 0.5rem; line-height: 1.2;
}
.pillar p {
  font-size: clamp(0.85rem, 1.4vw, 0.9rem); font-weight: 400;
  color: var(--t2); line-height: 1.85;
}

/* ── PULL QUOTE ────────────────────────────────────── */
#pullquote {
  padding: var(--sec) var(--pad);
  background: var(--soft-black);
  text-align: center;
}
.pullquote-inner { position: relative; max-width: 860px; margin: 0 auto; }
.pullquote-mark {
  font-family: var(--serif); font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 400; line-height: 0.6;
  color: var(--rose); opacity: 0.18;
  display: block; margin-bottom: -1rem;
  pointer-events: none; user-select: none;
}
.pullquote-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.2rem); font-weight: 400;
  line-height: 1.2; color: #fff;
  letter-spacing: -0.01em; margin: 0 0 2.5rem;
}
.pullquote-text em { font-style: italic; color: var(--eucalyptus); display: block; }
.pullquote-attr {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-style: normal;
}

/* ── COMMON CONCERNS ───────────────────────────────── */
#concerns { padding: var(--sec) var(--pad); background: var(--bone); }
.concerns-head {
  max-width: var(--max); margin: 0 auto 4.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem); align-items: center;
}
.concerns-head h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 400;
  line-height: 1.04; color: var(--t1);
}
.concerns-head h2 em { font-style: italic; color: var(--rose-dk); }
.concerns-head p {
  font-size: clamp(0.9rem, 1.6vw, 0.97rem);
  font-weight: 400; color: var(--t2); line-height: 1.9;
}
.concerns-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto auto auto auto);
  gap: 1px; background: var(--stone);
}
.concern-card {
  background: var(--ivory); padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  transition: background 0.35s; position: relative;
  display: grid; grid-template-rows: subgrid; grid-row: span 4;
}
.concern-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--rose); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.concern-card:hover { background: var(--rose-pale); }
.concern-card:hover::before { transform: scaleY(1); }
.concern-icon { width: 32px; height: 32px; margin-bottom: 1.5rem; color: var(--sage); }
.concern-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 400;
  color: var(--t1); margin-bottom: 0.6rem; line-height: 1.2;
}
.concern-card p {
  font-size: clamp(0.87rem, 1.5vw, 0.95rem); font-weight: 400;
  color: var(--t2); line-height: 1.9;
}
.concern-card .concern-phrase {
  padding-top: 1.5rem; align-self: end;
  border-top: 1px solid var(--stone);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.1rem); font-weight: 400;
  color: var(--rose-dk); line-height: 1.5;
}

/* ── HOW WE WORK TOGETHER ──────────────────────────── */
#process { padding: var(--sec) var(--pad); background: var(--bone); }
.process-head { max-width: var(--max); margin: 0 auto 5rem; }
.process-head h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 400;
  line-height: 1.04; color: var(--t1); max-width: 660px;
}
.process-head h2 em { font-style: italic; color: var(--rose-dk); }
.process-head > p {
  margin-top: 1.2rem;
  font-size: clamp(0.9rem, 1.6vw, 0.97rem); font-weight: 400;
  color: var(--t2); line-height: 1.9; max-width: 480px;
}
.process-steps {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column;
}
.step {
  display: grid; grid-template-columns: 1fr 2.4fr;
  gap: clamp(3rem, 6vw, 7rem);
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-top: 1px solid var(--stone);
  align-items: start; position: relative;
}
.step:last-child { border-bottom: 1px solid var(--stone); }
.step-left { display: flex; flex-direction: column; gap: 1rem; padding-top: 0.5rem; }
.step-num {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 400;
  line-height: 1; color: var(--stone); letter-spacing: -0.03em;
  user-select: none;
}
.step-label {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--rose);
}
.step h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400;
  color: var(--t1); margin-bottom: 1rem; line-height: 1.1;
}
.step p {
  font-size: clamp(0.9rem, 1.6vw, 0.97rem); font-weight: 400;
  color: var(--t2); line-height: 1.9; max-width: 560px;
}
.step ul { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.step li {
  font-size: 0.78rem; font-weight: 400; color: var(--t2);
  display: flex; align-items: center; gap: 0.5rem;
}
.step li::before {
  content: ''; display: inline-block;
  width: 10px; height: 1px; background: var(--rose-lt); flex-shrink: 0;
}

/* ── SERVICES ──────────────────────────────────────── */
#services { padding: var(--sec) var(--pad); background: var(--ivory); }
.services-head { max-width: var(--max); margin: 0 auto 4.5rem; }
.services-head h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 400;
  line-height: 1.04; color: var(--t1);
}
.services-head h2 em { font-style: italic; color: var(--rose-dk); }
.services-head > p {
  margin-top: 1.1rem;
  font-size: clamp(0.9rem, 1.6vw, 0.97rem); font-weight: 400;
  color: var(--t2); line-height: 1.9; max-width: 520px;
}
.services-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.svc-card {
  background: var(--ivory);
  padding: clamp(2.2rem, 4vw, 3.2rem);
  display: grid; grid-template-rows: subgrid; grid-row: span 3;
  border-top: 2px solid var(--stone);
  border: 1px solid var(--stone);
  transition: border-color 0.4s, transform 0.3s, box-shadow 0.3s;
}
.svc-card:hover { border-color: var(--rose); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.svc-card.featured {
  background: var(--charcoal);
  border-color: var(--rose);
}
.svc-card.featured:hover { transform: translateY(-3px); border-color: var(--rose-lt); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.svc-top { display: flex; flex-direction: column; gap: 1.6rem; padding-bottom: 1.6rem; }
.svc-tag {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--t3); display: inline-flex; align-items: center; gap: 0.5rem;
}
.svc-card.featured .svc-tag { color: var(--eucalyptus); }
.svc-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.svc-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 400;
  line-height: 1.1; color: var(--t1);
}
.svc-card.featured h3 { color: #fff; }
.svc-sub {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); margin-top: 0.3rem;
}
.svc-card.featured .svc-sub { color: var(--rose-lt); }
.svc-desc {
  font-size: clamp(0.87rem, 1.5vw, 0.93rem); font-weight: 400;
  color: var(--t2); line-height: 1.9;
}
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.62); }
.svc-section { border-top: 1px solid var(--stone); padding-top: 1.5rem; }
.svc-card.featured .svc-section { border-top-color: rgba(168,184,176,0.15); }
.svc-section-label {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.9rem;
}
.svc-card.featured .svc-section-label { color: var(--rose-lt); }
.svc-section ul { display: flex; flex-direction: column; gap: 0.55rem; }
.svc-section li {
  font-size: 0.85rem; font-weight: 400; color: var(--t2);
  display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.5;
}
.svc-card.featured .svc-section li { color: rgba(255,255,255,0.6); }
.svc-section li::before {
  content: ''; display: inline-block;
  width: 12px; height: 1px; background: var(--rose-lt);
  margin-top: 0.65em; flex-shrink: 0;
}
.svc-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--stone);
  margin-top: 1.6rem;
}
.svc-card.featured .svc-footer { border-top-color: rgba(168,184,176,0.12); }
.svc-price {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 400; color: var(--t1);
}
.svc-card.featured .svc-price { color: #fff; }
.svc-price sup {
  font-family: var(--sans); font-size: 0.55em;
  vertical-align: super; color: var(--rose);
}
.svc-card.featured .svc-price sup { color: var(--rose-lt); }

/* Monthly programs band */
.monthly-band {
  background: var(--bone);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--stone);
}
.monthly-band-inner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.monthly-band h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 400;
  color: var(--t1); line-height: 1.25; margin: 0;
}
.monthly-band p {
  font-size: clamp(0.9rem, 1.5vw, 1rem); font-weight: 400;
  color: var(--t2); line-height: 1.75; margin: 0 0 1.8rem;
}
.monthly-band-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-dk); border-bottom: 1px solid var(--rose-lt);
  padding-bottom: 0.2rem; transition: color 0.25s;
}
.monthly-band-link:hover { color: var(--t1); border-bottom-color: var(--t1); }

/* ── MEET OLGA (dark, full section) ────────────────── */
#olga { padding: var(--sec) var(--pad); background: var(--soft-black); }
.olga-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 6fr 7fr;
  gap: clamp(3rem, 7vw, 9rem); align-items: center;
}
.olga-img-wrap { position: sticky; top: 6rem; align-self: start; }
.olga-photo {
  width: 100%; aspect-ratio: 4/5;
  background: #2A2724; position: relative; overflow: hidden;
}
.olga-corner-br {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--rose); border-right: 1px solid var(--rose);
}
.olga-h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem); font-weight: 400;
  line-height: 1.05; color: #fff; margin-bottom: 1rem;
}
.olga-h2 em { font-style: italic; color: var(--rose-lt); display: block; }
.olga-intro {
  font-size: clamp(0.97rem, 1.8vw, 1.05rem); font-weight: 400;
  color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 2rem;
  border-left: 1px solid var(--rose); padding-left: 1.5rem;
}
.olga-body p {
  font-size: clamp(0.87rem, 1.5vw, 0.93rem); font-weight: 400;
  color: rgba(255,255,255,0.48); line-height: 1.9; margin-bottom: 1rem;
}
.olga-body p strong { font-weight: 500; color: rgba(255,255,255,0.82); }
.olga-cred-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(158,95,102,0.12); margin: 2.5rem 0;
}
.olga-cred-item {
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(158,95,102,0.08);
  border-bottom: 1px solid rgba(158,95,102,0.08);
}
.olga-cred-item:nth-child(2n) { border-right: none; }
.olga-cred-item:nth-last-child(-n+2) { border-bottom: none; }
.olga-cred-k { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-lt); margin-bottom: 0.25rem; }
.olga-cred-v { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.olga-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* ── BIO PREVIEW (light, on home page) ─────────────── */
#bio-preview { padding: var(--sec) var(--pad); background: var(--ivory); }
.bio-preview-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 9rem); align-items: center;
}
.bio-preview-img { position: relative; }
.bio-preview-photo {
  width: 100%; aspect-ratio: 4/5;
  overflow: hidden; background: var(--bone);
}
.bio-preview-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.bio-preview-corner {
  position: absolute; bottom: -1.2rem; right: -1.2rem;
  width: 48px; height: 48px;
  border-bottom: 1px solid var(--rose); border-right: 1px solid var(--rose);
}
.bio-preview-text {}
.bio-preview-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 400;
  line-height: 1.08; color: var(--t1); margin-bottom: 1rem;
}
.bio-preview-text h2 em { font-style: italic; color: var(--rose-dk); }
.bio-preview-text .intro {
  font-size: clamp(0.97rem, 1.8vw, 1.05rem); font-weight: 400;
  color: var(--t2); line-height: 1.9; margin-bottom: 1.5rem;
  border-left: 2px solid var(--rose); padding-left: 1.5rem;
}
.bio-preview-text p {
  font-size: clamp(0.87rem, 1.5vw, 0.93rem); font-weight: 400;
  color: var(--t2); line-height: 1.9; margin-bottom: 1.2rem;
}
.bio-preview-link {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-dk); border-bottom: 1px solid var(--rose-lt);
  padding-bottom: 0.2rem; transition: color 0.25s;
}
.bio-preview-link:hover { color: var(--t1); border-bottom-color: var(--t1); }

/* ── TESTIMONIALS ──────────────────────────────────── */
#testimonials { padding: var(--sec) var(--pad); background: var(--bone); }
#testimonials .wrap { max-width: var(--max); margin: 0 auto; }
.testi-h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 400;
  line-height: 1.06; color: var(--t1);
  margin-bottom: clamp(3rem, 6vw, 5rem); max-width: 540px;
}
.testi-h2 em { font-style: italic; color: var(--rose-dk); }
.testi-featured {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--stone);
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 7rem); align-items: start;
  transition: opacity 0.4s ease;
}
.testi-featured.fading { opacity: 0; }
.testi-featured-left { position: sticky; top: 8rem; }
.testi-featured-stars {
  font-size: 0.8rem; letter-spacing: 0.15em;
  color: var(--sage); margin-bottom: 2rem; display: block;
}
.testi-featured-attr {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--rose); display: block; margin-bottom: 0.5rem;
}
.testi-featured-name {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400; color: var(--t1); display: block; line-height: 1.3;
}
.testi-featured-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 400;
  color: var(--t1); line-height: 1.55;
}
.testi-featured-quote::before { content: '\201C'; color: var(--sage); }
.testi-featured-quote::after  { content: '\201D'; color: var(--sage); }
.testi-stripe {
  overflow: hidden;
  border-top: 1px solid var(--stone);
  padding: 1.4rem 0;
  background: var(--ivory);
  margin: 0 calc(-1 * var(--pad));
}
.testi-stripe-track {
  display: flex; width: max-content;
  animation: tickerScroll 38s linear infinite;
}
.testi-stripe-track:hover { animation-play-state: paused; }
.testi-pill {
  display: flex; align-items: center; gap: 2rem; padding: 0 2rem;
  white-space: nowrap; cursor: pointer;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(0.88rem, 1.4vw, 1rem); font-weight: 400;
  color: var(--t3);
  transition: color 0.25s;
  background: none; border: none; outline: none;
}
.testi-pill::after {
  content: '·'; color: var(--rose); opacity: 0.5;
  font-style: normal; font-size: 1rem;
}
.testi-pill:hover, .testi-pill.active { color: var(--t1); }
.testi-pill.active { color: var(--rose-dk); }

/* ── ARTICLE / INSIGHTS ────────────────────────────── */
#insights { padding: var(--sec) var(--pad); background: var(--ivory); }
.insights-head {
  max-width: var(--max); margin: 0 auto 4rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.insights-head h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 400; color: var(--t1); line-height: 1.04;
}
.insights-head h2 em { font-style: italic; color: var(--rose-dk); }
.article-wrap {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: clamp(3rem, 6vw, 7rem); align-items: start;
}
.article-sidebar { position: sticky; top: 8rem; }
.article-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 1.8rem; }
.article-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-meta { font-size: 0.6rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--t3); margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 0.5rem; }
.article-title {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 400;
  color: var(--t1); line-height: 1.2; margin-bottom: 1.2rem;
}
.article-subtitle {
  font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400; color: var(--t2); line-height: 1.6; border-left: 2px solid var(--rose);
  padding-left: 1rem;
}
.article-body p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem); font-weight: 400;
  color: var(--t2); line-height: 1.9; margin-bottom: 1.5rem;
}
.article-body h3 {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 400;
  font-style: italic; color: var(--t1); line-height: 1.3;
  margin: 3rem 0 1.2rem; padding-top: 2.5rem; border-top: 1px solid var(--stone);
}
.article-body h4 {
  font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.45rem); font-weight: 400;
  font-style: italic; color: var(--t1); margin: 2.8rem 0 0.8rem; line-height: 1.3;
}
.article-pull {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 400;
  color: var(--t1); line-height: 1.55;
  border-left: 3px solid var(--rose); padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.hl {
  background-color: rgba(158,95,102,0.12);
  color: var(--t1); font-weight: 400;
  padding: 0.05em 0.25em; border-radius: 2px;
}
.article-lede {
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 400;
  color: var(--t1); line-height: 1.6; margin-bottom: 2rem;
}
.article-body-title {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 400;
  color: var(--t1); line-height: 1.2; margin-bottom: 0.8rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--stone);
}
.article-collapse { overflow: hidden; max-height: 0; transition: max-height 0.7s ease; }
.article-collapse.open { max-height: 9999px; }
.article-expand-wrap { position: relative; margin-top: -3rem; }
.article-expand-wrap::before {
  content: ''; display: block; height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--ivory));
  pointer-events: none;
}
.article-expand-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-dk); background: none; border: none;
  border-bottom: 1px solid var(--rose-lt); padding-bottom: 0.2rem;
  cursor: pointer; margin-top: 0.5rem; transition: color 0.25s;
}
.article-expand-btn:hover { color: var(--t1); border-bottom-color: var(--t1); }
.article-step {
  display: flex; align-items: baseline; gap: 1rem;
  margin: 2.5rem 0 0.6rem; padding-top: 2rem;
  border-top: 1px solid var(--stone);
}
.article-step-num {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; color: var(--rose); flex-shrink: 0; padding-top: 0.3em;
}
.article-step h4 {
  font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400; font-style: italic; color: var(--t1); line-height: 1.3; margin: 0;
}

/* ── CTA ───────────────────────────────────────────── */
#cta { padding: var(--sec) var(--pad); background: var(--rose-pale); }
.cta-inner {
  max-width: var(--max); margin: 0 auto;
  border: 1px solid rgba(158,95,102,0.18);
  padding: clamp(3rem, 6vw, 6rem);
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
}
.cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 400;
  line-height: 1.1; color: var(--t1); margin-bottom: 1rem;
}
.cta-text h2 em { font-style: italic; color: var(--rose-dk); }
.cta-text p {
  font-size: clamp(0.9rem, 1.6vw, 0.97rem); font-weight: 400;
  color: var(--t2); line-height: 1.88; max-width: 480px;
}
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; flex-shrink: 0; }
.cta-note {
  font-size: 0.62rem; font-weight: 400; color: var(--t3);
  letter-spacing: 0.06em; text-align: right; line-height: 1.6;
}

/* ── CONTACT ───────────────────────────────────────── */
#contact { padding: var(--sec) var(--pad); background: var(--ivory); }
.contact-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 10rem);
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 400;
  line-height: 1.15; color: var(--t1); margin-bottom: 1.2rem;
}
.contact-info h2 em { font-style: italic; color: var(--rose-dk); }
.contact-info > p {
  font-size: clamp(0.9rem, 1.6vw, 0.97rem); font-weight: 400;
  color: var(--t2); line-height: 1.9; margin-bottom: 3rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.cd { display: flex; gap: 1rem; align-items: flex-start; }
.cd-mark { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); margin-top: 0.45rem; flex-shrink: 0; }
.cd-k { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.2rem; }
.cd-v { font-size: clamp(0.87rem, 1.5vw, 0.93rem); font-weight: 400; color: var(--t1); }
.faq { margin-top: 3rem; }
.faq-title { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--t3); margin-bottom: 1.5rem; }
.faq-item { border-top: 1px solid var(--stone); padding: 1.2rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--stone); }
.faq-q {
  font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 1.1rem); font-weight: 400;
  color: var(--t1); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 1rem; color: var(--rose); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding-top: 0.8rem; font-size: clamp(0.83rem, 1.4vw, 0.88rem); font-weight: 400; color: var(--t2); line-height: 1.85; }
.book-form { display: flex; flex-direction: column; gap: 1.2rem; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--t3); }
.fg input, .fg select, .fg textarea {
  border: 1px solid var(--stone); background: var(--ivory);
  padding: 0.95rem 1.1rem;
  font-size: clamp(0.87rem, 1.4vw, 0.92rem); font-weight: 400; color: var(--t1);
  outline: none; border-radius: 0; -webkit-appearance: none;
  transition: border-color 0.3s; min-height: 48px;
}
.fg textarea { min-height: 110px; resize: vertical; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--rose); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--mushroom); }
.form-note { font-size: 0.73rem; font-weight: 400; color: var(--t3); line-height: 1.65; }
.btn-form {
  background: var(--soft-black); color: #fff;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 1.1rem; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px; border: none; cursor: pointer; transition: background 0.3s;
}
.btn-form:hover { background: var(--rose-dk); }
#form-ok {
  display: none; background: var(--rose-pale); padding: 2rem;
  text-align: center; border: 1px solid rgba(158,95,102,0.2);
}
#form-ok strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--t1); margin-bottom: 0.4rem; }
#form-ok p { font-size: 0.88rem; font-weight: 400; color: var(--t2); line-height: 1.7; }

/* ── FOOTER ────────────────────────────────────────── */
footer { background: var(--soft-black); padding: 5rem var(--pad) 2.5rem; }
.footer-top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.f-logo { font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 400; color: #fff; display: block; letter-spacing: 0.06em; margin-bottom: 0.8rem; }
.f-tagline { font-family: var(--serif); font-size: 0.88rem; font-weight: 400; font-style: italic; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 240px; margin-bottom: 2rem; }
.f-social { display: flex; gap: 0.7rem; }
.fsoc { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.28); font-size: 0.65rem; transition: border-color 0.3s, color 0.3s; }
.fsoc:hover { border-color: var(--rose-lt); color: var(--rose-lt); }
.f-col h4 { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--rose-lt); margin-bottom: 1.5rem; }
.f-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.f-col a { font-size: 0.83rem; font-weight: 400; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.f-col a:hover { color: rgba(255,255,255,0.82); }
.footer-bot { max-width: var(--max); margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bot p, .footer-bot a { font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.18); }
.footer-bot a:hover { color: rgba(255,255,255,0.5); }

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.9; } }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1099px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }
  .cta-note { text-align: left; }
}
@media (max-width: 900px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-left { position: static; }
  .manifesto-num { font-size: 5rem; }
  .diff-grid { grid-template-columns: 1fr; gap: 4rem; }
  .concerns-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-num { font-size: 4rem; }
  .olga-grid { grid-template-columns: 1fr; }
  .olga-img-wrap { max-width: 380px; }
  .bio-preview-inner { grid-template-columns: 1fr; }
  .bio-preview-img { max-width: 380px; }
  .testi-featured { grid-template-columns: 1fr; gap: 2rem; }
  .testi-featured-left { position: static; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .monthly-band-inner { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .nav-center, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #nav { padding: 1rem var(--pad); }
  body.page-solid #nav { padding: 0.85rem var(--pad); }
  #nav.sc { padding: 0.85rem var(--pad); }
  .hero-h1 { font-size: clamp(2.8rem, 11vw, 4rem); }
  .concerns-grid { grid-template-columns: 1fr; }
  .f2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .hero-h1 { font-size: clamp(2.4rem, 9.5vw, 3rem); }
  .hero-sub { white-space: normal; }
}
