:root {
  --bg: #060606;
  --bg-2: #0c0c0e;
  --surface: #121214;
  --ink: #f4f1ea;
  --muted: #8f8a80;
  --accent: #f0b429;
  --accent-soft: #ffd666;
  --accent-2: #ff4d6d;
  --line: rgba(244, 241, 234, 0.1);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1080px;
  --pad: clamp(1rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --header-h: 3.75rem;
  --mobile-nav-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

section[id],
#top {
  scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 0.75rem);
}

::selection {
  background: rgba(240, 180, 41, 0.35);
  color: #fff;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(80% 50% at 85% -8%, rgba(240, 180, 41, 0.09), transparent 55%),
    radial-gradient(70% 45% at -5% 35%, rgba(255, 77, 109, 0.05), transparent 50%),
    var(--bg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: clip;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 400;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: top 0.2s;
}

.skip-link:focus {
  top: calc(0.75rem + var(--safe-top));
}

/* —— Ambient —— */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 300;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left;
  box-shadow: 0 0 14px rgba(240, 180, 41, 0.4);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.hero-title {
  overflow: hidden;
}

.hero-title-line.reveal {
  display: block;
  opacity: 1;
  transform: translateY(108%);
  transition: transform 1s var(--ease-out);
}

.hero-title-line.reveal.is-in {
  transform: none;
}

.hero-title-line.reveal[data-delay="1"] { transition-delay: 0.12s; }
.hero-title-line.reveal[data-delay="2"] { transition-delay: 0.22s; }

/* —— Header —— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding:
    calc(0.7rem + var(--safe-top))
    calc(var(--pad) + var(--safe-right))
    0.7rem
    calc(var(--pad) + var(--safe-left));
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.header.is-scrolled {
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-logo-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background: var(--accent);
  color: #111;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.header-logo:hover .header-logo-mark {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.28);
}

.header-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-nav a {
  position: relative;
  transition: color 0.25s;
}

.header-nav a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.header-nav a:not(.header-cta):hover,
.header-nav a:not(.header-cta).is-active {
  color: var(--ink);
}

.header-nav a:not(.header-cta):hover::after,
.header-nav a:not(.header-cta).is-active::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 0.55rem 1.05rem;
  background: var(--accent);
  color: #111 !important;
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}

.header-cta:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 180, 41, 0.3);
}

.mobile-nav {
  display: none;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0 1.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease),
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  color: #111;
  box-shadow: 0 10px 28px rgba(240, 180, 41, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(244, 241, 234, 0.28);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(240, 180, 41, 0.06);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -10%;
  will-change: transform;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.5) 0%, transparent 38%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.62) 0%, transparent 58%),
    linear-gradient(0deg, rgba(6, 6, 6, 1) 0%, rgba(6, 6, 6, 0.58) 42%, transparent 74%);
}

.hero-glow {
  position: absolute;
  bottom: -22%;
  left: -12%;
  width: 58%;
  height: 58%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.2), transparent 65%);
  filter: blur(48px);
  pointer-events: none;
  animation: glowDrift 10s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  padding-bottom: max(5.5rem, calc(4.5rem + var(--safe-bottom)));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-tag-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease-out infinite;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 15vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.hero-title-line {
  display: block;
}

.hero-desc {
  margin: 1.25rem 0 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-pitch {
  margin: 0 0 2rem;
  max-width: 28rem;
  color: rgba(244, 241, 234, 0.9);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 1.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s, opacity 0.4s;
}

.scroll-cue:hover {
  color: var(--accent);
}

.scroll-cue-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* —— Marquee —— */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(240, 180, 41, 0.05), rgba(255, 255, 255, 0.02), rgba(255, 77, 109, 0.05));
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
  animation: marquee 30s linear infinite;
}

.marquee-track span:nth-child(odd) {
  color: rgba(244, 241, 234, 0.88);
}

/* —— About —— */
.about {
  padding: 6.5rem var(--pad) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.section-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-text {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.bio-long {
  margin: 1.1rem 0 0;
  max-width: 32rem;
}

.bio-long p {
  margin: 0 0 0.85rem;
  color: rgba(244, 241, 234, 0.78);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
}

.bio-toggle {
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  transition: color 0.25s;
}

.bio-toggle:hover {
  color: #fff;
}

.epk-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-point {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.3rem 0.65rem;
  margin: 0 -0.65rem;
  border-top: 1px solid var(--line);
  transition: background 0.35s, transform 0.35s var(--ease);
}

.about-point:last-child {
  border-bottom: 1px solid var(--line);
}

.about-point:hover {
  background: rgba(240, 180, 41, 0.045);
  transform: translateX(6px);
}

.about-point-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.about-point strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.about-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 4.5rem 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 760px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 1.6rem 1rem;
  background: var(--bg-2);
  text-align: center;
  transition: background 0.3s, transform 0.35s var(--ease);
}

.stat:hover {
  background: #16150f;
  transform: translateY(-2px);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  transition: color 0.3s;
}

.stat:hover strong {
  color: var(--accent);
}

/* —— Social proof —— */
.proof {
  padding: 5.5rem var(--pad) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.proof-quotes {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .proof-quotes {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-quote {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(240, 180, 41, 0.06), rgba(255, 255, 255, 0.02));
}

.proof-quote p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: rgba(244, 241, 234, 0.92);
}

.proof-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.proof-logo {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.55);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.proof-logo:hover {
  color: var(--accent);
  border-color: rgba(240, 180, 41, 0.45);
  background: rgba(240, 180, 41, 0.05);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-metric {
  padding: 1.35rem 0.75rem;
  background: var(--bg-2);
  text-align: center;
}

.proof-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.proof-metric span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* —— Rider —— */
.rider {
  padding: 5.5rem var(--pad) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.rider-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 860px) {
  .rider-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rider-card {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}

.rider-card:hover {
  border-color: rgba(240, 180, 41, 0.4);
  transform: translateY(-3px);
}

.rider-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.rider-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rider-card li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.rider-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.rider-card strong {
  color: rgba(244, 241, 234, 0.92);
  font-weight: 500;
}

.stat span {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* —— Clips —— */
.clips {
  padding: 6.5rem var(--pad) 4.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.clips-list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

.clip-meta {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.clip-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.clip-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clip-caption {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.clip-frame {
  position: relative;
}

.clip-player {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  padding: 0;
  color: inherit;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.clip-player:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.clip-player::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
  z-index: 3;
}

.clip-player:hover::after {
  border-color: rgba(240, 180, 41, 0.4);
}

.clip-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), opacity 0.35s, filter 0.45s;
  filter: saturate(1.06) contrast(1.03);
}

.clip-thumb-short {
  object-position: center top;
}

.clip-player:hover .clip-thumb {
  transform: scale(1.045);
}

.clip.is-playing .clip-thumb {
  opacity: 0;
}

.clip-embed {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.clip-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.clip-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.clip-play svg {
  width: 1.35rem;
  height: 1.35rem;
  padding: 1.15rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  box-sizing: content-box;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}

.clip-player:hover .clip-play {
  background: rgba(0, 0, 0, 0.45);
}

.clip-player:hover .clip-play svg {
  transform: scale(1.1);
  background: var(--accent);
  color: #111;
  box-shadow: 0 10px 30px rgba(240, 180, 41, 0.35);
}

.clip.is-playing .clip-play {
  opacity: 0;
  pointer-events: none;
}

.clip-hint {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.clip-hint svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.clip.is-playing:not([data-muted="1"]) .clip-hint {
  opacity: 0;
}

.clip[data-muted="1"] .clip-embed iframe {
  pointer-events: none;
}

.clip[data-muted="1"] .clip-hint {
  opacity: 1;
  z-index: 4;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.clip[data-muted="1"] .clip-play {
  opacity: 0;
  pointer-events: none;
}

.clip-stop {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 4;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88);
  transition: opacity 0.25s, transform 0.25s var(--ease), background 0.2s;
}

.clip.is-playing .clip-stop {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.clip-stop:hover {
  background: var(--accent);
  color: #111;
}

/* —— Photos —— */
.photos {
  padding: 4.5rem var(--pad) 5.5rem;
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
}

.photos-note {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.photos-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .photos-grid {
    grid-template-columns: 1.05fr 1.2fr;
    grid-template-rows: auto auto;
  }

  .photo-tall {
    grid-row: span 2;
  }
}

.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.45s;
}

.photo-tall img {
  aspect-ratio: 3 / 4;
  min-height: 100%;
}

.photo-wide img {
  aspect-ratio: 16 / 10;
}

.photo:hover img {
  transform: scale(1.05);
  filter: saturate(1.12) contrast(1.03);
}

.photo figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.6rem;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}

.photo:hover figcaption {
  opacity: 1;
  transform: none;
}

/* —— Contact —— */
.contact {
  padding: 3rem var(--pad) 6.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-panel {
  position: relative;
  text-align: center;
  padding: clamp(2.75rem, 6vw, 4.75rem) clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(240, 180, 41, 0.15), transparent 55%),
    linear-gradient(180deg, #15130d 0%, #0a0908 100%);
  border: 1px solid rgba(240, 180, 41, 0.24);
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 50%;
  width: 22rem;
  height: 22rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240, 180, 41, 0.18), transparent 70%);
  pointer-events: none;
  animation: contactPulse 7s ease-in-out infinite;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}

.contact-desc {
  margin: 1rem auto 1.75rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
  word-break: break-word;
}

.contact-email:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.contact-note {
  margin: 1.15rem 0 1.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.contact-btn {
  min-width: 14rem;
}

/* —— Footer —— */
.footer {
  padding: 2.5rem var(--pad) 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.footer-seo {
  margin-bottom: 1.75rem;
  max-width: 42rem;
}

.footer-seo-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.7);
}

.footer-seo p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: none;
}

.footer-seo strong {
  color: rgba(244, 241, 234, 0.85);
  font-weight: 500;
}

.footer-seo-tags {
  font-size: 0.72rem !important;
  letter-spacing: 0.04em;
  line-height: 1.55 !important;
  opacity: 0.85;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer a {
  transition: color 0.25s;
}

.footer a:hover {
  color: var(--accent);
}

/* —— Keyframes —— */
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.14); }
}

@keyframes glowDrift {
  from { transform: translate(0, 0); opacity: 0.7; }
  to { transform: translate(8%, -6%); opacity: 1; }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(240, 180, 41, 0.55); }
  70% { box-shadow: 0 0 0 11px rgba(240, 180, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 180, 41, 0); }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes contactPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.18); }
}

body:not(.is-ready) .hero-inner {
  opacity: 0;
}

body.is-ready .hero-inner {
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* —— Mobile —— */
@media (max-width: 899px) {
  .header-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: calc(var(--mobile-nav-h) + var(--safe-bottom));
    padding:
      0.35rem
      max(0.35rem, var(--safe-right))
      calc(0.35rem + var(--safe-bottom))
      max(0.35rem, var(--safe-left));
    background: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.45rem 0.2rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    border-radius: 0.4rem;
    transition: color 0.2s, background 0.2s;
  }

  .mobile-nav a.is-active:not(.mobile-nav-cta) {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-cta {
    color: #111 !important;
    background: var(--accent);
    font-weight: 800;
  }

  body {
    padding-bottom: calc(var(--mobile-nav-h) + var(--safe-bottom));
  }

  .hero-inner {
    padding-top: calc(var(--header-h) + var(--safe-top) + 1rem);
    padding-bottom: max(4.5rem, calc(3.5rem + var(--safe-bottom)));
  }

  .hero-title {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 3.2rem;
  }

  .scroll-cue {
    display: none;
  }

  .about,
  .clips {
    padding-top: 4.25rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .clips-list {
    gap: 2.4rem;
  }

  .clip-hint {
    left: 0.65rem;
    right: auto;
    bottom: 0.65rem;
  }

  .photo figcaption {
    opacity: 1;
    transform: none;
  }

  .contact {
    padding-bottom: 3rem;
  }

  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    min-width: 0;
    min-height: 3.2rem;
  }

  .contact-email {
    font-size: clamp(1.25rem, 6vw, 1.8rem);
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.45rem;
  }

  .about-point:hover,
  .stat:hover {
    transform: none;
  }

  .marquee {
    mask-image: none;
  }

  .grain {
    opacity: 0.025;
  }
}

@media (max-width: 420px) {
  .header-logo-name {
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-tag {
    letter-spacing: 0.12em;
    font-size: 0.65rem;
  }

  .stat strong {
    font-size: 1.1rem;
  }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + var(--safe-top));
  }

  .hero-inner {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .btn {
    width: auto;
  }
}

@media (hover: none) {
  .btn:hover,
  .header-cta:hover,
  .clip-player:hover,
  .clip-player:hover .clip-thumb,
  .photo:hover img,
  .about-point:hover,
  .stat:hover {
    transform: none;
    box-shadow: none;
  }

  .clip-player:hover .clip-play svg {
    transform: none;
    background: var(--ink);
    color: var(--bg);
    box-shadow: none;
  }

  .btn:active,
  .header-cta:active {
    transform: scale(0.98);
  }

  .clip-player:active .clip-play svg {
    background: var(--accent);
    color: #111;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-bg,
  .hero-glow,
  .marquee-track,
  .scroll-cue-line,
  .hero-tag-dot,
  .contact-panel::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
