/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #1c1917;
  --cream:   #f7f3ec;
  --warm:    #f0e9da;
  --gold:    #b8914f;
  --gold-lt: #d4a96a;
  --muted:   #6b6560;
  --rule:    #ddd5c8;
  --white:   #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(247,243,236,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-color: var(--rule); }

.nav-logo-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-adventures {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6b7fff;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-adventures:hover { color: #4a5fd9; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
nav.menu-open .nav-hamburger .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-hamburger .bar:nth-child(2) { opacity: 0; }
nav.menu-open .nav-hamburger .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

.nav-tools {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  background: var(--gold);
  padding: 0.45rem 1.1rem !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-tools:hover { background: var(--gold-lt); color: var(--ink) !important; }

/* ── SECTION BASE ── */
section { padding: 7rem 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 1rem 2.2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ── HERO (index only) ── */
.hero-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 3px solid var(--gold);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10% 8% 8% 10%;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(184,145,79,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-headline em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

/* override btn-primary opacity for hero */
#hero .btn-primary {
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.hero-right {
  background: var(--warm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10% 10% 8% 8%;
  position: relative;
}
.hero-right::after {
  content: '"';
  font-family: var(--serif);
  font-size: 24rem;
  line-height: 1;
  color: var(--rule);
  position: absolute;
  top: -2rem;
  right: 3%;
  pointer-events: none;
  user-select: none;
}

.hero-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-caption {
  margin-top: 2rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--muted);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-philosophy-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 0.45s forwards;
  margin-bottom: 0.8rem;
}

.hero-philosophy-beliefs {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
}
.hero-philosophy-beliefs p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.7rem;
}
.hero-philosophy-beliefs p:last-child { margin-bottom: 0; }

.hero-philosophy-citation {
  text-align: center;
  padding: 0.9rem 0.5rem;
  margin: 0.8rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-philosophy-citation p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}
.hero-philosophy-citation-attr {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.45rem;
}
.hero-philosophy-ask {
  font-weight: 500 !important;
  color: var(--gold) !important;
  font-size: 0.92rem !important;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeIn 1.2s ease 1.2s both;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

/* ── WHAT IS COACHING ── */
#what { background: var(--white); }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.what-body p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.what-body p strong { color: var(--ink); font-weight: 500; }

.what-cards { display: flex; flex-direction: column; gap: 0; }
.what-card {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
}
.what-card:first-child { border-top: 1px solid var(--rule); }
.what-card-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.what-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.what-card p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── WHO IT'S FOR ── */
#whom { background: var(--ink); }
#whom .section-title { color: var(--white); }
#whom .section-title em { color: var(--gold-lt); }
#whom .divider { background: var(--gold); }

.whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.whom-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.whom-card:hover { background: rgba(255,255,255,0.07); }
.whom-icon {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.whom-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.whom-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.7;
}
.whom-footer {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  max-width: 700px;
}
.whom-footer strong { color: var(--gold-lt); font-style: normal; font-weight: 400; }

/* ── OUTCOMES ── */
#outcomes { background: var(--warm); }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.outcome-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.outcome-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  min-width: 2.5rem;
  margin-top: -0.2rem;
}
.outcome-item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.outcome-item p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}
.outcomes-pull {
  padding: 3rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.outcomes-pull blockquote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.outcomes-pull cite {
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── HOW IT WORKS ── */
#how { background: var(--ink); }
#how .section-title { color: var(--white); }
#how .divider { background: var(--gold); }
#how .section-label { color: var(--gold); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.how-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 1.8rem;
  position: relative;
}
.how-step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.how-step p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.7;
}

.how-practicalities {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.practicalities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2rem;
  align-items: start;
}
.practicalities-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.6;
  width: 100%;
}
.practical-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.practical-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.practical-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 300;
}

/* how-dan-works list inside how section */
.how-dan-works {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 3rem;
}
.how-dan-works h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  grid-column: 1 / -1;
}
.how-dan-works li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  list-style: none;
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}
.how-dan-works li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── CTA / CONTACT ── */
#contact {
  background: var(--cream);
  text-align: center;
  padding: 8rem 5%;
}
#contact .section-label { justify-content: center; display: flex; }
#contact .section-title { text-align: center; }
#contact .divider { margin: 0 auto 2.5rem; }
.contact-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact-note {
  margin-top: 3rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ── PAGE HERO (non-homepage pages) ── */
.page-hero {
  padding: 10rem 5% 5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(184,145,79,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.page-hero .section-label { color: var(--gold); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-title em { color: var(--gold-lt); }
.page-hero .divider { background: var(--gold); }
.page-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 0.5rem;
}

/* ── ABOUT PAGE ── */
.about-lead {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 6rem;
  align-items: start;
}
.about-body p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.about-body p strong { color: var(--ink); font-weight: 500; }

.about-pillars {
  margin-top: 5rem;
}
.about-pillars h3 {
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.pillar-card {
  background: var(--warm);
  padding: 2.5rem 2.2rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s;
}
.pillar-card:hover { border-color: var(--gold); }
.pillar-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.4rem;
  color: var(--gold);
}
.pillar-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.pillar-card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

.about-creds {
  margin-top: 5rem;
  padding: 2.5rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.cred-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.cred-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 300;
}

.about-sidebar-block {
  background: var(--cream);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 120px;
}
.about-sidebar-block h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.about-sidebar-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.about-sidebar-block li {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
}
.about-sidebar-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── CASE STUDIES PAGE ── */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 1rem;
}
.case-card {
  background: var(--white);
  padding: 3rem 2.8rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.case-card:hover { border-color: var(--gold); }
.case-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.case-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.2rem;
}
.case-org {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.case-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  min-height: 3.5rem;
}
.case-narrative p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.case-narrative p:last-child { margin-bottom: 0; }
.case-narrative {
  flex: 1;
  padding-bottom: 0.5rem;
}
.case-hook {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.5rem;
  min-height: 12rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.case-hook-label {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.case-result {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
}
.case-result-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.case-result-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
}

/* ── EXPERIENCE PAGE ── */
.exp-grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 6rem;
  align-items: start;
}

.era-list { display: flex; flex-direction: column; gap: 0; }

.exp-intro {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 680px;
}
.era-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}
.era-item:first-child { border-top: 1px solid var(--rule); }
.era-dates {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.era-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.era-orgs {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}
.era-item p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

.exp-sidebar { position: sticky; top: 120px; }
.exp-sidebar-block {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.exp-sidebar-block h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.exp-sidebar-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.exp-sidebar-block li {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.exp-sidebar-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.exp-sidebar-block .qual-name {
  color: var(--ink);
  font-weight: 400;
  display: block;
}
.exp-sidebar-block .qual-detail {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── PHILOSOPHY SECTION (about page) ── */
.philosophy-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.philosophy-body p {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.philosophy-principle {
  font-family: var(--serif);
  font-size: 1.25rem !important;
  font-style: italic;
  color: var(--gold) !important;
  line-height: 1.4 !important;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid var(--gold);
  margin: 1.8rem 0 !important;
}
.philosophy-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 120px;
}
.philosophy-aside-block {
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 1.8rem;
}
.philosophy-aside-label {
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0.8rem !important;
}
.philosophy-aside-block p:last-child {
  font-size: 0.84rem !important;
  color: var(--muted) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-aside { position: static; }
}

/* ── PHILOSOPHY PERSONAL QUOTE ── */
.philosophy-personal-quote {
  text-align: center;
  padding: 1.8rem 1.5rem;
  margin: 1.8rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.philosophy-personal-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 0.5rem;
  font-weight: 300;
}
.philosophy-personal-quote-attr {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.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; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .practicalities-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 9rem 7% 5rem; min-height: 70vh; justify-content: flex-end; }
  .hero-right { padding: 4rem 7% 5rem; justify-content: flex-start; }
  .hero-right::after { font-size: 14rem; }
  .what-grid,
  .outcomes-grid,
  .about-lead,
  .exp-grid { grid-template-columns: 1fr; gap: 3rem; }
  .whom-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-dan-works { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .about-sidebar-block,
  .exp-sidebar { position: static; }
  nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(247,243,236,0.97);
    backdrop-filter: blur(12px);
    padding: 0.25rem 5% 1rem;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 99;
  }
  nav.menu-open .nav-links li { border-bottom: 1px solid var(--rule); }
  nav.menu-open .nav-links li:last-child { border-bottom: none; padding-top: 0.5rem; }
  nav.menu-open .nav-links a { display: block; padding: 0.85rem 0; }
}

@media (max-width: 560px) {
  .how-steps { grid-template-columns: 1fr; }
  .practicalities-row { grid-template-columns: 1fr; }
  section { padding: 4.5rem 5%; }
  .page-hero { padding: 8rem 5% 4rem; }
}
