/* ============================================================
   KASHINA EVENT — premium personal brand for an event host
   Palette: graphite-black + brand red + milk white
   Type: Oswald (display) / Manrope (body)
   ============================================================ */

/* ---- Self-hosted fonts (no external dependency) ---- */
@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:        #0a0a0c;
  --bg-2:      #0e0e11;
  --card:      #131318;
  --card-2:    #17171d;
  --line:      rgba(255,255,255,.09);
  --line-red:  rgba(224,27,38,.32);
  --red:       #e01b26;
  --red-bright:#ff2a36;
  --red-deep:  #b00f1b;
  --white:     #f4f1ec;
  --milk:      #cfccc6;
  --gray:      #8d8d96;
  --gray-2:    #6a6a72;
  --maxw:      1240px;
  --r:         16px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient red spotlight wash */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(224,27,38,.16), transparent 60%),
    radial-gradient(1100px 800px at 8% 18%, rgba(224,27,38,.06), transparent 60%),
    radial-gradient(700px 700px at 50% 120%, rgba(224,27,38,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--red); color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }
.pad { padding: 116px 0; }
.pad-sm { padding: 80px 0; }

.eyebrow {
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 13px;
  font-weight: 500;
  color: var(--red-bright);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--red); display: inline-block; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
}
h2.sec-title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.0;
  margin: 22px 0 0;
  max-width: 17ch;
}
.sec-head { margin-bottom: 56px; }
.sec-head p.sub { color: var(--gray); font-size: 18px; margin-top: 20px; max-width: 60ch; text-transform: none; font-family: "Manrope", sans-serif; font-weight: 400; line-height: 1.6; }
.text-red { color: var(--red-bright); }
.muted { color: var(--gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 500; font-size: 15px;
  padding: 16px 30px; border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 10px 34px -10px rgba(224,27,38,.7), inset 0 0 0 1px rgba(255,255,255,.06);
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(224,27,38,.85); }
.btn-ghost {
  background: rgba(255,255,255,.02); color: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--line-red); transform: translateY(-2px); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 19px 38px; font-size: 17px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: 14px; font-weight: 500;
  color: var(--milk);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--red-bright); gap: 13px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 22px 0;
}
.header.scrolled {
  background: rgba(8,8,10,.82);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo .lw {
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: 22px; letter-spacing: .14em; color: #fff;
}
.logo .lw b { color: var(--red); font-weight: 600; }
.logo .ls { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--gray); font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; font-weight: 400; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  white-space: nowrap;
  font-size: 14.5px; color: var(--milk); font-weight: 500; position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--red); transition: width .25s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; box-shadow: inset 0 0 0 1px var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,10,.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 32px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; }
.drawer a {
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 30px; font-weight: 500; letter-spacing: .02em;
  color: var(--milk); padding: 10px 0; border-bottom: 1px solid var(--line);
}
.drawer a:last-of-type { border-bottom: none; }
.drawer .btn { margin-top: 28px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
#top { display: block; height: 0; }
.hero { padding: 168px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.hero-copy { min-width: 0; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: .98; margin: 26px 0 0; letter-spacing: .004em;
  hyphens: none; overflow-wrap: normal; word-break: keep-all;
}
.hero h1 .accent { color: var(--red); }
.hero .lede { font-size: 20px; color: var(--milk); margin-top: 26px; max-width: 46ch; line-height: 1.55; }
.hero .lede b { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust {
  margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 14.5px; color: var(--gray); align-items: center;
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); display: inline-block; }
.hero-trust b { color: var(--white); font-weight: 600; }

/* Hero portrait */
.hero-media { position: relative; }
.hero-portrait {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 40px 100px -30px rgba(224,27,38,.45), inset 0 0 0 1px var(--line-red);
  background: #000;
}
.hero-portrait img, .hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sound-toggle {
  position: absolute; right: 14px; bottom: 14px; z-index: 4;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(13,13,16,.7); backdrop-filter: blur(8px); color: var(--white);
  box-shadow: inset 0 0 0 1px var(--line-red);
  display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.sound-toggle:hover { background: rgba(224,27,38,.85); transform: scale(1.06); }
.sound-toggle svg { width: 19px; height: 19px; }
.sound-toggle .i-sound { display: none; }
.sound-toggle.on .i-muted { display: none; }
.sound-toggle.on .i-sound { display: block; }
.hero-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,12,.55) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute; left: -22px; bottom: 34px; z-index: 3;
  background: rgba(13,13,16,.86); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px var(--line-red), 0 20px 40px -16px rgba(0,0,0,.7);
  border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.hero-badge .pulse { width: 11px; height: 11px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(224,27,38,.6); animation: pulse 2.4s infinite; flex: none; }
.hero-badge .t { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 15px; letter-spacing: .05em; line-height: 1.1; }
.hero-badge .s { font-size: 12.5px; color: var(--gray); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(224,27,38,.55);} 70%{box-shadow:0 0 0 12px rgba(224,27,38,0);} 100%{box-shadow:0 0 0 0 rgba(224,27,38,0);} }

.hero-cities { position: absolute; right: 14px; top: 14px; z-index: 3; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.lede-over, .lede-short, .hero-brand { display: none; }
@media (min-width: 1025px) {
  .hero-copy > .lede { display: none; }
  .lede-over { display: block; color: var(--milk); font-size: 18px; line-height: 1.55; margin: 0 0 22px; max-width: none; }
  .hero-grid { row-gap: 14px; }
  .hero-brand { display: block; grid-column: 1 / -1; font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; font-weight: 600; text-transform: uppercase; line-height: 1; letter-spacing: .005em; white-space: nowrap; font-size: clamp(40px, 5.2vw, 76px); color: var(--white); }
  .hero-brand .hb-name { color: var(--red); }
  .h1-brand { display: none; }
}
.city-chip {
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: 13px;
  background: rgba(13,13,16,.8); backdrop-filter: blur(8px); padding: 8px 15px; border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line-red);
}

/* ============================================================
   MEDIA PLACEHOLDER (reusable, premium "backstage")
   ============================================================ */
.media-ph {
  position: relative; border-radius: var(--r); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, #161620 0%, #0e0e13 100%);
  box-shadow: inset 0 0 0 1px var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: var(--gray); text-align: center; padding: 28px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.media-ph::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 18%, rgba(224,27,38,.10), transparent 60%);
  pointer-events: none;
}
.media-ph:hover { box-shadow: inset 0 0 0 1px var(--line-red); }
.media-ph .play {
  width: 64px; height: 64px; border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--line-red), 0 0 30px -6px rgba(224,27,38,.6);
  display: grid; place-items: center; background: rgba(224,27,38,.10);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.media-ph:hover .play { transform: scale(1.07); background: rgba(224,27,38,.2); }
.media-ph .play svg { width: 22px; height: 22px; fill: var(--red-bright); margin-left: 3px; }
.media-ph .cap {
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: var(--milk);
}
.media-ph .tag {
  position: absolute; top: 14px; left: 14px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; color: var(--gray-2);
  display: inline-flex; align-items: center; gap: 7px;
}
.media-ph .tag::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--red); }
.media-ph.has-img { padding: 0; }
.media-ph.has-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* aspect helpers */
.ar-16-9 { aspect-ratio: 16/9; }
.ar-4-3  { aspect-ratio: 4/3; }
.ar-3-4  { aspect-ratio: 3/4; }
.ar-1-1  { aspect-ratio: 1/1; }
.ar-9-16 { aspect-ratio: 9/16; }

/* ============================================================
   FORMATS (4 cards)
   ============================================================ */
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fcard {
  background: var(--card); border-radius: var(--r); padding: 30px 26px 26px;
  box-shadow: inset 0 0 0 1px var(--line);
  display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.fcard::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--red); transition: width .4s var(--ease); }
.fcard:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px var(--line-red), 0 30px 60px -28px rgba(224,27,38,.4); background: var(--card-2); }
.fcard:hover::after { width: 100%; }
.fcard .ico { width: 46px; height: 46px; border-radius: 12px; box-shadow: inset 0 0 0 1px var(--line-red); display: grid; place-items: center; color: var(--red-bright); }
.fcard .ico svg { width: 24px; height: 24px; }
.fcard h3 { font-size: 26px; letter-spacing: .01em; }
.fcard .price { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; font-size: 15px; letter-spacing: .04em; color: var(--white); text-transform: uppercase; }
.fcard .price b { color: var(--red-bright); }
.fcard p { font-size: 15px; color: var(--gray); line-height: 1.55; flex: 1; }
.fcard .link-arrow { margin-top: 6px; }

/* ============================================================
   DIFFERENCE / 3 advantages
   ============================================================ */
.diff { background: var(--bg-2); }
.diff-head h2 { max-width: 22ch; }
.diff-lede { font-size: 19px; color: var(--milk); max-width: 62ch; margin-top: 26px; line-height: 1.6; }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.adv {
  padding: 34px 30px; border-radius: var(--r); background: var(--card);
  box-shadow: inset 0 0 0 1px var(--line); position: relative;
}
.adv .num { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; font-size: 15px; color: var(--red-bright); letter-spacing: .12em; }
.adv h3 { font-size: 24px; margin: 16px 0 12px; }
.adv p { font-size: 15.5px; color: var(--gray); }

/* ============================================================
   VIDEO block
   ============================================================ */
.video-grid { display: grid; grid-template-columns: 1.4fr .85fr; gap: 44px; align-items: center; }
.video-points { display: flex; flex-direction: column; gap: 22px; }
.vpoint { display: flex; gap: 16px; align-items: flex-start; }
.vpoint .b { width: 38px; height: 38px; flex: none; border-radius: 10px; box-shadow: inset 0 0 0 1px var(--line-red); display: grid; place-items: center; color: var(--red-bright); }
.vpoint .b svg { width: 19px; height: 19px; }
.vpoint h4 { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 17px; letter-spacing: .03em; margin-bottom: 4px; }
.vpoint p { font-size: 14.5px; color: var(--gray); }

/* ============================================================
   IMMERSIVE block
   ============================================================ */
.imm { background: linear-gradient(180deg, var(--bg) 0%, #100a0c 50%, var(--bg) 100%); }
.imm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.imm-lede { font-size: 18px; color: var(--milk); margin-top: 24px; line-height: 1.62; }
.imm-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 8px; }
.imm-list { background: var(--card); border-radius: var(--r); padding: 28px 26px; box-shadow: inset 0 0 0 1px var(--line); }
.imm-list h4 { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 16px; letter-spacing: .08em; color: var(--red-bright); margin-bottom: 18px; }
.imm-list ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.imm-list li { font-size: 15px; color: var(--milk); padding-left: 22px; position: relative; line-height: 1.45; }
.imm-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--red); transform: rotate(45deg); }

/* ============================================================
   PROCESS steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative; padding: 30px 22px; border-radius: var(--r);
  background: var(--card); box-shadow: inset 0 0 0 1px var(--line);
}
.step .n {
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; font-size: 46px; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.4px var(--line-red); font-weight: 600;
}
.step h4 { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 18px; letter-spacing: .03em; margin: 14px 0 10px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard {
  background: var(--card); border-radius: var(--r); padding: 36px 30px;
  box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pcard.featured { box-shadow: inset 0 0 0 1.5px var(--line-red), 0 30px 70px -34px rgba(224,27,38,.5); background: linear-gradient(180deg, #18121400 0%, rgba(224,27,38,.05) 100%), var(--card); }
.pcard:hover { transform: translateY(-6px); }
.pcard .label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pcard h3 { font-size: 27px; }
.pcard .badge { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 11px; letter-spacing: .14em; color: var(--red-bright); padding: 5px 11px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line-red); }
.pcard .amount { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; font-size: 42px; line-height: 1; margin-bottom: 4px; }
.pcard .amount span { font-size: 18px; color: var(--gray); }
.pcard .per { font-size: 13px; color: var(--gray-2); text-transform: uppercase; letter-spacing: .1em; font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; margin-bottom: 24px; }
.pcard ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.pcard li { font-size: 15px; color: var(--milk); padding-left: 26px; position: relative; line-height: 1.45; }
.pcard li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 9px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }
.price-note { margin-top: 34px; text-align: center; }
.price-note p { color: var(--gray); font-size: 15px; max-width: 70ch; margin: 0 auto; }
.price-pay { margin-top: 14px; font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--milk); }

/* ============================================================
   FIRST MESSAGE checklist
   ============================================================ */
.msg { background: var(--bg-2); }
.msg-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.msg-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.msg-list .mi { display: flex; gap: 12px; align-items: center; font-size: 15.5px; color: var(--milk); padding: 12px 0; border-bottom: 1px solid var(--line); }
.msg-list .mi i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media .quote-tag {
  position: absolute; right: -16px; bottom: -16px; max-width: 260px;
  background: var(--red); color: #fff; padding: 20px 22px; border-radius: 14px;
  box-shadow: 0 24px 50px -18px rgba(224,27,38,.7);
}
.about-media .quote-tag p { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: none; font-size: 16px; line-height: 1.35; font-weight: 400; }
.about-media .quote-tag .qm { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; font-size: 40px; line-height: .6; display: block; margin-bottom: 6px; }
.about-body p { color: var(--milk); font-size: 18px; margin-top: 22px; line-height: 1.62; }
.about-body p:first-of-type { margin-top: 28px; }

/* ============================================================
   AUDIENCES
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.aud {
  padding: 30px 26px; border-radius: var(--r); background: var(--card);
  box-shadow: inset 0 0 0 1px var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.aud:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--line-red); }
.aud .ico { width: 44px; height: 44px; border-radius: 12px; box-shadow: inset 0 0 0 1px var(--line-red); display: grid; place-items: center; color: var(--red-bright); margin-bottom: 18px; }
.aud .ico svg { width: 22px; height: 22px; }
.aud h3 { font-size: 20px; margin-bottom: 10px; }
.aud p { font-size: 14.5px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   EVENTS & REVIEWS
   ============================================================ */
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ev-card { background: var(--card); border-radius: var(--r); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; display: flex; flex-direction: column; }
.ev-card .ev-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 14px; }
.ev-card .ev-type { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--red-bright); }
.ev-card h3 { font-size: 21px; }
.ev-review {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 2px, transparent 2px 11px),
    var(--card-2);
  border-radius: 12px; padding: 18px 18px; box-shadow: inset 0 0 0 1px var(--line);
  display: flex; gap: 12px; align-items: flex-start;
}
.ev-review .av { width: 38px; height: 38px; border-radius: 50%; flex: none; box-shadow: inset 0 0 0 1px var(--line-red); background: radial-gradient(circle at 40% 30%, rgba(224,27,38,.18), transparent 70%); display:grid; place-items:center; color: var(--gray-2); }
.ev-review .av svg { width: 18px; height: 18px; }
.ev-review p { font-size: 13.5px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; text-align: left;
  font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 19px; letter-spacing: .01em; color: var(--white);
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--red-bright); }
.faq-ico { width: 30px; height: 30px; flex: none; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-red); display: grid; place-items: center; position: relative; transition: background .3s var(--ease); }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--red-bright); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.faq-ico::before { width: 12px; height: 2px; }
.faq-ico::after { width: 2px; height: 12px; }
.faq-item.open .faq-ico { background: rgba(224,27,38,.14); }
.faq-item.open .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a .inner { padding: 0 0 26px; color: var(--gray); font-size: 16px; line-height: 1.62; max-width: 64ch; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap { background: var(--bg-2); }
.form-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.form-card { background: var(--card); border-radius: 20px; padding: 40px; box-shadow: inset 0 0 0 1px var(--line-red), 0 40px 90px -40px rgba(224,27,38,.4); }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; color: var(--gray); }
.field input, .field select, .field textarea {
  background: var(--bg); color: var(--white); font-family: "Manrope", sans-serif; font-size: 15.5px;
  border: none; box-shadow: inset 0 0 0 1px var(--line); border-radius: 11px; padding: 14px 16px;
  transition: box-shadow .25s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238d8d96' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--red); }
.field input::placeholder, .field textarea::placeholder { color: var(--gray-2); }
.form-consent { font-size: 13px; color: var(--gray-2); margin-top: 18px; line-height: 1.5; }
.form-consent a { color: var(--milk); text-decoration: underline; text-underline-offset: 2px; }
.form-msg { margin-top: 16px; font-size: 14.5px; color: var(--red-bright); display: none; }
.form-msg.show { display: block; }
.form-or { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--gray-2); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; }
.form-or::before, .form-or::after { content: ""; height: 1px; background: var(--line); flex: 1; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { text-align: center; padding: 120px 0; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 50% 40%, rgba(224,27,38,.18), transparent 65%); pointer-events: none; }
.final h2 { font-size: clamp(36px, 5.4vw, 66px); max-width: 20ch; margin: 22px auto 0; }
.final p { color: var(--milk); font-size: 19px; max-width: 56ch; margin: 24px auto 0; }
.final .btn { margin-top: 38px; }
.final .tags { margin-top: 32px; font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--gray); }
.final .tags span { color: var(--red-bright); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #070708; padding: 70px 0 40px; box-shadow: inset 0 1px 0 var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer .logo { margin-bottom: 18px; }
.footer .f-desc { color: var(--gray); font-size: 14.5px; max-width: 30ch; }
.footer h5 { font-family: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif; text-transform: uppercase; font-size: 13px; letter-spacing: .12em; color: var(--gray-2); margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a, .footer ul li { color: var(--milk); font-size: 14.5px; transition: color .2s var(--ease); }
.footer ul a:hover { color: var(--red-bright); }
.footer .contact-row { display: flex; flex-direction: column; gap: 12px; }
.footer .contact-row a { display: flex; align-items: center; gap: 11px; color: var(--white); font-size: 15px; }
.footer .contact-row a svg { width: 17px; height: 17px; color: var(--red-bright); flex: none; }
.footer-bottom { margin-top: 48px; padding-top: 26px; box-shadow: inset 0 1px 0 var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 13px; color: var(--gray-2); }
.footer-bottom a { color: var(--gray); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8,8,10,.94); backdrop-filter: blur(14px); box-shadow: 0 -1px 0 var(--line);
}
.sticky-cta .btn { flex: 1; }
.sticky-cta .btn-ghost { flex: 0 0 56px; padding: 16px 0; }

/* ============================================================
   SCROLL REVEAL — animate blocks in on scroll.
   Hidden state applies only when JS is active (.js on <html>),
   so no-JS and reduced-motion users always see content.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .09s; }
.js .reveal.d2 { transition-delay: .18s; }
.js .reveal.d3 { transition-delay: .27s; }
.js .reveal.d4 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-badge .pulse { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr 1fr; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .header-cta .btn-text { display: none; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 520px; }
  .video-grid, .imm-grid, .msg-grid, .about-grid, .faq-grid, .form-grid { grid-template-columns: 1fr; gap: 36px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; }
  .adv-grid { grid-template-columns: 1fr; }
  .ev-grid { grid-template-columns: 1fr; }
  .imm-cols { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .burger { display: flex; }
  .header-cta .btn { display: none; }
  .sticky-cta { display: flex; }
  .about-media { max-width: 460px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .pad { padding: 76px 0; }
  .pad-sm { padding: 56px 0; }
  .hero { padding: 132px 0 60px; }
  .formats-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .msg-list { grid-template-columns: 1fr; }
  .imm-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .hero-cities { display: none; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; }
  .about-media .quote-tag { position: static; max-width: none; margin-top: 16px; }
  .sec-head { margin-bottom: 40px; }
}

/* ============================================================
   MOBILE — full-screen video hero (video fills first screen,
   copy overlaid on a bottom scrim). Placed last to win.
   ============================================================ */
@media (max-width: 768px) {
  .hero { position: relative; min-height: 100svh; padding: 0; display: flex; flex-direction: column; }
  .hero .wrap.hero-grid {
    position: static; max-width: none; padding: 0; gap: 0;
    grid-template-columns: 1fr; display: flex; flex-direction: column; flex: 1; width: 100%;
  }
  .hero-media { position: absolute; inset: 0; z-index: 0; max-width: none; margin: 0; transform: none !important; opacity: 1 !important; }
  .hero-portrait {
    position: absolute; inset: 0; width: 100%; height: 100%;
    border-radius: 0; aspect-ratio: auto; box-shadow: none;
  }
  .hero-portrait::after {
    background:
      linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,0) 16%),
      linear-gradient(0deg, rgba(8,8,10,.96) 6%, rgba(8,8,10,.85) 22%, rgba(8,8,10,.5) 38%, rgba(8,8,10,0) 50%);
  }
  .hero-copy {
    position: relative; z-index: 3; min-width: 0;
    padding: 72vh 22px calc(38px + env(safe-area-inset-bottom));
    padding: 72svh 22px calc(38px + env(safe-area-inset-bottom));
  }
  .hero-copy .eyebrow { margin-top: 0; font-size: 10px; }
  .hero h1 { font-size: clamp(26px, 7.4vw, 36px); line-height: 1.0; margin: 12px 0 0; }
  .hero .lede-long { display: none; }
  .hero .lede-short { display: block; font-size: 15px; margin-top: 12px; max-width: none; }
  .hero-actions { flex-direction: column; gap: 10px; margin-top: 18px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { margin-top: 18px; gap: 6px 14px; font-size: 12.5px; }
  .hero-badge { display: none; }
  .hero-cities { display: none; }
  .sound-toggle { top: 92px; right: 16px; left: auto; bottom: auto; }
}
