/* ============================================================
   DRE THE FILM GUY — Main Stylesheet
   Brand: Cinematic | Premium | Approachable
   Colors: Charcoal (#1a1a1a), Warm White (#f5f0eb), Gold (#c9a84c)
   ============================================================ */

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

:root {
  --black:      #0d0d0d;
  --charcoal:   #1a1a1a;
  --dark-gray:  #2a2a2a;
  --mid-gray:   #4a4a4a;
  --light-gray: #888888;
  --warm-white: #f5f0eb;
  --off-white:  #faf8f5;
  --gold:       #c9a84c;
  --gold-light: #e0c06e;
  --gold-dark:  #a8873a;
  --text-dark:  #1a1a1a;
  --text-mid:   #3a3a3a;
  --text-light: #6a6a6a;
  --border:     rgba(201,168,76,0.2);

  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-sub:     'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Inter', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --max-width: 1200px;
  --section-pad: 100px 24px;
  --section-pad-sm: 60px 24px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: 1.25rem; }

.sub-heading {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-mid);
  line-height: 1.6;
}

p { max-width: 68ch; line-height: 1.8; }

.gold { color: var(--gold); }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ---------- LAYOUT HELPERS ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(245,240,235,0.5);
}
.btn-outline-light:hover {
  background: rgba(245,240,235,0.1);
  border-color: var(--warm-white);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--gold-light); gap: 16px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 40px; /* sits below the 40px announcement bar by default */
  left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease, top 0.3s ease;
}

/* Once user scrolls past the announcement bar, snap navbar to top */
.navbar.scrolled {
  top: 0;
}

.navbar.scrolled {
  top: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

.navbar.light-nav {
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.navbar.light-nav .nav-link { color: var(--text-dark); }
.navbar.light-nav .nav-logo { color: var(--text-dark); }
.navbar.light-nav .hamburger span { background: var(--text-dark); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--warm-white);
  line-height: 1;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.8);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 112px; /* 40px bar + 72px navbar */
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .nav-link {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--warm-white);
}

/* ---------- HERO (DARK) ---------- */
.hero-dark {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-dark .grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  color: var(--warm-white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,240,235,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 54ch;
}

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

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--dark-gray);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.kit-preview-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.kit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kit-item:last-child { border-bottom: none; }
.kit-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.kit-item-text { flex: 1; }
.kit-item-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 3px;
}
.kit-item-desc {
  font-size: 0.8rem;
  color: rgba(245,240,235,0.45);
  line-height: 1.4;
}

.hero-badge {
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* ---------- CREDIBILITY STRIP ---------- */
.cred-strip {
  background: var(--charcoal);
  padding: 20px 24px;
  overflow: hidden;
}
.cred-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cred-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.4);
  white-space: nowrap;
}
.cred-tags { display: flex; gap: 24px; flex-wrap: wrap; }
.cred-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cred-tag::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- SECTIONS: LIGHT ---------- */
.section-light { background: var(--off-white); }
.section-warm  { background: var(--warm-white); }
.section-dark  { background: var(--charcoal); color: var(--warm-white); }
.section-black { background: var(--black); color: var(--warm-white); }

/* ---------- SECTION HEADER ---------- */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .sub-heading { max-width: 56ch; }

/* ---------- CARD STYLES ---------- */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.card-dark {
  background: var(--dark-gray);
  border-color: rgba(201,168,76,0.12);
  color: var(--warm-white);
}
.card-dark:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.card-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 12px; }
.card p  { font-size: 0.92rem; color: var(--text-light); max-width: none; }
.card-dark p { color: rgba(245,240,235,0.6); }

/* ---------- CHECKLIST ---------- */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  width: 24px; height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist-dark li { color: rgba(245,240,235,0.75); border-color: rgba(255,255,255,0.07); }

/* ---------- BLOCKQUOTE / TESTIMONIAL ---------- */
.testimonial {
  background: var(--charcoal);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px 36px;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-sub);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 8px; left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--warm-white);
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- OPT-IN FORM ---------- */
.optin-box {
  background: var(--dark-gray);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.optin-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.optin-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--warm-white);
  margin-bottom: 8px;
}
.optin-sub {
  font-family: var(--font-sub);
  font-style: italic;
  color: rgba(245,240,235,0.6);
  font-size: 1rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,235,0.3); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-privacy {
  font-size: 0.78rem;
  color: rgba(245,240,235,0.3);
  margin-top: 12px;
  line-height: 1.5;
}

/* Light form variant */
.form-light .form-group label { color: var(--text-light); }
.form-light .form-group input,
.form-light .form-group textarea,
.form-light .form-group select {
  background: #fff;
  border-color: rgba(0,0,0,0.12);
  color: var(--text-dark);
}
.form-light .form-group input:focus,
.form-light .form-group textarea:focus { border-color: var(--gold); }
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-light .form-privacy { color: var(--text-light); }

/* ---------- PHILOSOPHY BLOCKS ---------- */
.philosophy-block {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.philosophy-block:first-child { border-top: none; }
.philosophy-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.philosophy-block h3 { color: var(--gold); margin-bottom: 12px; }
.philosophy-block p { color: rgba(245,240,235,0.65); font-size: 0.92rem; max-width: 32ch; margin: 0 auto; }

/* ---------- STAT BAR ---------- */
.stat-bar {
  display: flex;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

/* ---------- DIVIDER ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
  margin: 0 auto;
  max-width: var(--max-width);
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  position: relative;
  z-index: 1001; /* above navbar so it isn't hidden */
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: rgba(245,240,235,0.6);
  padding: 72px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--warm-white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 36ch; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(245,240,235,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--warm-white); }

.footer-mini-form { display: flex; gap: 0; }
.footer-mini-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}
.footer-mini-form input:focus { border-color: var(--gold); }
.footer-mini-form button {
  padding: 12px 18px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-mini-form button:hover { background: var(--gold-light); }

.social-links { display: flex; gap: 16px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,235,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,235,0.25);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- PAGE HERO (INNER PAGES) ---------- */
.page-hero {
  background: var(--black);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.05) 0%, transparent 65%);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero h1 { color: var(--warm-white); margin-bottom: 20px; }
.page-hero .sub-heading { max-width: 56ch; }

/* ---------- ABOUT PAGE SPECIFICS ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.story-img-wrap {
  position: relative;
}
.story-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark-gray);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 1px solid rgba(201,168,76,0.12);
}
.story-img-badge {
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.story-content h2 { margin-bottom: 24px; }
.story-content p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 0.98rem;
}

/* ---------- TOPICS GRID ---------- */
.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--transition);
}
.topic-pill:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.topic-pill span { font-size: 1rem; }

.topic-pills-wrap { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- STARTER KIT PAGE ---------- */
.kit-hero {
  background: var(--black);
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}
.kit-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.kit-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.kit-hero h1 { color: var(--warm-white); margin-bottom: 24px; }
.kit-hero .sub-heading { color: rgba(245,240,235,0.7); margin: 0 auto 48px; }

/* ---------- THANK YOU PAGE ---------- */
.ty-hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
}
.ty-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.ty-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ty-check {
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 32px;
}
.ty-inner h1 { color: var(--warm-white); margin-bottom: 20px; }
.ty-inner .sub-heading { color: rgba(245,240,235,0.65); margin: 0 auto 40px; }

.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.step-card {
  background: var(--dark-gray);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h4 { color: var(--warm-white); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.step-card p { font-size: 0.82rem; color: rgba(245,240,235,0.5); max-width: none; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); margin-bottom: 32px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-method-value { font-size: 0.92rem; color: var(--text-dark); }

/* ---------- INLINE LINK ---------- */
.link-gold {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: border-color var(--transition);
}
.link-gold:hover { border-color: var(--gold); }

/* ---------- TOAST NOTIFICATION ---------- */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--warm-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 360px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.3);
  animation: fadeInUp 1s 1.5s both;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- ANIMATION CLASSES ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.8s ease both; }

/* ---------- HORIZONTAL RULE ---------- */
hr.gold-line {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* ---------- BADGE ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .story-grid  { grid-template-columns: 1fr; }
  .story-img-wrap { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; --section-pad-sm: 48px 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-dark { padding: 100px 20px 60px; }
  .hero-inner { gap: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .stat-bar { gap: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .step-cards { grid-template-columns: 1fr; }
  .story-img-badge { left: 12px; }
  .optin-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .btn { padding: 14px 24px; font-size: 0.72rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .toast { bottom: 16px; right: 16px; left: 16px; }
}
