/* ═══════════════════════════════════════════════════
   DR. MARK LUCKIE — LUXURY PERSONAL BRAND WEBSITE
   Design System: Apple-meets-luxury editorial
═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D08A;
  --gold-dark:   #8B6914;
  --black:       #090909;
  --charcoal:    #141414;
  --slate:       #1E1E1E;
  --mid-grey:    #3A3A3A;
  --grey:        #8A8A8A;
  --light-grey:  #D0D0D0;
  --off-white:   #F5F2ED;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-ui:      'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:       68px;
  --radius:      12px;
  --radius-lg:   24px;
  --transition:  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.22s ease;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.15);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.25);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── CONTAINER ── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-label::before { display: none; }
.section-header .section-sub { margin-inline: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--gold-light); }

.btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(9,9,9,0.65);
  backdrop-filter: blur(12px);
}
#navbar.scrolled {
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(20px, 5vw, 80px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.logo-dr {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--gold-light);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}
/* Blurred backdrop fills the dark bars — the main image sits on top unclipped */
.hero-slide-backdrop {
  position: absolute;
  inset: -40px;               /* extra bleed so blurred edges don't show */
  background-size: cover;
  background-position: center center;
  filter: blur(22px) brightness(0.35) saturate(0.6);
  transform: scale(1.08);     /* prevents blur edge artifacts */
  pointer-events: none;
  z-index: 0;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;        /* vertically centre the image in the frame */
  justify-content: center;
  z-index: 1;
}
.hero-slide-img img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;        /* NEVER crops — full image always visible */
  display: block;
  pointer-events: none;
  user-select: none;
}
/* On wide viewports shift image to the right so text column on the left stays readable */
@media (min-width: 900px) {
  .hero-slide-img {
    justify-content: flex-end;
    padding-right: clamp(20px, 4vw, 80px);
  }
  .hero-slide-img img {
    width: auto;
    height: 92%;
    max-width: 52%;           /* image occupies right half of screen */
  }
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Strong dark left panel for text legibility; right side lets image show through */
  background: linear-gradient(
    105deg,
    rgba(9,9,9,0.92) 0%,
    rgba(9,9,9,0.75) 35%,
    rgba(9,9,9,0.30) 60%,
    rgba(9,9,9,0.10) 100%
  );
  z-index: 2;   /* sits above the backdrop AND the image layer */
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-inline: clamp(24px, 6vw, 120px);
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 140px;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.eyebrow-text {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}
.eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: 1.4rem;
}
.title-line {
  display: block;
  color: var(--white);
  opacity: 0;
  transform: translateY(40px);
}
.title-line.line-1 {
  font-size: clamp(3.2rem, 9vw, 9rem);
  letter-spacing: -0.02em;
  animation: fadeUp 1s ease 0.5s forwards;
}
.title-line.line-2 {
  font-size: clamp(3.2rem, 9vw, 9rem);
  letter-spacing: -0.02em;
  color: var(--gold);
  font-style: italic;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.9s forwards;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.hero-quote-gold { color: var(--gold); font-style: italic; }

.hero-sub {
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1.0s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.3s forwards;
}
.hero-trust-strip span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-strip .fa-check-circle { color: var(--gold); font-size: 0.7rem; }

/* Start Here nav link */
.nav-start-here {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: calc(var(--hero-stats-h, 80px) + 40px);
  right: clamp(24px, 5vw, 80px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.9s ease 1.4s forwards;
}
.hero-scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(9,9,9,0.82);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 22px 20px;
  opacity: 0;
  animation: fadeIn 0.9s ease 1.5s forwards;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 8px 20px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--gold);
}
.stat-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* Slide dots — positioned above the stats bar */
.hero-slide-dots {
  position: absolute;
  bottom: calc(var(--hero-stats-h, 80px) + 20px);
  left: clamp(24px, 6vw, 120px);
  transform: none;
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.4s, transform 0.4s;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-bar {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-track .dot { font-size: 0.5rem; color: rgba(0,0,0,0.4); }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-images {
  position: relative;
  padding-bottom: 180px; /* room for overlapping photos + buttons */
}
.about-img-main {
  width: 90%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-img-third {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 42%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;   /* InfluencingU shot: show face + peace sign */
  display: block;
  transition: transform 0.5s ease;
}
.about-img-accent:hover img { transform: scale(1.05); }
.about-img-third img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;   /* Blue window shot: face is center-bottom of frame */
  display: block;
  transition: transform 0.5s ease;
}
.about-img-third:hover img { transform: scale(1.05); }
.about-img-badge {
  position: absolute;
  top: 30px; right: 0;
  z-index: 3;
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.about-img-badge span:first-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.badge-label {
  font-family: var(--font-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
}

/* Buttons anchored to the bottom of the image column */
.about-img-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 1.5rem;
}

.about-content { padding-top: 20px; }
.about-body {
  margin-bottom: 2rem;
}
.about-body p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}
.about-body strong { color: var(--white); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}
.tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 16px;
  border-radius: 100px;
  transition: var(--transition-fast);
}
.tag:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ══════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════ */
#philosophy {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: saturate(0.3);
}
.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,0.88) 0%,
    rgba(9,9,9,0.75) 50%,
    rgba(9,9,9,0.88) 100%
  );
}
.philosophy-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.mega-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin: 1.5rem 0 1rem;
}
.mega-quote em { color: var(--gold); }
.philosophy-sub {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5rem;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 4rem;
}
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
  text-align: center;
}
.pillar:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.pillar-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.pillar:hover .pillar-icon {
  background: var(--gold);
}
.pillar-icon i {
  font-size: 1.3rem;
  color: var(--gold);
  transition: color var(--transition-fast);
}
.pillar:hover .pillar-icon i { color: var(--black); }
.pillar h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.pillar p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   BOOKS
══════════════════════════════════════ */
#books {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--black);
  position: relative;
}
#books::after {
  content: 'BOOKS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.book-card {
  position: relative;
  transition: transform var(--transition);
}
.book-card:hover { transform: translateY(-12px); }

.book-cover-wrap {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.2rem;
}
.book-cover {
  transition: transform 0.6s ease;
}
.book-card:hover .book-cover { transform: scale(1.05); }

.book-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,9,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.book-card:hover .book-overlay { opacity: 1; }

.book-card.featured .book-cover-wrap {
  box-shadow: 0 20px 60px rgba(201,168,76,0.3);
}
.book-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 16px; left: -8px;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gold);
  color: var(--black);
  padding: 5px 14px;
  z-index: 2;
}

.book-info { padding: 0 4px; }
.book-tag {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.book-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.book-info p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   SPEAKING
══════════════════════════════════════ */
#speaking {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#speaking::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.speaking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.speaking-content p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  line-height: 1.85;
}

.speaking-topics {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.topic-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.topic-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.speaking-images {
  position: relative;
}
.speaking-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.speaking-img-media {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 55%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--charcoal);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.media-badge {
  position: absolute;
  inset: 0;
  background: rgba(9,9,9,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.8rem;
}
.media-badge i { color: var(--gold); font-size: 1.2rem; }
.media-badge span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.media-badge strong { color: var(--gold); }

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
#media {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--black);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item.g-tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.g-wide { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item img {
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.8), transparent);
  padding: 24px 16px 16px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  top: -80px; left: 5%;
  font-family: var(--font-display);
  font-size: 30rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-carousel {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial {
  display: none;
  animation: fadeIn 0.6s ease;
}
.testimonial.active { display: block; }

.testimonial-stars {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.testimonial-author strong {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 3rem;
}
.t-prev, .t-next {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 0.85rem;
}
.t-prev:hover, .t-next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}
.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.3);
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,9,9,0.97) 0%,
    rgba(9,9,9,0.92) 55%,
    rgba(9,9,9,0.7) 100%
  );
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content .section-title { margin-bottom: 1.2rem; }
.contact-desc {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2.5rem;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.contact-detail-item i { color: var(--gold); font-size: 1rem; width: 20px; }

.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* FORM */
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(10px);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  resize: vertical;
  outline: none;
  appearance: none;
}
.form-group select option { background: var(--slate); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--gold);
  font-size: 0.9rem;
  font-family: var(--font-ui);
}
.form-success.show { display: flex; animation: fadeIn 0.5s ease; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.8;
  margin: 1.2rem 0 1.8rem;
  max-width: 280px;
}
.footer-logo { margin-bottom: 0; }

.footer-links-col h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color var(--transition-fast);
}
.footer-links-col a:hover { color: var(--white); padding-left: 4px; }

.footer-newsletter h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-newsletter p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--gold);
  color: var(--black);
  padding: 14px 20px;
  font-size: 0.9rem;
  transition: background var(--transition-fast);
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-disclaimer { font-size: 0.72rem !important; font-style: italic; }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}
[data-reveal="up"]    { transform: translateY(50px); }
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid,
  .speaking-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .speaking-images { max-width: 500px; }
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .philosophy-pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.g-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw; max-width: 320px;
    height: 100svh;
    background: rgba(14,14,14,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: var(--nav-h) 40px 40px;
    transition: right var(--transition);
    border-left: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; }
  .nav-link.nav-cta { width: 100%; text-align: center; }

  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 50%; }

  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 20px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.g-tall { grid-row: span 1; aspect-ratio: 1; }
  .gallery-item.g-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-pillars { grid-template-columns: 1fr 1fr; }
  .speaking-img-media { display: none; }
  .about-img-accent { width: 45%; right: -10px; }
  .about-img-third { display: none; }
  .about-img-actions { position: static; width: 100%; padding-top: 1rem; }
  .about-images { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .books-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 0 0 100%; }
}
