/* ==========================================================================
   Anvil Case Partners — Main Stylesheet
   Editorial Luxe Design System — Alternating Dark/Light, Hard Edges
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-plum: #7B4B57;
  --color-plum-light: #9B6B77;
  --color-espresso: #1F1B1D;
  --color-noir: #141112;
  --dark-bg: #141112;
  --dark-gradient:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123, 75, 87, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(74, 44, 52, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(184, 165, 122, 0.08) 0%, transparent 50%);
  --color-ivory: #F3F0EC;
  --color-ivory-warm: #FAF8F5;
  --color-cream: #f5f0eb;
  --color-deep-plum: #4A2C34;
  --color-stone: #D8D2CC;
  --color-mauve: #A897A2;
  --color-gold: #B8A57A;
  --color-gold-light: #C7B68E;
  --color-forest: #2F4A3C;
  --color-forest-light: #3D6150;
  --color-slate: #5E6A7D;
  --color-taupe: #8B7E76;
  --color-link: #9B6B77;
  --color-link-visited: #8A6E77;

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1200px;
  --container-narrow: 680px;
  --section-pad-y: 8rem;
  --section-pad-y-mobile: 4.5rem;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s var(--ease-out-expo);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-espresso);
  background: var(--color-noir);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: none; transition: color var(--transition-smooth); }
a:hover { color: var(--color-plum); }
a:visited { color: var(--color-link-visited); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 300; line-height: 1.15; color: var(--color-espresso); }
h1 { font-size: 3rem; } h2 { font-size: 2.25rem; font-weight: 500; } h3 { font-size: 1.5rem; } h4 { font-size: 1.25rem; }
p + p { margin-top: 1rem; }

main { position: relative; z-index: 1; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-pad-y-mobile) 0; }

.text-accent {
  color: var(--color-plum);
  font-weight: 500;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--color-plum);
  color: #fff;
  border-color: var(--color-plum);
}
.btn--primary:hover {
  background: var(--color-plum-light);
  border-color: var(--color-plum-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 75, 87, 0.3);
}
.btn--primary:visited { color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--color-plum);
  border-color: var(--color-plum);
}
.btn--outline:hover {
  background: var(--color-plum);
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline:visited { color: var(--color-plum); }
.btn--outline:hover:visited { color: #fff; }

.btn--light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.btn--light:hover {
  background: #fff;
  color: var(--color-espresso);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}
.btn--light:visited { color: #fff; }
.btn--light:hover:visited { color: var(--color-espresso); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-noir);
  border-color: var(--color-gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-noir);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 165, 122, 0.35);
}
.btn--gold:visited { color: var(--color-noir); }

/* ==========================================================================
   SITE HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(20, 17, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Header Logo — ANVIL + CASE PARTNERS */
.site-header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  line-height: 1;
  text-decoration: none;
  transition: opacity var(--transition-smooth);
}
.site-header__logo:hover { opacity: 0.8; }
.site-header__logo-anvil {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #fff;
}
.site-header__logo:visited .site-header__logo-anvil { color: #fff; }
.site-header__logo-sub {
  font-family: var(--font-heading);
  font-size: 0.45rem;
  font-weight: 400;
  color: #aaaaaa;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header--light {
  background: rgba(20, 17, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.site-header--light .site-header__logo-anvil { color: #fff; }
.site-header--light .site-nav__link,
.site-header--light .site-nav__link:visited { color: rgba(255, 255, 255, 0.7); }
.site-header--light .site-nav__link:hover,
.site-header--light .site-nav__link--active { color: #fff; }
.site-header--light .nav-toggle__bar { background: #fff; }

.site-nav { display: flex; align-items: center; gap: 2.5rem; }
.site-nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-smooth);
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}
.site-nav__link:hover { color: #fff; }
.site-nav__link:hover::after,
.site-nav__link--active::after { width: 100%; }
.site-nav__link--active { color: #fff; }
.site-nav__link:visited { color: rgba(255, 255, 255, 0.7); }
.site-nav__link--active:visited { color: #fff; }

.site-nav__cta { font-size: 0.8rem; padding: 0.6rem 1.6rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--dark-gradient), var(--dark-bg);
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer a { color: rgba(255, 255, 255, 0.5); transition: color var(--transition-smooth); }
.site-footer a:hover { color: #fff; }
.site-footer a:visited { color: rgba(255, 255, 255, 0.5); }

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.site-footer__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  line-height: 1;
}
.site-footer__wordmark-anvil {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #fff;
  display: block;
}
.site-footer__wordmark-sub {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 400;
  color: #aaaaaa;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}
.site-footer__nav a { font-size: 0.875rem; letter-spacing: 0.04em; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2.5rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   HOMEPAGE — HERO (DARK)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark-gradient), var(--dark-bg);
  overflow: hidden;
  padding: 6rem 0 5rem;
}
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123, 75, 87, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(74, 44, 52, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(184, 165, 122, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(94, 106, 125, 0.2) 0%, transparent 50%);
  animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% {
    background:
      radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123, 75, 87, 0.4) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 30%, rgba(74, 44, 52, 0.5) 0%, transparent 55%),
      radial-gradient(ellipse 70% 50% at 50% 80%, rgba(184, 165, 122, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse 50% 50% at 70% 60%, rgba(94, 106, 125, 0.2) 0%, transparent 50%);
  }
  50% {
    background:
      radial-gradient(ellipse 70% 70% at 60% 40%, rgba(123, 75, 87, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse 80% 60% at 25% 70%, rgba(74, 44, 52, 0.45) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 80% 20%, rgba(184, 165, 122, 0.2) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 30% 30%, rgba(94, 106, 125, 0.15) 0%, transparent 50%);
  }
  100% {
    background:
      radial-gradient(ellipse 90% 50% at 50% 50%, rgba(123, 75, 87, 0.45) 0%, transparent 60%),
      radial-gradient(ellipse 50% 70% at 30% 20%, rgba(74, 44, 52, 0.4) 0%, transparent 55%),
      radial-gradient(ellipse 60% 60% at 70% 80%, rgba(184, 165, 122, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 70% 40% at 50% 40%, rgba(94, 106, 125, 0.18) 0%, transparent 50%);
  }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
  display: block;
}
.hero__headline {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ==========================================================================
   STATS BAR (DARK — part of hero)
   ========================================================================== */
.stats-bar {
  position: relative;
  overflow: hidden;
  background: var(--dark-gradient), var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0;
}
.stats-bar__headline {
  text-align: center;
  color: #fff;
  margin-bottom: 0.5rem;
}
.stats-bar__sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  height: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.stats-bar__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ==========================================================================
   PROBLEM STATEMENT (LIGHT)
   ========================================================================== */
.problem {
  background: var(--color-cream);
}
.problem__headline {
  font-size: 1.85rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0.75rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-espresso);
}
.problem__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--color-taupe);
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.problem-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(31, 27, 29, 0.06);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 12px rgba(31, 27, 29, 0.03);
  text-align: center;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(31, 27, 29, 0.07);
}
.problem-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--color-espresso);
  margin-bottom: 0.75rem;
}
.problem-card__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-taupe);
}
.problem__bridge {
  margin-top: 3rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: normal;
  color: var(--color-taupe);
  text-align: center;
  line-height: 1.6;
}

/* ==========================================================================
   ANVIL METHOD (DARK)
   ========================================================================== */
.method {
  background: var(--color-cream);
  color: var(--color-espresso);
}
.method__headline {
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--color-espresso);
}
.method__sub {
  text-align: center;
  margin-bottom: 3.5rem;
  margin-left: auto;
  margin-right: auto;
}
.method__sub em {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: normal;
  color: var(--color-taupe);
  white-space: normal;
}

/* Method Accordion — Glassmorphic + Hover-based */
.method-accordion {
  max-width: 720px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.method-accordion__item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: none;
  position: relative;
  transition: background 0.4s var(--ease-out-expo);
}
.method-accordion__item:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.method-accordion__item:first-child { border-radius: 6px 6px 0 0; }
.method-accordion__item:last-child { border-radius: 0 0 6px 6px; }
.method-accordion__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-plum), var(--color-gold));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  border-radius: 2px;
}

/* Hover states — all collapsed by default */
.method-accordion__item:hover::before { opacity: 1; }
.method-accordion__item:hover { background: rgba(0, 0, 0, 0.03); }

.method-accordion__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-espresso);
  text-align: left;
  transition: opacity 0.3s;
}
.method-accordion__header:hover { opacity: 0.85; }
.method-accordion__letter {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--color-plum);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.method-accordion__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-espresso);
  flex: 1;
}

/* Expand/collapse with grid rows */
.method-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out-expo);
}
.method-accordion__item:hover .method-accordion__body { grid-template-rows: 1fr; }

.method-accordion__body-inner {
  overflow: hidden;
  padding: 0 1.5rem 0 4.25rem;
}
.method-accordion__item:hover .method-accordion__body-inner { padding-bottom: 1.5rem; }

.method-accordion__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-taupe);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.method-accordion__bullets {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-taupe);
}
.method-accordion__bullets li {
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}
.method-accordion__bullets li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--color-plum);
  line-height: 1;
}
.method__cta { text-align: center; }

.method__anvil-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--color-espresso);
  margin-top: 4rem;
  margin-bottom: 0.75rem;
}

/* Journey steps (Define > Differentiate > Dominate) */
.method__journey {
  margin-top: 0;
  margin-bottom: 4rem;
  text-align: center;
}
.method__journey-headline {
  display: none;
}
.method__journey-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.method__journey-step {
  flex: 1;
  max-width: 280px;
}
.method__journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-plum);
  color: var(--color-plum);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.method__journey-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-espresso);
  margin-bottom: 0.4rem;
}
.method__journey-desc {
  font-size: 1.05rem;
  color: var(--color-taupe);
  line-height: 1.5;
}
.method__journey-arrow {
  color: var(--color-plum);
  opacity: 0.4;
}
.method__journey-arrow svg {
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .method__journey-steps {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
  .method__journey-step {
    padding: 0 1.5rem;
  }
  .method__journey-arrow {
    flex-shrink: 0;
    align-self: center;
    padding-top: 0;
  }
  .method__journey-arrow svg {
    transform: rotate(0deg);
  }
}

/* ==========================================================================
   TESTIMONIALS + LOGOS (LIGHT)
   ========================================================================== */
.testimonials {
  position: relative;
  overflow: hidden;
  background: var(--dark-gradient), var(--dark-bg);
  color: #fff;
}
.testimonials__headline {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
}
.testimonials__sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
}

/* Logo carousel — black logos */
.testimonials__logos {
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.testimonials__logos-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 35s linear infinite;
}
.testimonials__logos-track:hover { animation-play-state: paused; }
.testimonials__logos-item {
  flex-shrink: 0;
  width: 110px;
  height: 32px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__logos-item--wide {
  width: 160px;
}
.testimonials__logos-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(1.5);
  mix-blend-mode: screen;
  opacity: 0.7;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials__note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin-bottom: 3rem;
}

/* Divider */
.testimonials__divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Testimonial carousel — scrolling cards */
.testimonial-carousel {
  overflow: hidden;
  margin-bottom: 0;
  padding: 1rem 0 1rem;
}
.testimonial-carousel__track {
  display: flex;
  width: max-content;
  animation: scroll-testimonials 60s linear infinite;
}
.testimonial-carousel__track:hover {
  animation-play-state: paused;
}

/* Slide wrapper */
.testimonial-slide {
  flex-shrink: 0;
  width: 340px;
  padding: 0 0.75rem;
}

/* Card container */
.testimonial-slide__inner {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 27, 29, 0.06);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 12px rgba(31, 27, 29, 0.03);
}
.testimonial-slide:hover .testimonial-slide__inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31, 27, 29, 0.10);
}

/* Swap area — holds front and back, only this part transitions */
.testimonial-slide__swap {
  position: relative;
  flex: 1;
}

/* Front — image + short quote */
.testimonial-slide__front {
  display: flex;
  flex-direction: column;
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.testimonial-slide:hover .testimonial-slide__front {
  opacity: 0;
}

/* Image area — square */
.testimonial-slide__image-area {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
}
.testimonial-slide__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.25) hue-rotate(290deg) saturate(0.6) brightness(0.95);
}

/* Avatar fallback — large initials */
.testimonial-slide__avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

/* Avatar color rotation */
.testimonial-slide:nth-child(6n+1) .testimonial-slide__avatar { background: var(--color-plum); }
.testimonial-slide:nth-child(6n+2) .testimonial-slide__avatar { background: var(--color-forest); }
.testimonial-slide:nth-child(6n+3) .testimonial-slide__avatar { background: var(--color-slate); }
.testimonial-slide:nth-child(6n+4) .testimonial-slide__avatar { background: var(--color-plum); }
.testimonial-slide:nth-child(6n+5) .testimonial-slide__avatar { background: var(--color-forest); }
.testimonial-slide:nth-child(6n+6) .testimonial-slide__avatar { background: var(--color-slate); }

/* Short quote on front */
.testimonial-slide__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-espresso);
  padding: 1.25rem 1.5rem 0.75rem;
}

/* Back — full testimonial, overlays the swap area */
.testimonial-slide__back {
  position: absolute;
  inset: 0;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.05s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.05s;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}
.testimonial-slide:hover .testimonial-slide__back {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-slide__testimonial {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-espresso);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 14;
  -webkit-box-orient: vertical;
}

/* Meta — always visible at bottom */
.testimonial-slide__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(31, 27, 29, 0.06);
}
.testimonial-slide__name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-slide__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-espresso);
  letter-spacing: 0.02em;
}
.testimonial-slide__accomplishment {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-plum);
  letter-spacing: 0.01em;
}

/* LinkedIn icon */
.testimonial-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: rgba(31, 27, 29, 0.06);
  color: var(--color-taupe) !important;
  transition: all var(--transition-smooth);
}
.testimonial-card__linkedin:hover {
  background: var(--color-plum);
  color: #fff !important;
}

@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   RESONANCE (DARK)
   ========================================================================== */
.resonance {
  background: var(--dark-gradient), var(--dark-bg);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}
.resonance::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123, 75, 87, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(74, 44, 52, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(184, 165, 122, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(94, 106, 125, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.resonance .container { position: relative; z-index: 1; }
.resonance__title {
  font-size: 1.85rem;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}
.resonance__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 0;
}
.resonance__card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 2rem 1.75rem;
}
.resonance__list li {
  padding: 0.85rem 0 0.85rem 1.75rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}
.resonance__list li:last-child { border-bottom: none; }
.resonance__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.2rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.6;
}
.resonance__list-spaced {
  margin-bottom: 0.85rem;
}
.resonance__cta { text-align: center; }

/* ==========================================================================
   COACH PROFILE (DARK — merged with resonance)
   ========================================================================== */
.coach {
  background: var(--dark-gradient), var(--dark-bg);
  padding-top: 2rem;
  position: relative;
  overflow: hidden;
}
.coach::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123, 75, 87, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(74, 44, 52, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(184, 165, 122, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(94, 106, 125, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.coach .container { position: relative; z-index: 1; }
.coach__headline {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
  color: #fff;
}
.coach__card {
  background: var(--color-cream);
  border: 1px solid rgba(31, 27, 29, 0.06);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.coach__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.coach__image-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}
.coach__image {
  border-radius: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.coach__image-accent {
  position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  border: 1.5px solid var(--color-gold);
  border-radius: 4px;
  opacity: 0.4;
  z-index: 0;
}
.coach__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-espresso);
  line-height: 1.3;
}
.coach__role {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-plum);
  margin-bottom: 1.5rem;
}
.coach__bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-espresso);
  margin-bottom: 1rem;
}
.coach__note {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-taupe);
  line-height: 1.6;
}
.coach__cta { text-align: center; margin-top: 3rem; }

/* ==========================================================================
   ENGAGEMENT STRUCTURE (LIGHT)
   ========================================================================== */
.engagement {
  background: var(--color-cream);
}
.engagement__headline {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  color: var(--color-espresso);
}
.engagement__flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.engagement-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(31, 27, 29, 0.06);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  flex: 1;
  box-shadow: 0 2px 12px rgba(31, 27, 29, 0.03);
}
.engagement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--color-plum), var(--color-gold));
}
.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 27, 29, 0.08);
}
.engagement-card__stage {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-plum);
  margin-bottom: 0.5rem;
}
.engagement-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-espresso);
}
.engagement-card__desc {
  font-family: var(--font-heading);
  color: var(--color-taupe);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.engagement-card__bullets li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
  color: var(--color-espresso);
}
.engagement-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-plum);
  opacity: 0.5;
}

/* Arrow between cards */
.engagement__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  color: var(--color-stone);
}
.engagement__arrow svg { transform: rotate(90deg); }

.engagement__options {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-taupe);
  font-size: 0.95rem;
}
.engagement__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==========================================================================
   FINAL CTA (DARK — do not change)
   ========================================================================== */
.final-cta {
  background: var(--color-cream);
  color: var(--color-espresso);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  display: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta__headline {
  color: var(--color-espresso);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.final-cta__sub {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-mauve);
  margin-bottom: 1rem;
}
.final-cta__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  color: var(--color-taupe);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
  position: relative;
  text-align: center;
  background: var(--dark-gradient), var(--dark-bg);
  padding-top: 8rem;
  overflow: hidden;
}
/* Shared warm mesh overlay for all dark sections */
.about-hero::before,
.booking-hero::before,
.resources-hero::before,
.blog-hero::before,
.stats-bar::before,
.testimonials::before,
.resonance::before,
.coach::before,
.about-coach-section::before,
.section-articles::before,
.resources-cta:not(.resources-cta--light)::before,
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123, 75, 87, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(74, 44, 52, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(184, 165, 122, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(94, 106, 125, 0.2) 0%, transparent 50%);
}
.about-hero .container,
.booking-hero .container,
.resources-hero .container,
.blog-hero .container,
.stats-bar .container,
.testimonials .container,
.resonance .container,
.coach .container,
.about-coach-section .container,
.section-articles .container,
.resources-cta:not(.resources-cta--light) .container,
.site-footer .container {
  position: relative;
  z-index: 1;
}
.about-hero__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
}
.about-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.about-why { background: var(--color-cream); }
.about-why__headline { font-size: 1.75rem; color: var(--color-espresso); margin-bottom: 1.5rem; }
.about-why__core {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--color-plum);
}
.about-why__story {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: var(--color-espresso);
  line-height: 1.75;
}
.about-why__solution {
  margin-top: 1.75rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--color-plum);
  line-height: 1.5;
}

.about-coach-section { position: relative; overflow: hidden; background: var(--dark-gradient), var(--dark-bg); color: #fff; }
.about-coach__headline { margin-bottom: 0.5rem; font-size: 1.75rem; color: #fff; }
.about-coach__name {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 2.3rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.about-coach__details dt {
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-coach__details dd { color: rgba(255, 255, 255, 0.5); font-size: 0.95rem; }
.about-coach__details dd ul li { padding-left: 1rem; position: relative; font-size: 0.95rem; }
.about-coach__details dd ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-plum);
  opacity: 0.5;
}

.about-recruit {
  background: var(--color-cream);
}
.about-recruit__text { max-width: 480px; margin: 0 auto 1rem; font-size: 0.95rem; color: var(--color-espresso); }
.about-recruit__email {
  font-weight: 700;
  color: var(--color-plum) !important;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.about-cta {
  text-align: center;
  background: var(--color-cream);
  color: var(--color-espresso);
  position: relative;
  overflow: hidden;
}
.about-cta::before { display: none; }
.about-cta .container { position: relative; z-index: 1; }
.about-cta__headline { color: var(--color-espresso); margin-bottom: 1.5rem; font-size: 2.25rem; }

/* ==========================================================================
   BOOKING PAGE
   ========================================================================== */
.booking-hero {
  position: relative;
  text-align: center;
  background: var(--dark-gradient), var(--dark-bg);
  padding-top: 8rem;
  overflow: hidden;
}
.booking-hero__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.booking-hero__intro {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.booking-hero__values li {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-plum-light);
  padding: 0.35rem 1rem;
  margin: 0.25rem;
  background: rgba(123, 75, 87, 0.1);
  border: 1px solid rgba(123, 75, 87, 0.2);
  border-radius: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.booking-form { background: var(--color-cream); }
.booking-form__heading { text-align: center; margin-bottom: 0.5rem; color: var(--color-espresso); }
.booking-form__sub { text-align: center; color: var(--color-taupe); margin-bottom: 2.5rem; font-size: 0.95rem; }
.booking-form__iframe-wrap { max-width: 720px; margin: 0 auto; min-height: 600px; }
.booking-form__iframe-wrap iframe { width: 100%; border: none; min-height: 600px; }

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms & Conditions)
   ========================================================================== */
.legal-page { background: var(--color-cream); }
.legal-container { max-width: 780px; }
.legal-page__title {
  font-size: 2.5rem;
  color: var(--color-espresso);
  margin-bottom: 0.5rem;
}
.legal-page__updated {
  font-size: 0.85rem;
  color: var(--color-taupe);
  margin-bottom: 3rem;
}
.legal-page h2 {
  font-size: 1.3rem;
  color: var(--color-espresso);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-page h3 {
  font-size: 1.05rem;
  color: var(--color-espresso);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-espresso);
}
.legal-page p { margin-bottom: 1rem; }
.legal-page ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.legal-page li { margin-bottom: 0.35rem; }
.legal-page a { color: var(--color-plum); text-decoration: underline; }
.legal-page a:hover { color: var(--color-deep-plum); }

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* Tablet (768px) */
@media (min-width: 768px) {
  .section { padding: var(--section-pad-y) 0; }
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }

  .hero { padding: 8rem 0 6rem; }
  .hero__headline { font-size: 4.25rem; }
  .about-hero__title { font-size: 4.25rem; }
  .booking-hero__title { font-size: 4.25rem; }
  .hero__ctas { flex-direction: row; justify-content: center; }

  .stats-bar__grid { grid-template-columns: repeat(5, 1fr); }
  .stats-bar__number { font-size: 3.5rem; height: 3.5rem; }

  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .problem__headline { font-size: 2.25rem; }

  .method-accordion { max-width: 760px; }

  .testimonial-slide { width: 380px; }
  .testimonials__logos-item { width: 120px; height: 36px; }
  .testimonials__logos-item--wide { width: 170px; }

  .resonance__columns { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .resonance__title { font-size: 2.25rem; }

  .coach__inner { grid-template-columns: 300px 1fr; gap: 3.5rem; }
  .coach__headline { font-size: 2.5rem; }

  .engagement__flow {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .engagement-card { flex: 1; }
  .engagement__arrow {
    flex-shrink: 0;
    width: 48px;
    padding: 0;
    align-self: center;
  }
  .engagement__arrow svg { transform: rotate(0deg); }

  .final-cta__headline { font-size: 3rem; }
  .final-cta__sub { font-size: 1.65rem; }

  .site-footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .site-footer__wordmark { align-items: center; }
  .site-footer__nav { gap: 2.5rem; }
}

/* Desktop (1024px) */
@media (min-width: 1024px) {
  :root { --section-pad-y: 9rem; }

  .hero__headline { font-size: 4.25rem; max-width: 800px; }
  .hero__tagline { font-size: 1.2rem; }
  .about-hero__title { font-size: 4.25rem; }
  .about-hero__sub { font-size: 1.2rem; }
  .booking-hero__title { font-size: 4.25rem; }
  .booking-hero__intro { font-size: 1.2rem; }

  .stats-bar__number { font-size: 4rem; height: 4rem; }

  .method-accordion__header { padding: 1.5rem 2rem; }
  .method-accordion__body-inner { padding-left: 5rem; }

  .testimonials__logos-item { width: 130px; height: 38px; }
  .testimonials__logos-item--wide { width: 180px; }

  .resonance__title { font-size: 2.5rem; }
}

/* Large Desktop (1280px) */
@media (min-width: 1280px) {
  .hero__headline { font-size: 4.5rem; }
  .about-hero__title { font-size: 4.5rem; }
  .booking-hero__title { font-size: 4.5rem; }
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-noir);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.75rem;
    transition: right 0.4s var(--ease-out-expo);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
  }
  .site-nav.is-open { right: 0; }
  .site-nav__link { font-size: 1rem; color: rgba(255, 255, 255, 0.7); }
  .site-nav__link:visited { color: rgba(255, 255, 255, 0.7); }
  .site-nav__link--active,
  .site-nav__link--active:visited { color: #fff; }

  .nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__scroll { display: none; }

  .engagement__flow { gap: 0; }
  .engagement__arrow { padding: 0.5rem 0; }

  .testimonial-slide { width: 280px; }
  .testimonial-slide__quote { font-size: 0.95rem; }
  .testimonial-slide__testimonial { font-size: 1rem; -webkit-line-clamp: 10; }

  /* Mobile: accordion tap fallback */
  .method-accordion__item:hover .method-accordion__body { grid-template-rows: 0fr; }
  .method-accordion__item.is-active .method-accordion__body { grid-template-rows: 1fr; }
  .method-accordion__item.is-active .method-accordion__body-inner { padding-bottom: 1.5rem; }
}

/* ==========================================================================
   Resources Page
   ========================================================================== */

/* ---------- Resources Hero ---------- */
.resources-hero,
.blog-hero {
  position: relative;
  text-align: center;
  background: var(--dark-gradient), var(--dark-bg);
  padding-top: 8rem;
  overflow: hidden;
}
.resources-hero__title,
.blog-hero__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
}
.resources-hero__sub,
.blog-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

/* ---------- Section Labels ---------- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
}
.section-label--light {
  color: var(--color-gold-light);
}

/* ---------- Templates Section (Light) ---------- */
.section-templates {
  background: var(--color-cream);
}
.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.template-card {
  background: #fff;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.template-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.template-card__icon--cv { background: linear-gradient(135deg, var(--color-plum), var(--color-gold)); }
.template-card__icon--letter { background: linear-gradient(135deg, var(--color-forest), var(--color-gold)); }
.template-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-espresso);
  margin-bottom: 0.5rem;
}
.template-card__desc {
  font-size: 0.9rem;
  color: var(--color-taupe);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.template-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-plum);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.template-card__link:visited { color: var(--color-plum); }
.template-card__link:hover { color: var(--color-gold); }

/* ---------- Articles Section (Dark) ---------- */
.section-articles {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  background-image: var(--dark-gradient);
}
.section-articles__empty {
  color: var(--color-taupe);
  font-style: italic;
}
.section-articles__more {
  text-align: center;
  margin-top: 2rem;
}
.articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  text-decoration: none;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.article-card:visited { color: inherit; }
.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-espresso);
  margin-bottom: 0.35rem;
}
.article-card__meta {
  font-size: 0.8rem;
  color: var(--color-taupe);
  margin-bottom: 0.5rem;
}
.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-taupe);
  line-height: 1.5;
  flex-grow: 1;
}
.article-card__tags,
.blog-post__tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.article-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  line-height: 1.4;
}
.article-tag--pillar {
  background: var(--color-gold);
  color: var(--color-noir);
}
.article-tag--type {
  background: var(--color-plum);
  color: #fff;
}
.article-card__arrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-plum);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-top: 1rem;
  align-self: flex-start;
}

/* ---------- LinkedIn Section (Light) ---------- */
.section-linkedin {
  background: var(--color-cream);
}
.linkedin-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.linkedin-card {
  background: #fff;
  border-left: 3px solid var(--color-gold);
  border-radius: 0 4px 4px 0;
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.linkedin-card__text {
  font-size: 0.95rem;
  color: var(--color-espresso);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.linkedin-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.linkedin-card__date {
  font-size: 0.8rem;
  color: var(--color-taupe);
}
.linkedin-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.linkedin-card__link:visited { color: var(--color-gold); }
.linkedin-card__link:hover { color: var(--color-plum); }

/* ---------- Resources CTA ---------- */
.resources-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  background-image: var(--dark-gradient);
  text-align: center;
}
.resources-cta--light {
  background: var(--color-cream);
  background-image: none;
}
.resources-cta__headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2.25rem;
  color: var(--color-ivory);
  margin-bottom: 1.5rem;
}
.resources-cta__headline--dark {
  color: var(--color-espresso);
}

/* ---------- Email Gate Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.is-open {
  display: flex;
}
.modal-content {
  background: var(--color-cream);
  border-radius: 4px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-taupe);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition-smooth);
}
.modal-close:hover { color: var(--color-espresso); }
.modal-content__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--color-espresso);
  margin-bottom: 0.5rem;
}
.modal-content__sub {
  font-size: 0.9rem;
  color: var(--color-taupe);
  margin-bottom: 1.5rem;
}
.modal-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.modal-form__consent input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--color-plum);
}
.modal-form__consent label {
  font-size: 0.8rem;
  color: var(--color-taupe);
  line-height: 1.5;
}
.modal-form__consent a {
  color: var(--color-plum);
  text-decoration: underline;
}
.modal-form__error {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1.2rem;
  margin-bottom: 0.5rem;
}
.modal-form__tally {
  position: relative;
  margin-bottom: 1rem;
}
.modal-form__tally iframe {
  border: none;
  width: 100%;
  min-height: 200px;
}
.modal-form__tally--locked {
  opacity: 0.4;
  pointer-events: none;
}

/* ---------- Blog Post Page ---------- */
.blog-post-section {
  background: var(--color-cream);
}
.blog-post-container {
  max-width: var(--container-narrow);
}
.blog-post__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.blog-post__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--color-espresso);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.blog-post__meta {
  font-size: 0.85rem;
  color: var(--color-taupe);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-stone);
}
.blog-post__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-espresso);
}
.blog-post__body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-espresso);
}
.blog-post__body h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-espresso);
}
.blog-post__body p {
  margin-bottom: 1.25rem;
}
.blog-post__body ul,
.blog-post__body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.blog-post__body ul { list-style: disc; }
.blog-post__body ol { list-style: decimal; }
.blog-post__body li {
  margin-bottom: 0.4rem;
}
.blog-post__body blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(184, 165, 122, 0.08);
  font-style: italic;
  color: var(--color-taupe);
}
.blog-post__body blockquote p {
  margin-bottom: 0;
}
.blog-post__body pre {
  background: var(--color-espresso);
  color: var(--color-ivory);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.blog-post__body code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.88em;
}
.blog-post__body p code {
  background: rgba(0, 0, 0, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 2px;
}
.blog-post__body strong {
  font-weight: 600;
  color: var(--color-espresso);
}
.blog-post__body img {
  border-radius: 4px;
  margin: 1.5rem 0;
}
.blog-post__body hr {
  border: none;
  border-top: 1px solid var(--color-stone);
  margin: 2rem 0;
}
.blog-post__body a {
  color: var(--color-plum);
  text-decoration: underline;
}
.blog-post__share {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-stone);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-post__share-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-taupe);
  white-space: nowrap;
}
.blog-post__share-links {
  display: flex;
  gap: 0.5rem;
}
.blog-post__share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-espresso);
  color: var(--color-ivory);
  transition: background var(--transition-smooth), transform var(--transition-smooth);
}
.blog-post__share-link:hover {
  background: var(--color-plum);
  color: #fff;
  transform: translateY(-2px);
}
.blog-post__share-link:visited {
  color: var(--color-ivory);
}
.blog-post__share-link:hover:visited {
  color: #fff;
}
.blog-post__share-link--copy {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.blog-post__share-link--copy.is-copied {
  background: var(--color-forest);
  color: #fff;
}
.blog-post__share--top {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-stone);
}
.blog-post__back {
  margin-top: 1.5rem;
}
.blog-post__back a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-plum);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Blog Listing (Light) ---------- */
.section-blog-listing {
  background: var(--color-cream);
}
.section-blog-listing__empty {
  color: var(--color-taupe);
  font-style: italic;
}
.section-blog-listing .article-card {
  background: #fff;
}

/* ---------- Resources Responsive ---------- */
@media (min-width: 768px) {
  .resources-hero__title,
  .blog-hero__title {
    font-size: 4.25rem;
  }
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-post__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .resources-hero__title,
  .blog-hero__title {
    font-size: 4.25rem;
  }
  .resources-hero__sub,
  .blog-hero__sub {
    font-size: 1.2rem;
  }
}

@media (min-width: 1280px) {
  .resources-hero__title,
  .blog-hero__title {
    font-size: 4.5rem;
  }
}
