/* ============================================================
   Legacy Life Coaching — Global Stylesheet
   B+C hybrid: dark toolbar + card packages (Concept C),
   cream editorial hero + testimonials (Concept B).
   ============================================================ */

:root {
  --teal: #1a4a5a;
  --teal-deep: #123642;
  --teal-darker: #0d2a33;
  --cream: #F5F0E8;
  --cream-warm: #EFE8DC;
  --brown: #8B5E3C;
  --brown-bright: #a36f45;
  --brown-dark: #6d4a2f;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--teal-deep);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.theme-dark { background: var(--teal-deep); color: var(--cream); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

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

/* ============ NAV (dark toolbar from Concept C) ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px;
  background: rgba(13, 42, 51, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 12px 40px; }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.nav-logo-mark {
  width: 36px; height: 36px;
  display: inline-block;
  background-image: url('../assets/logos/legacy-ascend-sun.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--cream);
}

.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 400;
  transition: color 0.25s ease;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brown-bright); }

.nav-cta {
  background: var(--brown); color: var(--cream);
  padding: 12px 22px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; font-weight: 600;
  transition: background 0.25s ease;
  border-radius: 100px;
  min-height: 44px;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--brown-bright); }

.nav-toggle {
  display: none;
  background: transparent; border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 8px;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--cream); color: var(--teal-deep);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; font-weight: 600;
  transition: all 0.25s ease;
  min-height: 48px;
  display: inline-flex; align-items: center; gap: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--brown); color: var(--cream); transform: translateY(-2px); }

.btn-primary.on-light {
  background: var(--teal-deep); color: var(--cream);
}
.btn-primary.on-light:hover { background: var(--brown); color: var(--cream); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brown);
  color: var(--teal-deep);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: all 0.25s ease;
  min-height: 48px;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover { background: var(--brown); color: var(--cream); }
.btn-outline.on-dark { color: var(--cream); }
.btn-outline.on-dark:hover { background: var(--brown); }

/* ============ HERO (Concept B layout, Concept C accents) ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 140px 56px 80px;
  gap: 80px;
  align-items: center;
  position: relative;
  background: var(--cream);
}
.hero::before {
  content: 'ISSUE 01';
  position: absolute;
  top: 110px; right: 56px;
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--brown);
  font-weight: 500;
}

.hero-content { max-width: 720px; }

.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brown); font-weight: 500;
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--brown);
}

.hero h1 {
  font-size: clamp(40px, 5.8vw, 78px);
  line-height: 1.04;
  color: var(--teal-deep);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero h1 .line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 0.2s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.35s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.5s; }
.hero h1 .line:nth-child(4) {
  animation-delay: 0.65s;
  font-style: italic;
  color: var(--brown);
  font-weight: 400;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 19px; line-height: 1.55;
  color: rgba(18, 54, 66, 0.78);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0; animation: fadeUp 0.9s ease 0.85s forwards;
}

.hero-ctas {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s ease 1s forwards;
}

.hero-proof {
  margin-top: 56px;
  display: flex; gap: 48px;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s ease 1.15s forwards;
}
.hero-proof-item { display: flex; flex-direction: column; gap: 4px; }
.hero-proof-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; color: var(--brown);
  font-weight: 500;
  line-height: 1;
}
.hero-proof-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(18, 54, 66, 0.55);
}

/* hero portrait — offset frame from Concept B */
.hero-portrait {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 460px;
  margin-left: auto;
  opacity: 0; animation: fadeUp 1s ease 0.4s forwards;
}
.hero-portrait img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.portrait-frame {
  position: absolute;
  top: 20px; right: -20px; bottom: -20px; left: 20px;
  border: 1px solid var(--brown);
  z-index: 0;
}
.portrait-placeholder {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #2a5d6d 0%, #1a4a5a 40%, #0d2a33 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245, 240, 232, 0.45);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-align: center; padding: 24px;
}

/* ============ SECTIONS ============ */
section { padding: 120px 56px; position: relative; }
.container { max-width: 1320px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brown); font-weight: 600;
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(139, 94, 60, 0.4);
  border-radius: 100px;
  background: rgba(139, 94, 60, 0.08);
}
.section-label.center { display: block; margin-left: auto; margin-right: auto; text-align: center; width: fit-content; }

.section-heading {
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  margin-bottom: 56px;
  max-width: 900px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.section-heading em { font-style: italic; color: var(--brown); font-weight: 400; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

/* sections on dark teal */
.section-dark { background: var(--teal-deep); color: var(--cream); }
.section-dark .section-heading { color: var(--cream); }
.section-dark .section-heading em { color: var(--brown-bright); }
.section-dark .section-label { color: var(--brown-bright); border-color: rgba(139, 94, 60, 0.5); background: rgba(139, 94, 60, 0.12); }

/* arch divider — decorative */
.arch-divider {
  display: flex;
  justify-content: center;
  padding: 32px 0 8px;
}
.arch-divider img {
  width: 56px;
  height: auto;
  opacity: 0.75;
}
.arch-divider.on-dark img { opacity: 0.55; }

/* ============ PROBLEM SECTION (cream) ============ */
.problem-section { background: var(--cream); color: var(--teal-deep); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  padding: 36px;
  background: rgba(26, 74, 90, 0.04);
  border-left: 3px solid var(--brown);
  transition: transform 0.3s ease, background 0.3s ease;
}
.problem-card:hover { transform: translateY(-4px); background: rgba(26, 74, 90, 0.07); }
.problem-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 500;
}
.problem-card p {
  font-size: 17px;
  color: var(--teal-deep);
  line-height: 1.6;
}
.problem-cta-wrap { margin-top: 64px; text-align: center; }
.problem-cta {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--brown);
  text-decoration: none;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  border-bottom: 2px solid var(--brown);
  padding-bottom: 6px;
  transition: gap 0.3s ease;
}
.problem-cta:hover { gap: 18px; }

/* ============ COACHING / PACKAGE CARDS (Concept C) ============ */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.coaching-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  row-gap: 36px;
}

.card {
  background: var(--cream); color: var(--teal-deep);
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-decoration: none;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.card.featured {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 2px solid var(--brown);
}
.card.featured:hover { transform: translateY(-18px); }

.card-header {
  background: var(--teal-deep); color: var(--cream);
  padding: 28px 32px 24px;
  position: relative;
}
.card.featured .card-header { background: linear-gradient(135deg, var(--teal-deep), var(--teal)); }
.card-tier {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brown-bright);
  margin-bottom: 10px;
  font-weight: 600;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; line-height: 1; color: var(--cream);
  font-weight: 500;
}
.card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--brown); color: var(--cream);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 11px; font-weight: 600;
  border-radius: 3px;
}
.card-badge.new { background: var(--brown-bright); }

.card-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid rgba(26, 74, 90, 0.12);
  gap: 16px;
}
.card-meta-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(26, 74, 90, 0.55); display: block; margin-bottom: 4px;
  font-weight: 500;
}
.card-meta-value { font-size: 15px; color: var(--teal-deep); font-weight: 600; }
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--brown); font-weight: 600;
  line-height: 1;
}
.card-who-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(26, 74, 90, 0.55); margin-bottom: 10px;
  font-weight: 500;
}
.card-who {
  font-size: 15px; line-height: 1.6;
  color: var(--teal-deep);
  margin-bottom: 28px;
  flex: 1;
}
.card-cta {
  background: var(--brown); color: var(--cream);
  padding: 16px;
  text-align: center;
  text-decoration: none;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.25s ease;
  min-height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.card-cta:hover { background: var(--brown-bright); }

.packages-note {
  margin-top: 56px;
  text-align: center;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.65);
  letter-spacing: 0.04em;
}
.packages-note.on-light { color: rgba(18, 54, 66, 0.6); }

.hidden-link-wrap {
  margin-top: 40px;
  text-align: center;
}
.hidden-link {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  border-bottom: 1px dashed rgba(245, 240, 232, 0.3);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.hidden-link:hover { color: var(--brown-bright); border-color: var(--brown-bright); }
.hidden-link.on-light { color: rgba(18, 54, 66, 0.55); border-bottom-color: rgba(18, 54, 66, 0.2); }
.hidden-link.on-light:hover { color: var(--brown); border-color: var(--brown); }

/* ============ TESTIMONIALS (Concept B editorial) ============ */
.testimonials-section { background: var(--cream); }
.testimonials-list { max-width: 1100px; margin: 0 auto; }
.testimonial-row {
  padding: 72px 0;
  border-top: 1px solid rgba(26, 74, 90, 0.12);
  text-align: center;
}
.testimonial-row:last-child { border-bottom: 1px solid rgba(26, 74, 90, 0.12); }
.testimonial-number {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brown); font-weight: 500;
  margin-bottom: 36px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: var(--teal-deep);
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-attr {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 500;
}
.testimonial-attr span { color: var(--brown); margin: 0 12px; }

/* ============ QUIZ ============ */
.quiz-section { background: var(--cream); }
.quiz-section .section-heading { text-align: center; margin-left: auto; margin-right: auto; }
.quiz-subhead {
  text-align: center;
  font-size: 17px;
  color: rgba(18, 54, 66, 0.7);
  max-width: 600px;
  margin: -32px auto 56px;
}

.quiz-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 48px 56px;
  box-shadow: 0 12px 40px rgba(18, 54, 66, 0.08);
  border: 1px solid rgba(139, 94, 60, 0.15);
}
.quiz-progress {
  height: 4px;
  background: rgba(139, 94, 60, 0.15);
  border-radius: 100px;
  margin-bottom: 36px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--brown);
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 0;
}
.quiz-step-indicator {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 16px;
}
.quiz-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--teal-deep);
  margin-bottom: 32px;
  font-weight: 500;
}
.quiz-options {
  display: flex; flex-direction: column;
  gap: 12px;
}
.quiz-option {
  display: block;
  text-align: left;
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(26, 74, 90, 0.2);
  color: var(--teal-deep);
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quiz-option:hover,
.quiz-option:focus {
  border-color: var(--brown);
  background: rgba(139, 94, 60, 0.05);
  color: var(--brown-dark);
  outline: none;
}

/* quiz result */
.quiz-result-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 16px;
  font-weight: 600;
}
.quiz-result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  color: var(--teal-deep);
  margin-bottom: 20px;
  font-weight: 500;
}
.quiz-result-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(18, 54, 66, 0.85);
  margin-bottom: 32px;
}
.quiz-result-rec {
  background: rgba(139, 94, 60, 0.08);
  border-left: 3px solid var(--brown);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.quiz-result-rec-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 8px;
}
.quiz-result-rec-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--teal-deep);
  margin-bottom: 4px;
  font-weight: 500;
}
.quiz-result-rec-price {
  font-size: 14px;
  color: var(--brown);
  font-weight: 600;
}
.quiz-result-actions {
  display: flex; flex-direction: column; gap: 16px;
}

.quiz-email-form {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(139, 94, 60, 0.15);
}
.quiz-email-label {
  font-size: 13px;
  color: rgba(18, 54, 66, 0.75);
  margin-bottom: 12px;
  display: block;
}
.quiz-email-input-row {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.quiz-email-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 1.5px solid rgba(26, 74, 90, 0.2);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--teal-deep);
  background: #fff;
}
.quiz-email-input:focus {
  outline: none;
  border-color: var(--brown);
}
.quiz-thanks {
  text-align: center;
  padding: 24px 0;
  color: var(--brown);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ============ CORPORATE FEATURE (cream-with-teal-card) ============ */
.corp-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: 56px;
  background: var(--teal-deep);
  color: var(--cream);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.corp-feature::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139, 94, 60, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.corp-feature h3 {
  font-size: 40px; line-height: 1.05; margin-bottom: 20px;
  color: var(--cream);
  position: relative; z-index: 1;
}
.corp-format {
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.corp-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; color: var(--brown-bright);
  margin-bottom: 24px;
  font-weight: 500;
  position: relative; z-index: 1;
}
.corp-desc {
  font-size: 15px; line-height: 1.65;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 32px;
  position: relative; z-index: 1;
  max-width: 420px;
}
.corp-outcomes { list-style: none; position: relative; z-index: 1; }
.corp-outcomes-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown-bright);
  margin-bottom: 16px;
  font-weight: 600;
  position: relative; z-index: 1;
}
.corp-outcomes li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  display: flex; gap: 16px;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.9);
  line-height: 1.55;
}
.corp-outcomes li:last-child { border-bottom: none; }
.corp-outcomes li::before {
  content: '→';
  color: var(--brown-bright);
  font-weight: 700;
  flex-shrink: 0;
}
.corp-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--brown); color: var(--cream);
  padding: 18px 32px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; font-weight: 600;
  border-radius: 100px;
  transition: background 0.25s ease;
  min-height: 48px;
  position: relative; z-index: 1;
}
.corp-cta:hover { background: var(--brown-bright); }

/* ============ PACKAGE DETAIL PAGES ============ */
.detail-hero {
  padding: 160px 56px 80px;
  background: var(--cream);
}
.detail-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.detail-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brown);
  text-decoration: none;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 40px;
  transition: gap 0.25s ease;
}
.detail-back:hover { gap: 14px; }

.detail-tier {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 20px;
}
.detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  color: var(--teal-deep);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.detail-meta-row {
  display: flex; gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(26, 74, 90, 0.15);
  border-bottom: 1px solid rgba(26, 74, 90, 0.15);
}
.detail-meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.detail-meta-item-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(18, 54, 66, 0.55);
  font-weight: 500;
}
.detail-meta-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--teal-deep);
  font-weight: 500;
}
.detail-meta-item-value.price { color: var(--brown); }
.detail-who {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(18, 54, 66, 0.75);
  font-weight: 300;
  max-width: 720px;
}

.detail-story {
  padding: 100px 56px;
  background: var(--cream);
}
.detail-story-inner {
  max-width: 800px;
  margin: 0 auto;
}
.detail-story p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--teal-deep);
  font-weight: 400;
  font-style: italic;
}
.detail-story p + p { margin-top: 24px; }

.detail-included {
  padding: 100px 56px;
  background: var(--teal-deep);
  color: var(--cream);
}
.detail-included-inner {
  max-width: 800px;
  margin: 0 auto;
}
.detail-included h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--cream);
  margin-bottom: 40px;
  font-weight: 500;
}
.detail-included h2 em { font-style: italic; color: var(--brown-bright); }
.detail-included ul {
  list-style: none;
}
.detail-included li {
  padding: 24px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.9);
  display: flex;
  gap: 24px;
}
.detail-included li:last-child { border-bottom: 1px solid rgba(245, 240, 232, 0.12); }
.detail-included li::before {
  content: '0' counter(detail-counter);
  counter-increment: detail-counter;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--brown-bright);
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 5px;
}
.detail-included ul { counter-reset: detail-counter; }

.detail-cta-section {
  padding: 120px 56px;
  background: var(--cream);
  text-align: center;
}
.detail-cta-section h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--teal-deep);
  margin-bottom: 32px;
  font-weight: 400;
}
.detail-cta-section h2 em { font-style: italic; color: var(--brown); }

/* ============ ABOUT PAGE ============ */
.about-hero {
  padding: 160px 56px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero-content { max-width: 600px; }
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1;
  color: var(--teal-deep);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  color: var(--brown);
  line-height: 1.4;
  margin-bottom: 36px;
  font-weight: 400;
}
.about-portrait {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 500px;
  margin-left: auto;
}
.about-portrait img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-bio {
  padding: 100px 56px;
  background: var(--cream);
}
.about-bio-inner { max-width: 800px; margin: 0 auto; }
.about-bio p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(18, 54, 66, 0.85);
  font-weight: 300;
  margin-bottom: 24px;
}

.about-stats {
  padding: 60px 56px 100px;
  background: var(--cream);
}
.about-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid rgba(26, 74, 90, 0.15);
  border-bottom: 1px solid rgba(26, 74, 90, 0.15);
}
.about-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--brown);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(18, 54, 66, 0.65);
}

.approach-section {
  padding: 120px 56px;
  background: var(--teal-deep);
  color: var(--cream);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.approach-item h3 {
  font-size: 28px;
  color: var(--brown-bright);
  margin-bottom: 16px;
  font-weight: 500;
}
.approach-item p {
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.7;
}

.credentials-section {
  padding: 100px 56px;
  background: var(--cream);
}
.credentials-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}
.credentials-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 74, 90, 0.12);
  font-size: 17px;
  color: var(--teal-deep);
  display: flex;
  gap: 16px;
  align-items: center;
}
.credentials-list li::before {
  content: '◆';
  color: var(--brown);
  flex-shrink: 0;
}

/* ============ BOOK PAGE ============ */
.book-hero {
  padding: 160px 56px 80px;
  background: var(--cream);
  text-align: center;
}
.book-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  color: var(--teal-deep);
  margin-bottom: 24px;
  font-weight: 400;
}
.book-hero h1 em { font-style: italic; color: var(--brown); }
.book-hero p {
  font-size: 19px;
  color: rgba(18, 54, 66, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.book-section {
  padding: 80px 56px;
  background: var(--cream);
}
.book-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.book-block h3 {
  font-size: 28px;
  color: var(--teal-deep);
  margin-bottom: 24px;
  font-weight: 500;
}
.book-list { list-style: none; }
.book-list li {
  padding: 12px 0;
  font-size: 16px;
  color: rgba(18, 54, 66, 0.85);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.book-list li::before {
  content: '•';
  color: var(--brown);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item {
  padding: 20px 0;
  border-top: 1px solid rgba(26, 74, 90, 0.12);
}
.faq-item:last-child { border-bottom: 1px solid rgba(26, 74, 90, 0.12); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--teal-deep);
  margin-bottom: 8px;
  font-weight: 500;
}
.faq-a {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(18, 54, 66, 0.75);
}

.contact-block {
  text-align: center;
  padding: 80px 56px;
  background: var(--cream);
  border-top: 1px solid rgba(26, 74, 90, 0.12);
}
.contact-block a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 500;
}
.contact-block a:hover { text-decoration: underline; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--teal-deep);
  text-align: center;
  padding: 140px 56px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 94, 60, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1; color: var(--cream);
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  position: relative;
}
.final-cta h2 em { font-style: italic; color: var(--brown-bright); font-weight: 400; }
.final-cta .btn-primary { position: relative; }

/* ============ FOOTER ============ */
.footer {
  background: var(--teal-darker);
  padding: 64px 56px 40px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  text-align: center;
  color: rgba(245, 240, 232, 0.7);
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-contact {
  display: flex; justify-content: center; gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 32px;
}
.footer-contact a {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-contact a:hover { color: var(--brown-bright); }
.footer-meta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.8;
}
.footer-meta a { color: rgba(245, 240, 232, 0.5); text-decoration: none; }
.footer-meta a:hover { color: var(--brown-bright); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav { padding: 14px 28px; }
  .nav.scrolled { padding: 10px 28px; }
  section { padding: 100px 28px; }
  .hero { padding: 130px 28px 70px; gap: 56px; }
  .hero::before { right: 28px; }
  .about-hero { padding: 140px 28px 70px; gap: 56px; }
  .detail-hero { padding: 140px 28px 70px; }
  .detail-story, .detail-included, .detail-cta-section { padding-left: 28px; padding-right: 28px; }
  .book-hero, .book-section, .contact-block { padding-left: 28px; padding-right: 28px; }
  .credentials-section, .about-bio, .about-stats, .approach-section { padding-left: 28px; padding-right: 28px; }
  .footer { padding: 56px 28px 32px; }
  .final-cta { padding: 120px 28px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.13em; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(13, 42, 51, 0.98);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  }
  .nav-toggle { display: flex; }
  .nav-right { gap: 16px; }
  .nav-cta { padding: 10px 16px; font-size: 10px; min-height: 40px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 48px;
    min-height: auto;
  }
  .hero::before { display: none; }
  .hero-portrait { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-proof { gap: 28px; }
  .hero-proof-number { font-size: 32px; }

  section { padding: 80px 24px; }

  .problem-grid { grid-template-columns: 1fr; }
  .coaching-grid, .coaching-grid-6 { grid-template-columns: 1fr; }
  .card.featured { transform: none; }
  .card.featured:hover { transform: translateY(-6px); }

  .corp-feature { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .corp-feature h3 { font-size: 32px; }

  .about-hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .about-portrait { order: -1; margin: 0 auto; max-width: 360px; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .approach-grid { grid-template-columns: 1fr; gap: 32px; }

  .book-grid { grid-template-columns: 1fr; gap: 48px; }

  .detail-meta-row { gap: 28px; }
  .detail-included li { font-size: 16px; }

  .quiz-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .nav { padding: 12px 20px; }
  .nav-logo-text { font-size: 16px; }
  .nav-cta { padding: 9px 14px; font-size: 9px; letter-spacing: 0.12em; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas a { justify-content: center; width: 100%; }
  .footer-contact { flex-direction: column; gap: 12px; }
  .quiz-email-input-row { flex-direction: column; }
  .quiz-email-input-row .btn-primary { width: 100%; justify-content: center; }
}

/* ============================================================
   LEGACY ASCEND — 2026 brief additions
   (white nav mark, cinematic hero, footer social/legal, shop,
    full testimonials, legal pages, speaking topics, media)
   ============================================================ */

/* ----- White sun/moon nav mark (brief: must be white, not aqua) ----- */
.nav-logo-mark { filter: brightness(0) invert(1); }

/* ----- Cinematic full-bleed hero (Concept C: video + sun overlay) ----- */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
  background: linear-gradient(160deg, #0d2a33 0%, #123642 48%, #1a4a5a 100%);
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.45;
}
.hero-cinematic::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(13,42,51,0.20) 0%, rgba(13,42,51,0.78) 100%);
  pointer-events: none;
}
.hero-sun {
  position: absolute; z-index: 1;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(640px, 80vw); height: auto;
  opacity: 0.08;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.hero-cinematic .hero-inner { position: relative; z-index: 2; max-width: 920px; }
.hero-cinematic .hero-eyebrow { color: var(--brown-bright); justify-content: center; }
.hero-cinematic .hero-eyebrow::before { background: var(--brown-bright); }
.hero-cinematic h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1.04; color: var(--cream);
  font-weight: 400; letter-spacing: -0.02em; margin-bottom: 26px;
}
.hero-cinematic h1 em { font-style: italic; color: var(--brown-bright); font-weight: 400; }
.hero-cinematic .hero-sub { color: rgba(245,240,232,0.85); margin: 0 auto 40px; }
.hero-cinematic .hero-ctas { justify-content: center; }
.hero-cinematic .hero-proof { justify-content: center; margin-top: 56px; }
.hero-cinematic .hero-proof-number { color: var(--brown-bright); }
.hero-cinematic .hero-proof-label { color: rgba(245,240,232,0.6); }

/* ----- Hero: framed-portrait split (cropped headshot beside the copy) ----- */
/* Re-activates the Concept B offset frame (.hero-portrait / .portrait-frame) */
/* inside the cinematic hero. Capped grid => no full-width gap bug (§8).      */
.hero-cinematic.hero-split { text-align: left; }
.hero-split .hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.hero-split .hero-inner { max-width: 620px; }
.hero-split .hero-eyebrow { justify-content: flex-start; }
.hero-split .hero-sub { margin-left: 0; margin-right: 0; }
.hero-split .hero-ctas { justify-content: flex-start; }
.hero-split .hero-proof { justify-content: flex-start; }
.hero-split .hero-portrait img { object-position: center 20%; }

@media (max-width: 900px) {
  .hero-split .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-split .hero-portrait { order: 1; margin: 0 auto; max-width: 380px; }
}
@media (max-width: 480px) {
  .hero-split .hero-portrait { max-width: 300px; }
}

/* ----- Card separation on dark backgrounds (brief: stop top of cards blending) ----- */
.card { border: 1px solid rgba(13,42,51,0.06); }
.section-dark .card,
body.theme-dark .card { box-shadow: 0 12px 40px rgba(0,0,0,0.38); }
.section-dark .card:hover,
body.theme-dark .card:hover { box-shadow: 0 22px 55px rgba(0,0,0,0.45); }
/* brown frame on Breakthrough card (brief) */
.card.framed { border: 2px solid var(--brown); }

/* ----- Footer: social + legal links ----- */
.footer-social { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 22px; }
.footer-social a {
  color: rgba(245,240,232,0.75); text-decoration: none;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.25s ease;
}
.footer-social a:hover { color: var(--brown-bright); }
.footer-legal { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-legal a {
  color: rgba(245,240,232,0.5); text-decoration: none;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.25s ease;
}
.footer-legal a:hover { color: var(--brown-bright); }

/* ----- Shop page ----- */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-card {
  background: var(--cream); color: var(--teal-deep);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.26); }
.shop-card.feature { grid-column: 1 / -1; flex-direction: row; }
.shop-card-img {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 60%, var(--teal-darker) 100%);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1; overflow: hidden;
}
.shop-card.feature .shop-card-img { flex: 1 1 56%; aspect-ratio: auto; min-height: 320px; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-img .placeholder-logo { width: 88px; filter: brightness(0) invert(1); opacity: 0.9; }
.shop-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.shop-card.feature .shop-card-body { flex: 1 1 44%; justify-content: center; padding: 40px 44px; }
.shop-card-format { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown); font-weight: 600; }
.shop-card-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--teal-deep); font-weight: 500; line-height: 1.1; }
.shop-card.feature .shop-card-title { font-size: 38px; }
.shop-card-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--brown); font-weight: 600; }
.shop-card-desc { font-size: 14px; color: rgba(18,54,66,0.75); line-height: 1.55; }
.shop-card-cta { margin-top: 14px; align-self: flex-start; }

/* ----- Full testimonials grid (Work With Me / Career) ----- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testi-card {
  background: #fff; border: 1px solid rgba(139,94,60,0.15);
  border-radius: 8px; padding: 28px 30px;
  box-shadow: 0 8px 28px rgba(18,54,66,0.06);
  display: flex; flex-direction: column; gap: 16px;
}
.testi-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; line-height: 1.55; color: var(--teal-deep); }
.testi-attr { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown); font-weight: 600; margin-top: auto; }
.section-dark .testi-card { background: rgba(245,240,232,0.04); border-color: rgba(245,240,232,0.12); }
.section-dark .testi-quote { color: var(--cream); }
.section-dark .testi-attr { color: var(--brown-bright); }

/* featured single testimonial (Corporate — William Lewis) */
.featured-testi {
  max-width: 920px; margin: 0 auto 48px;
  background: var(--teal-deep); color: var(--cream);
  border-radius: 8px; padding: 52px 48px; text-align: center;
  border: 1px solid rgba(139,94,60,0.3);
}
.featured-testi .testi-quote { color: var(--cream); font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 24px; }
.featured-testi .testi-attr { color: var(--brown-bright); }

/* ----- Legal / prose pages ----- */
.legal-page { padding: 160px 24px 100px; background: var(--cream); }
.legal-inner { max-width: 800px; margin: 0 auto; }
.legal-inner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 56px); color: var(--teal-deep); font-weight: 400; margin-bottom: 10px; letter-spacing: -0.02em; }
.legal-meta { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown); margin-bottom: 28px; }
.legal-note { background: rgba(139,94,60,0.08); border-left: 3px solid var(--brown); padding: 16px 20px; font-size: 14px; color: rgba(18,54,66,0.8); margin-bottom: 40px; border-radius: 0 6px 6px 0; }
.legal-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--teal-deep); margin: 36px 0 14px; font-weight: 600; }
.legal-inner h3 { font-size: 17px; color: var(--brown-dark); margin: 24px 0 10px; font-weight: 600; }
.legal-inner p, .legal-inner li { font-size: 15px; line-height: 1.7; color: rgba(18,54,66,0.85); margin-bottom: 14px; }
.legal-inner ul { padding-left: 22px; margin-bottom: 18px; }
.legal-inner a { color: var(--brown); }

/* ----- Speaking topics ----- */
.topic-group-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown); font-weight: 600; margin: 28px 0 12px; }
.section-dark .topic-group-label { color: var(--brown-bright); }
.topic-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.topic-list li { background: rgba(139,94,60,0.08); border: 1px solid rgba(139,94,60,0.28); border-radius: 100px; padding: 8px 16px; font-size: 13px; color: var(--teal-deep); }
.section-dark .topic-list li { background: rgba(245,240,232,0.06); border-color: rgba(245,240,232,0.18); color: var(--cream); }

/* ----- Media page ----- */
.media-books { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 24px; }
.media-book { display: flex; gap: 18px; background: #fff; border: 1px solid rgba(139,94,60,0.15); border-radius: 8px; padding: 20px; }
.media-book-cover { width: 64px; flex-shrink: 0; background: var(--teal-deep); display: flex; align-items: center; justify-content: center; border-radius: 4px; min-height: 90px; }
.media-book-cover .placeholder-logo { width: 32px; filter: brightness(0) invert(1); opacity: 0.85; }
.media-book h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--teal-deep); margin-bottom: 6px; font-weight: 600; line-height: 1.2; }
.media-book a { color: var(--brown); font-size: 12px; font-weight: 600; text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; }
.media-book a:hover { color: var(--brown-bright); }
.media-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 24px; }
.media-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--brown); margin-bottom: 14px; font-weight: 600; }
.media-col ul { list-style: none; }
.media-col li { padding: 12px 0; border-top: 1px solid rgba(26,74,90,0.12); font-size: 14px; line-height: 1.5; }
.media-col li a { color: var(--teal-deep); text-decoration: none; }
.media-col li a:hover { color: var(--brown); }

/* ----- "Looking for career coaching?" — larger per brief ----- */
.hidden-link.lg { font-size: 16px; letter-spacing: 0.04em; text-transform: none; }

/* ----- Responsive for new components ----- */
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card.feature { flex-direction: column; }
  .shop-card.feature .shop-card-img { min-height: 220px; }
  .testi-grid { grid-template-columns: 1fr; }
  .media-books { grid-template-columns: 1fr; }
  .media-cols { grid-template-columns: 1fr; gap: 36px; }
  .hero-cinematic .hero-proof { gap: 28px; }
}

/* ----- Media 'In the press' section sits on dark teal: make text legible ----- */
.section-dark .media-col li { color: rgba(245,240,232,0.85); border-top-color: rgba(245,240,232,0.12); }
.section-dark .media-col li a { color: rgba(245,240,232,0.88); }
.section-dark .media-col li a:hover { color: var(--brown-bright); }
.section-dark .media-col h3 { color: var(--brown-bright); }
