/* ═══════════════════════════════════════════════════════════
   WOMEN AUTHORS FORUM AFRICA — style.css
   Palette: Black · Gold · Burnt Orange · White · Ivory
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black:       #0D0D0D;
  --dark:        #1A1A1A;
  --charcoal:    #2C2C2C;
  --gold:        #C9913A;
  --gold-deep:   #A67728;
  --gold-light:  #DBA94A;
  --orange:      #E8703A;
  --orange-deep: #C45A28;
  --ivory:       #F5F0E8;
  --ivory-dark:  #EDE5D4;
  --white:       #FFFFFF;
  --text-muted:  #888;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container:   1200px;
  --radius:      4px;
  --transition:  0.3s ease;
}


/* ══════════════════════════════════════════════════════════
   HERO ZOOM & PAN ANIMATIONS
   Cinematic Ken Burns effect on all hero/banner images
   ══════════════════════════════════════════════════════════ */

/* Book cover — subtle zoom in, stays right */
@keyframes bookZoom {
  0%   { background-size: 52% auto; background-position: 96% center; }
  100% { background-size: 58% auto; background-position: 94% center; }
}

/* Zoom in + pan right */
@keyframes zoomPanRight {
  0%   { transform: scale(1.0) translateX(0); }
  100% { transform: scale(1.12) translateX(-3%); }
}
/* Zoom in + pan left */
@keyframes zoomPanLeft {
  0%   { transform: scale(1.0) translateX(0); }
  100% { transform: scale(1.12) translateX(3%); }
}
/* Zoom in + pan up */
@keyframes zoomPanUp {
  0%   { transform: scale(1.0) translateY(0); }
  100% { transform: scale(1.12) translateY(-3%); }
}
/* Zoom in + pan down */
@keyframes zoomPanDown {
  0%   { transform: scale(1.0) translateY(0); }
  100% { transform: scale(1.12) translateY(3%); }
}
/* Slow zoom only — for page hero banners */
@keyframes zoomOnly {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--orange); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn--sm { padding: 0.6rem 1.3rem; font-size: 0.75rem; }
.btn--full { width: 100%; text-align: center; display: block; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo — image only, no text */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.nav__logo-text { display: none !important; }
.nav__logo-main, .nav__logo-sub { display: none !important; }

/* Menu — pill buttons */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: visible;
}
.nav__menu a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__menu a:hover,
.nav__menu a.nav--active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.nav__cta {
  margin-left: 0.5rem;
  flex-shrink: 0;
  border-radius: 50px !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.72rem !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* Mobile menu */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
}
.nav__mobile-overlay.active { display: block; }
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--black);
  border-left: 1px solid rgba(201,145,58,0.3);
  z-index: 1002;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.nav__mobile.active { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.2rem; }
.nav__mobile ul li a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav__mobile ul li a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* ── HERO SLIDER — FULL SCREEN ───────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;          /* Fixed height — NEVER changes */
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: var(--black);
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;           /* Fills hero exactly */
}

/* ALL slides position:absolute — they NEVER affect document height */
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.hero__slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 2;
}
.hero__slide.leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Full-screen background image */
.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  /* Default animation — overridden per slide below */
  animation: zoomPanRight 8s ease-out forwards;
}
/* Different pan direction per slide for variety */
.hero__slide:nth-child(1) .hero__slide-bg { animation-name: zoomPanRight; }
.hero__slide:nth-child(2) .hero__slide-bg { animation-name: zoomPanLeft; }
.hero__slide:nth-child(3) .hero__slide-bg { animation-name: zoomPanUp; }
.hero__slide:nth-child(4) .hero__slide-bg { animation-name: zoomPanDown; }
.hero__slide:nth-child(5) .hero__slide-bg { animation-name: zoomPanRight; }
/* Restart animation when slide becomes active (handled in JS) */

/* 50% dark overlay — default */
.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
/* Book slides — medium overlay, book imagery still vivid */
.hero__slide--book .hero__slide-overlay {
  background: rgba(0,0,0,0.45);
}
/* Book slides — full screen cover, zoom-pan via data attribute */
.hero__slide--book .hero__slide-bg {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
/* Pan directions set via data-pan attribute (set in HTML) */
.hero__slide-bg[data-pan="right"] { animation: zoomPanRight 9s ease-out forwards; }
.hero__slide-bg[data-pan="left"]  { animation: zoomPanLeft  9s ease-out forwards; }
.hero__slide-bg[data-pan="up"]    { animation: zoomPanUp    9s ease-out forwards; }
.hero__slide-bg[data-pan="down"]  { animation: zoomPanDown  9s ease-out forwards; }

/* Left-aligned content — vertically centred by flexbox on parent */
.hero__slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  padding: 120px clamp(1.5rem, 4vw, 4rem) 80px clamp(1.5rem, 6vw, 8rem);
}
.hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__pull-quote {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
}
.hero__pull-attr {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
  text-transform: uppercase;
}

/* Slider controls */
.hero__controls {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 6vw, 8rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}
.hero__dots { display: flex; gap: 0.5rem; align-items: center; }
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.hero__dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
.hero__arrow {
  color: var(--white);
  font-size: 1.2rem;
  padding: 0.5rem;
  opacity: 0.5;
  transition: opacity var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.hero__arrow:hover { opacity: 1; color: var(--gold); }
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}
.hero__scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
}

/* PAGE HERO BANNER — inner pages, full width with real photo */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  animation: zoomOnly 10s ease-out forwards;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 520px;
}
.page-hero--queens .page-hero__overlay { background: rgba(0,0,0,0.6); }

/* Hero mobile */
@media (max-width: 768px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 1rem; }

  .hero__slide-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 76px;
  }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__text { font-size: 0.9rem; }
  .hero__btns { flex-direction: column; gap: 0.75rem; }
  .hero__btns .btn { width: 100%; text-align: center; }
  .hero__controls { left: 1.5rem; }

  .page-hero { padding: 8rem 0 3rem; min-height: 260px; }
  .page-hero__title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.8rem, 10vw, 2.5rem); }
}

/* ── WOMAN OF THE MONTH ──────────────────────────────────── */
.wotm {
  background: var(--dark);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 4rem 0;
}
.wotm__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.wotm__badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wotm__badge-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  color: var(--black);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wotm__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.wotm__tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.wotm__bio { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.25rem; }
.wotm__quote-block {
  padding-left: 2rem;
  border-left: 3px solid var(--orange);
}
.wotm__quote {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.wotm__quote-attr {
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--ivory);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about__lead {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.about__body {
  color: #555;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.about__pillars { display: flex; flex-direction: column; gap: 1.25rem; }
.about__pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__pillar strong { display: block; color: var(--dark); margin-bottom: 0.2rem; }
.about__pillar p { font-size: 0.85rem; color: #666; margin: 0; }

/* Timeline */
.about__timeline { }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 2rem;
  bottom: 0;
  width: 2px;
  background: var(--ivory-dark);
}
.timeline__item:last-child::before { display: none; }
.timeline__year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  padding-right: 1rem;
  padding-top: 0.15rem;
  position: relative;
}
.timeline__year::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline__item--current .timeline__year { color: var(--orange); }
.timeline__item--current .timeline__year::after { background: var(--orange); }
.timeline__content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.timeline__content p { font-size: 0.85rem; color: #666; }

/* ── QUEENS OF EXCELLENCE ────────────────────────────────── */
.queens { background: var(--black); padding: 7rem 0 5rem; }
.queens__header { margin-bottom: 4rem; }
.queens__intro {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 500px;
}
.queens__phases {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 5rem;
}
.queens__phase {
  flex: 1;
  padding: 2.5rem;
  border: 1px solid rgba(201,145,58,0.2);
  background: rgba(201,145,58,0.04);
}
.queens__phase-divider {
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  padding-top: 4rem;
  opacity: 0.4;
}
.queens__phase-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.queens__phase h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.queens__phase p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

.queens__categories { margin-top: 1rem; }
.queens__categories .section-eyebrow { margin-bottom: 1.5rem; }
.queens__cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.queens__cat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.queens__cat:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,145,58,0.05);
}

/* ── LEGACY WALL ─────────────────────────────────────────── */
.legacy {
  background: var(--ivory);
  padding: 6rem 0;
}
.legacy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.legacy__card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.legacy__card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,145,58,0.12);
}
.legacy__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 auto 1rem;
}
.legacy__card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.legacy__card span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── AUTHORS ─────────────────────────────────────────────── */
.authors { padding: 7rem 0; background: var(--white); }
.authors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.author-card {
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.author-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(201,145,58,0.1);
  transform: translateY(-4px);
}
.author-card__img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-card__initials {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.author-card__body { padding: 1.75rem; }
.author-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.author-card__genre {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.author-card__body p { font-size: 0.85rem; color: #666; margin-bottom: 1rem; }
.author-card__books {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

/* ── BOOK STORE ──────────────────────────────────────────── */
.bookstore {
  padding: 7rem 0;
  background: var(--dark);
}
.bookstore .section-eyebrow { color: var(--gold-light); }
.bookstore .section-title { color: var(--white); }
.bookstore .section-title em { color: var(--orange); }

.bookstore__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.search-input {
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 280px;
  transition: border-color var(--transition);
}
.search-input::placeholder { color: rgba(255,255,255,0.35); }
.search-input:focus {
  outline: none;
  border-color: var(--gold);
}

.books__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.book-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.book-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.book-card__cover {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
}
.book-cover--1  { background: linear-gradient(135deg, #C9913A, #8B6020); }
.book-cover--2  { background: linear-gradient(135deg, #1A1A1A, #C9913A); }
.book-cover--3  { background: linear-gradient(135deg, #E8703A, #C9913A); }
.book-cover--4  { background: linear-gradient(135deg, #C9913A, #E8703A); }
.book-cover--5  { background: linear-gradient(135deg, #2C1810, #C9913A); }
.book-cover--6  { background: linear-gradient(135deg, #0D0D0D, #E8703A); }
.book-cover--7  { background: linear-gradient(135deg, #8B6020, #1A1A1A); }
.book-cover--8  { background: linear-gradient(135deg, #C9913A, #2C1810); }
.book-cover--9  { background: linear-gradient(135deg, #E8703A, #0D0D0D); }
.book-cover--10 { background: linear-gradient(135deg, #1A1A1A, #E8703A); }
.book-card__cover-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.3;
}
.book-card__body { padding: 1.5rem; }
.book-card__body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.book-card__author {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.book-card__body p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.book-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.book-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

/* Cart toast */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.cart-toast.show { opacity: 1; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 1.1rem;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.modal__book {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.modal__secure {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.75rem;
}

/* ── EVENTS ──────────────────────────────────────────────── */
.events {
  padding: 7rem 0;
  background: var(--ivory);
}
.events__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}
.event-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,145,58,0.12);
  transform: translateY(-3px);
}
.event-card--featured {
  background: var(--dark);
  border-color: var(--gold);
  border-width: 2px;
}
.event-card--featured .event-card__body h3 { color: var(--white); }
.event-card--featured .event-card__body p { color: rgba(255,255,255,0.6); }
.event-card--featured .event-card__meta span { color: rgba(255,255,255,0.5); }
.event-card__date-badge {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.event-card__day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.event-card__month {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.event-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201,145,58,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,145,58,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.event-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.event-card__body p { font-size: 0.85rem; color: #666; margin-bottom: 1rem; }
.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.event-card__meta span { font-size: 0.78rem; color: #888; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { padding: 7rem 0; background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 1rem;
}
.gallery__item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item--lg { grid-column: span 2; }
.gallery__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__label { opacity: 1; }
.gallery__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #aaa;
}
.gallery__note code {
  background: var(--ivory);
  padding: 0.1em 0.4em;
  border-radius: 2px;
  font-size: 0.72rem;
}

/* ── BLOG ────────────────────────────────────────────────── */
.blog { padding: 7rem 0; background: var(--ivory); }
.blog__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
  align-items: start;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201,145,58,0.1);
}
.blog-card--featured {
  background: var(--dark);
  border-color: rgba(201,145,58,0.3);
}
.blog-card--featured h3 { color: var(--white); }
.blog-card--featured p { color: rgba(255,255,255,0.55); }
.blog-card--featured .blog-card__meta span { color: rgba(255,255,255,0.35); }
.blog-card__cat {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.blog-card p { font-size: 0.85rem; color: #666; margin-bottom: 1rem; }
.blog-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 1rem;
}
.blog-card__read {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.blog-card__read:hover { color: var(--orange); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { padding: 7rem 0; background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact__intro {
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__detail-icon {
  font-size: 1.2rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,145,58,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact__detail a, .contact__detail span { font-size: 0.9rem; color: var(--charcoal); }
.contact__detail a:hover { color: var(--gold); }

/* Newsletter */
.newsletter {
  padding: 1.5rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.newsletter h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.newsletter p { font-size: 0.82rem; color: #777; margin-bottom: 1rem; }
.newsletter__form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color var(--transition);
}
.newsletter__form input:focus { outline: none; border-color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(201,145,58,0.2);
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
}

/* Shared form styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
/* Light form labels for checkout */
.checkout-form .form-group label { color: var(--charcoal); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  transition: border-color var(--transition);
  appearance: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
/* Light form fields for checkout */
.checkout-form .form-group input,
.checkout-form .form-group textarea {
  background: var(--ivory);
  border-color: var(--ivory-dark);
  color: var(--dark);
}
.checkout-form .form-group input::placeholder,
.checkout-form .form-group textarea::placeholder { color: #bbb; }
.checkout-form .form-group input:focus,
.checkout-form .form-group textarea:focus { border-color: var(--gold); }

/* Radio & Checkbox groups */
.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
/* Single column inside form sections always */
.form-section .checkbox-group {
  grid-template-columns: 1fr;
  gap: 0.35rem;
}
.radio-option, .checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.radio-option:hover, .checkbox-option:hover {
  border-color: rgba(201,145,58,0.4);
  background: rgba(201,145,58,0.04);
}
.radio-option input, .checkbox-option input {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: auto;
  padding: 0;
  background: none;
  border: none;
}
.radio-option span, .checkbox-option span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--black); }
.footer__top { padding: 5rem 0 3rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer__logo-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  display: block;
  margin-bottom: 1rem;
}
.footer__col--brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  max-width: 240px;
}
.footer__socials { display: flex; gap: 0.75rem; }
.footer__social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition);
}
.footer__social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--gold); }
.footer__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.footer__gallery-thumb {
  aspect-ratio: 1;
  border-radius: 2px;
}
.footer__contact-items { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact-items p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; line-height: 1.6; }
.footer__contact-items strong { color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.footer__contact-items a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__contact-items a:hover { color: var(--gold); }
.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .queens__phases { flex-direction: column; }
  .queens__phase-divider { padding: 0; transform: rotate(90deg); align-self: center; }
  .events__grid { grid-template-columns: 1fr 1fr; }
  .events__grid .event-card--featured { grid-column: span 2; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .blog__grid .blog-card--featured { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .wotm__inner { grid-template-columns: auto 1fr; }
  .wotm__quote-block { grid-column: 1/-1; padding-left: 0; border-left: none; border-top: 3px solid var(--orange); padding-top: 1.5rem; }
}

@media (max-width: 768px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__slide { flex-direction: column; justify-content: center; text-align: center; padding-top: 2rem; }
  .hero__visual { display: none; }
  .hero__text { margin: 0 auto 2rem; }

  .wotm__inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .wotm__badge { margin: 0 auto; }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .events__grid { grid-template-columns: 1fr; }
  .events__grid .event-card--featured { grid-column: span 1; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--lg { grid-column: span 2; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog__grid .blog-card--featured { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .bookstore__header { flex-direction: column; align-items: flex-start; }
  .search-input { width: 100%; }
  .modal { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .about, .queens, .legacy, .authors, .bookstore, .events, .gallery, .blog, .contact { padding: 5rem 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--lg { grid-column: span 1; }
  .authors__grid { grid-template-columns: 1fr; }
  .books__grid { grid-template-columns: 1fr; }
  .queens__cat-grid { grid-template-columns: repeat(2, 1fr); }
  .legacy__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════
   BOOK COMBO SPECIAL SECTION
   ══════════════════════════════════════════════════════════ */

.combo {
  background: var(--black);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.combo__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(201,145,58,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}
.combo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.combo__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.combo__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.combo__title em {
  font-style: italic;
  color: var(--gold);
}
.combo__author {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
.combo__author strong { color: var(--gold-light); }

.combo__books {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.combo__book-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,145,58,0.15);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.combo__book-item:hover { border-color: rgba(201,145,58,0.4); }
.combo__book-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1.3;
}
.combo__book-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.combo__book-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.combo__reading-note {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  margin-bottom: 2.5rem;
}
.combo__reading-note em { color: var(--gold-light); font-style: normal; }
.combo__reading-note strong { color: var(--white); font-style: normal; }

.combo__cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.combo__price-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
}
.combo__price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.combo__price-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.combo__buy-btn {
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
  border: 2px solid var(--gold);
}

/* Right side — image */
.combo__right { display: flex; justify-content: center; }
.combo__image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.combo__image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,145,58,0.2);
  display: block;
}
.combo__image-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}

/* CTA Strip */
.cta-strip {
  background: var(--gold);
  padding: 5rem 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.cta-strip__title em { font-style: italic; color: var(--white); }
.cta-strip__text { color: rgba(0,0,0,0.6); font-size: 0.95rem; max-width: 440px; }
.cta-strip__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn--outline-white {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--outline-white:hover { background: var(--black); color: var(--gold); }

/* Combo responsive */
@media (max-width: 900px) {
  .combo__inner { grid-template-columns: 1fr; gap: 3rem; }
  .combo__right { order: -1; }
  .combo__image-wrap { max-width: 400px; }
}
@media (max-width: 480px) {
  .combo__cta-row { flex-direction: column; align-items: flex-start; }
  .combo__price-badge { width: 100%; }
  .combo__buy-btn { width: 100%; text-align: center; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .cta-strip__actions { justify-content: center; }
  .cta-strip__text { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   ══════════════════════════════════════════════════════════ */

/* Utility section backgrounds */
.section-pad       { padding: 6rem 0; }
.bg-ivory          { background: var(--ivory); }
.bg-black          { background: var(--black); }
.bg-dark           { background: var(--dark); }
.bg-white          { background: var(--white); }

/* Active nav link */
.nav--active { color: var(--gold) !important; }

/* Page hero (inner pages) */
/* page-hero defined in nav/hero section above */

/* Queens phases full */
.queens__phases--full { margin-top: 2.5rem; }

/* Queens category cards */
.queens__cat-grid--full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.queens__cat-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.queens__cat-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(201,145,58,0.1); transform: translateY(-3px); }
.queens__cat-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.queens__cat-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.queens__cat-card p { font-size: 0.82rem; color: #666; line-height: 1.6; }

/* Timeline wide (about page) */
.timeline--wide .timeline__item { grid-template-columns: 100px 1fr; }
.timeline--wide .timeline__item::before { left: 49px; }
.timeline--wide .timeline__year::after { right: -6px; }

/* Author feature (authors page) */
.author-feature {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}
.author-feature__visual {
  height: 360px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-feature__initials { font-family: var(--font-display); font-size: 5rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.author-feature__name { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.author-feature__genre { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.author-feature__content p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 0.75rem; line-height: 1.7; }
.author-feature__stats { display: flex; gap: 2rem; margin: 1.5rem 0; }
.author-feature__stats .stat-num { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.author-feature__stats .stat-lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.authors__grid--full { grid-template-columns: repeat(3, 1fr); }

/* Events full grid */
.events__grid--full { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.events__grid--full .event-card--featured { grid-column: span 2; }

/* Past events */
.past-events { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.past-event { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.past-event:last-child { border-bottom: none; }
.past-event__year { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gold); opacity: 0.6; padding-top: 0.15rem; }
.past-event__content h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.past-event__content p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* Gallery full */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filter {
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ivory-dark);
  border-radius: 2px;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter:hover, .gallery-filter.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gallery__grid--full { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }

/* Blog full */
.blog-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.blog-cat-btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ivory-dark);
  border-radius: 2px;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all var(--transition);
}
.blog-cat-btn:hover, .blog-cat-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.blog__grid--full { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
.blog__grid--full .blog-card--featured { grid-column: span 2; }

/* Queens snapshot (homepage) */
.queens-snap { background: var(--black); padding: 6rem 0; }
.queens-snap__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
.queens-snap__text { color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.queens-snap__phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.queens-snap__phase {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,145,58,0.15);
  border-radius: var(--radius);
  background: rgba(201,145,58,0.03);
}
.queens-snap__phase-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); opacity: 0.3; display: block; line-height: 1; margin-bottom: 0.5rem; }
.queens-snap__phase h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; }
.queens-snap__phase p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Combo banner (books page) */
.combo-banner { background: var(--gold); padding: 1.5rem 0; }
.combo-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.combo-banner__tag { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; color: rgba(0,0,0,0.6); }
.combo-banner__text h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 0.2rem; }
.combo-banner__text h3 em { font-style: italic; }
.combo-banner__text p { font-size: 0.82rem; color: rgba(0,0,0,0.6); }
.combo-banner .btn--gold { background: var(--black); border-color: var(--black); color: var(--gold); }
.combo-banner .btn--gold:hover { background: var(--dark); border-color: var(--dark); }

/* Hero ghost button */
.btn--ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__pull-attr { display: block; font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-top: 0.75rem; text-transform: uppercase; }

/* CTA strip button variants */
.btn--black { display: inline-block; padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); background: var(--black); color: var(--gold); border: 2px solid var(--black); transition: all var(--transition); cursor: pointer; }
.btn--black:hover { background: var(--dark); border-color: var(--dark); }
.btn--outline-black { display: inline-block; padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); background: transparent; color: var(--black); border: 2px solid var(--black); transition: all var(--transition); cursor: pointer; }
.btn--outline-black:hover { background: var(--black); color: var(--gold); }

/* Contact page */

/* ── MULTI-PAGE RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .queens__cat-grid--full { grid-template-columns: repeat(2, 1fr); }
  .authors__grid--full { grid-template-columns: repeat(2, 1fr); }
  .author-feature { grid-template-columns: 240px 1fr; gap: 2.5rem; }
  .events__grid--full { grid-template-columns: 1fr; }
  .events__grid--full .event-card--featured { grid-column: span 1; }
  .gallery__grid--full { grid-template-columns: repeat(3, 1fr); }
  .blog__grid--full { grid-template-columns: repeat(2, 1fr); }
  .blog__grid--full .blog-card--featured { grid-column: span 2; }
  .queens-snap__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .page-hero { padding: 7rem 0 4rem; }
  .queens__cat-grid--full { grid-template-columns: 1fr 1fr; }
  .authors__grid--full { grid-template-columns: 1fr 1fr; }
  .author-feature { grid-template-columns: 1fr; }
  .author-feature__visual { height: 240px; }
  .gallery__grid--full { grid-template-columns: repeat(2, 1fr); }
  .blog__grid--full { grid-template-columns: 1fr; }
  .blog__grid--full .blog-card--featured { grid-column: span 1; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .queens-snap__phases { grid-template-columns: 1fr; }
  .combo-banner__inner { flex-direction: column; text-align: center; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 480px) {
  .section-pad { padding: 4rem 0; }
  .queens__cat-grid--full { grid-template-columns: 1fr; }
  .authors__grid--full { grid-template-columns: 1fr; }
  .gallery__grid--full { grid-template-columns: 1fr; }
  .gallery__item--lg { grid-column: span 1; }
  .past-event { grid-template-columns: 60px 1fr; gap: 1rem; }
  .hero__btns { flex-direction: column; }
  .author-feature__stats { flex-wrap: wrap; gap: 1rem; }
}

/* Combo isiZulu badge item */
.combo__book-item--zulu {
  border-color: rgba(232,112,58,0.3);
  background: rgba(232,112,58,0.04);
}
.combo__book-item--zulu .combo__book-num {
  color: var(--orange);
}

/* ══════════════════════════════════════════════════════════
   MOBILE FIXES — horizontal scroll + form spacing
   ══════════════════════════════════════════════════════════ */

/* ── GLOBAL OVERFLOW FIX ─────────────────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
* {
  max-width: 100%;
}
/* Stop any wide elements breaking out */
.hero__title,
.section-title,
.page-hero__title,
.combo__title,
.combo__bg-text,
.wotm__name,
.cta-strip__title {
  word-break: break-word;
  overflow-wrap: break-word;
}
/* Combo background text causes overflow on mobile */
.combo__bg-text {
  display: none;
}
/* Hero visual panels hidden on mobile already but ensure no overflow */
.hero__visual { overflow: hidden; }

/* ── CONTACT FORM — COLOURED QUESTION SECTIONS ───────────── */
.form-section {
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.form-section__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Section colours */
.form-section--identity   { background: rgba(201,145,58,0.07);  border: 1px solid rgba(201,145,58,0.2); }
.form-section--identity   .form-section__label { color: var(--gold); }

.form-section--type       { background: rgba(232,112,58,0.07);  border: 1px solid rgba(232,112,58,0.2); }
.form-section--type       .form-section__label { color: var(--orange); }

.form-section--genre      { background: rgba(139,96,32,0.1);    border: 1px solid rgba(139,96,32,0.25); }
.form-section--genre      .form-section__label { color: #DBA94A; }

.form-section--experience { background: rgba(201,145,58,0.05);  border: 1px solid rgba(201,145,58,0.15); }
.form-section--experience .form-section__label { color: var(--gold-light); }

.form-section--support    { background: rgba(232,112,58,0.05);  border: 1px solid rgba(232,112,58,0.15); }
.form-section--support    .form-section__label { color: var(--orange); }

.form-section--message    { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.form-section--message    .form-section__label { color: rgba(255,255,255,0.5); }

/* Remove bottom margin from form-groups inside sections */
.form-section .form-group { margin-bottom: 0.75rem; }
.form-section .form-group:last-child { margin-bottom: 0; }

/* ── CONTACT FORM MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Stack contact grid */
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Full width form sections */
  .form-section { padding: 1.25rem; }

  /* Stack form rows */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Checkbox group single column */
  .checkbox-group { grid-template-columns: 1fr; gap: 0.35rem; }

  /* Bigger tap targets for radio/checkbox */
  .radio-option,
  .checkbox-option {
    padding: 0.85rem 1rem;
    min-height: 48px;
    align-items: center;
  }
  .radio-option span,
  .checkbox-option span { font-size: 0.88rem; }

  /* Select full width */
  .form-group select { font-size: 0.88rem; }

  /* Submit button breathing room */
  .contact-form .btn--full { margin-top: 0.5rem; padding: 1rem; font-size: 0.85rem; }
  .form-note { font-size: 0.78rem; margin-top: 1rem; }
}

/* ── GENERAL MOBILE FIXES ────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav__inner { padding: 0 1.25rem; }

  /* Hero */
  .hero__slide {
    padding: 0 1.25rem;
    text-align: left;
  }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero__text  { font-size: 0.88rem; }
  .hero__btns  { flex-direction: column; gap: 0.75rem; }
  .hero__btns .btn { width: 100%; text-align: center; }

  /* Combo section */
  .combo { padding: 4rem 0; }
  .combo__inner { grid-template-columns: 1fr; gap: 2rem; }
  .combo__right { order: -1; }
  .combo__image-wrap { max-width: 100%; }
  .combo__title { font-size: clamp(2rem, 8vw, 3rem); }
  .combo__cta-row { flex-direction: column; gap: 1rem; }
  .combo__price-badge { width: 100%; justify-content: center; }
  .combo__buy-btn { width: 100%; text-align: center; }

  /* Queens snap */
  .queens-snap__inner { grid-template-columns: 1fr; gap: 2rem; }
  .queens-snap__phases { grid-template-columns: 1fr; gap: 1rem; }

  /* CTA strip */
  .cta-strip { padding: 3.5rem 0; }
  .cta-strip__inner { flex-direction: column; text-align: center; gap: 2rem; }
  .cta-strip__actions { justify-content: center; width: 100%; }
  .cta-strip__actions .btn { flex: 1; text-align: center; min-width: 140px; }

  /* WOTM */
  .wotm { padding: 3rem 0; }
  .wotm__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .wotm__badge { margin: 0 auto; }
  .wotm__quote-block { border-left: none; border-top: 3px solid var(--orange); padding: 1.5rem 0 0; }

  /* Sections */
  .section-pad { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom .container { flex-direction: column; text-align: center; gap: 0.35rem; }

  /* Queens phases */
  .queens__phases { flex-direction: column; }
  .queens__phase-divider { transform: rotate(90deg); align-self: center; padding: 0; }

  /* Author feature */
  .author-feature { grid-template-columns: 1fr; }
  .author-feature__visual { height: 200px; }

  /* Events */
  .events__grid { grid-template-columns: 1fr; }
  .events__grid .event-card--featured { grid-column: span 1; }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(2,1fr); }
  .gallery__item--lg { grid-column: span 2; }

  /* Blog */
  .blog__grid { grid-template-columns: 1fr; }
  .blog__grid .blog-card--featured { grid-column: span 1; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline--wide .timeline__item { grid-template-columns: 70px 1fr; }

  /* Legacy */
  .legacy__grid { grid-template-columns: repeat(2,1fr); }

  /* Authors */
  .authors__grid { grid-template-columns: 1fr; }
  .authors__grid--full { grid-template-columns: 1fr; }

  /* Books */
  .books__grid { grid-template-columns: 1fr; }
  .bookstore__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .search-input { width: 100%; }

  /* Combo banner */
  .combo-banner__inner { flex-direction: column; text-align: center; }

  /* Modal */
  .modal { padding: 2rem 1.25rem; margin: 1rem; }
  .modal .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .section-title { font-size: clamp(1.6rem, 7vw, 2rem); }
  .page-hero__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--lg { grid-column: span 1; }
  .legacy__grid { grid-template-columns: repeat(2,1fr); }
  .queens__cat-grid--full { grid-template-columns: 1fr; }
  .footer__gallery-grid { grid-template-columns: repeat(3,1fr); }
  .nav__logo-main { font-size: 0.78rem; }
  .combo-banner .container { padding: 0 1.25rem; }
  .cta-strip__actions { flex-direction: column; }
  .cta-strip__actions .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE — AUTHORITATIVE MOBILE RULES
   (These override everything above for contact on mobile)
   ══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Contact layout */
  .contact__grid    { grid-template-columns: 1fr; gap: 2rem; }
  .contact__left    { order: 2; }
  .contact__right   { order: 1; }

  /* Form sections — tight but breathable */
  .contact-form     { padding: 1.25rem; border-radius: 6px; }
  .contact-form__title { font-size: 1.2rem; margin-bottom: 1.25rem; }
  .form-section     { padding: 1rem; margin-bottom: 1rem; border-radius: 6px; }
  .form-section__label { font-size: 0.68rem; margin-bottom: 0.75rem; padding-bottom: 0.5rem; }

  /* Stack form rows — ALWAYS single column on mobile */
  .form-row         { grid-template-columns: 1fr !important; gap: 0; }

  /* Form groups */
  .form-group       { margin-bottom: 0.75rem; }
  .form-group label { font-size: 0.72rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Checkboxes and radios — single column, big tap targets */
  .checkbox-group,
  .form-section .checkbox-group { grid-template-columns: 1fr; gap: 0.3rem; }
  .radio-group      { gap: 0.3rem; }
  .radio-option,
  .checkbox-option  {
    padding: 0.75rem;
    min-height: 44px;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .radio-option span,
  .checkbox-option span { font-size: 0.85rem; line-height: 1.4; }

  /* Newsletter */
  .newsletter       { padding: 1.25rem; }
  .newsletter__form { flex-direction: column; gap: 0.5rem; }
  .newsletter__form input  { width: 100%; min-width: 0; }
  .newsletter__form .btn   { width: 100%; text-align: center; }

  /* Contact details */
  .contact__details { gap: 1rem; margin-bottom: 1.5rem; }
  .contact__detail  { gap: 0.75rem; }
  .contact__detail a,
  .contact__detail span { font-size: 0.85rem; word-break: break-all; }

  /* Submit button */
  .contact-form .btn--full { font-size: 0.85rem; padding: 0.95rem 1rem; margin-top: 0.25rem; }
  .form-note { font-size: 0.75rem; margin-top: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
  .contact-form     { padding: 1rem; }
  .form-section     { padding: 0.85rem; margin-bottom: 0.85rem; }
  .form-section__label { font-size: 0.65rem; }
  .radio-option span,
  .checkbox-option span { font-size: 0.82rem; }
  .contact__detail a,
  .contact__detail span { font-size: 0.8rem; }
}

/* ══════════════════════════════════════════════════════════
   REAL IMAGES & LOGO UPDATES
   ══════════════════════════════════════════════════════════ */

/* Nav logo with image */
.nav__logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.2; }

/* Hero photo frame */
.hero__photo-frame {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(201,145,58,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Book card with real photo cover */
.book-card__cover--photo {
  height: 280px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.book-card__cover--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.book-card:hover .book-card__cover--photo img {
  transform: scale(1.04);
}
.book-card__lang-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.book-card__lang-badge--zulu {
  background: var(--orange);
  color: var(--white);
}

/* Footer logo image */
.footer__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

/* Branch logos in footer */
.footer__branches { margin: 1rem 0; }
.footer__branches-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.6rem;
}
.footer__branch-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer__branch-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--transition);
  filter: brightness(0.9);
}
.footer__branch-logos img:hover { opacity: 1; }

/* Mobile nav logo */
@media (max-width: 768px) {
  .hero__photo-frame { height: 240px; }
  .book-card__cover--photo { height: 220px; }
}

@media (max-width: 480px) {
  .hero__photo-frame { height: 200px; }
}

/* ══════════════════════════════════════════════════════════
   IMPACT SECTION
   ══════════════════════════════════════════════════════════ */
.impact {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.impact__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* fixed breaks iOS Safari */
}
.impact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.impact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.impact__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.impact__stat {
  padding: 1.5rem;
  border: 1px solid rgba(201,145,58,0.3);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.3);
}
.impact__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.impact__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ══════════════════════════════════════════════════════════
   CTA STRIP — QUOTE VERSION
   ══════════════════════════════════════════════════════════ */
.cta-strip--quote {
  background: var(--gold);
  padding: 5rem 0;
}
.cta-strip__quote-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-strip__quote-img {
  position: relative;
}
.cta-strip__quote-img img {
  width: 100%;
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.cta-strip__blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.cta-strip__cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   FOUNDER SECTION (About page)
   ══════════════════════════════════════════════════════════ */
.founder {
  padding: 7rem 0;
  background: var(--black);
}
.founder__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}
.founder__image-wrap {
  position: relative;
}
.founder__image {
  width: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}
.founder__image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.founder__image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.founder__image-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.founder__content .section-eyebrow { color: var(--gold); }
.founder__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.founder__title {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: block;
}
.founder__bio {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.founder__books {
  margin-top: 2rem;
}
.founder__books-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.founder__books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.founder__book-cover {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,145,58,0.2);
  transition: transform var(--transition);
}
.founder__book-cover:hover { transform: translateY(-4px); }
.founder__book-cover img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .impact__inner { grid-template-columns: 1fr; gap: 3rem; }
  /* impact__bg already scroll — no override needed */
  .cta-strip__quote-inner { grid-template-columns: 200px 1fr; gap: 2.5rem; }
  .founder__inner { grid-template-columns: 1fr; gap: 3rem; }
  .founder__image-badge { right: 0; }
  .founder__books-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .impact__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .impact__num { font-size: 2rem; }
  .cta-strip__quote-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .cta-strip__quote-img { display: flex; justify-content: center; }
  .cta-strip__quote-img img { max-width: 200px; }
  .founder__books-grid { grid-template-columns: repeat(3, 1fr); }
  .founder__book-cover img { height: 130px; }
}
@media (max-width: 480px) {
  .impact__stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .impact__num { font-size: 1.6rem; }
  .founder__books-grid { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
}

/* ── OUTREACH SECTION ──────────────────────────────────── */
.outreach-section { background: var(--dark); }
.outreach-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.outreach-section__image {
  min-height: 480px;
  background-size: cover;
  background-position: center;
}
.outreach-section__content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.outreach-section__content p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.75; }
.outreach-section__content .section-title { color: var(--white); }
.outreach-section__content .section-title em { color: var(--gold); }

/* ── PHOTO STRIP ───────────────────────────────────────── */
.photo-strip { overflow: hidden; }
.photo-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
}
.photo-strip__item {
  background-size: cover;
  background-position: center top;
  transition: transform 0.4s ease;
}
.photo-strip__item:hover { transform: scale(1.03); }

@media (max-width: 768px) {
  .outreach-section__grid { grid-template-columns: 1fr; }
  .outreach-section__image { min-height: 280px; }
  .outreach-section__content { padding: 3rem 1.5rem; }
  .photo-strip__inner { grid-template-columns: repeat(2, 1fr); height: 300px; }
}
@media (max-width: 480px) {
  .photo-strip__inner { grid-template-columns: repeat(2, 1fr); height: 220px; }
}

/* ── EVENTS PHOTO GRID ───────────────────────────────────── */
.events-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
  margin-top: 2rem;
}
.events-photo {
  background-size: cover;
  background-position: center top;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.events-photo:hover { transform: scale(1.02); }
.events-photo--lg { grid-column: span 2; }

/* ── BLOG CARD WITH IMAGE ────────────────────────────────── */
.blog-card--has-img { padding: 0; overflow: hidden; }
.blog-card__img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.blog-card--has-img .blog-card__cat,
.blog-card--has-img h3,
.blog-card--has-img p,
.blog-card--has-img .blog-card__meta,
.blog-card--has-img .blog-card__read {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.blog-card--has-img .blog-card__cat { margin-top: 1.25rem; }
.blog-card--has-img .blog-card__read { margin-bottom: 1.25rem; display: block; }

@media (max-width: 768px) {
  .events-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .events-photo--lg { grid-column: span 2; }
}
@media (max-width: 480px) {
  .events-photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}

/* ══════════════════════════════════════════════════════════
   AUTHORITATIVE MOBILE OVERRIDES
   These sit last in the file and win all conflicts.
   ══════════════════════════════════════════════════════════ */

/* ── Force hide all logo text everywhere ─────────────────── */
.nav__logo-text,
.nav__logo-main,
.nav__logo-sub,
.nav__logo-text * { display: none !important; }

/* ── DESKTOP NAV (>768px) ────────────────────────────────── */
@media (min-width: 769px) {
  .nav__logo-img  { height: 48px; max-width: 160px; }
  .nav__hamburger { display: none !important; }
  .nav__menu      { display: flex !important; }
  .nav__cta       { display: inline-block !important; }
}

/* ── TABLET (481px – 768px) ──────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav__inner {
    padding: 0 1rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav__logo-img  { height: 38px !important; max-width: 120px !important; }
  .nav__menu      { display: none !important; }
  .nav__cta       { display: none !important; }
  .nav__hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  /* Mobile drawer */
  .nav__mobile {
    width: 85vw;
    max-width: 320px;
  }
  .nav__mobile ul li a {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 50px;
    margin-bottom: 0.3rem;
    background: transparent;
    transition: all 0.2s ease;
  }
  .nav__mobile ul li a:hover,
  .nav__mobile ul li a.nav--active {
    background: var(--gold);
    color: var(--black);
  }

  /* Hero */
  .hero {
    height: 100svh;         /* svh = small viewport height — accounts for mobile browser chrome */
    height: 100vh;          /* fallback */
    min-height: 500px;
    max-height: 700px;
  }
  .hero__slides { height: 100%; }
  .hero__slide {
    padding: 0;             /* no padding — content centred by flexbox */
  }
  .hero__slide-bg {
    background-attachment: scroll !important;
    -webkit-background-attachment: scroll !important;
  }
  .hero__slide-content {
    padding: 80px 1.25rem 2rem;
    max-width: 100%;
  }
  .hero__title    { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero__text     { font-size: 0.88rem; max-width: 100%; }
  .hero__btns     { flex-direction: column; gap: 0.6rem; }
  .hero__btns .btn { width: 100%; text-align: center; }
  .hero__controls { left: 1.25rem; bottom: 1.5rem; }
  .hero__scroll-hint { display: none; }

  /* Page hero banners */
  .page-hero {
    padding: 7rem 1.25rem 2.5rem;
    min-height: 220px;
  }
  .page-hero__bg {
    background-attachment: scroll !important;
    -webkit-background-attachment: scroll !important;
    animation-duration: 12s;
  }
  .page-hero__title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .page-hero__sub   { font-size: 0.88rem; }

  /* Book store — 2 columns */
  .books__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
  .book-card__cover--photo { height: 180px; }

  /* Combo section */
  .combo__inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .combo__right { order: -1; }
  .combo__image-wrap { max-width: 100%; }
  .combo__image { border-radius: 6px; }
  .combo__cta-row { flex-direction: column; gap: 1rem; }
  .combo__price-badge { width: 100%; justify-content: center; }
  .combo__buy-btn { width: 100%; text-align: center; }
  .combo__bg-text { display: none !important; }

  /* Founder — stack image top, text below */
  .founder__inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .founder__image { max-width: 280px; margin: 0 auto; display: block; }
  .founder__image-badge { right: 0; bottom: 0; }
  .founder__books-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.75rem; }
  .founder__book-cover img { height: 120px; }

  /* Outreach split */
  .outreach-section__grid { grid-template-columns: 1fr !important; }
  .outreach-section__image { min-height: 240px; }
  .outreach-section__content { padding: 2.5rem 1.25rem; }

  /* Impact section */
  .impact__inner  { grid-template-columns: 1fr !important; gap: 2.5rem; }
  .impact__stats  { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .impact__num    { font-size: 2rem; }
  .impact__bg     { background-attachment: scroll !important; }

  /* CTA quote strip */
  .cta-strip__quote-inner { grid-template-columns: 1fr !important; text-align: center; gap: 1.5rem; }
  .cta-strip__quote-img   { display: flex; justify-content: center; }
  .cta-strip__quote-img img { max-width: 180px; }
  .cta-strip__blockquote  { font-size: 1.2rem; }
  .cta-strip__actions     { justify-content: center; flex-wrap: wrap; }

  /* CTA strip regular */
  .cta-strip__inner { flex-direction: column !important; text-align: center; gap: 1.5rem; }
  .cta-strip__actions .btn { min-width: 140px; }

  /* Queens snap */
  .queens-snap__inner  { grid-template-columns: 1fr !important; gap: 2rem; }
  .queens-snap__phases { grid-template-columns: 1fr !important; gap: 1rem; }

  /* Photo strip */
  .photo-strip__inner { grid-template-columns: repeat(2, 1fr) !important; height: 220px; }

  /* Events photo grid */
  .events-photo-grid { grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: 160px; }
  .events-photo--lg  { grid-column: span 2 !important; }

  /* About grid */
  .about__grid { grid-template-columns: 1fr !important; gap: 2rem; }

  /* Authors grid */
  .authors__grid,
  .authors__grid--full { grid-template-columns: 1fr !important; }

  /* Author feature */
  .author-feature { grid-template-columns: 1fr !important; }
  .author-feature__visual { height: 200px; }

  /* Gallery */
  .gallery__grid,
  .gallery__grid--full { grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: 160px; }
  .gallery__item--lg   { grid-column: span 2 !important; }

  /* Blog */
  .blog__grid,
  .blog__grid--full { grid-template-columns: 1fr !important; }
  .blog__grid--full .blog-card--featured { grid-column: span 1 !important; }

  /* Queens */
  .queens__phases     { flex-direction: column !important; }
  .queens__phase-divider { transform: rotate(90deg); align-self: center; }
  .queens__phases--full { flex-direction: column !important; }
  .queens__cat-grid--full { grid-template-columns: 1fr 1fr !important; }

  /* Legacy */
  .legacy__grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Timeline */
  .timeline--wide .timeline__item { grid-template-columns: 70px 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr !important; gap: 2rem; }
  .footer__bottom .container { flex-direction: column !important; text-align: center; gap: 0.35rem; }
  .footer__branch-logos { flex-wrap: wrap; gap: 0.5rem; }
  .footer__branch-logos img { height: 36px; }

  /* Modal */
  .modal { padding: 2rem 1.25rem; margin: 0.5rem; max-height: 95vh; }
  .modal .form-row { grid-template-columns: 1fr !important; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .contact__left { order: 2; }
  .contact__right { order: 1; }

  /* General */
  .container { padding: 0 1.25rem !important; }
  .section-pad { padding: 4rem 0 !important; }
}

/* ── SMALL PHONES (≤480px) ───────────────────────────────── */
@media (max-width: 480px) {
  .nav__logo-img  { height: 34px !important; max-width: 100px !important; }
  .nav__inner     { height: 60px; padding: 0 0.85rem; }

  .hero__slide    { min-height: 460px; padding: 90px 1rem 3rem; }
  .hero__title    { font-size: clamp(1.6rem, 9vw, 2.2rem); }

  .books__grid    { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; }
  .book-card__cover--photo { height: 160px; }

  .impact__stats  { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .impact__num    { font-size: 1.6rem; }

  .footer__grid   { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .footer__gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__branch-logos img { height: 30px; }

  .legacy__grid   { grid-template-columns: repeat(2, 1fr) !important; }
  .queens__cat-grid--full { grid-template-columns: 1fr !important; }
  .photo-strip__inner { grid-template-columns: repeat(2, 1fr) !important; height: 180px; }

  .section-title  { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .page-hero__title { font-size: clamp(1.5rem, 8vw, 2rem); }
  .section-pad    { padding: 3rem 0 !important; }
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER STRIP (gold section above footer)
   ══════════════════════════════════════════════════════════ */
.newsletter-strip {
  background: var(--gold) !important;
  padding: 3rem 0;
}
.newsletter-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-strip__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}
.newsletter-strip__sub {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.65);
}
.newsletter-strip__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
  max-width: 460px;
}
.newsletter-strip__form input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1.1rem;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: rgba(255,255,255,0.85);
  color: var(--dark);
}
.newsletter-strip__form input:focus { outline: none; border-color: var(--black); }
.newsletter-strip__form .btn--black {
  border-radius: 50px;
  white-space: nowrap;
  background: var(--black);
  color: var(--gold);
  border: 2px solid var(--black);
  padding: 0.8rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-strip__form .btn--black:hover {
  background: var(--dark);
}

/* ══════════════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { background: var(--gold-deep); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   FOOTER UPDATES
   ══════════════════════════════════════════════════════════ */

/* WhatsApp social icon */
.footer__social--wa { background: #25D366 !important; border-color: #25D366 !important; color: var(--white) !important; }
.footer__social--wa:hover { background: #1ebe5d !important; }

/* (duplicate branch-logos / logo-img block removed — consolidated below) */

/* Footer bottom — gold bar with centered mobile text */
.footer__bottom {
  background: var(--gold);
  padding: 1.25rem 0;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.7);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Newsletter strip mobile */
@media (max-width: 768px) {
  .newsletter-strip { padding: 2.5rem 0; }
  .newsletter-strip__inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .newsletter-strip__form { max-width: 100%; width: 100%; justify-content: center; }
  .newsletter-strip__form input { width: 100%; }
  .newsletter-strip__form .btn--black { width: 100%; text-align: center; }
  .footer__bottom .container { flex-direction: column; text-align: center; gap: 0.3rem; }
  .footer__branch-logos { align-items: center; flex-direction: row; flex-wrap: wrap; }
  .footer__branch-logos img { height: 36px; }
}
@media (max-width: 480px) {
  .back-to-top { bottom: 1.25rem; right: 1rem; width: 40px; height: 40px; font-size: 1rem; }
}

/* ══════════════════════════════════════════════════════════
   QUEENS BOOK SECTION — image top, text below
   ══════════════════════════════════════════════════════════ */
.queens-book-section {
  background: var(--black);
  padding: 4rem 0;
  border-bottom: 1px solid rgba(201,145,58,0.15);
}
.queens-book-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 760px;
}

/* Image — centred, max width so it looks like a book */
.queens-book__img-wrap {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,145,58,0.2);
}
.queens-book__img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Text below — centred */
.queens-book__content {
  text-align: center;
  width: 100%;
}
.queens-book__desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.queens-book__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.queens-book__price {
  background: var(--gold);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-align: center;
}
.queens-book__price-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.queens-book__price-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
.queens-book__view-all {
  border-color: rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.7) !important;
}
.queens-book__view-all:hover {
  background: rgba(255,255,255,0.1) !important;
  color: var(--white) !important;
}

/* Mobile — already stacked, just tighten */
@media (max-width: 768px) {
  .queens-book__img-wrap { max-width: 280px; }
  .queens-book__cta { gap: 0.75rem; }
  .queens-book__cta .btn { width: 100%; text-align: center; }
  .queens-book-section .container { gap: 1.75rem; }
}

/* ══════════════════════════════════════════════════════════
   3-BOOK GRID + FEATURED COMBO CARD
   ══════════════════════════════════════════════════════════ */
.books__grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Featured combo card — slightly elevated */
.book-card--featured {
  border-color: rgba(201,145,58,0.5) !important;
  box-shadow: 0 0 0 1px rgba(201,145,58,0.3), 0 16px 40px rgba(0,0,0,0.4);
}
.book-card--featured .book-card__cover--photo {
  height: 320px;
}

/* Combo badge */
.book-card__lang-badge--combo {
  background: var(--orange) !important;
  color: var(--white) !important;
}

@media (max-width: 900px) {
  .books__grid--3 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .book-card--featured { grid-column: span 2; }
  .book-card--featured .book-card__cover--photo { height: 280px; }
}
@media (max-width: 600px) {
  .books__grid--3 { grid-template-columns: 1fr; }
  .book-card--featured { grid-column: span 1; }
  .book-card--featured .book-card__cover--photo { height: 260px; }
}

/* ── BOOK SLIDES MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Full screen cover on mobile — slightly darker overlay for readability */
  .hero__slide--book .hero__slide-bg {
    background-size: cover !important;
    background-position: center center !important;
    opacity: 1;
  }
  .hero__slide--book .hero__slide-overlay {
    background: rgba(0,0,0,0.55) !important;
  }
}

/* ── AUTHOR CARD WITH REAL PHOTO ─────────────────────────── */
.author-card__img--photo {
  overflow: hidden;
  background: var(--dark);
}
.author-card__img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── AUTHOR FEATURE WITH REAL PHOTO ──────────────────────── */
.author-feature__visual--photo {
  overflow: hidden;
  background: var(--dark);
}
.author-feature__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   FINAL AUTHORITATIVE FIXES
   (placed last in the file so these rules win the cascade)
   ══════════════════════════════════════════════════════════ */

/* ── FOOTER LOGOS — all horizontal, inline, same size ────── */
.footer__logo-img {
  height: 64px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain;
  margin-bottom: 1.25rem;
  display: block;
}
.footer__branches { margin: 1rem 0; }
.footer__branch-logos {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 1rem !important;
}
.footer__branch-logos img {
  height: 52px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.footer__branch-logos img:hover { opacity: 1; }

/* ── FOOTER — 4 columns on any normal desktop/laptop screen ── */
@media (min-width: 901px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 3rem !important;
  }
}

/* ── NAV — raise hamburger breakpoint to prevent text crushing ──
   7 menu items + logo + CTA button do not reliably fit between
   769px–1024px, causing text to visually vanish. Hamburger now
   activates earlier (below 1025px) so the full menu never squeezes. */
.nav__hamburger {
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
@media (min-width: 1025px) {
  .nav__menu      { display: flex !important; }
  .nav__cta       { display: inline-block !important; }
  .nav__hamburger { display: none !important; }
}
@media (max-width: 1024px) {
  .nav__menu      { display: none !important; }
  .nav__cta       { display: none !important; }
  .nav__hamburger { display: flex !important; }
}

/* ── AUTHOR PHOTOS — uniform square, faces fully visible ─── */
.author-card__img,
.author-card__img--photo {
  height: 260px !important;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.author-card__img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.author-feature__visual--photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.author-feature__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 480px) {
  .footer__logo-img { height: 52px !important; }
  .footer__branch-logos img { height: 42px !important; }
  .author-card__img, .author-card__img--photo { height: 220px !important; }
}

/* ══════════════════════════════════════════════════════════
   SITEWIDE COMPETITION ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════ */
.comp-announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100; /* above the nav, which is 1000 */
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-announce-bar a {
  color: var(--black);
  text-decoration: none;
}
.comp-announce-bar__cta {
  text-decoration: underline;
  font-weight: 700;
  margin-left: 0.3rem;
}
.comp-announce-bar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--black);
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0.6;
  padding: 0.25rem;
}
.comp-announce-bar__close:hover { opacity: 1; }

/* Push nav + everything below down to make room for the bar */
body.has-announce-bar .nav { top: 40px; }
body.has-announce-bar .hero,
body.has-announce-bar .page-hero,
body.has-announce-bar .preview-hero,
body.has-announce-bar .comp-banner { margin-top: 40px; }

@media (max-width: 600px) {
  .comp-announce-bar { font-size: 0.72rem; padding: 0.6rem 2.5rem 0.6rem 0.75rem; }
  .comp-announce-bar__cta { display: block; margin-left: 0; margin-top: 0.15rem; }
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE COMPETITION PROMO SECTION
   ══════════════════════════════════════════════════════════ */
.comp-promo { background: var(--ivory); padding: 5rem 0; }
.comp-promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.comp-promo__img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  display: block;
}
.comp-promo__text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.comp-promo__text strong { color: var(--gold-deep); }

@media (max-width: 900px) {
  .comp-promo__inner { grid-template-columns: 1fr; gap: 2rem; }
  .comp-promo__img { order: -1; }
}
@media (max-width: 480px) {
  .comp-promo { padding: 3.5rem 0; }
}

/* ══════════════════════════════════════════════════════════
   COMPETITION ENTRANCE POPUP — FULL SCREEN (homepage only)
   ══════════════════════════════════════════════════════════ */
.comp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.4s ease, visibility 0.4s ease;
}
.comp-popup-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  background: rgba(0,0,0,0.95); /* near-solid black — blends with the poster's own black bg */
}

/* Close button — fixed to the viewport corner, not the image,
   so it's always in the same spot regardless of image size */
.comp-popup__close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  opacity: 0;
  visibility: hidden;
}
.comp-popup-overlay.show .comp-popup__close {
  opacity: 1;
  visibility: visible;
}
.comp-popup__close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: scale(1.08); }

/* Image — contained, never cropped, scales to fit either
   the viewport width or height, whichever is the limiting factor */
.comp-popup__link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 94vw;
  max-height: 94vh;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.comp-popup-overlay.show .comp-popup__link {
  transform: scale(1);
  opacity: 1;
}
.comp-popup__img {
  max-width: 94vw;
  max-height: 94vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

@media (max-width: 600px) {
  .comp-popup__close {
    top: 1rem; right: 1rem;
    width: 38px; height: 38px;
    font-size: 0.95rem;
  }
  .comp-popup__link,
  .comp-popup__img { max-width: 92vw; max-height: 88vh; }
}
