/* ===========================================================
   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); }
/* Lenis smooth-scroll: hand control to Lenis when active, disable native smooth */
html.lenis, html.lenis body { height: auto; }
html.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
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-menu-logo { display: none; }
.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); }
/* active / current page (persistent underline, so you always know where you are) */
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }
.nav-cta.active { box-shadow: inset 0 0 0 2px rgba(10,10,10,0.4); }
.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); }
/* Desktop only: spread the middle links evenly across the bar, logo far left, CTA far right. */
@media (min-width: 981px){
  .nav-right { flex: 1 1 auto; margin-left: 3rem; }
  .nav-links { flex: 1 1 auto; justify-content: space-evenly; }
}

/* 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.9; letter-spacing: -0.01em; }
.hero-stack .word { display: block; white-space: nowrap; }
/* Mark's note (13 Jul): vertical wordmark all-white, evenly spaced, orange full stop, to match the horizontal logo. No transparent "THE". */
/* ORIGINAL VERSION (Matt's pick, kept on file, see HERO_LOGO_VERSIONS.html). To revert, use:
   .hero-stack .w-the { color: transparent; -webkit-text-stroke: 2px var(--white); }
   .hero-stack .w-table { color: var(--accent); }
   .hero-stack .w-table .char:last-child { color: var(--white); }  */
.hero-stack .w-off { color: var(--white); }
.hero-stack .w-the { color: var(--white); -webkit-text-stroke: 0; }
.hero-stack .w-table { color: var(--white); }
.hero-stack .w-table .char:last-child { color: var(--accent); margin-right: -0.34em; } /* orange full stop, matches the horizontal wordmark; negative margin so the word TABLE optically centres on the stack and the dot hangs (Mark 14 Jul) */
/* 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); }

/* RANSOM TILE HERO, cut-out letters that fall into place (Sex Pistols energy, on-brand) */
.hero-stack.ransom { font-size: clamp(3rem, 12vw, 12rem); letter-spacing: 0; }
.hero-stack.ransom .word { display: block; line-height: 1.08; }
.hero-stack.ransom .tile {
  display: inline-block; font-family: var(--font-display); line-height: 0.9;
  padding: 0.05em 0.11em 0.005em; margin: 0.03em 0.045em; border-radius: 5px;
  transform: translate(var(--tx, 0px), var(--ty, -200px)) rotate(var(--r, 0deg)); opacity: 0;
  transition: transform var(--dur, 0.85s) cubic-bezier(.16,1.12,.3,1), opacity 0.3s ease;
  will-change: transform;
}
.hero-stack.ransom.lit .tile { transform: translate(0, 0) rotate(var(--rs, 0deg)); opacity: 1; }
.hero-stack.ransom .tile.v-dark  { background: #141414; color: var(--white); border: 1px solid #2c2c2c; box-shadow: 0 6px 18px rgba(0,0,0,0.45); }
.hero-stack.ransom .tile.v-out   { background: transparent; color: transparent; -webkit-text-stroke: 2px var(--white); border: 1px solid #2c2c2c; }
.hero-stack.ransom .tile.v-fill  { background: var(--accent); color: var(--black); box-shadow: 0 6px 18px rgba(255,77,0,0.35); }
.hero-stack.ransom .tile.v-white { background: var(--white); color: var(--black); }
.hero-stack.ransom .tile.v-dot   { background: transparent; color: var(--white); border: none; box-shadow: none; padding: 0.05em 0.02em; }
@media (max-width: 600px){ .hero-stack.ransom { font-size: clamp(2.6rem, 15vw, 6rem); } }

/* BRAND DROP: our own Bebas type falling in randomly (no boxes), stays fully on-brand */
.hero-stack.branddrop { font-size: clamp(3rem, 11vw, 10rem); letter-spacing: -0.01em; }
.hero-stack.branddrop .char {
  display: inline-block;
  transform: translate(var(--tx, 0px), var(--ty, -220px)) rotate(var(--r, 0deg)); opacity: 0;
  transition: transform var(--dur, 0.9s) cubic-bezier(.16,1.12,.3,1), opacity 0.3s ease;
  transition-delay: var(--delay, 0s); will-change: transform;
}
.hero-stack.branddrop.lit .char { transform: translate(0, 0) rotate(var(--rs, 0deg)); opacity: 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.1; z-index: 0; pointer-events: none; }
.bg-lines .ln { position: absolute; left: 0; height: 1px; transform-origin: left center; background: linear-gradient(90deg, rgba(245,245,245,0.9), rgba(245,245,245,0)); }
.bg-lines .ln.r { left: auto; right: 0; transform-origin: right center; background: linear-gradient(270deg, rgba(245,245,245,0.9), rgba(245,245,245,0)); }

/* 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(8rem, 26vw, 26rem); color: transparent; -webkit-text-stroke: 1px var(--mid); position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; z-index: 0; opacity: 0.85; }
.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; object-position: center 22%; }
.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; overflow: hidden; border-radius: 12px; background: #000; min-height: 220px; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* 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 { font-size: 30vw; top: 38%; }
  .duo-grid, .wishlist, .tiers, .team-grid, .dest-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.3rem; }
  .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: 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 { animation: none; }
}

/* hero background video (Higgsfield animation) */
.hero-bg video.hero-video{width:100%;height:100%;object-fit:cover;opacity:0.55}
.hero-home .hero-bg video.hero-video{opacity:0.55}
@media (prefers-reduced-motion: reduce){
  .hero-bg video.hero-video{visibility:hidden}
  .hero-bg::before{content:'';position:absolute;inset:0;background:url('img/amazon-river-dawn.webp') center/cover;opacity:0.5}
}

/* ---- CINEMATIC VIDEO DIVIDER (Higgsfield reveal) ---- */
.pdiv.pdiv-video { height: 88vh; min-height: 520px; }
.pdiv-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.pdiv-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px){ .pdiv.pdiv-video { height: 64vh; min-height: 380px; } }
@media (prefers-reduced-motion: reduce){
  .pdiv-vid { visibility: hidden; }
  .pdiv.pdiv-video { background:#0a0a0a center/cover; }
}

/* ---- THE HOST spotlight (Ricky, home) ---- */
.host { position: relative; overflow: hidden; background: var(--deep); border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid); }
.host-ghost { position: absolute; z-index: 0; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: clamp(9rem, 36vw, 32rem); color: transparent; -webkit-text-stroke: 1.6px rgba(245,245,245,0.16); line-height: 0.8; letter-spacing: 0.02em; pointer-events: none; white-space: nowrap; }
.host-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 7rem 3rem; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 3.4rem; align-items: center; }
.host-portrait { position: relative; aspect-ratio: 4/5; background: var(--mid); overflow: hidden; border: 1px solid var(--mid); }
.host-portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.08) contrast(1.02); }
.host-portrait .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--grey); font-family: var(--font-heading); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 1.4rem; }
.host-portrait::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.55)); pointer-events: none; }
.host-eyebrow { font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 1.2rem; }
.host-name { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 0.92; margin-bottom: 1.4rem; }
.host-name em { font-style: normal; color: var(--accent); }
.host-body p { font-size: 1.06rem; line-height: 1.8; color: var(--light); font-weight: 300; max-width: 560px; }
.host-body p + p { margin-top: 1.1rem; }
.host-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.15; color: var(--white); margin: 2rem 0 0; padding-left: 1.3rem; border-left: 2px solid var(--accent); }
.host-meta { display: flex; gap: 2.4rem; flex-wrap: wrap; margin-top: 2rem; }
.host-meta .hm b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--accent); line-height: 1; }
.host-meta .hm span { font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); }
@media (max-width: 820px){ .host-inner { grid-template-columns: 1fr; padding: 4.5rem 1.6rem; gap: 2.2rem; } .host-ghost { font-size: 40vw; } }

/* ---- MOBILE DROPDOWN NAV (slide-in drawer, on brand) ---- */
.nav-burger { display:none; width:30px; height:22px; position:relative; cursor:pointer; z-index:130; background:none; border:0; }
.nav-burger span { position:absolute; left:0; width:100%; height:2px; background:var(--white); transition:transform .3s ease, opacity .2s ease, top .3s ease; }
.nav-burger span:nth-child(1){ top:0; }
.nav-burger span:nth-child(2){ top:10px; }
.nav-burger span:nth-child(3){ top:20px; }
.nav-scrim { display:none; position:fixed; inset:0; background:rgba(5,5,5,0.6); backdrop-filter:blur(3px); z-index:110; opacity:0; transition:opacity .35s ease; }
@media (max-width: 980px){
  .nav-burger { display:block; }
  .nav-right {
    position:fixed; top:0; right:0; height:100vh; width:min(82vw, 340px);
    background:var(--deep); border-left:1px solid var(--mid);
    flex-direction:column; align-items:flex-start; justify-content:center; gap:0;
    padding:5rem 2.4rem; transform:translateX(105%);
    transition:transform .4s cubic-bezier(.4,0,.2,1); z-index:120;
    box-shadow:-24px 0 70px rgba(0,0,0,0.55);
  }
  .nav-right .nav-menu-logo { display:block; position:absolute; top:2rem; left:2.4rem; font-family:var(--font-display); font-size:1.5rem; letter-spacing:0.18em; color:var(--white); text-decoration:none; }
  .nav-right .nav-menu-logo span { color:var(--accent); }
  .nav-right .nav-links { display:flex !important; flex-direction:column; align-items:flex-start; gap:1.7rem; width:100%; }
  .nav-right .nav-links a { font-size:1.55rem; font-family:var(--font-display); letter-spacing:0.04em; color:var(--white); }
  .nav-right .nav-links a::after { display:none; }
  .nav-right .nav-cta { margin-top:2.4rem; width:100%; text-align:center; }
  #navToggle:checked ~ .nav-right { transform:translateX(0); }
  #navToggle:checked ~ .nav-scrim { display:block; opacity:1; }
  #navToggle:checked ~ .nav-burger span:nth-child(1){ top:10px; transform:rotate(45deg); }
  #navToggle:checked ~ .nav-burger span:nth-child(2){ opacity:0; }
  #navToggle:checked ~ .nav-burger span:nth-child(3){ top:10px; transform:rotate(-45deg); }
  body.nav-open { overflow:hidden; }
}

html:has(#navToggle:checked){ overflow:hidden; }

/* ---- EL SALVADOR GLIMPSES MOSAIC ---- */
.glimpse-grid{ display:grid; gap:12px; margin-top:2.6rem;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(3,180px);
  grid-template-areas:
    "street street food   food"
    "street street market vid1"
    "vid2   quote  market vid1"; }
.glimpse{ position:relative; overflow:hidden; margin:0; border:1px solid var(--mid); background:var(--dark); }
.glimpse img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .9s cubic-bezier(.2,.8,.2,1); }
.glimpse:hover img{ transform:scale(1.06); }
.glimpse.has-img::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 58%,rgba(10,10,10,0.5)); pointer-events:none; }
.glimpse .g-cap{ position:absolute; left:14px; bottom:12px; z-index:2; font-family:var(--font-heading); font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--light); }
.g-street{ grid-area:street; } .g-food{ grid-area:food; } .g-market{ grid-area:market; }
.g-vid1{ grid-area:vid1; } .g-vid2{ grid-area:vid2; } .g-quote{ grid-area:quote; }
/* video-ready slot tiles */
.glimpse-video{ display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:10px;
  background:radial-gradient(120% 120% at 50% 30%, #1c1c1c, #0f0f0f); }
.glimpse-video .play{ width:0; height:0; border-left:16px solid var(--accent); border-top:11px solid transparent; border-bottom:11px solid transparent; filter:drop-shadow(0 0 10px rgba(204,99,62,0.6)); }
.glimpse-video .slot{ font-family:var(--font-heading); font-size:0.56rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--grey); }
/* quote tile */
.glimpse-quote{ display:flex; align-items:center; justify-content:center; text-align:center; padding:1.2rem; background:var(--accent); }
.glimpse-quote span{ font-family:var(--font-display); font-size:1.5rem; line-height:1; color:var(--black); }
@media(max-width:760px){
  .glimpse-grid{ grid-template-columns:1fr 1fr; grid-template-rows:none; grid-auto-rows:150px; grid-template-areas:none; }
  .glimpse{ grid-area:auto !important; }
  .g-street{ grid-column:span 2; grid-row:span 2; }
  .g-market{ grid-row:span 2; }
}

/* ---- RICKY, cinematic character band ---- */
.host-band{ position:relative; height:72vh; min-height:440px; overflow:hidden; display:flex; align-items:flex-end; border-top:1px solid var(--mid); border-bottom:1px solid var(--mid); }
.host-band .band-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 28%; }
.host-band .band-veil{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,10,10,0.45), rgba(10,10,10,0.15) 42%, rgba(10,10,10,0.92)); }
.host-band .band-ghost{ position:absolute; z-index:1; top:6%; left:1.5%; font-family:var(--font-display); font-size:clamp(6rem,23vw,22rem); color:transparent; -webkit-text-stroke:1.6px rgba(245,245,245,0.20); line-height:0.8; pointer-events:none; }
.host-band .band-in{ position:relative; z-index:2; max-width:1100px; margin:0 auto; width:100%; padding:0 3rem 3.2rem; }
.host-band .band-eyebrow{ font-family:var(--font-heading); font-size:0.72rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--accent); font-weight:600; margin-bottom:1rem; }
.host-band .band-line{ font-family:var(--font-display); font-size:clamp(1.9rem,4.6vw,3.8rem); line-height:1.02; color:var(--white); max-width:20ch; }
.host-band .band-line em{ font-style:normal; color:var(--accent); }
@media(max-width:760px){ .host-band{ height:64vh; } .host-band .band-in{ padding:0 1.4rem 2rem; } }

/* HOST MOSAIC (fragments-style mix of Ricky photos, replaces the forced single portrait) */
.host-mosaic{ display:grid; gap:10px; grid-template-columns:1fr 1fr; grid-template-rows:210px 175px 175px;
  grid-template-areas:"big big" "a b" "c q"; }
.host-mosaic figure{ position:relative; overflow:hidden; margin:0; border:1px solid var(--mid); background:var(--dark); }
.host-mosaic img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .9s cubic-bezier(.2,.8,.2,1); filter:grayscale(0.06) contrast(1.02); }
.host-mosaic figure:hover img{ transform:scale(1.05); }
.host-mosaic figure::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(10,10,10,0.6)); pointer-events:none; }
.host-mosaic .hm-cap{ position:absolute; left:12px; bottom:10px; z-index:2; font-family:var(--font-heading); font-size:0.56rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--light); }
.host-mosaic .m-big{ grid-area:big; } .host-mosaic .m-a{ grid-area:a; } .host-mosaic .m-b{ grid-area:b; }
.host-mosaic .m-c{ grid-area:c; }
.host-mosaic .m-q{ grid-area:q; display:flex; align-items:center; justify-content:center; text-align:center; padding:1rem; background:var(--accent); }
.host-mosaic .m-q span{ font-family:var(--font-display); font-size:clamp(1.2rem,2.4vw,1.7rem); line-height:1; color:var(--black); }
@media(max-width:820px){ .host-mosaic{ grid-template-rows:190px 150px 150px; } }
/* Mobile: SEAMAN ghost sits under RICKY on the band image (not lost behind the mosaic tiles) */
.host-band .band-ghost2{ display:none; }
@media(max-width:820px){
  .host-ghost{ display:none; }
  .host-band .band-ghost2{ display:block; position:absolute; z-index:1; top:20%; left:1.5%;
    font-family:var(--font-display); font-size:23vw; line-height:0.8; letter-spacing:0.01em;
    color:transparent; -webkit-text-stroke:1.5px rgba(245,245,245,0.26); pointer-events:none; white-space:nowrap; }
}

/* format duo-card image (Mark: add images to the journey / conversation) */
.duo-card .duo-img{ width:100%; aspect-ratio:16/10; object-fit:cover; display:block; border:1px solid var(--mid); margin-bottom:1.4rem; filter:grayscale(0.06) contrast(1.02); }

/* pilot detail line (4 days, NY to San Salvador) */
.pilot-meta{ display:flex; gap:2.2rem; flex-wrap:wrap; margin-top:1.8rem; }
.pilot-meta .pm b{ display:block; font-family:var(--font-display); font-size:1.5rem; color:var(--white); line-height:1; }
.pilot-meta .pm span{ font-family:var(--font-heading); font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--grey); }

/* team member photos */
.member .member-photo{ width:100%; aspect-ratio:16/9; object-fit:cover; object-position:center 30%; background:var(--deep); border:1px solid var(--mid); margin-bottom:1.2rem; filter:grayscale(0.04) contrast(1.02); display:block; }

/* season destination cards with imagery */
.dest .dest-bg{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.dest .dest-bg img{ width:100%; height:100%; object-fit:cover; opacity:0.72; transition:transform .9s cubic-bezier(.2,.8,.2,1), opacity .4s; }
.dest:hover .dest-bg img{ transform:scale(1.07); opacity:0.9; }
.dest::after{ content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(10,10,10,0.74) 0%, rgba(10,10,10,0.28) 46%, rgba(10,10,10,0.82) 100%); }
.dest > *{ position:relative; z-index:2; }

/* ============================================================
   COME ALONG, involvement ladder (added 15 Jul, Ricky's "get involved feels hidden")
   Tasteful, prominent, on-brand. Back the film / Field Notes / Follow.
   ============================================================ */
.involve { background: radial-gradient(120% 90% at 50% 0%, rgba(255,77,0,0.07), transparent 55%), var(--black); padding: 7rem 3rem; }
.involve .involve-head { text-align: center; max-width: 720px; margin: 0 auto 3.4rem; }
.involve .involve-head p { margin: 1.4rem auto 0; color: var(--light); }
.involve-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 1.4rem; max-width: 1120px; margin: 0 auto; align-items: stretch; }
.involve-card { position: relative; display: flex; flex-direction: column; background: linear-gradient(180deg, #141414, #0e0e0e); border: 1px solid var(--mid); border-radius: 16px; padding: 2rem 1.8rem; overflow: hidden; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s; text-decoration: none; }
.involve-card:hover { transform: translateY(-4px); border-color: rgba(255,77,0,0.55); }
.involve-card .ic-kicker { font-family: var(--font-heading); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.involve-card h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 0.98; color: var(--white); margin: 1.1rem 0 0.7rem; letter-spacing: 0.01em; }
.involve-card p { color: var(--grey); font-size: 0.95rem; line-height: 1.6; font-weight: 300; }
.involve-card .ic-spacer { flex: 1; min-height: 1.4rem; }
.involve-card .ic-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--white); }
.involve-card:hover .ic-cta { color: var(--accent); }
/* primary (back the film) */
.involve-primary { background: linear-gradient(165deg, rgba(255,77,0,0.16), #120b07 70%); border-color: rgba(255,77,0,0.4); }
.involve-primary .ic-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 1.2rem; }
.involve-primary .ic-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2.4s infinite; }
.involve-primary .ic-cta { color: var(--accent); }
/* newsletter (field notes) */
.involve-form { display: flex; margin-top: 1.2rem; border: 1px solid var(--mid); border-radius: 10px; overflow: hidden; transition: border-color .3s; }
.involve-form:focus-within { border-color: var(--accent); }
.involve-form input { flex: 1; min-width: 0; padding: 0.95rem 1rem; background: transparent; border: none; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; outline: none; font-weight: 300; }
.involve-form input::placeholder { color: var(--grey); }
.involve-form button { padding: 0.95rem 1.3rem; background: var(--accent); color: var(--black); border: none; font-family: var(--font-heading); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background .3s; white-space: nowrap; }
.involve-form button:hover { background: var(--accent-hot); }
.involve-form.done button { background: var(--acid); }
.involve-note { margin-top: 0.8rem; font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--grey); }
/* follow socials */
.ic-socials { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.2rem; }
.ic-social { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 0.9rem; border: 1px solid var(--mid); border-radius: 10px; color: var(--white); text-decoration: none; font-family: var(--font-heading); font-size: 0.82rem; letter-spacing: 0.04em; transition: border-color .3s, background .3s, transform .3s; }
.ic-social:hover { border-color: var(--accent); background: rgba(255,77,0,0.06); transform: translateX(3px); }
.ic-social svg { width: 18px; height: 18px; flex: 0 0 18px; fill: currentColor; }
.ic-social .ic-at { color: var(--grey); font-size: 0.74rem; margin-left: auto; }
@media (max-width: 900px){ .involve-grid { grid-template-columns: 1fr; } .involve { padding: 5rem 1.4rem; } }
