/*
 * Theme Name:  Cheryl Donaldson
 * Theme URI:   https://cheryldonaldson.com
 * Description: Child theme for Cheryl Donaldson website. Parent: Uncode.
 * Author:      Josh Aarons, Creative Consultant
 * Author URI:  https://joshaarons.com
 * Template:    uncode
 * Version:     1.0.0
 * Tags:        therapy, coaching, author, quiet-luxury
 * Text Domain: cheryldonaldson
 */

/* ============================================================
   DESIGN TOKENS — CSS Custom Properties
   Sourced directly from the HTML/CSS prototype (index.html).
   All brand values live here. Update once, applies everywhere.
   ============================================================ */

:root {
  /* --- Colour Palette --- */
  --forest:        #103030;
  --forest-mid:    #1a4040;
  --forest-pale:   #e8f0f0;
  --parchment:     #F0E0B0;   /* HIGHLIGHT ONLY — never as bg */
  --silver:        #9A9A9A;
  --ash:           #E4E4E0;
  --white:         #FDFCF8;   /* warm off-white */
  --paper:         #F5F3EE;
  --ink:           #1a1a18;

  /* --- Typography --- */
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Jost', system-ui, sans-serif;

  /* --- Spacing (matches prototype) --- */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* --- Layout --- */
  --max-w:  1160px;
  --nav-h:  72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
}

h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.3;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section--lg { padding: var(--space-2xl) 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid currentColor;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn--forest {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}
.btn--forest:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
}

.btn--outline {
  color: var(--forest);
  border-color: var(--forest);
  background: transparent;
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--white);
}

/* White outline variant (used on dark backgrounds) */
.btn--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: transparent;
}
.btn--light:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}



/* ============================================================
   DROPDOWN PANELS
   ============================================================ */
.nav__dropdown {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  z-index: 199;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}

.nav__dropdown.is-open {
  max-height: 480px;
  opacity: 1;
  pointer-events: auto;
}

.nav__dropdown-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  display: grid;
  gap: var(--space-lg);
}

/* Services: 1 label + 6 items */
.nav__dropdown--services .nav__dropdown-inner {
  grid-template-columns: 1.4fr repeat(6, 1fr);
  align-items: start;
}

.nav__dropdown-label {
  padding-right: var(--space-md);
  border-right: 1px solid var(--ash);
}

.nav__dropdown-label h4 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.nav__dropdown-label p {
  font-size: 0.78rem;
  color: var(--silver);
  line-height: 1.55;
  max-width: 22ch;
}

/* Service item in dropdown */
.nav__service-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: var(--space-sm);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.nav__service-item:hover {
  border-color: var(--ash);
  background: var(--paper);
}

.nav__service-item::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--parchment);
  margin-bottom: 0.25rem;
}

.nav__service-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(26,26,24,0.8);
  transition: color 0.2s;
}

.nav__service-item:hover .nav__service-title { color: var(--forest); }

.nav__service-desc {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--silver);
}

/* Books dropdown */
.nav__dropdown--books .nav__dropdown-inner {
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
}

.nav__book-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}

.nav__book-item:hover { border-color: var(--ash); background: var(--paper); }
.nav__book-item:hover .nav__book-title { color: var(--forest); }

.nav__book-thumb {
  width: 44px;
  height: 60px;
  background: var(--forest);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__book-thumb span {
  font-family: var(--ff-serif);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.3;
  padding: 0 4px;
}

.nav__book-info { flex: 1; }

.nav__book-tag {
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  display: block;
  margin-bottom: 0.3rem;
}

.nav__book-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(26,26,24,0.8);
  line-height: 1.25;
  transition: color 0.2s;
  margin-bottom: 0.25rem;
}

.nav__book-desc {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--silver);
}

/* Backdrop */
.nav__backdrop {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(16,48,48,0.15);
  z-index: 198;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}

.nav--scrolled .nav__hamburger span,
.nav--open .nav__hamburger span,
.nav--mobile-open .nav__hamburger span,
body:not(.page--home) .nav__hamburger span { background: var(--forest); }

.nav--mobile-open .nav__hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--mobile-open .nav__hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--mobile-open .nav__hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--ash);
  z-index: 199;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding: 1.5rem var(--space-md) 2rem;
}

.nav--mobile-open ~ .nav__mobile-menu {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.nav__mobile-item {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.6);
  padding: 1rem 0;
  border-bottom: 1px solid var(--ash);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__mobile-item:last-child { border-bottom: none; }
.nav__mobile-item:hover,
.nav__mobile-item--active { color: var(--forest); }

.nav__mobile-section { border-bottom: 1px solid var(--ash); }

.nav__mobile-section-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.6);
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.nav__mobile-section-trigger:hover,
.nav__mobile-section.is-open .nav__mobile-section-trigger { color: var(--forest); }

.nav__mobile-section.is-open .nav__chevron { transform: rotate(-135deg) translateY(-2px); }

.nav__mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav__mobile-section.is-open .nav__mobile-sub { max-height: 600px; }

.nav__mobile-sub a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0 0.65rem 1rem;
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(26,26,24,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__mobile-sub a::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--parchment);
  flex-shrink: 0;
}

.nav__mobile-sub a:hover { color: var(--forest); }

.nav__mobile-cta {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  background: var(--forest);
  color: var(--white) !important;
  padding: 0.9rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.nav__mobile-cta:hover { background: var(--forest-mid) !important; }

@media (max-width: 860px) {
  .nav__list { display: none !important; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--forest);
  overflow: hidden;
}

/* Subtle warm light from right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(253,250,244,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 60% 0%, rgba(240,224,176,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Thin vertical centre rule */
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(255,255,255,0.07) 25%,
    rgba(255,255,255,0.07) 75%,
    transparent);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.hero__eyebrow { color: rgba(255,255,255,0.4); margin-bottom: var(--space-md); }
.hero__title { color: var(--white); margin-bottom: var(--space-md); }

.hero__title em {
  color: var(--parchment);
  font-style: italic;
}

.hero__subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  max-width: 38ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero__scroll-hint {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll-hint::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

/* Portrait column */
.hero__portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__portrait-frame {
  position: relative;
  width: 380px;
  height: 480px;
}

/* Corner brackets — top-right and bottom-left */
.hero__portrait-frame::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 60px; height: 60px;
  border-top: 1px solid rgba(240,224,176,0.35);
  border-right: 1px solid rgba(240,224,176,0.35);
}

.hero__portrait-frame::after {
  content: '';
  position: absolute;
  bottom: -12px; left: -12px;
  width: 60px; height: 60px;
  border-bottom: 1px solid rgba(240,224,176,0.35);
  border-left: 1px solid rgba(240,224,176,0.35);
}

.hero__portrait-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero__portrait-placeholder svg { opacity: 0.18; }

.hero__portrait-placeholder p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.hero__portrait-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1px;
}

/* Play button */
.hero__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(16,48,48,0.25);
  z-index: 2;
}

.hero__play:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.08);
}

.hero__play svg { margin-left: 4px; }

/* Credential badge */
.hero__credential {
  position: absolute;
  bottom: var(--space-md);
  right: 0;
  background: var(--white);
  color: var(--forest);
  padding: 0.85rem 1.25rem;
  transform: translateX(var(--space-md));
}

.hero__credential-title {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  color: var(--forest);
}

.hero__credential-sub {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  display: block;
  margin-top: 0.25rem;
}

/* Parchment transition line between hero and body */
.hero-divider {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--parchment) 30%, var(--parchment) 70%, transparent);
  opacity: 0.5;
}

/* Video lightbox */
.video-lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(16,48,48,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-lightbox.is-open { display: flex; }
.video-lightbox__inner {
  position: relative;
  width: min(860px, 92vw);
  aspect-ratio: 16/9;
}
.video-lightbox__inner iframe,
.video-lightbox__inner video { width: 100%; height: 100%; border: none; border-radius: 2px; }
.video-lightbox__close {
  position: absolute;
  top: -40px; right: 0;
  background: none; border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem; cursor: pointer;
  line-height: 1;
}
.video-lightbox__close:hover { color: white; }

/* ============================================================
   INTRO / PHILOSOPHY SECTION
   ============================================================ */
#discover { background: var(--white); }

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.soul-tree {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--forest-pale);
  border: 1px solid var(--ash);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.soul-tree__svg-wrap {
  position: relative;
  z-index: 2;
  padding: var(--space-lg);
}

.intro__label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  text-align: center;
}

.intro__label p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(16,48,48,0.4);
}

.intro__content .eyebrow { margin-bottom: var(--space-sm); }
.intro__content h2 { margin-bottom: var(--space-md); color: var(--forest); }
.intro__content > p { color: rgba(26,26,24,0.65); max-width: 50ch; margin-bottom: var(--space-md); }

.intro__pillars {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.intro__pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--ash);
}

.intro__pillar:last-child { border-bottom: none; }

.intro__pillar-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}

.intro__pillar-text h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.intro__pillar-text p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(26,26,24,0.6);
  margin: 0;
}

/* ============================================================
   WAITLIST BAND
   ============================================================ */
.waitlist-band {
  background: var(--forest);
  padding: var(--space-lg) 0;
}

.waitlist-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.waitlist-band__copy h3 { color: var(--white); margin-bottom: 0.35rem; }
.waitlist-band__copy p { color: rgba(255,255,255,0.45); font-size: 0.875rem; }

/* Joined input + button — no gap, seamless */
.waitlist-form { display: flex; gap: 0; flex-shrink: 0; }

.waitlist-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 0.85rem 1.5rem;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  width: 260px;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input::placeholder { color: rgba(255,255,255,0.25); }
.waitlist-form input:focus { border-color: rgba(255,255,255,0.35); }

.waitlist-form button {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--forest);
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.waitlist-form button:hover { background: var(--ash); }

/* ============================================================
   BOOK SECTION
   ============================================================ */
.book-section { background: var(--paper); }

.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.book__cover-wrap { position: relative; display: inline-block; }

.book__spine {
  position: absolute;
  left: 0; top: 4px; bottom: -4px;
  width: 28px;
  background: linear-gradient(to right, #0a2020, #103030);
  transform: skewY(-0.5deg);
}

.book__face {
  margin-left: 20px;
  width: 280px;
  height: 380px;
  background: var(--forest);
  position: relative;
  box-shadow: 8px 16px 48px rgba(16,48,48,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.book__face-rule {
  width: 40px;
  height: 1px;
  background: var(--parchment);
  opacity: 0.4;
  margin: 0 auto var(--space-sm);
}

.book__face-title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.book__face-sub {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.book__face-author {
  position: absolute;
  bottom: var(--space-md);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

/* When cover image is present, fade out text overlay */
.book__face.has-cover .book__face-title,
.book__face.has-cover .book__face-sub,
.book__face.has-cover .book__face-rule,
.book__face.has-cover .book__face-author { opacity: 0; pointer-events: none; }

.book__coming-soon {
  position: absolute;
  top: var(--space-sm);
  right: 0;
  background: var(--forest);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  transform: translateX(8px);
}

.book__content .eyebrow { margin-bottom: var(--space-sm); }
.book__content h2 { color: var(--forest); margin-bottom: var(--space-md); }

.book__quote {
  border-left: 2px solid var(--parchment);
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.book__quote p {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.65;
}

.book__journal-note {
  background: rgba(16,48,48,0.05);
  border-left: 2px solid var(--ash);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.book__journal-note p { font-size: 0.8rem; color: rgba(26,26,24,0.6); margin: 0; }

.book__journal-note .tag {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES OVERVIEW (Home page)
   ============================================================ */
.services-section { background: var(--white); }

.services__header {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto var(--space-xl);
}

.services__header .eyebrow { margin-bottom: var(--space-sm); }
.services__header h2 { color: var(--forest); margin-bottom: var(--space-sm); }
.services__header p { color: rgba(26,26,24,0.55); }

/* 3×2 grid with 1px ash hairline borders */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ash);
  border: 1px solid var(--ash);
}

.service-card {
  background: var(--white);
  padding: var(--space-lg) var(--space-md);
  transition: background 0.3s ease;
  position: relative;
}

.service-card:hover { background: var(--forest); }
.service-card:hover .service-card__num  { color: rgba(240,224,176,0.3); }
.service-card:hover .service-card__title,
.service-card:hover .service-card__link { color: rgba(255,255,255,0.9); }
.service-card:hover .service-card__desc  { color: rgba(255,255,255,0.55); }
.service-card:hover .service-card__icon { background: rgba(240,224,176,0.4); }

.service-card__num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--ash);
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: color 0.3s;
}

.service-card__icon {
  width: 40px;
  height: 1px;
  background: var(--parchment);
  margin-bottom: var(--space-md);
  transition: background 0.3s;
}

.service-card__title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: var(--space-xs);
  transition: color 0.3s;
}

.service-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(26,26,24,0.55);
  margin-bottom: var(--space-md);
  transition: color 0.3s;
}

.service-card__link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.service-card__link::after { content: '→'; font-size: 0.8rem; }

/* ============================================================
   FEATURED IN / PRESS LOGOS
   ============================================================ */
.press-section {
  background: var(--paper);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
}

.press__inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.press__label p {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}

.press__rule {
  width: 1px;
  height: 40px;
  background: var(--ash);
  flex-shrink: 0;
}

.press__logos {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

/* Italic serif text as publication logos */
.press__logo-item {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.press__logo-item:hover { color: var(--forest); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section { background: var(--white); text-align: center; }
.testimonial { max-width: 680px; margin: 0 auto; }

.testimonial__mark {
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--parchment);
  margin-bottom: var(--space-md);
  display: block;
}

.testimonial blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.testimonial cite {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  font-style: normal;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-lg);
}

.footer__brand-name {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.footer__brand-tagline {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  display: block;
  margin-bottom: var(--space-md);
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  max-width: 34ch;
  line-height: 1.65;
}

.footer__offices {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__office strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,224,176,0.5);
  margin-bottom: 0.25rem;
}

.footer__office p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: var(--space-md);
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.18); }

.footer__socials { display: flex; gap: var(--space-sm); }

.footer__socials a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}

.footer__socials a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.visible,
.reveal.active { opacity: 1; transform: none; }

.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; }

/* ============================================================
   INNER PAGE — shared components
   ============================================================ */

/* Page header (Services, Story, Books, etc.) */
.page-header {
  background: var(--paper);
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  text-align: center;
}

.page-header__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-header__subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--silver);
  max-width: 680px;
  margin: 0 auto 2rem;
}

.parchment-rule {
  width: 60px;
  height: 3px;
  background: var(--parchment);
  margin: 0 auto;
}

/* ============================================================
   SERVICE SECTIONS
   ============================================================ */
.service-section {
  padding: 5rem 2rem;
}

.service-section--white { background: var(--white); }
.service-section--paper  { background: var(--paper); }

.service-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-grid--reverse {
  direction: rtl;
}

.service-grid--reverse > * {
  direction: ltr;
}

.service-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

/* Offering cards — 3 across (Family Therapy, etc.) */
.service-offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.offering-card {
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--ash);
}

.offering-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.offering-card p {
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Pill cards — rounded, stacked (Expat Support) */
.service-pills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.pill-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--ash);
}

.pill-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.pill-card p {
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 0;
}

/* School cards — stacked (Schools section) */
.school-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.school-card {
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--ash);
}

.school-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.school-card p {
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 0;
}

/* Visual placeholder boxes (photo/illustration areas) */
.visual-placeholder {
  background: var(--forest-pale);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--forest);
}

.visual-placeholder--square { aspect-ratio: 1; }
.visual-placeholder--portrait { aspect-ratio: 2 / 3; }

.visual-placeholder__label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.5;
  text-align: center;
  padding: 1rem;
}

/* Corner bracket decoration */
.bracket-tl, .bracket-tr, .bracket-bl, .bracket-br {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--parchment);
}

.bracket-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.bracket-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.bracket-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.bracket-br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Forest-green SVG panels (compass, map, etc.) */
.visual-svg-panel {
  background: var(--forest);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pull quote */
.pull-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--forest);
  text-align: center;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Credential stats (Executive Coaching) */
.credential-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

.credential-number {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.credential-label {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.06em;
}

/* Speaking panel — full-width forest block */
.speaking-panel {
  background: var(--forest);
  color: var(--white);
  padding: 4rem;
  text-align: center;
}

.speaking-panel h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.speaking-panel__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.topic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.topic-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 2rem;
}

.topic-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
}

.speaking-logistics {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* CTA band */
.cta-band {
  background: var(--forest);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ============================================================
   STORY PAGE — additional components
   ============================================================ */

/* Portrait section */
.portrait-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.portrait-content p {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

/* Timeline panel */
.timeline-panel {
  background: var(--forest);
  color: var(--white);
  padding: 2.5rem;
}

.timeline-panel__title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 2rem;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 72px;
  padding-top: 0.1em;
}

.timeline-text {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Stat bar (Professional section) */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  border: 1px solid var(--ash);
}

.stat-number {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Credentials list (left-border cards) */
.credentials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.credential-item {
  padding: 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--forest);
}

.credential-title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.credential-text {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.6;
}

/* Closing CTA (Story page) */
.closing-cta {
  background: var(--forest);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.closing-cta h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.closing-cta__italic {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

/* Discovery prose */
.discovery-content p {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

/* Professional prose */
.professional-prose {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
}

.professional-prose p { margin-bottom: 1.5rem; }

/* ============================================================
   INNER PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {

  .service-grid,
  .service-grid--reverse,
  .portrait-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .service-offerings,
  .topic-cards {
    grid-template-columns: 1fr;
  }

  .stat-bar {
    grid-template-columns: 1fr;
  }

  .speaking-panel {
    padding: 3rem 1.5rem;
  }

  .pull-quote {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {

  .service-section { padding: 3rem 1rem; }
  .page-header { padding: calc(var(--nav-h) + 3rem) 1rem 3rem; }

  .credential-number { font-size: 2.25rem; }
  .stat-number { font-size: 2rem; }
}
