/* ===========================================================
   OFF THE TABLE — shared design system
   Brand: dark cinematic. Bebas Neue / Space Grotesk / Inter.
   =========================================================== */
:root {
  --black: #0a0a0a;
  --deep: #111111;
  --dark: #1a1a1a;
  --mid: #2a2a2a;
  --grey: #888888;
  --light: #e0e0e0;
  --white: #f5f5f5;
  --accent: #ff4d00;
  --accent-hot: #ff6a2f;
  --accent-glow: rgba(255, 77, 0, 0.3);
  --magenta: #ff2d7b;
  --acid: #c8ff00;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scrollbar-width: thin; scrollbar-color: var(--accent) var(--black); }
body { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; cursor: default; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--black); }
a { color: inherit; }

/* CUSTOM CURSOR */
.cursor-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; mix-blend-mode: difference; transition: transform 0.1s ease; }
.cursor-ring { width: 40px; height: 40px; border: 1.5px solid var(--accent); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; mix-blend-mode: difference; transition: width 0.3s, height 0.3s, border-color 0.3s; }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--acid); }

/* FILM GRAIN */
.grain-overlay { position: fixed; top: -100%; left: -100%; width: 300%; height: 300%; z-index: 9998; pointer-events: none; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E"); animation: grain 0.5s steps(6) infinite; }
@keyframes grain { 0%,100%{transform:translate(0,0)} 10%{transform:translate(-5%,-10%)} 20%{transform:translate(-15%,5%)} 30%{transform:translate(7%,-15%)} 40%{transform:translate(-5%,15%)} 50%{transform:translate(-15%,10%)} 60%{transform:translate(15%,0)} 70%{transform:translate(0,10%)} 80%{transform:translate(3%,-15%)} 90%{transform:translate(-10%,10%)} }

/* NAV */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 1.4rem 3rem; display: flex; justify-content: space-between; align-items: center; background: linear-gradient(to bottom, rgba(10,10,10,0.85), transparent); transition: transform 0.3s ease; }
.nav-logo { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.3em; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-right { display: flex; gap: 2rem; align-items: center; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-family: var(--font-heading); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { padding: 0.6rem 1.4rem; background: var(--accent); color: var(--black); font-family: var(--font-heading); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.3s, transform 0.3s; white-space: nowrap; }
.nav-cta:hover { background: var(--accent-hot); transform: scale(1.04); }
/* hamburger (mobile only) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 9px 7px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1.05rem 2.4rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: transform 0.3s, background 0.3s, color 0.3s; position: relative; overflow: hidden; }
.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { background: var(--accent-hot); transform: scale(1.04); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--mid); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--deep); transform: scale(1.04); }
.btn-lg { padding: 1.3rem 3.2rem; font-size: 1rem; }

/* HERO (image background variant) */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; padding: 8rem 3rem 5.5rem; }
.hero.compact .hero-title { font-size: clamp(2.5rem, 6.4vw, 5.8rem); line-height: 0.9; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--black) 6%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.55) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; }
.hero-eyebrow { font-family: var(--font-heading); font-size: clamp(0.7rem, 1.2vw, 0.95rem); letter-spacing: 0.5em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.4rem; font-weight: 600; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.4rem, 11vw, 10rem); line-height: 0.84; letter-spacing: -0.01em; color: var(--white); }
.hero-title em { color: transparent; -webkit-text-stroke: 1.5px var(--white); font-style: normal; }
.hero-title .accent { color: var(--accent); }
.hero-sub { font-family: var(--font-heading); font-size: clamp(1rem, 1.7vw, 1.4rem); font-weight: 300; color: var(--light); margin-top: 1.8rem; max-width: 640px; line-height: 1.5; }
.hero-cta-row { margin-top: 2.5rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.hero-chip { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.8rem; font-family: var(--font-heading); font-size: 0.82rem; color: var(--light); letter-spacing: 0.05em; }
.hero-chip .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 0 rgba(200,255,0,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(200,255,0,0.5)} 70%{box-shadow:0 0 0 12px rgba(200,255,0,0)} 100%{box-shadow:0 0 0 0 rgba(200,255,0,0)} }
.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.6; }
.hero-scroll span { font-family: var(--font-heading); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); }
.hero-scroll .arrow { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollBounce 2s ease infinite; }
@keyframes scrollBounce { 0%,100%{opacity:0.3;transform:translateY(0)} 50%{opacity:1;transform:translateY(8px)} }

/* HERO — HOME (restored big three-line typographic title over darkened photo) */
.hero-home { justify-content: center; align-items: center; text-align: center; padding: 7rem 2rem 5.5rem; }
.hero-home .hero-bg img { opacity: 0.4; }
.hero-home .hero-bg::after { background: radial-gradient(125% 95% at 50% 40%, rgba(10,10,10,0.42) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.94) 100%); }
.hero-home .hero-inner { max-width: none; display: flex; flex-direction: column; align-items: center; }
.hero-home .hero-eyebrow { margin-bottom: 1.5rem; }
.hero-home .hero-sub { margin-left: auto; margin-right: auto; }
.hero-home .hero-cta-row { justify-content: center; }
.hero-stack { font-size: clamp(4rem, 14vw, 13rem); line-height: 0.83; letter-spacing: -0.01em; }
.hero-stack .word { display: block; }
.hero-stack .w-off { color: var(--white); }
.hero-stack .w-the { color: transparent; -webkit-text-stroke: 2px var(--white); }
.hero-stack .w-table { color: var(--accent); }
/* letter reveal (graceful: full title shows with no JS / reduced motion) */
.hero-stack .char { display: inline-block; opacity: 0; transform: translateY(90px) rotateX(-90deg); }
.hero-stack.lit .char { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }

/* DECORATIVE BACKGROUND LINES (reused from the original hero, JS-injected into [data-lines] hosts) */
.lined { position: relative; }
.lined > *:not(.bg-lines) { position: relative; z-index: 1; }
.bg-lines { position: absolute; inset: 0; overflow: hidden; opacity: 0.09; z-index: 0; pointer-events: none; }
.bg-lines .ln { position: absolute; height: 1px; background: var(--white); transform-origin: left; }

/* FILM GRAIN — scoped to the cinematic moments only (full-bleed hero + photo dividers), not the whole site.
   The original site-wide fixed .grain-overlay has been removed; this confines the effect where it reads as film. */
/* FILM GRAIN OVERLAY (analogue / TV-static) on the photographic surfaces.
   Constant opacity (no flashing) + a fast, SMALL background-position shimmer so the
   grain reads as fine moving texture, not a brightening flash or a lurching strobe. */
.media-grain { position: relative; overflow: hidden; }
.hero::after, .pdiv::after, .ricky-visual::after, .media-grain::after {
  content: ''; position: absolute; inset: 0;
  z-index: 2; pointer-events: none; opacity: 0.24;
  /* crisp white speckle (alpha-thresholded noise), STATIC: no animation = no bobble, no strobe */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 2 -0.7'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}
/* keep grain behind the hero text and the divider ghost words */
.hero::after, .pdiv::after { z-index: 1; }
.ricky-visual-tag { z-index: 3; }

/* MARQUEE */
.marquee-section { padding: 1.2rem 0; background: var(--accent); overflow: hidden; position: relative; }
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.35em; color: var(--black); white-space: nowrap; padding: 0 1.6rem; text-transform: uppercase; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* GHOST-WORD PARALLAX DIVIDER (Kinetexx pattern, OTT brand) */
[data-parallax] { will-change: transform; }
.pdiv { position: relative; height: 72vh; min-height: 440px; overflow: hidden; border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid); display: flex; align-items: center; justify-content: center; }
.pdiv-img { position: absolute; left: 0; right: 0; top: -22%; height: 144%; background-size: cover; background-position: center; will-change: transform; }
.pdiv-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.78), rgba(10,10,10,0.45) 50%, rgba(10,10,10,0.86)); }
.pdiv-word { position: relative; z-index: 2; font-family: var(--font-display); font-weight: 400; font-size: clamp(4rem, 20vw, 18rem); letter-spacing: 0.02em; color: transparent; -webkit-text-stroke: 1.6px rgba(245,245,245,0.62); text-transform: uppercase; line-height: 0.9; opacity: 0.95; text-align: center; }
.pdiv-cap { position: absolute; z-index: 2; bottom: 30px; left: 50%; transform: translateX(-50%); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 600; text-align: center; width: 90%; font-family: var(--font-heading); }

/* GENERIC SECTION */
.sec { padding: 8rem 3rem; position: relative; }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--accent); margin-bottom: 2.2rem; display: flex; align-items: center; gap: 1rem; font-weight: 600; }
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.h-display { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: 0.92; }
.h-display em { color: var(--accent); font-style: normal; }
.h-display .outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.8; color: var(--light); font-weight: 300; max-width: 760px; }
.lead strong { color: var(--white); font-weight: 500; }
.muted { color: var(--grey); font-weight: 300; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.split.flip { grid-template-columns: 0.9fr 1.1fr; }
.split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--mid); }
.story-body { font-size: 1.05rem; line-height: 1.85; color: var(--grey); font-weight: 300; }
.story-body p { margin-bottom: 1.3rem; }
.story-body strong { color: var(--white); font-weight: 500; }
.pullquote { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.05; color: var(--white); margin: 1rem 0; }
.pullquote span { color: var(--accent); }

/* TWO-UP CARDS (format) */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.duo-card { background: var(--deep); border: 1px solid var(--mid); padding: 2.5rem; transition: border-color 0.3s, transform 0.3s; }
.duo-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.duo-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--accent); }
.duo-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin: 0.4rem 0 1rem; }
.duo-card p { color: var(--grey); line-height: 1.7; font-weight: 300; font-size: 0.98rem; }

/* STATS */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; padding-top: 3.5rem; border-top: 1px solid var(--mid); }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); color: var(--accent); line-height: 1; }
.stat-label { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); margin-top: 0.6rem; font-weight: 500; }

/* SEASON / DESTINATION GRID */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.dest { position: relative; border: 1px solid var(--mid); background: var(--deep); padding: 2rem; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; transition: border-color 0.3s, transform 0.3s; overflow: hidden; }
.dest:hover { border-color: var(--accent); transform: translateY(-4px); }
.dest .dest-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--grey); letter-spacing: 0.2em; }
.dest h3 { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.03em; margin-top: 0.5rem; }
.dest p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; font-weight: 300; margin-top: 0.6rem; }
.dest .pill { align-self: flex-start; margin-top: 1rem; font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--mid); padding: 0.3rem 0.7rem; }
.dest.featured { border-color: var(--accent); background: linear-gradient(160deg, rgba(255,77,0,0.08), var(--deep)); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.member { background: var(--deep); border: 1px solid var(--mid); padding: 2.2rem; transition: border-color 0.3s, transform 0.3s; }
.member:hover { border-color: var(--accent); transform: translateY(-4px); }
.member-name { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.02em; }
.member-role { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin: 0.4rem 0 1.1rem; font-weight: 600; }
.member p { color: var(--grey); font-size: 0.92rem; line-height: 1.7; font-weight: 300; }

/* RICKY / PERSON PROFILE (ghosted background word, portrait, bio) */
.ricky { padding: 9rem 3rem 7rem; background: var(--deep); position: relative; overflow: hidden; }
.ricky::before { content: 'RICKY'; font-family: var(--font-display); font-size: clamp(7rem, 22vw, 22rem); color: transparent; -webkit-text-stroke: 1px var(--mid); position: absolute; top: 50%; right: 0; left: auto; bottom: auto; transform: translateY(-50%); white-space: nowrap; pointer-events: none; z-index: 0; opacity: 0.6; }
.ricky-content { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 5rem; align-items: center; }
.ricky-visual { aspect-ratio: 3/4; position: relative; overflow: hidden; border: 1px solid var(--mid); }
.ricky-visual img { width: 100%; height: 100%; object-fit: cover; }
.ricky-visual-tag { position: absolute; bottom: 1.2rem; left: 1.2rem; font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.3em; color: var(--accent); background: var(--black); padding: 0.4rem 0.9rem; }
.ricky-role { font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.4rem; font-weight: 600; }
.ricky-info h1, .ricky-info h2 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.9; margin-bottom: 1.6rem; }
.ricky-info h1 span, .ricky-info h2 span { display: block; color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.ricky-info p { font-size: 1.02rem; line-height: 1.8; color: var(--grey); font-weight: 300; }
.ricky-info p strong { color: var(--white); font-weight: 500; }
.lang-wrap { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.lang-tag { padding: 0.4rem 1rem; border: 1px solid var(--mid); font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); transition: all 0.3s; font-weight: 500; }
.lang-tag:hover { border-color: var(--accent); color: var(--accent); }

/* TRAILER */
.video-frame { max-width: 1000px; margin: 3rem auto 0; aspect-ratio: 16/9; border: 1px solid var(--mid); position: relative; }
.video-frame iframe { width: 100%; height: 100%; }

/* FAQ */
.faq { max-width: 860px; margin: 3rem auto 0; }
.faq-item { border-top: 1px solid var(--mid); padding: 1.6rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--mid); }
.faq-q { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: var(--accent); font-size: 1.5rem; line-height: 1; }
details[open] .faq-q::after { content: '−'; }
.faq-a { color: var(--grey); line-height: 1.75; font-weight: 300; margin-top: 1rem; font-size: 1rem; }

/* FUNNEL BAND (home -> back the pilot) */
.funnel { background: var(--accent); color: var(--black); text-align: center; padding: 7rem 3rem; position: relative; overflow: hidden; }
.funnel h2 { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 6rem); line-height: 0.92; }
.funnel p { max-width: 560px; margin: 1.4rem auto 2.4rem; font-size: 1.05rem; line-height: 1.6; color: rgba(0,0,0,0.78); }
.funnel-meta { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.8rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; color: var(--black); }
.funnel-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--black); }

/* PROGRESS (funding page) */
.progress-amounts { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.progress-raised { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 6.5rem); line-height: 1; color: var(--accent); }
.progress-goal { font-family: var(--font-heading); font-size: clamp(1rem, 2vw, 1.4rem); color: var(--grey); font-weight: 300; }
.progress-bar-wrap { margin: 2rem 0 1.5rem; height: 14px; background: var(--mid); border-radius: 99px; overflow: hidden; position: relative; }
.progress-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--magenta)); border-radius: 99px; transition: width 1.6s cubic-bezier(0.2,0.8,0.2,1); }

/* PROGRESS SECTION (funding page) */
.progress { padding: 6rem 3rem; background: var(--deep); border-bottom: 1px solid var(--mid); }
.progress-inner { max-width: 1100px; margin: 0 auto; }
.progress-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--mid); }
.pm { text-align: center; }
.pm-num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); line-height: 1; }
.pm-label { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); margin-top: 0.6rem; font-weight: 500; }
.progress-cta { margin-top: 3rem; text-align: center; }

/* WISHLIST */
.wishlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 3rem; }
.wish { border: 1px solid var(--mid); padding: 1.8rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; transition: border-color 0.3s; }
.wish:hover { border-color: var(--accent); }
.wish h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.wish p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; font-weight: 300; }
.wish-amount { font-family: var(--font-display); font-size: 2rem; color: var(--accent); white-space: nowrap; }

/* TIERS */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.tier { background: var(--deep); border: 1px solid var(--mid); padding: 2rem; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; }
.tier:hover { border-color: var(--accent); transform: translateY(-4px); }
.tier-price { font-family: var(--font-display); font-size: 2.6rem; color: var(--white); line-height: 1; }
.tier-name { font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin: 0.7rem 0 1rem; font-weight: 600; }
.tier p { color: var(--grey); font-size: 0.92rem; line-height: 1.65; font-weight: 300; flex: 1; }
.tier.flagship { border-color: var(--accent); background: linear-gradient(160deg, rgba(255,77,0,0.08), var(--deep)); }

/* STICKY BAR */
.sticky-bar { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 200; background: rgba(10,10,10,0.94); backdrop-filter: blur(8px); border-top: 1px solid var(--mid); padding: 0.9rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; transform: translateY(120%); transition: transform 0.4s ease; }
.sticky-bar.show { transform: translateY(0); }
.sticky-left { display: flex; align-items: center; gap: 1.2rem; min-width: 0; }
.sticky-mini-bar { width: 160px; height: 8px; background: var(--mid); border-radius: 99px; overflow: hidden; flex-shrink: 0; }
.sticky-mini-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--magenta)); border-radius: 99px; }
.sticky-text { font-family: var(--font-heading); font-size: 0.85rem; color: var(--light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-text b { color: var(--white); }

/* NEWSLETTER */
.signup-form { display: flex; max-width: 550px; margin: 2.5rem auto 0; border: 1px solid var(--mid); transition: border-color 0.3s; }
.signup-form:focus-within { border-color: var(--accent); }
.signup-form input { flex: 1; padding: 1.2rem 1.5rem; background: transparent; border: none; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; outline: none; font-weight: 300; }
.signup-form input::placeholder { color: var(--grey); }
.signup-form button { padding: 1.2rem 2.2rem; background: var(--accent); color: var(--black); border: none; font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.signup-form button:hover { background: var(--accent-hot); }
.signup-note { font-size: 0.75rem; color: var(--grey); margin-top: 1rem; font-weight: 300; }

/* FOOTER */
.footer { padding: 4rem 3rem 7rem; border-top: 1px solid var(--mid); }
.footer-content { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.2em; }
.footer-logo span { color: var(--accent); }
.footer-socials { display: flex; gap: 1.8rem; align-items: center; flex-wrap: wrap; }
.social-link { font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); text-decoration: none; transition: color 0.3s; }
.social-link:hover { color: var(--accent); }
.footer-bottom { max-width: 1100px; margin: 2rem auto 0; display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--mid); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom span { font-size: 0.74rem; color: var(--grey); font-weight: 300; letter-spacing: 0.05em; }
.footer-bottom a { color: var(--accent); text-decoration: none; }

/* BREADCRUMB */
.crumb { max-width: 1100px; margin: 0 auto; padding: 7rem 3rem 0; font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); }
.crumb a { color: var(--accent); text-decoration: none; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .split, .split.flip { grid-template-columns: 1fr; gap: 2.5rem; }
  .ricky-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .ricky::before { display: none; }
  .duo-grid, .wishlist, .tiers, .team-grid, .dest-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 0.9rem; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; list-style: none;
    background: rgba(10, 10, 10, 0.97); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    max-height: 0; opacity: 0; overflow: hidden; padding: 0 1.5rem;
    border-top: 0 solid var(--mid);
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .nav.open .nav-links {
    max-height: 70vh; opacity: 1; padding: 0.6rem 1.5rem 1.4rem; border-top: 1px solid var(--mid);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 1rem 0; font-size: 1rem; letter-spacing: 0.18em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links a::after { display: none; }
}
@media (max-width: 768px) {
  /* film grain much lighter on mobile (was far too heavy) */
  .hero::after, .pdiv::after, .ricky-visual::after, .media-grain::after { opacity: 0.1; }
  .nav { padding: 1rem 1.1rem; }
  .nav-logo { font-size: 1.02rem; letter-spacing: 0.14em; white-space: nowrap; }
  .nav-cta { padding: 0.55rem 1rem; font-size: 0.66rem; }
  .hero { padding: 6rem 1.3rem 3.5rem; }
  .sec { padding: 5rem 1.3rem; }
  .funnel { padding: 5rem 1.3rem; }
  .footer { padding: 3rem 1.3rem 7rem; }
  .crumb { padding: 6rem 1.3rem 0; }
  .sticky-bar { padding: 0.8rem 1.3rem; }
  .sticky-mini-bar { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .hero-cta-row .btn { flex: 1; justify-content: center; }
  .pdiv { height: 56vh; min-height: 340px; }
}
@media (max-width: 560px) {
  .hero-home .hero-cta-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-home .hero-cta-row .btn { width: 100%; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .sticky-text { font-size: 0.78rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .grain-overlay, .hero-scroll .arrow, .hero::after, .pdiv::after, .ricky-visual::after, .media-grain::after { animation: none; }
}
