/* =========================================================
   REV. EVE MALOBA — Main Stylesheet
   =========================================================
   Design inspired by reference: elegant, warm cream palette,
   Cormorant Garamond serif headlines, Inter sans-serif body.
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS Custom Properties
--------------------------------------------------------- */
:root {
  /* Colours */
  --cream:        #f5f0e8;
  --cream-dark:   #ede6d8;
  --cream-light:  #faf7f2;
  --dark:         #1a1a18;
  --dark-mid:     #2c2c28;
  --gold:         #ffc3e9;
  --gold-light:   #ffd9f1;
  --brand-deep:   #a82e74;
  --teal:         #1d5c5c;
  --teal-light:   #256f6f;
  --text:         #2e2e2a;
  --text-muted:   #6b6659;
  --white:        #ffffff;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py:   6rem;
  --container:    1200px;
  --gutter:       2rem;

  /* Motion */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --dur:          0.65s;
}

/* ---------------------------------------------------------
   2. Reset & Base
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream-light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------------------------------------------------------
   3. Layout Utilities
--------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.text-center { text-align: center; }

.page-section {
  padding-block: var(--section-py);
}

/* ---------------------------------------------------------
   4. Typography
--------------------------------------------------------- */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: italic;
  color: var(--brand-deep);
  font-weight: 400;
}

.hero .section-heading em,
.hero__heading em,
.video-strip .section-heading em,
.video-strip__heading em,
.sp-video-hero .section-heading em,
.sp-video-hero__heading em,
.cta-strip .section-heading em,
.method-cta .section-heading em,
.ss-cta .section-heading em,
.media-video .section-heading em {
  color: var(--gold);
}

.label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.label--gold { color: var(--brand-deep); }
.hero .label--gold,
.video-strip .label--gold,
.sp-video-hero .label--gold,
.cta-strip .label--gold,
.media-video .label--gold,
.footer .label--gold {
  color: var(--gold);
}
.label--light { color: rgba(255,255,255,0.65); }

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 64ch;
}

/* ---------------------------------------------------------
   5. Buttons
--------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

.btn--primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 195, 233, 0.5);
}

.btn--outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

.link-underline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brand-deep);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.link-underline:hover { color: #8e1c5f; }
.link--gold { color: var(--brand-deep); }

/* ---------------------------------------------------------
   6. Navigation
--------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
  padding-block: 1rem;
  background: var(--cream-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav.scrolled {
  background: var(--cream-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Home page transparent nav only when at top over dark hero */
.home-page .nav.at-top {
  background: transparent;
  box-shadow: none;
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  transition: opacity 0.3s;
}

.nav__logo:hover .nav__logo-img { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.nav__link {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  color: var(--dark);
  border-radius: 2px;
  position: relative;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--gold);
}

.home-page .nav.at-top .nav__link {
  color: var(--white);
}

.home-page .nav.at-top .nav__link:hover {
  color: var(--gold-light);
}

.home-page .nav.at-top .nav__link--cta {
  color: var(--white) !important;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.65rem;
  right: 0.65rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__link--cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold-light);
  color: var(--dark) !important;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1010;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
  border-radius: 2px;
}

.home-page .nav.at-top .nav__burger span { background: var(--white); }

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--dark) !important; }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--dark) !important; }

/* ---------------------------------------------------------
   7. Hero Section
--------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 8, 0.78) 0%,
    rgba(10, 10, 8, 0.45) 55%,
    rgba(10, 10, 8, 0.1) 100%
  );
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
}

.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1rem;
}

.hero__heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
}

.scroll-arrow {
  display: block;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: relative;
  animation: bounceArrow 2s infinite;
}

.scroll-arrow::after {
  content: '↓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.7; }
}

/* ---------------------------------------------------------
   8. Intro Strip (Home — Meet Eve)
--------------------------------------------------------- */
.intro-strip {
  padding-block: var(--section-py);
  background: var(--cream-light);
}

.intro-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-strip__image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.intro-strip__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

/* ---------------------------------------------------------
   9. Expertise Cards
--------------------------------------------------------- */
.expertise {
  padding-block: var(--section-py);
  background: var(--cream-dark);
}

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.expertise__card {
  background: var(--cream-light);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: box-shadow 0.3s, transform 0.3s var(--ease);
}

.expertise__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.expertise__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.expertise__card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.expertise__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------------------------------------------------------
   10. Video Strip (Dark — YouTube background)
--------------------------------------------------------- */
.video-strip {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
  background: var(--dark);
}

/* YouTube auto-play background wrapper (shared by video-strip + SP hero) */
.yt-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.yt-bg-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
}

.video-strip__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,10,8,0.88) 0%,
    rgba(29,92,92,0.55) 100%
  );
}

.video-strip__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.video-strip__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 2rem;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  padding-top: 56.25%;
  border-radius: 3px;
  overflow: hidden;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------------------
   11. Featured Books (Home)
--------------------------------------------------------- */
.featured-books {
  padding-block: var(--section-py);
  background: var(--cream-light);
}

.featured-books__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.featured-books__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-books__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream-dark);
}

.featured-books__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.featured-books__card:hover .featured-books__img-wrap img {
  transform: scale(1.04);
}

.featured-books__body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.featured-books__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------
   12. Keynotes Preview (Home)
--------------------------------------------------------- */
.keynotes-preview {
  padding-block: var(--section-py);
  background: var(--cream-dark);
}

.keynotes-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-block: 2.5rem;
}

.keynotes-preview__card {
  background: var(--cream-light);
  padding: 2rem;
  border-radius: 2px;
  border-top: 2px solid var(--gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.keynotes-preview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.keynotes-preview__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.keynotes-preview__card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.keynotes-preview__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------------------------------------------------------
   13. Testimonials
--------------------------------------------------------- */
.testimonials {
  padding-block: var(--section-py);
  background: var(--cream-light);
}

.testimonials__slider {
  max-width: 780px;
  margin-inline: auto;
  margin-top: 3rem;
  min-height: 200px;
  position: relative;
}

.testimonials__slide {
  display: none;
  animation: fadeInSlide 0.5s var(--ease);
}

.testimonials__slide.active { display: block; }

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.testimonials__slide blockquote {
  text-align: center;
}

.testimonials__slide blockquote::before {
  content: '"';
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 1rem;
}

.testimonials__slide blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonials__slide blockquote footer {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---------------------------------------------------------
   14. Speaker School Teaser (Home)
--------------------------------------------------------- */
.school-teaser {
  padding-block: var(--section-py);
  background: var(--cream-dark);
}

.school-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.school-teaser__list {
  margin-block: 1.5rem 2rem;
}

.school-teaser__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-block: 0.35rem;
  display: flex;
  gap: 0.5rem;
}

.school-teaser__image {
  border-radius: 2px;
  overflow: hidden;
}

.school-teaser__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

/* ---------------------------------------------------------
   15. CTA Strip (Home)
--------------------------------------------------------- */
.cta-strip {
  padding-block: 8rem;
  background: var(--dark-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../pictures/herobright.jpeg') center/cover no-repeat;
  opacity: 0.12;
}

.cta-strip .container {
  position: relative;
  z-index: 1;
}

.cta-strip__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-strip__heading em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-strip__sub {
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ---------------------------------------------------------
   16. About Page
--------------------------------------------------------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-top: 2rem;
}

.about-hero__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

.about-pillars {
  margin-bottom: 6rem;
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-pillars__card {
  background: var(--cream-dark);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
}

.about-pillars__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.about-pillars__card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.65rem;
}

.about-pillars__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-recognition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--cream-dark);
  padding: 4rem;
  border-radius: 2px;
  margin-bottom: 6rem;
}

.about-recognition__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  background: rgba(255, 195, 233, 0.2);
  border: 1px solid var(--gold);
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.about-recognition__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.about-initiatives {
  margin-bottom: 3rem;
}

.about-initiatives__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-initiatives__card {
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}

.about-initiatives__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.about-initiatives__card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.5rem 1.5rem 0.5rem;
}

.about-initiatives__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 0 1.5rem 1.5rem;
}

/* ---------------------------------------------------------
   17. Speaker Profile Page
--------------------------------------------------------- */
.speaker-profile-page {
  background: var(--cream-light);
}

/* Video Hero for Speaker Profile standalone page */
.sp-video-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background: var(--dark);
}

.sp-video-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10,10,8,0.82) 0%,
    rgba(10,10,8,0.45) 60%,
    rgba(10,10,8,0.15) 100%
  );
}

.sp-video-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.sp-video-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
}

.sp-video-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.sp-video-hero__heading em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.sp-video-hero__sub {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.sp-video-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.sp-print-link-hero {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  cursor: pointer;
}

.sp-print-link-hero:hover { color: var(--white); }

.sp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  padding-top: 2rem;
}

.sp-print-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  margin-top: 0.5rem;
  cursor: pointer;
}

.sp-print-link:hover { color: var(--gold); }

.sp-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.sp-bio__points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sp-bio__point h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.sp-bio__point p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.sp-bio__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

.sp-philosophy {
  background: var(--cream-dark);
  padding: 4rem;
  margin-bottom: 4rem;
  border-radius: 2px;
  text-align: center;
}

.sp-philosophy__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--dark);
  max-width: 72ch;
  margin-inline: auto;
  line-height: 1.55;
  position: relative;
}

.sp-philosophy__quote::before {
  content: '"';
  font-size: 6rem;
  color: var(--gold);
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
  font-style: normal;
}

.sp-positioning {
  text-align: center;
  margin-bottom: 4rem;
}

.sp-positioning__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.sp-tag {
  background: var(--dark);
  color: var(--cream-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
}

.sp-gallery {
  margin-bottom: 5rem;
}

.sp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.sp-gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), filter 0.4s;
}

.sp-gallery__grid img:hover {
  transform: scale(1.02);
  filter: brightness(0.92);
}

.sp-cta {
  padding-block: 4rem;
}

/* ---------------------------------------------------------
   18. Keynotes Page
--------------------------------------------------------- */
.keynotes-page {
  background: var(--cream-light);
}

.keynotes-page__intro {
  max-width: 60ch;
  margin-bottom: 4rem;
}

.keynotes-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.keynote-card {
  background: var(--cream-dark);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.keynote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}

.keynote-card__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.keynote-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.keynote-card__sub {
  font-style: italic;
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.keynote-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.keynote-card ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-block: 0.2rem;
}

.keynotes-page__cta {
  background: var(--cream-dark);
  padding: 5rem 2rem;
  border-radius: 2px;
}

/* ---------------------------------------------------------
   19. Method Page
--------------------------------------------------------- */
.method-page {
  background: var(--cream-light);
}

.method-page__intro {
  margin-bottom: 4rem;
  max-width: 64ch;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 6rem;
  border-radius: 2px;
  overflow: hidden;
}

.method-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s;
}

.method-step:last-child { border-bottom: none; }

.method-step:hover {
  background: var(--cream);
}

.method-step__letter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  padding: 3rem 2rem;
  background: var(--cream-dark);
  border-right: 1px solid rgba(0,0,0,0.06);
}

.method-step__content {
  padding: 3rem;
}

.method-step__content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.method-step__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.method-cta {
  background: var(--dark);
  padding: 5rem 2rem;
  border-radius: 2px;
}

.method-cta .section-heading { color: var(--white); }
.method-cta .section-heading em { color: var(--gold-light); }
.method-cta .body-text { color: rgba(255,255,255,0.65); margin-inline: auto; }

/* ---------------------------------------------------------
   20. Media Page
--------------------------------------------------------- */
.media-page {
  background: var(--cream-light);
}

.media-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-block: 2rem;
}

.media-tab {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  color: var(--text-muted);
  transition: all 0.3s;
}

.media-tab:hover,
.media-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 5rem;
}

.media-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--cream-dark);
}

.media-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.3s;
}

.media-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.media-item.hidden { display: none; }

.media-video {
  margin-bottom: 3rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--white);
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }

/* ---------------------------------------------------------
   21. Books Page
--------------------------------------------------------- */
.books-page {
  background: var(--cream-light);
}

.books-page__divider {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin-block: 4rem;
}

.book-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}

.book-feature--reverse {
  direction: rtl;
}

.book-feature--reverse > * {
  direction: ltr;
}

.book-feature__cover img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s var(--ease);
}

.book-feature__cover:hover img {
  transform: scale(1.02) rotate(-1deg);
}

.book-feature__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  margin-block: 0.5rem;
}

.book-feature__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.book-feature__themes {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.book-feature__themes li strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.book-feature__themes li p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------------------------------------------------
   22. Speaker School Page
--------------------------------------------------------- */
.speaker-school-page {
  background: var(--cream-light);
  padding-top: 0;
}

.ss-hero {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 6rem;
}

.ss-hero__bg {
  position: absolute;
  inset: 0;
}

.ss-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,8,0.88), rgba(29,92,92,0.6));
}

.ss-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.ss-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
}

.ss-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.ss-hero__heading em {
  font-style: italic;
  color: var(--gold-light);
}

.ss-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 54ch;
  margin-bottom: 2rem;
}

.ss-pillars { margin-bottom: 6rem; }

.ss-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.ss-pillar {
  background: var(--cream-dark);
  padding: 2rem;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.ss-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.ss-pillar__icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ss-pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.ss-pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.ss-ity { margin-bottom: 6rem; }

.ss-ity__list {
  max-width: 680px;
  margin-inline: auto;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ss-ity__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream-dark);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
}

.ss-ity__check {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
}

.ss-ity__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ss-video { margin-bottom: 6rem; }

.ss-cta {
  background: var(--dark-mid);
  padding: 5rem 2rem;
  border-radius: 2px;
  margin-bottom: 3rem;
}

.ss-cta .section-heading { color: var(--white); }
.ss-cta .section-heading em { color: var(--gold-light); }
.ss-cta .body-text { color: rgba(255,255,255,0.65); margin-inline: auto; margin-bottom: 2rem; }

/* ---------------------------------------------------------
   23. Contact Page
--------------------------------------------------------- */
.contact-page {
  background: var(--cream-light);
}

.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
  padding-top: 2rem;
}

.contact-page__info {
  margin-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info-item span:last-child {
  font-size: 0.9rem;
  color: var(--dark);
}

.contact-page__direct {
  margin-top: 2rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form__field input,
.contact-form__field textarea {
  background: var(--cream-dark);
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 195, 233, 0.4);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__note {
  font-size: 0.85rem;
  color: var(--brand-deep);
  text-align: center;
  min-height: 1.2rem;
}

/* ---------------------------------------------------------
   24. Footer
--------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer__brand p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

.footer__right {
  text-align: right;
}

.footer__cta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__email {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.footer__email:hover { color: var(--gold); }

.footer__socials {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer__socials a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ---------------------------------------------------------
   25. Back to Top
--------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  box-shadow: 0 4px 14px rgba(255, 195, 233, 0.55);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover { transform: translateY(-3px); }

/* ---------------------------------------------------------
   26. Scroll Reveal Animation
--------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal--right {
  transform: translateX(24px);
}

.reveal--left {
  transform: translateX(-24px);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------
   27. Responsive — Tablet (≤900px)
--------------------------------------------------------- */
@media (max-width: 900px) {
  :root { --section-py: 4rem; --gutter: 1.5rem; }

  .intro-strip__inner,
  .school-teaser__inner,
  .about-hero,
  .about-recognition,
  .sp-bio,
  .book-feature,
  .book-feature--reverse,
  .contact-page__inner,
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    direction: ltr;
  }

  .book-feature--reverse { direction: ltr; }

  .about-recognition {
    padding: 2.5rem;
  }

  .sp-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-step {
    grid-template-columns: 80px 1fr;
  }

  .method-step__letter {
    font-size: 3rem;
    padding: 2rem 1rem;
  }

  .footer__inner { gap: 2.5rem; }
  .footer__right { text-align: left; }
  .footer__socials { justify-content: flex-start; }

  .hero__heading { font-size: clamp(3rem, 10vw, 5rem); }
}

/* ---------------------------------------------------------
   28. Responsive — Mobile (≤600px)
--------------------------------------------------------- */
@media (max-width: 600px) {
  :root { --gutter: 1.25rem; }

  /* Nav */
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--cream-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1005;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__link {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    color: var(--dark) !important;
  }

  .nav__link--cta {
    margin-top: 0.5rem;
    padding: 0.85rem 2rem !important;
  }

  .nav__burger { display: flex; }

  /* Hero */
  .hero { min-height: 95svh; align-items: center; }
  .hero__content { max-width: 100%; }
  .hero__actions { flex-direction: column; }

  /* Grids → stacked */
  .keynotes-page__grid,
  .about-pillars__grid,
  .expertise__grid,
  .featured-books__grid,
  .keynotes-preview__grid,
  .ss-pillars__grid,
  .about-initiatives__grid,
  .media-gallery {
    grid-template-columns: 1fr;
  }

  .contact-form__row { grid-template-columns: 1fr; }

  .sp-gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .method-step {
    grid-template-columns: 1fr;
  }

  .method-step__letter {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 1.5rem 2rem;
    justify-content: flex-start;
    font-size: 3.5rem;
  }

  .sp-philosophy { padding: 2.5rem 1.5rem; }
  .sp-philosophy__quote::before { left: 0; }

  .about-recognition { padding: 2rem; }

  .book-feature { gap: 2.5rem; }

  .cta-strip { padding-block: 5rem; }

  .ss-hero { min-height: 70svh; }

  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .media-tabs { gap: 0.35rem; }
  .media-tab { font-size: 0.65rem; padding: 0.4rem 0.9rem; }

  /* Testimonials */
  .testimonials__slide blockquote::before { font-size: 4rem; }

  /* Section headings */
  .section-heading { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}

/* ---------------------------------------------------------
   29. Print Styles
--------------------------------------------------------- */
@media print {
  .nav, .back-to-top, .hero__scroll-hint { display: none; }
  .hero { min-height: auto; padding: 2rem; }
  .hero__overlay { display: none; }
  .hero__content { color: var(--dark); }
  * { animation: none !important; transition: none !important; }
}
