/* ═══════════════════════════════════════════════════════
   AMG CLUB UAE — Premium Dark Theme
   Palette: AMG Black / AMG Red / Warm White
   Fonts: Barlow Condensed (display) + Manrope (body)
   Inspired by Mercedes-AMG typography system
═══════════════════════════════════════════════════════ */

:root {
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-mid:    #1A1A1A;
  --red:         #CC0000;
  --red-bright:  #E00000;
  --red-dim:     #8A0000;
  --white:       #F2F0EC;
  --off-white:   #C8C4BC;
  --muted:       #6A6660;
  /* Barlow Condensed: clean geometric condensed — refined like AMG's corporate type */
  --font-display: 'Barlow Condensed', sans-serif;
  /* Barlow Condensed for UI labels as well */
  --font-ui:      'Barlow Condensed', sans-serif;
  /* Manrope: premium, humanist body type — legible at all sizes */
  --font-body:    'Manrope', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); }


/* ═══════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.loader-amg {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.loader-club {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 6px;
}
.loader-track {
  width: 200px;
  height: 2px;
  background: var(--dark-mid);
  overflow: hidden;
}
#loader-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  transition: width 0.1s linear;
}
#loader-percent {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.loader-tagline {
  position: relative;
  height: 1.6em;
  overflow: hidden;
  margin-top: 8px;
}
.loader-phrase {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  white-space: nowrap;
}
/* Phrase enters from below, rises into place */
@keyframes phraseIn {
  from { opacity: 0; transform: translateX(-50%) translateY(18px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0);    }
}
/* Phrase exits upward and fades */
@keyframes phraseOut {
  from { opacity: 1; transform: translateX(-50%) translateY(0);     }
  to   { opacity: 0; transform: translateX(-50%) translateY(-18px); }
}
.loader-phrase.is-entering {
  animation: phraseIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.loader-phrase.is-exiting {
  animation: phraseOut 0.35s ease-in forwards;
}


/* ═══════════════════════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.2);
  transition: padding 0.3s;
}
.header-logo {
  display: flex;
  align-items: center;
}
/* Logo image — mix-blend-mode:screen knocks out the black background */
.logo-img {
  display: block;
  mix-blend-mode: screen;
  /* Prevent the browser from adding blue tint on click */
  -webkit-user-select: none;
  user-select: none;
}
.logo-img--header {
  height: 38px;   /* tall enough to read, short enough for the bar */
  width: auto;
}
.logo-img--footer {
  height: 54px;
  width: auto;
  margin-bottom: 4px;
}
.header-nav {
  display: flex;
  gap: 36px;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); }
.header-cta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--red);
  padding: 9px 22px;
  transition: background 0.2s, color 0.2s;
}
.header-cta:hover {
  background: var(--red);
  color: var(--white);
}


/* ═══════════════════════════════════════════════════════
   HERO STANDALONE
═══════════════════════════════════════════════════════ */
.hero-standalone {
  position: relative;
  width: 100%;
  height: 100vh;
  background: transparent; /* canvas shows through from behind */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 10;
}
/* Dark overlay so hero text is readable over the video */
.hero-standalone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 0;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  z-index: 1;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(204,0,0,0.08) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw;
  padding-top: 80px;
}
.hero-label {
  display: block;
  margin-bottom: 20px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 10rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.hero-word {
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
}
.hero-word--accent { color: var(--red); }
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta-btn {
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  z-index: 2;
}
.hero-scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.scroll-arrow {
  color: var(--red);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.hero-speed-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
  z-index: 2;
}


/* ═══════════════════════════════════════════════════════
   CANVAS — always visible, video plays from frame 1
═══════════════════════════════════════════════════════ */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 5;
  /* No clip-path — canvas is visible from the very first frame */
}
#canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   DARK OVERLAY (stats section)
═══════════════════════════════════════════════════════ */
#dark-overlay {
  position: fixed;
  inset: 0;
  z-index: 6;
  background: rgba(8, 8, 8, 0.91);
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee-wrap {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.marquee-1 { bottom: 18%; }
.marquee-2 { bottom: 22%; }

.marquee-text {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 12vw;
  line-height: 1;
  letter-spacing: 0.03em;
  /* Bold red outline — unmissable against any video background */
  color: transparent;
  -webkit-text-stroke: 3px rgba(204, 0, 0, 0.90);
  text-shadow:
    0 0 60px rgba(204, 0, 0, 0.40),
    0 0 120px rgba(204, 0, 0, 0.18);
  will-change: transform;
  display: inline-block;
}
.marquee-2 .marquee-text {
  /* Bold white outline for second marquee */
  -webkit-text-stroke: 2.5px rgba(242, 240, 236, 0.75);
  text-shadow:
    0 0 50px rgba(242, 240, 236, 0.25),
    0 0 100px rgba(242, 240, 236, 0.10);
}


/* ═══════════════════════════════════════════════════════
   SCROLL CONTAINER + SECTIONS
═══════════════════════════════════════════════════════ */
#scroll-container {
  position: relative;
  height: 1000vh;
  z-index: 9;
}

.scroll-section {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
}
.scroll-section.is-visible { pointer-events: auto; }

/* Side-aligned text zones */
.align-left {
  padding-left: 5vw;
  padding-right: 28vw;
}
.align-right {
  padding-left: 28vw;
  padding-right: 5vw;
}
.align-left .section-inner,
.align-right .section-inner {
  max-width: 65vw;
}

/* Dark scrim behind left-side text — ensures legibility over any video frame */
.align-left .section-inner {
  padding: 28px 36px 28px 0;
  background: linear-gradient(
    to right,
    rgba(6, 6, 6, 0.82) 0%,
    rgba(6, 6, 6, 0.70) 60%,
    rgba(6, 6, 6, 0.0) 100%
  );
  /* Extend scrim to left edge with box-shadow trick */
  box-shadow: -5vw 0 0 0 rgba(6, 6, 6, 0.82);
}


/* ── Shared section typography ── */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
  /* Red label always punches through video */
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 6.5rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  white-space: nowrap;
  /* Deep shadow ensures heading reads over any video frame */
  text-shadow:
    0 2px 12px rgba(0,0,0,0.95),
    0 4px 32px rgba(0,0,0,0.75);
}
.section-body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: #E8E4DC;
  line-height: 1.78;
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
}
.section-note {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: #A8A49C;
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin-top: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}


/* ── Activity List ── */
.activity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 240, 236, 0.08);
}
.activity-item:last-child { border-bottom: none; }
.activity-num {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  line-height: 1.6;
}
.activity-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 3px;
}
.activity-item span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}


/* ── Upcoming Event ── */
.event-date-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 14px 2px;
  margin-bottom: 16px;
}


/* ── Stats Section ── */
.section-stats {
  width: 100%;
  padding: 0 6vw;
}
.stats-grid {
  display: flex;
  gap: 8vw;
  align-items: flex-end;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  font-weight: 700;
  color: var(--red);
  line-height: 0.92;
  align-self: flex-start;
  margin-top: 6px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
/* Inline number + suffix layout */
.stat { position: relative; }
.stat .stat-number,
.stat .stat-suffix {
  display: inline-block;
}
.stat {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0 4px;
}
.stat-number { grid-row: 1; grid-column: 1; }
.stat-suffix { grid-row: 1; grid-column: 2; align-self: start; padding-top: 8px; }
.stat-label { grid-row: 2; grid-column: 1 / -1; }


/* ── Membership Benefit List ── */
.benefit-list {
  list-style: none;
  margin: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.02em;
  padding-left: 18px;
  position: relative;
}
.benefit-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
  top: 2px;
}


/* ── CTA Buttons ── */
.cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 13px 28px;
  cursor: pointer;
  /* Explicit transform-origin prevents any parent rotation from tilting the button */
  transform: translateY(0) rotate(0deg) !important;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  border-radius: 0;
}
.cta-button:hover {
  background: var(--red-bright);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.35);
  transform: translateY(0) rotate(0deg) !important;
}
.cta-button--ghost {
  background: transparent;
  border: 1px solid var(--off-white);
  color: var(--off-white);
  margin-left: 14px;
}
.cta-button--ghost:hover {
  background: rgba(242,240,236,0.08);
  border-color: var(--white);
  color: var(--white);
}
.cta-pair {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}


/* ═══════════════════════════════════════════════════════
   CONTACT / FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 20;
  background: var(--black);
  border-top: 1px solid rgba(204,0,0,0.25);
  padding: 80px 6vw 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(242,240,236,0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo {
  margin-bottom: 12px;
}
.footer-motto {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.6;
  text-align: center;
}

.footer-contact-block h4,
.footer-info h4 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,240,236,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  border-radius: 0;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}
/* Validation error state */
.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--red);
  background: rgba(204,0,0,0.06);
}
.field-error {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.03em;
  min-height: 14px;
  display: block;
}
/* Disabled submit during sending */
.contact-form .cta-button {
  align-self: flex-start;
  margin-top: 4px;
  transition: background 0.2s, opacity 0.2s;
}
.contact-form .cta-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 18px 0 0;
  color: #7EC8A0;
}
.form-success svg {
  flex-shrink: 0;
  color: #7EC8A0;
}
.form-success p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #7EC8A0;
}

.footer-email {
  display: block;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--red); }
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  transition: color 0.2s;
}
.social-link:hover { color: var(--white); }
.social-link svg { opacity: 0.6; transition: opacity 0.2s; }
.social-link:hover svg { opacity: 1; }
.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 20px;
}
.footer-location svg { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.footer-tagline {
  color: var(--muted);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
a.footer-tagline:hover { color: var(--white); }


/* ═══════════════════════════════════════════════════════
   HAMBURGER + MOBILE NAV
═══════════════════════════════════════════════════════ */
.hamburger {
  display: none; /* shown only on mobile via media query */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
/* Animated X state */
.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none; /* block only on mobile */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(14px);
  padding: 90px 28px 48px;
  border-bottom: 1px solid rgba(204, 0, 0, 0.25);
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.is-open {
  transform: translateY(0);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 240, 236, 0.07);
  transition: color 0.2s;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover,
.mobile-nav-links a:active { color: var(--red); }


/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .site-header.scrolled { padding: 12px 20px; }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero-content { padding: 0 5vw; padding-top: 80px; }
  /* Hero: allow words to wrap into stacked rows on mobile */
  .hero-heading {
    flex-wrap: wrap;
    white-space: normal;
    font-size: clamp(3.5rem, 16vw, 6rem);
    line-height: 0.95;
  }
  .hero-word { white-space: nowrap; }
  .hero-tagline { font-size: 0.9rem; letter-spacing: 0.18em; }

  #scroll-container { height: 600vh; }

  .align-left, .align-right {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 100%;
    background: rgba(10,10,10,0.82);
    padding: 24px;
    backdrop-filter: blur(4px);
  }

  /* Section headings: smaller size + allow wrap so nothing overflows */
  .section-heading {
    font-size: clamp(1.8rem, 7.5vw, 3rem);
    white-space: normal;
    line-height: 1.0;
  }

  .stats-grid { gap: 5vw; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: clamp(3rem, 12vw, 5rem); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .marquee-text { font-size: 20vw; }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .align-left { padding-right: 22vw; }
  .align-right { padding-left: 22vw; }
  .align-left .section-inner,
  .align-right .section-inner { max-width: 72vw; }
  .section-heading { font-size: clamp(2.5rem, 5vw, 5rem); }
}
