/* ============================================================
   Jason Euler Ventures — 2026
   Brand system: black + red, Helvetica Neue, restraint.
   Colors, type, and spacing per JEV Brand Guide 2026.
   ============================================================ */

:root {
  --black:    #08090C;  /* Rich Black — bg, headlines on light */
  --red:      #F50008;  /* Red — accent only, never fills */
  --red-dim:  #B50006;  /* Red Dim — secondary red on white */
  --nickel:   #6E7271;  /* Secondary text, labels, nav */
  --platinum: #EBEBEB;  /* Page bg, surface fills */
  --surface:  #F4F4F4;  /* Spec-row / card fills */
  --border:   #DCDCDC;  /* All borders — 0.5px */
  --white:    #FFFFFF;

  --font: 'Helvetica Neue', Inter, Arial, sans-serif;
  --mono: 'SF Mono', 'Consolas', ui-monospace, monospace;

  --wrap: 1140px;
  --pad: 24px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- grounds ---------- */
.ground--black { background: var(--black); color: var(--white); }
.ground--white { background: var(--white); color: var(--black); }

/* ============================================================
   TYPOGRAPHY PRIMITIVES
   ============================================================ */

/* Eyebrow / label — 700, all caps, wide tracking */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--nickel);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--onred { color: rgba(255,255,255,.7); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); display: inline-block; flex: none; }

/* Red accent character */
.accent { color: var(--red); }

/* Body */
.body { font-size: 16px; line-height: 1.7; color: inherit; max-width: 64ch; }
.body + .body { margin-top: 18px; }
.body--lg { font-size: 18px; max-width: 60ch; }
.body--muted { color: var(--nickel); }
.muted { color: var(--nickel); }
.ground--black .muted { color: rgba(255,255,255,.55); }

/* Section titles */
.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.02;
  margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dim); }
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
  opacity: .85;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.btn--ghost:hover { opacity: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,9,12,.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,.12);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.nav__logo { height: 34px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color .16s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__cta { padding: 10px 20px; }

.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; transition: .2s ease; }

.nav__mobile { display: none; flex-direction: column; padding: 8px var(--pad) 24px; gap: 4px; border-top: 0.5px solid rgba(255,255,255,.12); }
.nav__mobile a {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-bottom: 0.5px solid rgba(255,255,255,.08);
}
.nav__mobile .btn { margin-top: 14px; border-bottom: 0; }

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
.section { padding: 96px 0; }
.section--tight { padding-top: 0; }
.ground--white + .ground--white.section--tight { margin-top: -20px; }

/* ============================================================
   HERO — EPK style: cutout photo right, huge name left
   ============================================================ */
.hero { padding: 88px 0 72px; position: relative; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; }
.hero__photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(46vw, 620px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: grayscale(1);
}
.hero__title {
  font-size: clamp(64px, 12vw, 150px);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__disciplines {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.85);
  margin-bottom: 26px;
}
.hero__disciplines li { display: flex; align-items: center; }
.hero__disciplines li + li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  display: inline-block;
  margin: 0 16px;
  flex: none;
}
.hero__lede {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  max-width: 44ch;
  border-left: 2px solid var(--red);
  padding-left: 20px;
}
.hero__signature { height: 84px; width: auto; margin-top: 34px; opacity: .92; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; align-items: center; }
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nickel);
}
.rule { display: inline-block; width: 32px; height: 1px; background: currentColor; flex: none; }
.eyebrow--onred .rule { background: var(--red); }
.hero__scroll .rule { background: rgba(255,255,255,.3); }

/* ============================================================
   ROLE TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  border-top: 0.5px solid rgba(255,255,255,.12);
  border-bottom: 0.5px solid rgba(255,255,255,.12);
  padding: 16px 0;
}
.ticker__track { display: flex; width: max-content; animation: ticker 36s linear infinite; }
.ticker__group { display: flex; flex: none; }
.ticker__group > span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  padding: 0 34px;
}
.ticker__group em { font-style: normal; color: var(--red); padding: 0 6px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HERO STATS BAND
   ============================================================ */
.herostats { padding: 48px 0 72px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__num { font-size: clamp(34px, 5vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1; }
.stat__label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nickel); }
.ground--black .stat__label { color: rgba(255,255,255,.55); }

/* ============================================================
   LEAD STATEMENT (What JEV Is)
   ============================================================ */
.lead-statement {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 20ch;
  margin-bottom: 32px;
}
.lead-statement .muted { display: block; }

/* ============================================================
   CARDS (What JEV Does)
   ============================================================ */
.grid { display: grid; gap: 0.5px; background: var(--border); border: 0.5px solid var(--border); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--white); padding: 32px 28px 36px; display: flex; flex-direction: column; min-height: 230px; }
.card__num { font-family: var(--mono); font-size: 12px; color: var(--red); margin-bottom: 22px; }
.card__title { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; line-height: 1.15; margin-bottom: 14px; }
.card__body { font-size: 14.5px; line-height: 1.6; color: var(--nickel); }

/* ============================================================
   VENTURES
   ============================================================ */
.ventures { border-top: 0.5px solid var(--border); }
.venture {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.6fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 0.5px solid var(--border);
}
.venture__name { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; }
.venture__role { font-family: var(--mono); font-size: 12px; color: var(--red-dim); text-transform: uppercase; letter-spacing: 0.04em; }
.venture__note { font-size: 14.5px; color: var(--nickel); line-height: 1.55; }

/* ============================================================
   PROOF
   ============================================================ */
.proof__grid { background: transparent; border: 0; gap: 40px; }
.stat--lg { padding: 0; }
.stat--lg .stat__num { font-size: clamp(48px, 8vw, 84px); color: var(--white); }
.stat--lg .stat__label { color: rgba(255,255,255,.6); letter-spacing: 0.08em; line-height: 1.5; max-width: 26ch; }
.proof .stat--lg .accent { color: var(--red); }

/* Select brand partners */
.partners {
  margin-top: 72px;
  padding-top: 44px;
  border-top: 0.5px solid rgba(255,255,255,.14);
}
.partners__label { margin-bottom: 30px; }
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5px;
  background: rgba(255,255,255,.14);
  border: 0.5px solid rgba(255,255,255,.14);
}
.partners__grid li {
  background: var(--white);
  display: flex;
  min-height: 96px;
}
.partners__grid li a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  transition: background-color .15s ease;
}
.partners__grid li a:hover { background: #f2f3f4; }
.partners__grid img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .15s ease;
}
.partners__grid li a:hover img { transform: scale(1.05); }
.partners__more {
  background: var(--black) !important;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
}
.partners__more span {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--red);
  display: block;
  width: 100%;
}
.partners__note {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  font-style: italic;
}
.festivals { margin-top: 56px; }
.festivals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 20px;
}
.festivals__grid li {
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 700;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.festivals__grid li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--red);
  flex: none;
  transform: translateY(-3px);
}
.festivals__grid--wide { grid-template-columns: repeat(2, 1fr); gap: 20px 44px; }
.festivals__grid--wide li { font-weight: 500; color: rgba(255,255,255,.78); }
.festivals__grid--wide strong {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--white);
}
.festivals__grid--wide .span-2 { grid-column: 1 / -1; }

/* ============================================================
   PRESS
   ============================================================ */
.press {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5px;
  background: var(--border);
  border: 0.5px solid var(--border);
  margin-bottom: 48px;
}
.press li {
  background: var(--white);
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  display: flex;
  min-height: 92px;
}
.press li a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  color: inherit;
  text-decoration: none;
  transition: color .15s ease;
}
.press li a::after {
  content: "\2197";
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  margin-left: 8px;
  opacity: 0;
  transition: opacity .15s ease;
}
.press li a:hover { color: var(--red); }
.press li a:hover::after { opacity: 1; }
.press__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 8px; }
.press__meta .body { font-size: 15px; }
.press__note { margin-top: 32px; font-size: 13px; color: var(--nickel); font-style: italic; }

.social-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 0.5px solid var(--border);
}

@media (max-width: 960px) and (min-width: 721px) {
  .social-strip { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
}
.stat--link {
  text-decoration: none;
  color: inherit;
  transition: color .15s ease;
}
.stat--link .stat__label { transition: color .15s ease; }
.stat--link:hover .stat__num { color: var(--red); }
.stat--link:hover .stat__label { color: var(--black); }
.stat--link .stat__num::after {
  content: "\2197";
  font-size: 0.4em;
  color: var(--red);
  margin-left: 5px;
  vertical-align: super;
  opacity: 0;
  transition: opacity .15s ease;
}
.stat--link:hover .stat__num::after { opacity: 1; }

/* venture + body links */
.venture__name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.venture__name a::after {
  content: "\2197";
  font-family: var(--mono);
  font-size: 0.55em;
  color: var(--red);
  margin-left: 7px;
  vertical-align: super;
}
.venture__name a:hover { border-color: var(--red); }
.body-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.body-link:hover { color: var(--red); }

/* ============================================================
   GEAR RENTAL — subtle aside under the contact block
   ============================================================ */
.cta__aside {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,.12);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.cta__aside a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
  margin-left: 8px;
  transition: color .15s ease, border-color .15s ease;
}
.cta__aside a:hover { color: var(--red); border-color: var(--red); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about__photo { border: 0.5px solid var(--border); }
.about__photo img { width: 100%; height: auto; }
.about__body .section__title { margin-bottom: 28px; }

/* ============================================================
   CTA
   ============================================================ */
.cta { text-align: center; }
.cta__inner { display: flex; flex-direction: column; align-items: center; }
.cta .eyebrow { justify-content: center; }
.cta__title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta__lede { color: rgba(255,255,255,.7); font-size: 17px; max-width: 42ch; }
.cta .hero__actions { justify-content: center; }
.cta__contact { margin-top: 40px; font-size: 14px; color: rgba(255,255,255,.6); }
.cta__contact a { color: rgba(255,255,255,.85); }
.cta__contact a:hover { color: var(--white); }
.cta__contact .sep { margin: 0 12px; color: rgba(255,255,255,.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 80px 0 40px; border-top: 0.5px solid rgba(255,255,255,.12); }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer__logo { height: 44px; width: auto; }
.footer__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 8px; }
.footer__social { display: flex; justify-content: center; gap: 22px; margin-top: 10px; }
.footer__social a { color: var(--platinum); transition: color .15s ease, transform .15s ease; }
.footer__social a:hover { color: var(--red); transform: translateY(-2px); }
.footer__social svg { width: 22px; height: 22px; display: block; }
.footer__greenroom {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 3px;
  transition: color .15s ease, border-color .15s ease;
}
.footer__greenroom:hover { color: var(--red); border-color: var(--red); }
.footer__nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .16s ease;
}
.footer__nav a:hover { color: var(--white); }
.footer__base {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .festivals__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .festivals__grid--wide { grid-template-columns: 1fr; gap: 16px; }
  .partners__grid li { padding: 16px 12px; min-height: 78px; }
  .partners__grid img { max-height: 30px; }
  .partners { margin-top: 52px; }
  .press { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { max-width: 360px; }
  .venture { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .venture__role { order: -1; }
}

@media (max-width: 900px) and (min-width: 721px) {
  .hero__photo { width: 44vw; opacity: .55; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 56px; }
  .hero__photo {
    position: static;
    width: 100%;
    height: 46vh;
    justify-content: flex-end;
    margin-bottom: -16px;
  }
  .hero__photo img { object-position: bottom right; }
  .hero__title { letter-spacing: -3px; }
  .hero__signature { height: 64px; }
  .hero__scroll { margin-top: 36px; }
  .social-strip { grid-template-columns: 1fr; gap: 24px; }
  .cta__aside a { display: inline-block; margin-left: 0; margin-top: 8px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav--open .nav__mobile { display: flex; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .grid--3 { grid-template-columns: 1fr; }
  .proof__grid { gap: 36px; }
  .press__meta { grid-template-columns: 1fr; gap: 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__base { flex-direction: column; gap: 6px; }
}

@media (max-width: 440px) {
  .grid--4 { grid-template-columns: 1fr; }
  .press { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions, .cta .hero__actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
