/* ==========================================================================
   NOMA DURUWE - CINEMATIC EXECUTIVE FLAGSHIP DESIGN SYSTEM
   Colors: Maroon (#7A1F2B) | Black (#1A1A1A) | White (#FFFFFF) | Sand (#D6C8B4)
   Typography: Montserrat (Semibold, Medium, Regular) + Great Vibes Signature
   Features: Real Stock Photos, Typewriter, Particle Canvas, Parallax Breaks
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Great+Vibes&display=swap');

:root {
  /* Brand Palette (Concept A - Executive) */
  --maroon: #7A1F2B;
  --maroon-dark: #56131c;
  --maroon-light: #9c2737;
  --maroon-glow: rgba(122, 31, 43, 0.45);
  --maroon-soft: rgba(122, 31, 43, 0.12);

  --black: #1A1A1A;
  --black-deep: #0c0c0e;
  --black-card: #18181b;
  
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #F1F3F5;
  --border-gray: #E5E7EB;

  --sand: #D6C8B4;
  --sand-light: #EBE5DC;
  --sand-dark: #B5A58F;

  --text-primary: #1A1A1A;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;

  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-signature: 'Great Vibes', cursive;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 30px -8px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-maroon: 0 12px 35px rgba(122, 31, 43, 0.4);

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
  background-color: var(--white);
  color: var(--text-primary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  line-height: 1.65;
  background-color: var(--white);
  position: relative;
  -webkit-text-size-adjust: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--sand-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--maroon);
}

/* ==========================================================================
   0. PRELOADER ANIMATION
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0c0c0e;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.loaded {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.preloader-emblem {
  width: 76px;
  height: 76px;
  margin-bottom: 2rem;
  animation: logoPulse 2s infinite ease-in-out;
}

.preloader-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(122, 31, 43, 0.4));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(122, 31, 43, 0.85));
  }
}

.preloader-line-track {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.preloader-line-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--sand) 0%, var(--maroon) 100%);
  animation: fillProgress 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fillProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.preloader-motto {
  font-family: var(--font-main);
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ==========================================================================
   AMBIENT CURSOR GLOW FOLLOWER
   ========================================================================== */
#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 31, 43, 0.18) 0%, rgba(214, 200, 180, 0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 99;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, opacity 0.3s ease;
  opacity: 0;
}

body:hover #cursor-glow {
  opacity: 1;
}

@media (hover: none) or (pointer: coarse) {
  #cursor-glow {
    display: none !important;
  }
}

/* ==========================================================================
   PARTICLE CANVAS IN HERO
   ========================================================================== */
#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ==========================================================================
   TYPEWRITER EFFECT STYLES
   ========================================================================== */
.typewriter-container {
  display: inline-block;
  color: var(--maroon);
  position: relative;
  min-width: min(260px, 100%);
  border-bottom: 3px solid var(--maroon);
}

.typewriter-text {
  font-weight: 800;
}

.typewriter-blink {
  display: inline-block;
  color: var(--maroon);
  font-weight: 300;
  animation: blinkCursor 0.8s infinite;
  margin-left: 2px;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ==========================================================================
   REVEAL & 3D TILT SYSTEM
   ========================================================================== */
.reveal-init {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-active {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

.card-tilt {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  transform-style: preserve-3d;
}

@media (hover: none) or (pointer: coarse) {
  .card-tilt {
    transform: none !important;
  }
}

.img-zoom-wrapper {
  overflow: hidden;
  position: relative;
}

.img-zoom-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.img-zoom-wrapper:hover img {
  transform: scale(1.09);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.section-padding {
  padding: 6.5rem 0;
}

@media (max-width: 992px) {
  .section-padding {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.75rem 0;
  }
}

/* Typography Classes */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.text-maroon {
  color: var(--maroon);
}

.text-sand {
  color: var(--sand);
}

.font-signature {
  font-family: var(--font-signature);
}

/* Buttons with Shimmer & Glow */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 480px) {
  .btn {
    white-space: normal;
    text-align: center;
  }
}

.btn-maroon {
  background-color: var(--maroon);
  color: var(--white);
  border: 1px solid var(--maroon);
  box-shadow: 0 4px 15px rgba(122, 31, 43, 0.28);
  animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(122, 31, 43, 0.28);
  }
  50% {
    box-shadow: 0 6px 28px rgba(122, 31, 43, 0.65);
  }
}

.btn-maroon:hover {
  background-color: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-maroon);
}

.btn-black {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn-black:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-pill {
  border-radius: 9999px;
}

/* ==========================================================================
   CLEAN MINIMALIST HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  padding: 0.9rem 0;
}

.site-header.scrolled {
  padding: 0.65rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-identity {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-identity:hover .logo-symbol {
  transform: scale(1.08);
}

.logo-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 1.75rem;
  }
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--maroon);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--maroon);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.header-quicket-btn {
  padding: 0.5rem 1rem;
  font-size: 0.775rem;
  border-color: rgba(0, 0, 0, 0.18);
}

.header-book-btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition-smooth);
  color: var(--black);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:hover {
  background: rgba(122, 31, 43, 0.06);
  border-color: var(--maroon);
}

.mobile-menu-bar {
  width: 20px;
  height: 2px;
  background-color: var(--black);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header-quicket-btn {
    display: none !important;
  }
  .header-actions {
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.65rem 0;
  }
  .brand-identity {
    gap: 0.65rem;
  }
  .logo-symbol {
    width: 35px;
    height: 35px;
  }
  .brand-name {
    font-size: 1.02rem;
    letter-spacing: 0.12em;
  }
  .brand-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }
  .header-book-btn {
    padding: 0.45rem 0.95rem;
    font-size: 0.75rem;
  }
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 350px) {
  .brand-tagline {
    display: none;
  }
  .brand-name {
    font-size: 0.95rem;
  }
  .header-book-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   1. CINEMATIC KEYNOTE HERO STAGE (Grand Viewport Architecture)
   ========================================================================== */
.hero-keynote-stage {
  position: relative;
  background-color: #0c0c0e;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage-backdrop-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-stage-backdrop-wrap .hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  filter: contrast(1.25);
}

.hero-backdrop-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 40%, rgba(122, 31, 43, 0.25) 0%, transparent 60%),
              linear-gradient(180deg, rgba(12, 12, 14, 0.95) 0%, rgba(12, 12, 14, 0.82) 50%, #0c0c0e 100%);
}

/* Volumetric Ambient Spotlight Glows */
.hero-spotlight-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(100px);
}

.hero-spotlight-1 {
  top: -120px;
  left: 18%;
  width: 520px;
  height: 520px;
  background: rgba(122, 31, 43, 0.22);
}

.hero-spotlight-2 {
  top: 45%;
  right: 5%;
  width: 480px;
  height: 480px;
  background: rgba(214, 200, 180, 0.09);
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
}

.hero-keynote-container {
  position: relative;
  z-index: 10;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  width: 100%;
}

.hero-keynote-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-keynote-container {
    padding-top: 3.25rem;
    padding-bottom: 3.75rem;
  }
  .hero-keynote-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  .hero-portrait-frame {
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-content-col {
    text-align: center;
    align-items: center;
  }
  .hero-eyebrow-chip {
    align-self: center;
  }
  .hero-cta-cluster {
    justify-content: center;
  }
}

/* Left Speaker Column */
.hero-speaker-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 200, 180, 0.35);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(122, 31, 43, 0.3);
  background: radial-gradient(circle at 50% 25%, rgba(122, 31, 43, 0.45) 0%, rgba(24, 24, 29, 0.92) 55%, #0c0c0e 100%);
  aspect-ratio: 4/5;
}

.hero-portrait-frame img.speaker-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.06) brightness(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-portrait-frame:hover img.speaker-portrait {
  transform: scale(1.04);
}

.hero-portrait-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.1) 0%, transparent 40%, rgba(12, 12, 14, 0.88) 100%),
              linear-gradient(90deg, rgba(12, 12, 14, 0.35) 0%, transparent 40%, rgba(12, 12, 14, 0.25) 100%);
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(17, 17, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(214, 200, 180, 0.35);
  border-radius: 10px;
  padding: 0.95rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
  animation: floatBadge 4s infinite ease-in-out;
  z-index: 5;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--maroon);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(122, 31, 43, 0.8);
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.badge-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.06em;
}

.badge-subtitle {
  font-size: 0.7rem;
  color: var(--sand);
  line-height: 1.35;
  margin-top: 2px;
}

/* Right Content Column */
.hero-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
}

.hero-eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  background: rgba(122, 31, 43, 0.2);
  border: 1px solid rgba(122, 31, 43, 0.65);
  color: var(--sand);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon);
  box-shadow: 0 0 8px var(--maroon);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-keynote-headline {
  font-size: clamp(2.3rem, 4.2vw, 3.65rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-headline-gradient {
  background: linear-gradient(90deg, var(--sand) 0%, #ffffff 50%, var(--sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Kinetic Typewriter Highlight Showcase */
.hero-typewriter-showcase {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  background: rgba(21, 21, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(122, 31, 43, 0.5);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.typewriter-prefix {
  font-size: 0.85rem;
  font-weight: 800;
  color: #9CA3AF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.typewriter-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(122, 31, 43, 0.35);
  border: 1px solid var(--maroon);
  border-radius: 6px;
  padding: 0.3rem 0.85rem;
}

.typewriter-text {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
  color: var(--sand);
}

.typewriter-blink {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 300;
  margin-left: 4px;
  animation: blinkCursor 0.8s infinite;
}

.hero-narrative-lead {
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  color: #D1D5DB;
  line-height: 1.75;
  font-weight: 400;
  max-width: 640px;
}

.hero-narrative-lead strong {
  color: #ffffff;
  font-weight: 700;
}

/* Credential Chips */
.hero-credential-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cred-chip {
  font-size: 0.775rem;
  font-weight: 600;
  color: #E4E4E7;
  background: #1A1A22;
  border: 1px solid #2E2E38;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}

/* Action Button Cluster */
.hero-cta-cluster {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-hero-primary {
  padding: 0.95rem 2.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-hero-secondary,
.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.95rem 1.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover,
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.hero-subtle-link {
  color: var(--sand);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.4rem 0;
}

.hero-subtle-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .hero-portrait-frame {
    max-width: 320px;
  }
  .hero-eyebrow-chip {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.85rem;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
  }
  .hero-keynote-headline {
    font-size: clamp(2rem, 6.5vw, 2.75rem);
  }
  .hero-narrative-lead {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .hero-credential-chips {
    justify-content: center;
  }
  .cred-chip {
    font-size: 0.725rem;
    padding: 0.35rem 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-keynote-container {
    padding-top: 2rem;
    padding-bottom: 2.75rem;
  }
  .hero-portrait-frame {
    max-width: 285px;
    border-radius: 14px;
  }
  .hero-floating-badge {
    bottom: 0.85rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
  }
  .badge-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .badge-title {
    font-size: 0.725rem;
    letter-spacing: 0.04em;
  }
  .badge-subtitle {
    font-size: 0.625rem;
    line-height: 1.3;
  }
  .hero-typewriter-showcase {
    padding: 0.6rem 0.85rem;
    gap: 0.5rem;
    justify-content: center;
  }
  .typewriter-prefix {
    font-size: 0.75rem;
  }
  .typewriter-text {
    font-size: 1.15rem;
  }
  .typewriter-blink {
    font-size: 1.15rem;
  }
  .hero-cta-cluster {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.825rem;
  }
}

@media (max-width: 350px) {
  .hero-portrait-frame {
    max-width: 255px;
  }
  .hero-keynote-headline {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   2. IMPACT METRICS BAR (Real Stage Lighting Backdrop with Dark Maroon Overlay)
   ========================================================================== */
.metrics-bar {
  position: relative;
  background: linear-gradient(90deg, #0c0c0e 0%, #4a111a 50%, #0c0c0e 100%);
  color: var(--white);
  padding: 3.25rem 0;
  border-top: 1px solid rgba(214, 200, 180, 0.3);
  border-bottom: 1px solid rgba(214, 200, 180, 0.3);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.metrics-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .metrics-bar {
    padding: 2.5rem 0;
  }
  .metrics-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
  }
  .metric-stat {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }
  .metric-caption {
    font-size: 0.725rem;
    letter-spacing: 0.08em;
  }
}

.metric-stat {
  font-family: var(--font-main);
  font-size: clamp(2.3rem, 3.8vw, 3.25rem);
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.metric-caption {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
}

/* ==========================================================================
   3. 6-COLUMN ROLE & ECOSYSTEM STRIP (Matched to Screenshot 3 with Real Stock Photos)
   ========================================================================== */
.roles-strip-section {
  background-color: var(--off-white);
  padding: 0;
  border-bottom: 1px solid var(--border-gray);
  overflow: hidden;
}

.sand-ribbon-top {
  background-color: var(--sand);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--sand-dark);
}

.role-tag-item {
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.775rem;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.role-tag-item:last-child {
  border-right: none;
}

.roles-photos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: var(--black-deep);
}

.role-photo-card {
  position: relative;
  aspect-ratio: 9/14;
  overflow: hidden;
  background-color: #1a1a1d;
  border-right: 1px solid #27272a;
}

.role-photo-card:last-child {
  border-right: none;
}

.role-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.role-photo-card:hover img {
  transform: scale(1.1);
  filter: grayscale(20%) contrast(1.1);
}

/* Subtle Dark Vignette on each Role Card */
.role-photo-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 12, 14, 0.85) 100%);
  pointer-events: none;
}

.sand-ribbon-bottom {
  background-color: var(--sand);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--sand-dark);
}

.role-brand-item {
  text-align: center;
  padding: 1.15rem 0.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--black);
  text-transform: uppercase;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-brand-item:last-child {
  border-right: none;
}

@media (max-width: 992px) {
  .sand-ribbon-top, .sand-ribbon-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
  .roles-photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .role-tag-item {
    font-size: 0.725rem;
    letter-spacing: 0.08em;
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .role-brand-item {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    padding: 1rem 0.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .role-photo-card {
    border-bottom: 1px solid #27272a;
  }
}

@media (max-width: 600px) {
  .sand-ribbon-top, .sand-ribbon-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .roles-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .role-tag-item {
    font-size: clamp(0.65rem, 2.8vw, 0.725rem);
    letter-spacing: 0.05em;
    padding: 0.7rem 0.25rem;
    line-height: 1.25;
  }
  .role-brand-item {
    font-size: clamp(0.68rem, 2.8vw, 0.75rem);
    padding: 0.85rem 0.25rem;
    letter-spacing: 0.05em;
  }
  .role-photo-card {
    aspect-ratio: 9/12;
  }
}

/* ==========================================================================
   CINEMATIC SECTION BREAK 1: ARENA APPLAUSE & PARALLAX QUOTE
   ========================================================================== */
.cinematic-break-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(122, 31, 43, 0.45) 0%, #0c0c0e 85%);
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
  border-top: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
}

@media (max-width: 768px) {
  .cinematic-break-section {
    padding: 4.5rem 1rem;
  }
  .cinematic-break-quote {
    font-size: clamp(1.15rem, 4.2vw, 1.75rem);
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  .cinematic-break-author {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
  }
}

.cinematic-break-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.88) 0%, rgba(122, 31, 43, 0.78) 50%, rgba(12, 12, 14, 0.92) 100%);
  z-index: 1;
}

.cinematic-break-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  color: var(--white);
}

.cinematic-break-quote {
  font-size: clamp(1.4rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.cinematic-break-author {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ==========================================================================
   4. SIGNATURE PROGRAMS & MASTERCLASSES (CAROUSEL WITH REAL PHOTO THUMBNAILS)
   ========================================================================== */
.programs-section {
  background-color: var(--white);
  padding: 6.5rem 0;
}

.section-head-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-tag-maroon {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--maroon);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-main-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.prog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
  align-items: stretch;
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .prog-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.prog-program-card,
.prog-carousel-card {
  background-color: var(--white);
  border: 1px solid rgba(214, 200, 180, 0.6);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.prog-program-card:hover,
.prog-carousel-card:hover {
  transform: translateY(-6px);
  border-color: var(--maroon);
  box-shadow: var(--shadow-lg);
}

.prog-card-image-banner {
  height: 270px;
  position: relative;
  overflow: hidden;
  background-color: var(--black-deep);
}

.prog-card-image-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, rgba(17, 17, 19, 0.55), transparent);
  pointer-events: none;
}

.prog-card-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 0.6s ease;
}

/* Individualized photo centering to ensure Noma's face, smile, and posture are completely visible */
.prog-card-image-banner img.prog-photo-1 {
  object-position: center 10%;
}

.prog-card-image-banner img.prog-photo-2 {
  object-position: center 3%;
}

.prog-card-image-banner img.prog-photo-3 {
  object-position: center 10%;
}

.prog-card-image-banner img.prog-photo-4 {
  object-position: center 8%;
}

.prog-program-card:hover .prog-card-image-banner img {
  transform: scale(1.04);
}

.prog-card-badge {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 3;
  padding: 0.38rem 0.95rem;
  background: rgba(122, 31, 43, 0.92);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.prog-card-header {
  padding: 1.75rem 1.75rem 0.5rem 1.75rem;
}

.prog-card-category {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.prog-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
}

.prog-card-body {
  padding: 0.75rem 1.75rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prog-card-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.prog-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  padding: 0;
}

.prog-card-list li {
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.prog-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--maroon-soft);
  color: var(--maroon);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.carousel-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-gray);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  width: 28px;
  border-radius: 9999px;
  background: var(--maroon);
}

.carousel-arrows {
  display: flex;
  gap: 0.75rem;
}

.carousel-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-gray);
  color: var(--black);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.carousel-arrow-btn:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
  transform: scale(1.06);
}

/* ==========================================================================
   5. FULL-WIDTH INTERVENTION BANNER (Matched to Screenshot 2 with Real Stage Mic)
   ========================================================================== */
.intervention-banner-section {
  position: relative;
  background: linear-gradient(135deg, #400d14 0%, #151518 50%, #56131c 100%);
  color: var(--white);
  padding: 5.5rem 0;
  overflow: hidden;
  border-top: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
}

.intervention-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(87, 20, 30, 0.95) 0%, rgba(122, 31, 43, 0.9) 40%, rgba(12, 12, 14, 0.85) 100%);
  z-index: 1;
}

.intervention-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .intervention-banner-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

.intervention-content {
  max-width: 750px;
}

.intervention-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 0.75rem;
}

.intervention-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.intervention-desc {
  font-size: 1.15rem;
  font-style: italic;
  color: #f3f4f6;
  line-height: 1.6;
  max-width: 650px;
}

.intervention-cta {
  flex-shrink: 0;
}

.intervention-cta-btn {
  background-color: var(--black);
  color: var(--white);
  border: 2px solid var(--sand);
  padding: 1.1rem 2.5rem;
  font-size: 0.95rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.intervention-cta-btn:hover {
  background-color: var(--maroon);
  border-color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .intervention-banner-section {
    padding: 4rem 0;
  }
  .intervention-title {
    font-size: clamp(1.75rem, 6.5vw, 2.5rem);
  }
  .intervention-desc {
    font-size: 1rem;
  }
  .intervention-cta {
    width: 100%;
  }
  .intervention-cta-btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   6. WHAT PEOPLE SAY ABOUT NOMA (Matched to Screenshot 1 with REAL DEMO PEOPLE)
   ========================================================================== */
.testimonials-grid-section {
  background-color: var(--white);
  padding: 6.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.testimonials-grid-heading {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.testimonials-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .testimonials-4col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .testimonials-grid-section {
    padding: 4.5rem 0;
  }
  .testimonials-grid-heading {
    font-size: clamp(1.6rem, 5.5vw, 2.25rem);
    margin-bottom: 2.25rem;
  }
  .testimonials-4col-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .testimonial-photo-top {
    min-height: 165px;
    padding: 2rem 1.25rem 1.75rem 1.25rem;
  }
}

.testimonial-photo-tile {
  background-color: var(--black-deep);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.testimonial-photo-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-photo-top {
  position: relative;
  background: linear-gradient(145deg, #141416 0%, #290b10 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.75rem 1.75rem 2.25rem 1.75rem;
  min-height: 250px;
}

.testimonial-quote-icon {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--sand);
  margin-bottom: 0.75rem;
  opacity: 0.9;
  font-family: Georgia, serif;
}

.testimonial-quote-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  text-align: center;
  font-style: italic;
}

.testimonial-sand-nameplate {
  background-color: var(--sand);
  padding: 1.25rem 1rem;
  text-align: center;
  border-top: 1px solid var(--sand-dark);
}

.endorser-name {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.endorser-role {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.35;
}

/* ==========================================================================
   7. PUBLIC SECTOR HERITAGE & GOVERNANCE
   ========================================================================== */
.governance-section {
  background-color: var(--white);
  padding: 6.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.governance-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .governance-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.governance-quote-callout {
  padding: 1.75rem 2rem;
  background-color: var(--off-white);
  border-left: 4px solid var(--maroon);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.governance-quote-text {
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.governance-quote-author {
  font-weight: 800;
  font-size: 0.825rem;
  color: var(--maroon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.governance-media-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.governance-image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(214, 200, 180, 0.5);
  aspect-ratio: 4/3;
  position: relative;
  background-color: #18181b;
}

.governance-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  transition: transform 0.6s ease;
}

.governance-image-frame:hover img {
  transform: scale(1.03);
}

.governance-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
}

.gov-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.gov-highlight-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--maroon);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   8. VERIFIED CAREER MILESTONES (DEDICATED HORIZONTAL TIMELINE SECTION)
   ========================================================================== */
.milestones-section {
  background: linear-gradient(180deg, #fbfbfb 0%, #f4f5f7 100%);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  position: relative;
  overflow: hidden;
}

.milestones-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(122, 31, 43, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.milestones-horizontal-wrapper {
  position: relative;
  margin-top: 4rem;
  padding: 1rem 0;
}

/* Connecting Horizontal Progress Track Line */
.milestones-track-line {
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon) 0%, var(--sand) 50%, var(--maroon) 100%);
  border-radius: 9999px;
  z-index: 1;
  opacity: 0.85;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .milestones-track-line {
    display: none;
  }
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .milestones-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.milestone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  transition: var(--transition-smooth);
}

.milestone-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0c0c0e;
  border: 3px solid var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 15px rgba(122, 31, 43, 0.4);
  z-index: 3;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.milestone-card:hover .milestone-node {
  transform: scale(1.15);
  border-color: var(--sand);
  box-shadow: 0 0 25px rgba(122, 31, 43, 0.85);
}

.milestone-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand);
  transition: var(--transition-smooth);
}

.milestone-card:hover .milestone-dot {
  background: #ffffff;
  transform: scale(1.1);
}

.milestone-card-inner {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-top: 3px solid var(--maroon);
  border-radius: 12px;
  padding: 2.25rem 1.65rem;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.milestone-card:hover .milestone-card-inner {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--maroon-dark);
}

.milestone-date-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--maroon);
  background: var(--maroon-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.milestone-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.milestone-org {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.milestone-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   CINEMATIC SECTION BREAK 3: SKYLINE & CALL TO ACTION
   ========================================================================== */
.skyline-break-section {
  position: relative;
  background: linear-gradient(180deg, #0c0c0e 0%, #3d0e14 50%, #0c0c0e 100%);
  padding: 6.5rem 0;
  border-top: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
}

.skyline-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.6) 0%, rgba(122, 31, 43, 0.4) 50%, rgba(12, 12, 14, 0.7) 100%);
  z-index: 1;
}

.skyline-cta-btn {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .skyline-break-section {
    padding: 4.5rem 0;
  }
  .skyline-cta-btn {
    width: 100%;
    max-width: 320px;
    padding: 0.9rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   8. CONSULTATION & BOOKING ENGINE
   ========================================================================== */
.booking-section {
  background-color: var(--white);
  padding: 6.5rem 0;
}

.booking-card-wrapper {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(145deg, #FFFFFF 0%, #F9FAFB 100%);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

@media (max-width: 640px) {
  .booking-card-wrapper {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 420px) {
  .booking-card-wrapper {
    padding: 1.5rem 0.95rem;
  }
}

.booking-pill-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

@media (max-width: 768px) {
  .booking-pill-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-tab-btn {
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  color: var(--text-secondary);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.service-tab-btn:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}

.service-tab-btn.active {
  background-color: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .form-2col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-label {
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  text-transform: uppercase;
}

.input-field, .select-field, .textarea-field {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  color: var(--black);
  font-family: var(--font-main);
  font-size: 0.925rem;
  transition: var(--transition-smooth);
}

.input-field:focus, .select-field:focus, .textarea-field:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(122, 31, 43, 0.12);
}

.booking-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.booking-confidential-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.booking-submit-btn {
  padding: 0.95rem 2.85rem;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .booking-section {
    padding: 4.5rem 0;
  }
  .input-field, .select-field, .textarea-field {
    font-size: 16px; /* Prevents iOS Safari auto-zoom! */
    padding: 0.8rem 0.9rem;
  }
  .booking-form-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .booking-submit-btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
  }
}

/* ==========================================================================
   SIMPLIFIED LUXURY EXECUTIVE FOOTER (Screenshot 2 & 5 Style)
   ========================================================================== */
.executive-black-footer {
  background-color: var(--black-deep);
  color: var(--white);
  padding-top: 4.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-signature-center {
  margin-bottom: 2.5rem;
}

.signature-script-text {
  font-family: var(--font-signature);
  font-size: clamp(2.75rem, 7.5vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.signature-sublabel {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.825rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
}

.footer-nav-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  padding: 0 1rem;
}

.footer-nav-simple a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
  padding: 0.35rem 0.5rem;
}

.footer-nav-simple a:hover {
  color: var(--white);
}

.footer-direct-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  font-size: 0.875rem;
  color: #9CA3AF;
}

.footer-direct-contact a {
  color: var(--sand);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.footer-direct-contact a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-nav-simple {
    gap: 0.75rem 1.25rem;
  }
  .footer-direct-contact {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  .footer-direct-contact span:nth-child(2),
  .footer-direct-contact span:nth-child(4) {
    display: none;
  }
}

.maroon-brand-ribbon {
  background-color: var(--maroon);
  color: var(--white);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.maroon-ribbon-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .maroon-ribbon-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
  }
}

.ribbon-motto {
  font-family: var(--font-main);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.ribbon-signature {
  font-family: var(--font-signature);
  font-size: 1.6rem;
  color: var(--sand-light);
}

/* ==========================================================================
   MODAL & DRAWER SYSTEM
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content-box {
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(25px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 1.25rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  touch-action: manipulation;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(122, 31, 43, 0.1);
  color: var(--maroon);
}

@media (max-width: 640px) {
  .modal-content-box {
    padding: 1.75rem 1.25rem;
  }
}

/* Mobile Nav Drawer Styles */
.mobile-drawer-box {
  max-width: 380px;
  width: 100%;
  max-height: 100dvh;
  padding: 2rem 1.5rem;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gray);
}

.mobile-drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.mobile-drawer-menu li a,
.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 0.65rem 0.5rem;
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
  min-height: 44px;
}

.mobile-drawer-menu li a:hover,
.mobile-drawer-menu li a:active,
.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--off-white);
  color: var(--maroon);
  padding-left: 0.85rem;
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-gray);
}

.mobile-quicket-btn {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.mobile-booking-btn {
  width: 100%;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ==========================================================================
   12. AUTHOR SPOTLIGHT & BOOK SHOWCASE (BOUTIQUE WOOCOMMERCE STYLE)
   ========================================================================== */
.book-showcase-section {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, rgba(214, 200, 180, 0.12) 50%, var(--white) 100%);
  padding: 6.5rem 0;
  border-top: 1px solid rgba(214, 200, 180, 0.4);
  border-bottom: 1px solid rgba(214, 200, 180, 0.4);
  overflow: hidden;
}

.book-showcase-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 31, 43, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.book-product-card {
  background: var(--white);
  border: 1px solid rgba(214, 200, 180, 0.5);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px -15px rgba(26, 26, 26, 0.08), 0 0 0 1px rgba(122, 31, 43, 0.04);
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.book-product-card:hover {
  box-shadow: 0 28px 75px -15px rgba(26, 26, 26, 0.12), 0 0 0 1px rgba(122, 31, 43, 0.08);
}

.book-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Gallery Column */
.book-gallery-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.book-main-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 18px 45px -10px rgba(0, 0, 0, 0.16), 0 6px 18px rgba(122, 31, 43, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(214, 200, 180, 0.45);
}

.book-main-visual-wrap:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 55px -10px rgba(0, 0, 0, 0.2), 0 10px 25px rgba(122, 31, 43, 0.14);
}

.book-bestseller-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: linear-gradient(135deg, var(--maroon) 0%, #9c2737 100%);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(122, 31, 43, 0.45);
  border: 1px solid rgba(214, 200, 180, 0.35);
}

.book-main-cover-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1224 / 864;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.book-spec-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding: 0.65rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--border-gray);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
}

.book-spec-strip .spec-dot {
  color: var(--sand-dark);
  font-size: 0.9rem;
}

.book-spec-strip .spec-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.book-spec-strip .spec-icon {
  font-size: 0.9rem;
}

/* Details Column */
.book-details-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.book-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.book-category-pill {
  display: inline-block;
  background: var(--maroon-soft);
  color: var(--maroon);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(122, 31, 43, 0.18);
}

.book-stock-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #15803d;
}

.stock-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: stockPulse 2s infinite;
}

@keyframes stockPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.book-product-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;
}

.book-product-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.book-product-author {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.book-rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-gray);
}

.star-rating-icons {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 1.15rem;
}

.star-rating-score {
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}

.star-rating-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.book-price-lockup {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.price-current {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: -0.5px;
}

.price-decimals {
  font-size: 1.3rem;
  font-weight: 600;
}

.price-original {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount-badge {
  background: #ecfdf5;
  color: #047857;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.book-format-selector {
  margin-bottom: 1.5rem;
}

.format-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.format-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  box-sizing: border-box;
}

.format-pill-btn {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.8rem 1.05rem;
  border-radius: 10px;
  border: 2px solid var(--border-gray);
  background: var(--off-white);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
}

.format-pill-btn .format-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.format-pill-btn .format-price {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.format-pill-btn:hover {
  border-color: var(--sand-dark);
  background: var(--white);
}

.format-pill-btn.active {
  border-color: var(--maroon);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(122, 31, 43, 0.12);
}

.format-pill-btn.active .format-name {
  color: var(--maroon);
}

.book-synopsis-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.book-highlights-list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
  padding: 0;
}

.book-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-primary);
  line-height: 1.45;
}

.highlight-check {
  color: var(--maroon);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.book-highlights-list strong {
  color: var(--black);
}

.book-purchase-action-area {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.book-qty-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border-gray);
  border-radius: 50px;
  background: var(--off-white);
  padding: 4px;
  flex-shrink: 0;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.qty-btn:hover {
  background: var(--maroon);
  color: #FFFFFF;
}

.qty-number {
  min-width: 44px;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
}

.btn-whatsapp-buy {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-buy:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
}

.wa-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.wa-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.wa-btn-main {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.wa-btn-sub {
  font-size: 0.72rem;
  opacity: 0.92;
  font-weight: 500;
  color: #F0FDF4;
  margin-top: 3px;
}

.wa-arrow {
  font-size: 1.3rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.btn-whatsapp-buy:hover .wa-arrow {
  transform: translateX(5px);
}

.glow-pulse {
  animation: waPulse 2.8s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.7), 0 0 18px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  }
}

.book-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-gray);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  width: 100%;
  box-sizing: border-box;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .book-showcase-section {
    padding: 5rem 0;
  }
  .book-product-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .book-gallery-col {
    position: static;
  }
  .book-main-visual-wrap {
    max-width: 100%;
  }
  .book-main-cover-img {
    height: auto;
    aspect-ratio: 1224 / 864;
  }
  .book-spec-strip {
    max-width: 100%;
  }
  .book-highlights-list {
    grid-template-columns: 1fr;
  }
  .book-product-card {
    padding: 2.5rem 1.8rem;
  }
}

@media (max-width: 600px) {
  .book-showcase-section {
    padding: 3.75rem 0;
  }
  .book-product-card {
    padding: 1.75rem 1.15rem;
    border-radius: 14px;
  }
  .book-product-title {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  }
  .book-product-subtitle {
    font-size: 0.9rem;
  }
  .price-current {
    font-size: 2rem;
  }
  .book-spec-strip {
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
    border-radius: 16px;
  }
  .book-spec-strip .spec-dot {
    display: none;
  }
  .book-purchase-action-area {
    flex-direction: column;
    gap: 0.85rem;
  }
  .book-qty-control {
    width: 100%;
    justify-content: space-between;
  }
  .btn-whatsapp-buy {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1.25rem;
  }
  .wa-text-wrap {
    text-align: center;
  }
  .book-main-cover-img {
    height: auto;
    aspect-ratio: 1224 / 864;
  }
  .format-options {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .format-pill-btn {
    width: 100%;
    min-width: unset;
  }
  .book-trust-bar {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .book-product-card {
    padding: 1.25rem 0.85rem;
  }
  .btn-whatsapp-buy {
    padding: 0.75rem 0.95rem;
  }
  .wa-btn-main {
    font-size: 0.825rem;
  }
  .wa-icon {
    font-size: 1.35rem;
  }
}

/* iOS and Touch Smooth Scrolling Fix */
@media (max-width: 1024px), (pointer: coarse) {
  .skyline-break-section,
  .intervention-banner-section {
    background-attachment: scroll !important;
  }
}
