:root {
  --orange: #fd6302;
  --red: #fe3001;
  --grad: linear-gradient(100deg, #fe3001 0%, #fd6302 60%, #ffb347 100%);
  --grad-soft: linear-gradient(120deg, #fe3001, #fd6302);
  --ink: #1a1208;
  --cream: #fff6ec;
  --cream-2: #ffeede;
  --night: #140d06;
  --green: #2bb673;
  --radius: 26px;
  --maxw: 1180px;
  font-synthesis: none;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- decorative ---------- */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}
.blob--1 { width: 46vw; height: 46vw; top: -12vw; right: -10vw; background: radial-gradient(circle, #fe3001, transparent 70%); }
.blob--2 { width: 40vw; height: 40vw; bottom: -10vw; left: -12vw; background: radial-gradient(circle, #fd6302, transparent 70%); opacity: .4; }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .045;
  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='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */
.section { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 11vw, 150px) 24px; }

.kicker { font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; color: var(--red); margin-bottom: 18px; }
.big {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; line-height: .98; letter-spacing: -.02em;
  font-size: clamp(2.2rem, 6.2vw, 4.6rem); margin-bottom: 26px;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 720px; color: #4a3a28; }
.lead strong { color: var(--ink); }

.hl { color: var(--red); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hl--2 { background: linear-gradient(100deg, #fd6302, #ffb347); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; font-weight: 700;
  padding: 15px 26px; border-radius: 100px; text-decoration: none;
  font-size: 1rem; box-shadow: 0 10px 30px rgba(254,48,1,.32);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.btn span { transition: transform .25s; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(254,48,1,.42); }
.btn:hover span { transform: translateX(5px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: none; border: 2px solid rgba(26,18,8,.18); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); box-shadow: none; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--big { padding: 19px 34px; font-size: 1.12rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px clamp(20px, 4vw, 48px);
  transition: background .3s, backdrop-filter .3s, padding .3s;
}
.nav.scrolled { background: rgba(20,13,6,.72); backdrop-filter: blur(14px); padding-top: 10px; padding-bottom: 10px; }
.nav__logo { position: relative; display: inline-flex; z-index: 60; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.nav__logo:hover { transform: scale(1.06); }
.nav__logo img { height: 52px; width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,.35)); }
.nav.scrolled .nav__logo img { height: 44px; transition: height .3s; }
.nav__logo--color { display: none; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { color: #fff; text-decoration: none; font-weight: 500; font-size: .95rem; opacity: .85; transition: opacity .2s; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav__links a:hover { opacity: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 2; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px clamp(24px, 6vw, 80px) 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(15,9,4,.86) 0%, rgba(15,9,4,.62) 42%, rgba(15,9,4,.18) 100%),
    linear-gradient(0deg, rgba(15,9,4,.7) 0%, transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(254,48,1,.32), transparent 55%);
}
.hero__inner { max-width: 900px; position: relative; z-index: 2; }
.eyebrow {
  display: inline-block; background: #fff; border: 1px solid rgba(254,48,1,.25);
  color: var(--red); font-weight: 600; font-size: .85rem; padding: 8px 16px;
  border-radius: 100px; margin-bottom: 26px; box-shadow: 0 6px 18px rgba(254,48,1,.1);
}
.hero__title {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: clamp(2.3rem, 6.6vw, 5.2rem); line-height: .96; letter-spacing: -.03em;
  margin-bottom: 24px; color: #fff;
}
.hero__sub { font-size: clamp(1.1rem, 2.2vw, 1.5rem); max-width: 640px; color: rgba(255,255,255,.88); margin-bottom: 36px; }
.hero__sub em { color: #ffb347; font-style: italic; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

.hero__stats { list-style: none; display: flex; gap: clamp(24px, 5vw, 60px); flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #ff7a3c; line-height: 1; }
.hero__stats span { font-size: .9rem; color: rgba(255,255,255,.7); }

.hero__marquee { position: absolute; bottom: 28px; left: 0; right: 0; overflow: hidden; opacity: .16; pointer-events: none; z-index: 2; color: #fff; }
.marquee__track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(2.5rem, 7vw, 5.5rem); letter-spacing: -.02em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.scroll-cue { position: absolute; bottom: 24px; right: 28px; z-index: 2; font-size: .8rem; color: rgba(255,255,255,.75); text-decoration: none; text-align: center; line-height: 1.4; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(8px); } }

/* ---------- story ---------- */
.about .big { max-width: 18ch; }
.story { max-width: 760px; margin-top: 30px; }
.story p { color: #5a4733; font-size: 1.05rem; margin-bottom: 18px; }
.story p:last-child { margin-bottom: 0; }
.story .lead { color: #3a2c1c; margin-bottom: 22px; }
.story strong { color: var(--ink); }

/* ---------- why cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 50px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid rgba(26,18,8,.06);
  box-shadow: 0 18px 40px rgba(120,70,20,.08);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: 0 28px 60px rgba(254,48,1,.18); }
.card__emoji { font-size: 2.6rem; margin-bottom: 16px; display: inline-block; }
.card:hover .card__emoji { animation: wiggle .5s ease; }
@keyframes wiggle { 25%{transform:rotate(-12deg)} 75%{transform:rotate(12deg)} }
.card h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -.01em; }
.card p { color: #5a4733; font-size: .98rem; }

/* ---------- vibe ---------- */
.vibe { background: var(--night); color: var(--cream); border-radius: 40px; max-width: calc(var(--maxw) + 48px); }
.vibe .kicker { color: #ff7a3c; }
.vibe .big { color: #fff; }
.community { max-width: 760px; margin-top: 30px; }
.community .lead { color: #fff; font-size: clamp(1.15rem, 2.2vw, 1.5rem); margin-bottom: 22px; }
.community p { color: #d9c7b5; font-size: 1.05rem; }
.pull-quote {
  margin: 44px 0 0; padding: 28px 0 4px 30px;
  border-left: 4px solid var(--orange);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.8rem); line-height: 1.05; letter-spacing: -.02em;
  color: #fff;
}

/* ---------- spots ---------- */
.spots__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 46px; }
.spot {
  position: relative; padding: 38px 26px 30px; border-radius: var(--radius);
  background: var(--grad); color: #fff; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.spot:nth-child(even) { background: linear-gradient(140deg, #fd6302, #ffb347); }
.spot:nth-child(4) { background: var(--ink); }
.spot:hover { transform: translateY(-8px) scale(1.015); }
.spot__num { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 2.6rem; opacity: .55; display: block; margin-bottom: 24px; }
.spot h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.5rem; margin-bottom: 6px; }
.spot p { opacity: .9; font-size: .95rem; }

/* ---------- follow ---------- */
.follow { display: flex; justify-content: center; }
.follow__card {
  text-align: center; background: var(--night); color: #fff;
  border-radius: 40px; padding: clamp(50px, 8vw, 90px) clamp(28px, 6vw, 80px);
  width: 100%; position: relative; overflow: hidden;
}
.follow__bg { position: absolute; inset: 0; z-index: 0; }
.follow__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.follow__card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 50% 120%, rgba(254,48,1,.5), transparent 60%), linear-gradient(0deg, rgba(20,13,6,.5), rgba(20,13,6,.2)); }
.follow__card > *:not(.follow__bg) { position: relative; z-index: 2; }
.follow__logo { height: 38px; width: auto; margin: 0 auto 30px; }
.follow__card h2 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1; margin-bottom: 18px; letter-spacing: -.02em; }
.follow__card p { color: #d9c7b5; max-width: 460px; margin: 0 auto 34px; font-size: 1.08rem; }

/* ---------- footer ---------- */
.footer { position: relative; z-index: 2; padding: 50px 24px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(26,18,8,.1); padding-top: 34px; }
.footer__mark { height: 40px; width: auto; }
.footer__links { display: flex; gap: 22px; }
.footer__links a { color: var(--ink); text-decoration: none; font-weight: 500; opacity: .75; }
.footer__links a:hover { opacity: 1; color: var(--red); }
.footer__copy { color: #8a7256; font-size: .88rem; width: 100%; }

/* ---------- gallery ---------- */
.gallery__grid {
  margin-top: 46px;
  columns: 4 220px;
  column-gap: 14px;
}
.g-item {
  margin: 0 0 14px; break-inside: avoid; border-radius: 18px; overflow: hidden;
  position: relative; background: var(--cream-2);
  box-shadow: 0 14px 34px rgba(120,70,20,.1);
  transform: translateZ(0); /* own layer: stops multi-column repaint flicker */
}
.g-item img {
  width: 100%; display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  will-change: transform; backface-visibility: hidden; transform: translateZ(0);
}
.g-item:hover img { transform: scale(1.06); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee__track, .scroll-cue, .blob { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .vibe { border-radius: 28px; margin-left: 12px; margin-right: 12px; }
  .hero__marquee { display: none; }
}
