/* ===========================================================================
   HB Bushcraft — editorial designsysteem (Unikk-stijl)
   Charcoal base, bone tekst, ember signature accent. Documentary.
   =========================================================================== */

:root {
  --charcoal: #0E0F0D;
  --smoke:    #1B1D1A;
  --pine:     #13160F;
  --bone:     #F2EDE3;
  --sand:     #D9CFBE;
  --dust:     #A89580;
  --moss:     #3F5340;
  --ember:    #C36A3A;
  --fog:      #9CA29A;
  --hairline: rgba(242, 237, 227, 0.12);
  --hairline-strong: rgba(242, 237, 227, 0.22);
  --soft: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1440px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--charcoal);
  color: var(--bone);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
::selection { background: rgba(195, 106, 58, 0.4); color: var(--bone); }
a { color: inherit; text-decoration: none; }

/* ------------------------------------------------------------------ layout */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section { padding: 112px 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 180px 0; } }
.section--charcoal { background: var(--charcoal); }
.section--smoke    { background: var(--smoke); }
.section--pine     { background: var(--pine); }

.hairline { border-top: 1px solid var(--hairline); }

/* ------------------------------------------------------------------ typografie */
.display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--bone);
  text-wrap: balance;
}
.display .italic { font-style: italic; font-weight: 300; color: var(--sand); }
.display .dot    { color: var(--ember); }

.subdisplay {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--bone);
  text-wrap: balance;
}
.subdisplay .italic { font-style: italic; font-weight: 300; color: var(--sand); }
.subdisplay .dot    { color: var(--ember); }

.lead {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(242, 237, 227, 0.82);
  max-width: 56ch;
}
.lead p + p { margin-top: 1.1em; }

.prose {
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(242, 237, 227, 0.78);
  max-width: 60ch;
}
.prose p + p { margin-top: 1em; }
.prose strong { color: var(--bone); font-weight: 500; }

/* ------------------------------------------------------------------ section label */
.label {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--dust);
}
.label__num { color: var(--ember); }
.label__line { display: inline-block; width: 56px; height: 1px; background: var(--hairline-strong); }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--dust);
}
.eyebrow .ember { color: var(--ember); }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; transition: all 400ms var(--soft);
  font-family: "Inter", sans-serif;
}
.btn-primary { background: var(--bone); color: var(--charcoal); }
.btn-primary:hover { background: var(--ember); color: var(--bone); }
.btn-ghost   { color: var(--bone); border-color: var(--hairline-strong); }
.btn-ghost:hover { border-color: var(--bone); }
.btn .arrow { transition: transform 400ms var(--soft); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-block { width: 100%; }

/* ------------------------------------------------------------------ nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 18px 0; transition: all 500ms var(--soft);
  background: transparent;
}
/* Subtiele donkere scrim onder de nav zodat tekst leesbaar blijft op licht beeld */
.nav::before {
  content: ""; position: absolute; inset: 0 0 -60px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(14,15,13,0.65) 0%, rgba(14,15,13,0.35) 55%, transparent 100%);
  transition: opacity 500ms var(--soft);
}
.nav.scrolled { background: rgba(14, 15, 13, 0.88); backdrop-filter: blur(14px); padding: 12px 0; border-bottom: 1px solid var(--hairline); }
.nav.scrolled::before { opacity: 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo {
  font-family: "Fraunces", serif; font-weight: 400; font-size: 19px;
  letter-spacing: -0.01em; color: var(--bone); white-space: nowrap;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}
.nav.scrolled .nav__logo { text-shadow: none; }
.nav__logo .italic { font-style: italic; font-weight: 300; color: var(--sand); }
.nav__logo .dot    { color: var(--ember); }

.nav ul { list-style: none; padding: 0; margin: 0; }

.nav__links { display: none; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone); transition: color 300ms;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.nav.scrolled .nav__links a { text-shadow: none; color: rgba(242, 237, 227, 0.78); }
.nav__links a:hover { color: var(--ember); }
.nav__cta {
  display: none; padding: 10px 22px; font-size: 11px;
  border-color: rgba(242, 237, 227, 0.55);
  color: var(--bone);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.nav.scrolled .nav__cta { border-color: var(--hairline-strong); text-shadow: none; }
.nav__toggle {
  display: inline-flex; width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(242, 237, 227, 0.45); background: rgba(14,15,13,0.35); color: var(--bone);
  align-items: center; justify-content: center; cursor: pointer;
}
.nav.scrolled .nav__toggle { border-color: var(--hairline-strong); background: transparent; }
.nav__drawer { display: none; padding: 22px 0 26px; border-top: 1px solid var(--hairline); background: rgba(14, 15, 13, 0.96); backdrop-filter: blur(14px); }
.nav.open .nav__drawer { display: block; }
.nav__drawer ul { list-style: none; display: grid; gap: 4px; }
.nav__drawer a { display: block; padding: 12px 0; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); border-bottom: 1px solid var(--hairline); }
.nav__drawer a:last-child { border-bottom: none; }

@media (min-width: 1024px) {
  .nav__links  { display: inline-flex; }
  .nav__cta    { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__drawer { display: none !important; }
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; width: 100%;
  height: 100svh; min-height: 640px;
  overflow: hidden; background: var(--pine);
  isolation: isolate;
}
.hero__img { position: absolute; inset: 0; z-index: 0; }
.hero__img img {
  display: block;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: grayscale(0.18) brightness(0.85);
  transform: scale(1.06);
  animation: heroParallax 24s var(--soft) both;
}
@keyframes heroParallax { 0% { transform: scale(1.12); } 100% { transform: scale(1.04); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(14,15,13,0.92) 0%, rgba(14,15,13,0.45) 40%, rgba(14,15,13,0.15) 70%, rgba(14,15,13,0.55) 100%),
    radial-gradient(120% 90% at 60% 50%, transparent 35%, rgba(0,0,0,0.45) 100%);
}
.hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 100px;
}
@media (min-width: 1024px) { .hero__content { padding-bottom: 130px; } }
.hero__eyebrow { margin-bottom: 30px; color: var(--dust); }
.hero__eyebrow .ember { color: var(--ember); margin-right: 12px; }
.hero__title { max-width: 16ch; margin-bottom: 30px; }
.hero__sub { max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.hero__meta {
  position: absolute; bottom: 24px; right: 0; left: 0; z-index: 2;
  pointer-events: none;
}
.hero__meta__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(242, 237, 227, 0.55);
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}

/* ------------------------------------------------------------------ marquee */
.marquee {
  position: relative; overflow: hidden; padding: 22px 0;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  background: var(--charcoal);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 48s linear infinite; }
.marquee__track span { font-family: "Fraunces", serif; font-size: 22px; font-weight: 300; color: var(--sand); }
.marquee__track .italic { font-style: italic; }
.marquee__track .dot { color: var(--ember); margin: 0 20px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ split */
.split { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 5fr 7fr; gap: 96px; }
  .split--reverse { grid-template-columns: 7fr 5fr; }
  .split--reverse .split__left { order: 2; }
}
.split__head { display: grid; gap: 28px; }

/* ------------------------------------------------------------------ image frames */
.frame {
  position: relative; overflow: hidden; background: var(--smoke);
  border: 1px solid var(--hairline);
}
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1); transition: filter 1400ms var(--soft), transform 1600ms var(--soft);
}
.frame:hover img { filter: grayscale(0); transform: scale(1.04); }
.frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(14,15,13,0.55), transparent 50%);
}
.frame--portrait  { aspect-ratio: 4 / 5; }
.frame--landscape { aspect-ratio: 16 / 11; }
.frame--square    { aspect-ratio: 1 / 1; }

/* ------------------------------------------------------------------ weekend / save the date */
.weekend { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .weekend { grid-template-columns: 6fr 5fr; gap: 96px; } }
.weekend__head { display: grid; gap: 28px; }
.weekend__date {
  font-family: "Fraunces", serif; font-weight: 300; font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.9rem); color: var(--sand);
  letter-spacing: -0.005em; line-height: 1.3;
}
.weekend__date .ember { color: var(--ember); font-style: normal; }
.weekend__points { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.weekend__points li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14px; color: rgba(242, 237, 227, 0.8);
  padding-top: 12px; border-top: 1px solid var(--hairline);
}
.weekend__points li::before { content: "—"; color: var(--ember); }
.weekend__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.weekend__flyer { display: block; overflow: hidden; border: 1px solid var(--hairline); transition: transform 600ms var(--soft); }
.weekend__flyer:hover { transform: translateY(-4px); }
.weekend__flyer img { width: 100%; height: auto; }

/* ------------------------------------------------------------------ pillars / cards */
.pillars { display: grid; grid-template-columns: 1fr; gap: 6px; margin-top: 56px; }
@media (min-width: 768px)  { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  padding: 32px; background: var(--charcoal); border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 14px; transition: border-color 400ms;
}
.pillar:hover { border-color: var(--hairline-strong); }
.pillar__num { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ember); }
.pillar h3 {
  font-family: "Fraunces", serif; font-weight: 400; font-size: 1.4rem;
  letter-spacing: -0.01em; color: var(--bone);
}
.pillar h3 .italic { font-style: italic; font-weight: 300; color: var(--sand); }
.pillar p { font-size: 0.92rem; line-height: 1.6; color: rgba(242, 237, 227, 0.7); }

/* ------------------------------------------------------------------ benefits grid */
.benefits { display: grid; grid-template-columns: 1fr; gap: 1px; margin-top: 64px; background: var(--hairline-strong); border: 1px solid var(--hairline-strong); }
@media (min-width: 768px)  { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(4, 1fr); } }
.benefit { padding: 32px 28px; background: var(--charcoal); display: flex; flex-direction: column; gap: 14px; }
.benefit__num { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ember); }
.benefit h3 { font-family: "Fraunces", serif; font-weight: 400; font-size: 1.2rem; color: var(--bone); }
.benefit p { font-size: 0.9rem; line-height: 1.6; color: rgba(242, 237, 227, 0.7); }

/* ------------------------------------------------------------------ checklist */
.checklist { list-style: none; display: grid; gap: 0; }
.checklist li {
  display: flex; gap: 18px; padding: 18px 0;
  border-top: 1px solid var(--hairline);
  color: rgba(242, 237, 227, 0.86); font-size: 0.96rem;
}
.checklist li:last-child { border-bottom: 1px solid var(--hairline); }
.checklist .idx { color: var(--ember); font-size: 11px; letter-spacing: 0.32em; min-width: 32px; padding-top: 5px; }

/* ------------------------------------------------------------------ steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 1px; margin-top: 56px; background: var(--hairline-strong); border: 1px solid var(--hairline-strong); }
@media (min-width: 768px)  { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 36px 30px 38px; background: var(--charcoal); display: flex; flex-direction: column; gap: 12px; }
.step__num { font-family: "Fraunces", serif; font-weight: 300; font-style: italic; font-size: 3rem; color: rgba(195, 106, 58, 0.55); line-height: 1; }
.step h3 { font-family: "Fraunces", serif; font-weight: 400; font-size: 1.15rem; color: var(--bone); margin-top: 4px; }
.step p { font-size: 0.88rem; line-height: 1.55; color: rgba(242, 237, 227, 0.7); }

/* ------------------------------------------------------------------ testimonials */
.quotes { display: grid; gap: 56px; margin-top: 64px; }
@media (min-width: 1024px) { .quotes { grid-template-columns: 1fr 1fr 1fr; gap: 56px; } }
.quote { display: flex; flex-direction: column; gap: 22px; padding-top: 28px; border-top: 1px solid var(--hairline-strong); }
.quote__body {
  font-family: "Fraunces", serif; font-weight: 300; font-style: italic;
  font-size: 1.15rem; line-height: 1.45; color: var(--bone);
}
.quote__by { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dust); display: flex; align-items: center; gap: 12px; }
.quote__by .pip { width: 4px; height: 4px; border-radius: 50%; background: var(--ember); display: inline-block; }

/* ------------------------------------------------------------------ FAQ */
.faq { max-width: 820px; margin: 56px auto 0; border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
  padding: 26px 0; text-align: left;
  font-family: "Fraunces", serif; font-weight: 400; font-size: 1.15rem; color: var(--bone);
}
.faq__q .plus {
  flex: 0 0 auto; width: 32px; height: 32px;
  border: 1px solid var(--hairline-strong); border-radius: 999px;
  color: var(--ember); display: grid; place-items: center;
  transition: transform 400ms var(--soft);
}
.faq__item.open .plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 350ms var(--soft); }
.faq__a p { padding: 0 56px 26px 0; color: rgba(242, 237, 227, 0.78); font-family: "Inter", sans-serif; font-size: 0.95rem; line-height: 1.6; }
.faq__item.open .faq__a { max-height: 420px; }

/* ------------------------------------------------------------------ registration form */
.reg { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
@media (min-width: 1024px) { .reg { grid-template-columns: 5fr 7fr; gap: 96px; } }

.price-card { padding: 32px 28px; border: 1px solid var(--hairline-strong); background: var(--smoke); }
.price-card h3 { font-family: "Fraunces", serif; font-weight: 400; font-size: 1.2rem; color: var(--bone); margin-bottom: 22px; }
.price-row { display: flex; justify-content: space-between; padding: 12px 0; font-size: 14px; color: rgba(242, 237, 227, 0.8); border-bottom: 1px solid var(--hairline); }
.price-row:last-of-type { border-bottom: none; }
.price-total { padding-top: 22px; margin-top: 6px; border-top: 1px solid var(--hairline-strong); display: flex; justify-content: space-between; align-items: baseline; }
.price-total__label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dust); }
.price-total__amt { font-family: "Fraunces", serif; font-weight: 400; font-size: 2rem; color: var(--bone); }
.secure { display: flex; align-items: center; gap: 8px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--hairline); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fog); }
.secure .ember-pip { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); display: inline-block; }

.form { display: grid; gap: 26px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 768px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dust); }
.field input, .field textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--hairline-strong);
  color: var(--bone); font: inherit; padding: 12px 0; transition: border-color 300ms;
  font-family: "Inter", sans-serif;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ember); }
.field textarea { resize: vertical; min-height: 110px; }
.checkbox { display: flex; gap: 14px; align-items: flex-start; cursor: pointer; font-size: 14px; color: rgba(242, 237, 227, 0.85); line-height: 1.5; }
.checkbox input {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px;
  border: 1px solid var(--hairline-strong); background: transparent;
  cursor: pointer; position: relative; transition: all 200ms;
}
.checkbox input:checked { background: var(--ember); border-color: var(--ember); }
.checkbox input:checked::after { content: ""; position: absolute; left: 5px; top: 1px; width: 6px; height: 11px; border: solid var(--charcoal); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.extra-box { padding: 22px 24px; border: 1px solid var(--hairline); margin: 6px 0 12px; }
.err-box {
  padding: 14px 18px; border: 1px solid rgba(195, 106, 58, 0.4);
  background: rgba(195, 106, 58, 0.08); color: #e8a06a;
  font-size: 13px; margin-bottom: 22px;
}
.err-box ul { margin: 6px 0 0 20px; }

/* ------------------------------------------------------------------ CTA closer */
.closer { padding: 140px 0 180px; position: relative; }
.closer__inner { display: grid; gap: 28px; max-width: 760px; }

/* ------------------------------------------------------------------ footer */
.footer { padding: 80px 0 40px; background: var(--pine); border-top: 1px solid var(--hairline); }
.footer__trust { display: grid; grid-template-columns: 1fr; gap: 0; border-bottom: 1px solid var(--hairline); padding-bottom: 32px; margin-bottom: 56px; }
@media (min-width: 768px)  { .footer__trust { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__trust { grid-template-columns: repeat(4, 1fr); } }
.footer__trust li { list-style: none; display: flex; gap: 12px; padding: 16px 0; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(242, 237, 227, 0.7); }
.footer__trust li::before { content: "—"; color: var(--ember); }

.footer__grid { display: grid; gap: 56px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dust); margin-bottom: 20px; }
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(242, 237, 227, 0.72); transition: color 200ms; }
.footer__col a:hover { color: var(--ember); }
.footer__brand { display: flex; flex-direction: column; gap: 24px; }
.footer__tagline { font-family: "Fraunces", serif; font-weight: 300; font-style: italic; font-size: 18px; color: var(--sand); max-width: 34ch; }
.footer__brands { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; margin-top: 12px; }
.footer__brands .mark { display: flex; align-items: center; gap: 12px; }
.footer__brands .mark span { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(156, 162, 154, 0.6); }
.footer__brands img.bib   { height: 56px; width: auto; }
.footer__brands img.unikk { height: 30px; width: auto; opacity: 0.8; }
.footer__legal {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fog);
}

/* ------------------------------------------------------------------ sticky mobile cta */
.sticky-cta { position: fixed; inset: auto 0 0 0; z-index: 40; background: rgba(14,15,13,0.92); backdrop-filter: blur(14px); border-top: 1px solid var(--hairline); padding: 12px 16px; display: none; }
@media (max-width: 900px) { .sticky-cta { display: block; } }

/* ------------------------------------------------------------------ utilities */
.grain { position: relative; }
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.08; mix-blend-mode: overlay;
}
.grain > * { position: relative; z-index: 1; }
.vignette { position: relative; }
.vignette::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* ------------------------------------------------------------------ reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1100ms var(--soft), transform 1100ms var(--soft); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 60ms; }
.reveal[data-delay="2"] { transition-delay: 120ms; }
.reveal[data-delay="3"] { transition-delay: 180ms; }
.reveal[data-delay="4"] { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
