/* ============================================================
   MY DESTINY: WHEN WILL I GET THERE?
   Calvin J. Snead — calvinjsnead.com
   Dark Cinematic Book Launch Site
   style.css — Production v2.0
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Dancing+Script:wght@400;500;600;700&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ============================================================
   2. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-bg:          #0a0a0c;
  --color-surface:     #0f0f13;
  --color-card:        #13131a;
  --color-border:      #2a2a35;
  --color-border-gold: rgba(201, 168, 76, 0.35);

  /* Gold Palette */
  --color-gold:        #c9a84c;
  --color-gold-light:  #e8c96a;
  --color-gold-dark:   #8b6e2a;
  --color-gold-glow:   rgba(201, 168, 76, 0.18);

  /* Text Colors — ALL readable on dark backgrounds */
  --color-text:        #e8e8e0;   /* near-white, headings */
  --color-body:        #c8c8be;   /* warm light gray, body copy */
  --color-muted:       #8a8a7a;   /* muted but readable */
  --color-dimmed:      #6a6a5a;   /* labels, fine print */

  /* Fonts */
  --font-display: 'Cinzel', 'Georgia', serif;
  --font-body:    'Work Sans', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 150ms ease;
  --trans-base: 250ms ease;
  --trans-slow: 400ms ease;

  /* Layout */
  --container-max:     1200px;
  --container-default: 900px;
  --container-pad:     1.5rem;
  --header-h:          80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--trans-fast);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* Selection */
::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--color-text);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-dark); }

/* ============================================================
   4. ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

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

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--default {
  width: 100%;
  max-width: var(--container-default);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-block: 96px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #e8e8e0;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.8;
}

/* Divider */
.divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-block: 20px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--color-gold), transparent);
}

.divider-line.right {
  background: linear-gradient(to left, var(--color-gold), transparent);
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Text utility */
.text-gold {
  color: var(--color-gold);
}

/* Fade-up scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 8, 10, 0.96);
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 1px 0 0 rgba(201, 168, 76, 0.18), 0 4px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 10, 0.99);
  box-shadow: 0 1px 0 0 rgba(201, 168, 76, 0.35), 0 8px 40px rgba(0,0,0,0.6);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Refined logo mark — slightly larger */
.nav-logo svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.25));
  transition: filter 0.3s ease;
}
.nav-logo:hover svg {
  filter: drop-shadow(0 0 14px rgba(201,168,76,0.5));
}

/* Vertical divider between logo mark and text */
.nav-logo::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.35), transparent);
  margin-left: 2px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 2px;
}

.nav-logo-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(135deg, #8b6e2a 0%, #c9a84c 50%, #e8c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-sub {
  font-family: var(--font-body, sans-serif);
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(200,200,190,0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0 auto;
}

.nav-links li a {
  position: relative;
  color: rgba(200,200,190,0.75);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
  padding-bottom: 3px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #8b6e2a, #e8c96a);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #e8c96a;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #8b6e2a 0%, #c9a84c 60%, #e8c96a 100%);
  color: #0a0a0c;
  border: none;
  padding: 9px 22px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 2px 16px rgba(201,168,76,0.25);
}

.nav-cta:hover {
  opacity: 0.88;
  box-shadow: 0 4px 24px rgba(201,168,76,0.45);
  transform: translateY(-1px);
  color: #0a0a0c;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #c8c8be;
  cursor: pointer;
  padding: 6px;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--trans-base), opacity var(--trans-base);
}

.nav-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-top: 1px solid #2a2a35;
}

.nav-mobile.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  color: #c8c8be;
  padding: 12px var(--container-pad);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--trans-fast), padding-left var(--trans-fast);
  border-bottom: 1px solid rgba(42, 42, 53, 0.5);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: #c9a84c;
  padding-left: calc(var(--container-pad) + 8px);
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

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

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 12, 0.92) 0%,
    rgba(10, 10, 12, 0.75) 50%,
    rgba(10, 10, 12, 0.4) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  min-height: calc(100vh - var(--header-h));
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9a84c;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: #c9a84c;
  margin: 0;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #8b6e2a 0%, #c9a84c 40%, #e8c96a 60%, #c9a84c 80%, #8b6e2a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: 2rem;
  color: #e8c96a;
  margin: 0;
  line-height: 1.3;
}

.hero-edition {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: #8a8a7a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-tagline {
  border-left: 2px solid #c9a84c;
  padding-left: 16px;
  color: #c9a84c;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0;
}

.hero-release {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: #8a8a7a;
}

.hero-release-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #c9a84c;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.hero-author-img {
  position: relative;
  z-index: 2;
}

.hero-author-img img {
  max-height: 640px;
  width: auto;
  display: block;
  filter: drop-shadow(0 12px 48px rgba(0, 0, 0, 0.75));
  /* No border, no border-radius box, no background — pure cutout */
}

.hero-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(
    ellipse 60% 60% at 50% 60%,
    rgba(201, 168, 76, 0.2) 0%,
    rgba(201, 168, 76, 0.06) 50%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
  animation: goldPulse 4s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6a6a5a;
  text-decoration: none;
  cursor: pointer;
  animation: scrollBounce 2.2s ease-in-out infinite;
  z-index: 3;
}

/* ============================================================
   8. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #8b6e2a 0%, #c9a84c 50%, #e8c96a 100%);
  background-size: 200% auto;
  color: #0a0a0c;
  font-weight: 700;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #0a0a0c;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: #c9a84c;
}

.btn-outline:hover {
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  color: #e8c96a;
}

/* Purchase store buttons */
.purchase-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: #0f0f13;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.purchase-btn:hover {
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.04);
}

.purchase-btn-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.purchase-btn-store {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  color: #8a8a7a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purchase-btn-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: #e8e8e0;
  font-weight: 600;
}

.purchase-btn-arrow {
  color: #c9a84c;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.purchase-btn:hover .purchase-btn-arrow {
  transform: translateX(4px);
}

/* ============================================================
   9. COUNTDOWN
   ============================================================ */
.countdown-wrap {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  text-shadow: 0 0 24px rgba(201, 168, 76, 0.4);
}

.countdown-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  color: #8a8a7a;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   10. STATS BAR
   ============================================================ */
.stats-bar {
  background: #0f0f13;
  border-top: 1px solid #2a2a35;
  border-bottom: 1px solid #2a2a35;
  padding-block: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #8a8a7a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   11. ABOUT / SUMMARY SECTION
   ============================================================ */
.summary-section {
  background: var(--color-bg);
}

.summary-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.summary-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.summary-img-wrap {
  position: relative;
  width: 100%;
}

.summary-img-wrap img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.18);
}

.summary-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0c;
}

.summary-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.25);
}

.summary-badge {
  position: relative;
  bottom: auto;
  right: auto;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(15,15,19,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  width: 100%;
}

.summary-badge-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}

.summary-badge-sub {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  color: #8a8a7a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.summary-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar-card {
  background: #0f0f13;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--trans-base);
}

.pillar-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8e8e0;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.8125rem;
  color: #8a8a7a;
  line-height: 1.6;
}

/* ============================================================
   12. AUTHOR SECTION
   ============================================================ */
.author-section {
  background: #0f0f13;
}

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

.author-photo-wrap {
  position: relative;
}

.author-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.25);
}

.author-photo-frame img {
  width: 100%;
  display: block;
}

.author-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #e8e8e0;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.author-title-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #c9a84c;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.author-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.author-role-tag {
  font-size: 0.8125rem;
  color: #8a8a7a;
  padding: 4px 12px;
  background: #13131a;
  border: 1px solid #2a2a35;
  border-radius: 100px;
}

.author-bio-text {
  font-size: 1rem;
  color: #c8c8be;
  line-height: 1.85;
  margin-bottom: 12px;
}

.author-quote {
  border-left: 2px solid #c9a84c;
  padding-left: 20px;
  color: #c9a84c;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-block: 24px;
}

.author-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8a8a7a;
  font-size: 0.8125rem;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #2a2a35;
  border-radius: 100px;
  transition: color var(--trans-fast), border-color var(--trans-fast);
}

.social-link:hover {
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.4);
}

/* ============================================================
   13. WORKBOOK SECTION
   ============================================================ */
.workbook-section {
  background: #0a0a0c;
}

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

.workbook-visual {
  position: relative;
}

.workbook-visual img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.workbook-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workbook-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.workbook-feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.workbook-feature-text {
  flex: 1;
}

.workbook-feature-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e8e8e0;
  margin-bottom: 4px;
}

.workbook-feature-desc {
  font-size: 0.875rem;
  color: #8a8a7a;
  line-height: 1.65;
}

.workbook-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.workbook-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================================================
   14. JOURNEY / MOVEMENTS SECTION
   ============================================================ */
.journey-section {
  background: #0f0f13;
}

.journey-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 64px;
}

.movements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.movement-card {
  background: #13131a;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--trans-base);
}

.movement-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.movement-card--featured {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.3);
}

.movement-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.movement-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
}

.movement-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #e8e8e0;
  letter-spacing: 0.04em;
}

.movement-days {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: #8a8a7a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.movement-tagline {
  font-size: 0.875rem;
  color: #8a8a7a;
  line-height: 1.65;
}

/* ============================================================
   15. MILESTONES SECTION
   ============================================================ */
.milestones-section {
  background: #0a0a0c;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.milestone-card {
  background: #0f0f13;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--trans-base);
}

.milestone-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.milestone-day {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.milestone-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #e8e8e0;
  margin-bottom: 8px;
}

.milestone-desc {
  font-size: 0.875rem;
  color: #8a8a7a;
  line-height: 1.65;
}

/* ============================================================
   16. EMAIL SEQUENCE
   ============================================================ */
.email-seq-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-week {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #0f0f13;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-md);
  transition: border-color var(--trans-base);
}

.email-week.featured {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
}

.email-week-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #c9a84c;
  min-width: 56px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.email-week-title {
  font-size: 0.9375rem;
  color: #e8e8e0;
  line-height: 1.5;
}

/* ============================================================
   17. PROMO SECTION
   ============================================================ */
.promo-section {
  position: relative;
  overflow: hidden;
}

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

.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.8);
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.promo-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #e8e8e0;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.promo-sub {
  font-size: 1rem;
  color: #c8c8be;
  line-height: 1.7;
  margin-bottom: 32px;
}

.promo-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   18. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: #0f0f13;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #13131a;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--trans-base);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.testimonial-stars {
  color: #c9a84c;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* CRITICAL: testimonial text must always be readable */
.testimonial-text {
  font-size: 0.9375rem;
  color: #c8c8be;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #2a2a35;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8e8e0;
}

.testimonial-title-sub {
  font-size: 0.75rem;
  color: #8a8a7a;
}

/* ============================================================
   19. SPEAKING / BOOKINGS SECTION
   ============================================================ */
.speaking-section {
  background: #0a0a0c;
}

.speaking-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.speaking-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.speaking-photo-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
  /* Dark radial gradient background — blends photo edges naturally */
  background: radial-gradient(ellipse 80% 90% at 50% 50%,
    #1a1a24 0%,
    #12121a 40%,
    #0a0a0c 100%);
  border-radius: 16px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  padding: 24px 16px 0;
}

.speaking-photo {
  max-width: 300px;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  /* Remove blend mode — dark bg handles the blending */
  mix-blend-mode: normal;
  filter: none;
  position: relative;
  z-index: 1;
}

.speaking-photo-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 20px;
  background: rgba(10, 10, 12, 0.9);
  border: 1px solid #c9a84c;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
}

.speaking-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.speaking-type {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #0f0f13;
  border: 1px solid #2a2a35;
  border-radius: 100px;
  transition: border-color var(--trans-fast), color var(--trans-fast);
}

.speaking-type:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.speaking-type-icon {
  font-size: 1rem;
}

.speaking-type-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #c8c8be;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   20. SPEAKING FORM / BOOKING FORM
   ============================================================ */
.speaking-form-wrap {
  background: #0f0f13;
  border: 1px solid #2a2a35;
  border-radius: 16px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8e8e0;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: #8a8a7a;
  line-height: 1.6;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: #c8c8be;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: #13131a;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-md);
  color: #e8e8e0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #6a6a5a;
}

.form-input:focus {
  border-color: #c9a84c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  background: #13131a;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-md);
  color: #e8e8e0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select:focus {
  border-color: #c9a84c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-select option {
  background: #13131a;
  color: #e8e8e0;
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #13131a;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-md);
  color: #e8e8e0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
  min-height: 120px;
  resize: vertical;
}

.form-textarea::placeholder {
  color: #6a6a5a;
}

.form-textarea:focus {
  border-color: #c9a84c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #8b6e2a 0%, #c9a84c 50%, #e8c96a 100%);
  color: #0a0a0c;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.form-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.form-privacy {
  font-size: 0.75rem;
  color: #6a6a5a;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* Form row helper */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================================
   21. EMAIL SIGNUP SECTION
   ============================================================ */
.signup-section {
  background: linear-gradient(180deg, #0a0a0c 0%, #0d0d10 100%);
}

.signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.signup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signup-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signup-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #0f0f13;
  border: 1px solid #2a2a35;
  border-radius: var(--radius-md);
}

.perk-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.perk-text {
  flex: 1;
}

.perk-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e8e8e0;
  margin-bottom: 4px;
}

.perk-desc {
  font-size: 0.875rem;
  color: #8a8a7a;
  line-height: 1.6;
}

.signup-form-wrap {
  background: #0f0f13;
  border: 1px solid #2a2a35;
  border-radius: 16px;
  padding: 40px;
}

/* ============================================================
   22. FOOTER
   ============================================================ */
.site-footer {
  background: #070709;
  border-top: 1px solid #2a2a35;
  padding-block: 64px 32px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: #8a8a7a;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #8a8a7a;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--trans-fast);
}

.footer-links a:hover {
  color: #c9a84c;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-site {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #2a2a35;
  border-radius: 50%;
  color: #8a8a7a;
  text-decoration: none;
  font-size: 0.875rem;
  transition: border-color var(--trans-fast), color var(--trans-fast);
}

.social-site:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.footer-bottom {
  border-top: 1px solid #2a2a35;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: #6a6a5a;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #6a6a5a;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color var(--trans-fast);
}

.footer-legal a:hover {
  color: #8a8a7a;
}

/* ============================================================
   23. ACCESSIBILITY & UTILITIES
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   24. RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --container-pad: 1.25rem;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  /* Two-column section grids → single column */
  .summary-grid,
  .author-grid,
  .workbook-grid,
  .signup-inner,
  .speaking-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }
}

/* ============================================================
   25. RESPONSIVE — MOBILE (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --container-pad: 1rem;
  }

  .section {
    padding-block: 64px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .movements-grid {
    grid-template-columns: 1fr;
  }

  .milestones-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .speaking-form-wrap {
    padding: 24px;
  }

  .signup-form-wrap {
    padding: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .countdown-num {
    font-size: 2.25rem;
  }

  .summary-badge {
    position: static;
    display: inline-block;
    margin-top: 24px;
    bottom: auto;
    right: auto;
  }

  .summary-grid {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .promo-title {
    font-size: 1.875rem;
  }
}

/* ============================================================
   26. PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .hero-scroll,
  .nav-mobile,
  .hero-bg,
  .hero-bg-overlay,
  .signup-section,
  .speaking-form-wrap {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
