/* ============================================================
   LIVE WITH PURPOSE AND JOY — styles.css v2
   Cinematic | Minimal | Premium | Warm
   ============================================================ */

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

:root {
  --gold:         #D4AF37;
  --gold-light:   #FFD750;
  --gold-glow:    rgba(212,175,55,0.32);
  --gold-border:  rgba(212,175,55,0.22);
  --white:        #FFFFFF;
  --warm-sand:    #F0DCA0;
  --deep-dark:    #0A0500;
  --warm-dark:    #140A05;
  --mid-dark:     #1c1005;
  --overlay-hero: rgba(10,5,0,0.52);
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --ease:         0.35s ease;
  --max-w:        1160px;
  --radius:       4px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--deep-dark); color: var(--white); font-family: var(--font-body); line-height: 1.75; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.hidden { display: none !important; }
.gold { color: var(--gold-light); text-shadow: 0 0 22px var(--gold-glow), 0 0 44px rgba(212,175,55,0.14); }
.hide-mobile { display: inline; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2.2rem; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  transition: all var(--ease); border: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a8860a 100%);
  color: var(--deep-dark);
  box-shadow: 0 4px 28px rgba(212,175,55,0.38);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 40px rgba(212,175,55,0.55);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--warm-sand);
  border: 1px solid rgba(212,175,55,0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
}
.btn-large { padding: 1.05rem 2.8rem; font-size: 0.88rem; }
.btn-full  { width: 100%; }

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.9rem,3.8vw,3rem);
  font-weight: 900; line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 1.4rem;
}
.section-body {
  font-size: 1.05rem; line-height: 1.82; color: rgba(255,255,255,0.78);
  max-width: 660px; margin-bottom: 3rem;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 2rem; transition: background var(--ease), backdrop-filter var(--ease);
}
#navbar.scrolled {
  background: rgba(10,5,0,0.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head); font-weight: 900; font-size: 1rem;
  letter-spacing: 0.22em; color: var(--gold-light);
  text-shadow: 0 0 18px var(--gold-glow);
}
.nav-links { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  padding: 0.55rem 1.4rem; border: 1px solid var(--gold-border) !important;
  border-radius: var(--radius); color: var(--warm-sand) !important;
  transition: all var(--ease) !important;
}
.nav-cta:hover {
  border-color: var(--gold) !important; color: var(--gold-light) !important;
  background: rgba(212,175,55,0.07);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.8); transition: var(--ease);
}
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  background: rgba(10,5,0,0.97); border-top: 1px solid var(--gold-border);
  padding: 0.5rem 0;
}
.nav-mobile a {
  display: block; padding: 0.9rem 2rem;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--ease);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile.open { display: flex; }

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 9s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,5,0,0.3) 0%, rgba(10,5,0,0.1) 38%, rgba(10,5,0,0.62) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 1.5rem;
}
.hero-eyebrow {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.28em; color: rgba(212,175,55,0.82); margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.8rem,7vw,6.2rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.45); margin-bottom: 1.1rem;
}
.hero-tagline {
  font-family: var(--font-body); font-size: clamp(1rem,2.4vw,1.35rem);
  font-weight: 300; letter-spacing: 0.1em; color: var(--warm-sand);
  margin-bottom: 2.4rem; display: inline-block; position: relative;
}
.hero-tagline::before, .hero-tagline::after {
  content: ''; position: absolute; top: 50%; width: 48px; height: 1px;
  background: rgba(212,175,55,0.45);
}
.hero-tagline::before { right: calc(100% + 14px); }
.hero-tagline::after  { left:  calc(100% + 14px); }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero-scroll-hint span {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.75), transparent);
  margin: 0 auto; animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.25; transform:scaleY(0.75); }
  50%      { opacity:1;    transform:scaleY(1);    }
}

/* ── INTRO VIDEO SECTION ── */
#intro-video { padding: 110px 0 90px; background: var(--warm-dark); }
.video-section { text-align: center; }
.video-section .section-body { margin-left: auto; margin-right: auto; }
.video-frame-outer {
  max-width: 900px; margin: 0 auto 1.5rem;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.65);
  border: 1px solid var(--gold-border);
}
.video-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; }




.video-caption {
  font-size: 0.9rem; color: rgba(255,255,255,0.42); letter-spacing: 0.05em;
}
.video-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ── MISSION ── */
#mission { position: relative; padding: 120px 0; overflow: hidden; }
.mission-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center 30%; opacity: 0.28;
}
.mission-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,5,0,0.96) 0%, rgba(10,5,0,0.6) 55%, rgba(10,5,0,0.88) 100%);
}
.mission-content { position: relative; z-index: 2; }
.mission-pillars {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.8rem; margin-top: 0.5rem;
}
.pillar {
  padding: 1.8rem 1.5rem; border: 1px solid var(--gold-border); border-radius: var(--radius);
  background: rgba(20,10,5,0.55); backdrop-filter: blur(8px);
  transition: border-color var(--ease), transform var(--ease);
}
.pillar:hover { border-color: rgba(212,175,55,0.42); transform: translateY(-5px); }
.pillar-icon {
  font-size: 1.6rem; color: var(--gold); margin-bottom: 0.9rem;
  text-shadow: 0 0 14px var(--gold-glow);
}
.pillar h3 {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 0.65rem;
}
.pillar p { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* ── CONTENT GRID ── */
#content { padding: 110px 0; background: var(--deep-dark); }
.content-section .section-body { margin-left: auto; margin-right: auto; text-align: center; }
.content-section .section-label,
.content-section .section-title { text-align: center; }
.content-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.8rem; margin-bottom: 3rem;
}
.content-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gold-border); background: var(--warm-dark);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.content-card:hover {
  border-color: rgba(212,175,55,0.4); transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.content-card-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.content-thumb-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.content-card:hover .content-thumb-bg { transform: scale(1.05); }
.content-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,5,0,0.1) 0%, rgba(10,5,0,0.5) 100%);
}
.content-card-play {
  position: absolute; bottom: 0.9rem; right: 0.9rem; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,175,55,0.18); border: 1px solid rgba(212,175,55,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gold-light); padding-left: 3px;
  transition: background var(--ease);
}
.content-card:hover .content-card-play { background: rgba(212,175,55,0.3); }
.content-badge {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  font-family: var(--font-head); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 2px;
  background: rgba(212,175,55,0.22); color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.35);
}
.badge-short  { background: rgba(80,160,255,0.18); color: #a0d4ff; border-color: rgba(80,160,255,0.3); }
.badge-music  { background: rgba(180,80,255,0.18); color: #d4a0ff; border-color: rgba(180,80,255,0.3); }
.badge-story  { background: rgba(255,130,60,0.18); color: #ffc09a; border-color: rgba(255,130,60,0.3); }
.content-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.content-card-label {
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.content-card-title {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.55rem; line-height: 1.3;
}
.content-card-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.content-cta { text-align: center; }

/* ── VISUAL BREAK ── */
#visual-break {
  position: relative; height: 55vh; min-height: 380px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.vb-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.vb-overlay { position: absolute; inset: 0; background: rgba(10,5,0,0.58); }
.vb-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; }
.vb-quote {
  font-family: var(--font-head); font-size: clamp(1.1rem,2.8vw,1.9rem);
  font-weight: 300; font-style: italic; line-height: 1.65;
  color: var(--warm-sand); text-shadow: 0 2px 22px rgba(0,0,0,0.55);
  max-width: 820px; margin: 0 auto; border: none; padding: 0;
}
.vb-quote em { color: var(--gold-light); font-style: normal; }

/* ── EMAIL CAPTURE ── */
#join { padding: 120px 0; background: var(--warm-dark); }
.join-content { text-align: center; }
.join-content .section-title,
.join-content .section-label { text-align: center; }
.join-content .section-body { margin-left: auto; margin-right: auto; text-align: center; }
.email-form { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; gap: 1rem; }
.form-row-single .form-field { flex: 1; }
.form-field { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }
.form-field label {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.optional { font-weight: 400; color: rgba(255,255,255,0.3); }
.form-field input,
.form-field select {
  padding: 0.9rem 1.1rem; background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold-border); border-radius: var(--radius);
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--ease), background var(--ease); outline: none; appearance: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.28); }
.form-field select option { background: var(--warm-dark); color: var(--white); }
.form-field input:focus,
.form-field select:focus {
  border-color: rgba(212,175,55,0.55); background: rgba(255,255,255,0.08);
}
.form-field input.error { border-color: rgba(255,90,60,0.65); }
.field-error { font-size: 0.75rem; color: rgba(255,120,90,0.9); min-height: 1em; }
.email-form .btn { margin-top: 0.4rem; }
.form-privacy { font-size: 0.76rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; margin-top: 0.4rem; }
.form-success {
  text-align: center; padding: 3rem 2rem; border: 1px solid rgba(212,175,55,0.28);
  border-radius: 6px; background: rgba(20,10,5,0.55); max-width: 620px; margin: 0 auto;
}
.success-icon { font-size: 2.4rem; color: var(--gold-light); margin-bottom: 1rem; text-shadow: 0 0 22px var(--gold-glow); }
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.7rem; }
.form-success p { color: rgba(255,255,255,0.65); }

/* ── FOOTER ── */
#footer { padding: 56px 0 36px; background: var(--deep-dark); border-top: 1px solid rgba(212,175,55,0.1); }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto auto; gap: 1.5rem 3rem;
  align-items: start;
}
.footer-name { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.3rem; }
.footer-handle { font-size: 0.82rem; color: rgba(212,175,55,0.65); margin-bottom: 0.3rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); font-style: italic; }
.footer-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a { font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color var(--ease); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-social { display: flex; flex-direction: column; gap: 0.7rem; }
.social-link { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color var(--ease); }
.social-link:hover { color: var(--gold-light); }
.footer-copy { grid-column: 1/-1; font-size: 0.72rem; color: rgba(255,255,255,0.2); letter-spacing: 0.07em; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .mission-pillars { grid-template-columns: repeat(2,1fr); }
  .content-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mission-pillars { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .hero-tagline::before, .hero-tagline::after { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav, .footer-social { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .hide-mobile { display: none; }
}

/* ── BOT FIELD (honeypot) ── */
.bot-field { display: none !important; }

/* ── CONTENT CARD LINK ── */
.content-card-link {
  display: block; color: inherit; text-decoration: none;
}
.content-card-coming { opacity: 0.72; cursor: default; }
.content-card-coming:hover { transform: none !important; border-color: var(--gold-border) !important; box-shadow: none !important; }

/* ── VIDEO YOUTUBE CTA ── */
.video-youtube-cta { margin-top: 1.5rem; text-align: center; }

/* ── FOCUS STATES ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── VIDEO CAPTION SUB ── */
.caption-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(212,175,55,0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── NAV LOGO IMAGE (added audit fix 2026-03-30) ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  transition: opacity 0.2s ease;
}
.nav-logo:hover .nav-logo-img,
.nav-logo:focus .nav-logo-img {
  opacity: 0.85;
}


/* ============================================================
   === HERO v4 - SIMPLIFIED (appended 2026-04-24) ==============
   Overrides legacy #hero + .hero-* rules in this file and the
   older .pj-hero-v2 stack in assets/growth/upgrades.css.
   ============================================================ */

/* Win specificity vs. legacy "#hero { height: 100vh }" rule */
#hero.hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 90px 20px 60px;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: none;
  transition: none;
}

.hero .hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center,
    transparent 35%,
    rgba(11,11,15,0.45) 80%,
    rgba(11,11,15,0.75) 100%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 0;
}

.hero .hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 7.5vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: #FAF7F0;
  margin: 0;
  text-shadow: 0 3px 30px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.35);
  opacity: 1;
}

.hero .hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #E8C87A;
  font-size: 0.78em;
  letter-spacing: 0.01em;
  margin: 0 0.08em;
}

.hero .hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  color: rgba(250,247,240,0.88);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  opacity: 1;
}

.hero .hero-video-frame {
  width: 100%;
  max-width: 1000px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 1;
}

.hero .hero-video-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #E8C87A;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero .hero-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(232,200,122,0.35);
  background: #000;
  border: 1px solid rgba(232,200,122,0.22);
}

.hero .hero-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero .hero-video-caption {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,247,240,0.85);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero .hero-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  z-index: 5;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: rgba(232, 200, 122, 0.7);
  text-decoration: none;
  opacity: 1;
  transition: color 0.2s ease;
}
.hero .hero-badge:hover { color: #E8C87A; }

@media (max-width: 640px) {
  #hero.hero { padding: 70px 14px 40px; }
  .hero .hero-content { gap: 18px; }
  .hero .hero-title em { font-size: 0.82em; }
  .hero .hero-video-label { font-size: 0.6rem; letter-spacing: 0.25em; }
  .hero .hero-badge { top: 1rem; right: 1rem; font-size: 0.6rem; }
}
/* === END HERO v4 === */
