/* ============================================================
   NOT BORING FOUNDERS — slick black & white
   ============================================================ */

:root {
  color-scheme: dark;

  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);

  --ink: #ffffff;
  --ink-soft: #b4b4b4;
  --ink-mute: #6f6f6f;

  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Whisper-subtle monochrome grain + top glow */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60vw 40vw at 50% -10%, rgba(255,255,255,0.05), transparent 70%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 1; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--line-strong); }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(0,0,0,0.8); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 18px; width: auto; display: block; }
.foot__brand .brand__logo { height: 22px; }

/* ---------------- Buttons ---------------- */
.btn {
  --pad-y: 13px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, opacity .25s;
  will-change: transform;
}
.btn--primary { background: var(--ink); color: #000; }
.btn--primary:hover { background: #e4e4e4; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(255,255,255,0.05); }
.btn--lg { --pad-y: 17px; --pad-x: 32px; font-size: 16px; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.magnetic { display: inline-block; }

/* ---------------- Hero ---------------- */
.hero { padding: 112px 0 72px; }
.hero__grid { display: grid; gap: 28px; max-width: 940px; }
.hero h1 { font-size: clamp(33px, 5vw, 62px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
.hero h1 .outline {
  -webkit-text-stroke: 0.8px rgba(255,255,255,0.8);
  color: transparent;
}
.hero__lede { font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-soft); max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero__note { color: var(--ink-mute); font-size: 14px; }

/* ---------------- Marquee (monochrome, understated) ---------------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker__track {
  display: inline-flex; gap: 0; white-space: nowrap; will-change: transform;
  animation: marquee 40s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.ticker__track span {
  font-family: var(--font-display);
  font-weight: 600; font-size: clamp(15px, 1.7vw, 19px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); padding: 0 26px;
  display: inline-flex; align-items: center; gap: 26px;
}
.ticker__track span::after { content: "•"; color: rgba(255,255,255,0.22); }

/* ---------------- Photo marquee (community moments) ---------------- */
.photostrip { overflow: hidden; padding: 8px 0; }
.photostrip__track {
  display: inline-flex; gap: 14px; white-space: nowrap; will-change: transform;
  animation: marquee 70s linear infinite;
}
.photostrip figure {
  margin: 0; flex: 0 0 auto; height: clamp(200px, 26vw, 300px);
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
}
.photostrip img {
  height: 100%; width: auto; display: block; object-fit: cover;
  filter: none;
}

/* ---------------- Sections ---------------- */
section { padding: 92px 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(25px, 3.2vw, 40px); margin-top: 16px; }
.section-head p { color: var(--ink-soft); font-size: clamp(15px, 1.8vw, 18px); margin-top: 16px; }

/* ---------------- Featured promo video ---------------- */
.feature-video {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-2); aspect-ratio: 16 / 9;
}
.feature-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-video__badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.55); border: 1px solid var(--line-strong);
  padding: 8px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.feature-video__badge .live {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5); animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.feature-video__sound {
  position: absolute; bottom: 16px; right: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.55); border: 1px solid var(--line-strong);
  padding: 10px 15px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: var(--ink);
  cursor: pointer; backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.feature-video__sound:hover { background: rgba(0,0,0,0.78); border-color: var(--ink); }

/* ---------------- Manifesto ---------------- */
.manifesto p {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(19px, 2.4vw, 30px); line-height: 1.34; letter-spacing: -0.015em;
  max-width: 900px; color: var(--ink);
}
.manifesto p .mut { color: var(--ink-mute); }
.manifesto .sub {
  font-family: var(--font-body); font-size: 17px; color: var(--ink-soft);
  font-weight: 400; max-width: 600px; margin-top: 28px; line-height: 1.65;
}

/* ---------------- Event cards ---------------- */
#why { padding-bottom: 36px; }
#events { padding-top: 44px; }
.events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ecard {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-2);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ecard:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.45); }
.ecard__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-3); }
.ecard__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.82);
}
.ecard__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: rgba(0,0,0,0.5); border: 1px solid var(--line-strong);
  padding: 7px 12px; border-radius: 999px; backdrop-filter: blur(6px);
}
.ecard--upcoming .ecard__tag { background: var(--ink); color: #000; border-color: var(--ink); }
.ecard__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ecard h3 { font-size: clamp(20px, 2.1vw, 26px); margin-bottom: 8px; }
.ecard p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.ecard__link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; color: var(--ink);
}
.ecard__link .arrow { transition: transform .25s var(--ease); }
.ecard:hover .ecard__link .arrow { transform: translateX(5px); }

/* ---------------- Stats ---------------- */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
}
.stat__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 3.8vw, 46px); letter-spacing: -0.02em; line-height: 1;
}
.stat__num .suffix { color: var(--ink-mute); }
.stat__label { color: var(--ink-mute); margin-top: 10px; font-size: 15px; }

/* ---------------- CTA band ---------------- */
.cta {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 84px); text-align: center;
  background: radial-gradient(90% 140% at 50% -20%, rgba(255,255,255,0.06), transparent 60%), var(--bg-2);
  overflow: hidden; position: relative;
}
.cta h2 { font-size: clamp(26px, 3.8vw, 46px); }
.cta p { color: var(--ink-soft); max-width: 540px; margin: 18px auto 0; font-size: 17px; }
.cta__actions { margin-top: 34px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------------- Retreat banner (home) ---------------- */
.rbanner {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  min-height: 500px; display: flex; align-items: flex-end;
  transition: border-color .4s var(--ease);
}
.rbanner:hover { border-color: var(--line-strong); }
.rbanner__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/assets/media/retreat/retreat-hero.jpg');
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
}
.rbanner:hover .rbanner__bg { transform: scale(1.05); }
.rbanner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.15) 38%, rgba(0,0,0,.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 52%, transparent 90%);
}
.rbanner__inner { position: relative; z-index: 2; padding: clamp(28px, 4vw, 46px); max-width: 660px; }
.rbanner__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: #000; padding: 6px 12px; border-radius: 999px;
}
.rbanner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 500; letter-spacing: -0.03em; margin: 18px 0 0; }
.rbanner p { color: #e4e4e1; margin: 14px 0 0; font-size: clamp(15px, 1.8vw, 18px); max-width: 48ch; }
.rbanner__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.rbanner__meta .pill { background: rgba(0,0,0,.35); backdrop-filter: blur(6px); font-size: 13px; }
.rbanner__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------- Shop / merch ---------------- */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-2);
  transition: border-color .3s var(--ease), transform .4s var(--ease);
}
.product:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.product__img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-3); }
.product__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .5s var(--ease), transform .7s var(--ease); }
.product:hover .product__img img { filter: grayscale(0); transform: scale(1.05); }
.product__ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .04em;
  color: var(--ink-mute); text-transform: uppercase;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 14px, transparent 14px 28px), var(--bg-3);
}
.product__flag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--ink); color: #000; padding: 5px 10px; border-radius: 999px;
}
.product__flag--soon { background: rgba(0,0,0,.55); color: var(--ink); border: 1px solid var(--line-strong); backdrop-filter: blur(6px); }
.product__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.product__name { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.product__price { font-weight: 700; font-size: 17px; white-space: nowrap; }
.product__sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size {
  border: 1px solid var(--line-strong); border-radius: 8px; padding: 6px 11px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft); cursor: pointer;
  user-select: none; transition: all .2s var(--ease);
}
.size:hover { border-color: var(--ink); color: var(--ink); }
.size.active { background: var(--ink); color: #000; border-color: var(--ink); }
.product .btn { margin-top: auto; width: 100%; }

/* ---------------- Gallery ---------------- */
.gallery { columns: 3; column-gap: 14px; }
.gtile {
  position: relative; break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-2); transition: transform .4s var(--ease), border-color .3s;
}
.gtile:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.gtile img, .gtile video { width: 100%; display: block; filter: none; transition: transform .5s var(--ease); }
.gtile__ph {
  width: 100%; min-height: 220px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; color: var(--ink-mute);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px), var(--bg-3);
  font-size: 14px; letter-spacing: 0.04em; text-align: center; padding: 20px;
}
.gtile--tall .gtile__ph { min-height: 320px; }

/* ---------------- Event hero ---------------- */
.ehero { padding: 66px 0 28px; }
.ehero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 8px 15px; font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.ehero h1 { font-size: clamp(36px, 5.5vw, 74px); font-weight: 500; letter-spacing: -0.03em; }
.ehero__lede { font-size: clamp(16px, 1.9vw, 20px); color: var(--ink-soft); max-width: 620px; margin-top: 24px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--ink-mute);
  font-weight: 600; font-size: 14px; margin-bottom: 28px; transition: color .2s;
}
.back-link:hover { color: var(--ink); }

.recap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.recap h2 { font-size: clamp(28px, 4vw, 44px); }
.recap p { color: var(--ink-soft); margin-top: 18px; }

/* ---------------- Footer ---------------- */
footer { border-top: 1px solid var(--line); padding: 60px 0 40px; margin-top: 40px; }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-start; }
.foot__brand { max-width: 320px; }
.foot__brand p { color: var(--ink-mute); font-size: 15px; margin-top: 16px; }
.foot__cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot__col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; }
.foot__col a { display: block; color: var(--ink-soft); font-size: 15px; padding: 5px 0; transition: color .2s; }
.foot__col a:hover { color: var(--ink); }
.foot__bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--ink-mute); font-size: 13.5px; }

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .events__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .recap { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }
  section { padding: 64px 0; }
  .nav__inner { height: 58px; }
  .brand__logo { height: 15px; }
  .nav .btn--primary { --pad-y: 9px; --pad-x: 15px; font-size: 12.5px; white-space: nowrap; }
  .hero { padding: 82px 0 48px; }
  .hero__grid { gap: 22px; }
  .btn--lg { --pad-y: 15px; --pad-x: 24px; font-size: 15px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 1; }
  .shop-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 32px; }
  .foot { flex-direction: column; gap: 24px; }
  .foot__cols { gap: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
