/* ============ VOSK / vosk-candles
   palette: charcoal #1a1814 · bone #ece4d6 · honey amber #c08338 · smoke #5b5650 · moss #3d4a35
   type:    Aboreto (display caps) · Lora (body serif) · Geist Mono (micro)
============ */

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: #1a1814; color: #ece4d6; -webkit-text-size-adjust: 100%; }

:root {
  --ink: #1a1814;
  --ink-soft: #221f1a;
  --ink-2: #2a2620;
  --bone: #ece4d6;
  --bone-soft: #d8cfbe;
  --bone-dim: #8f8675;
  --amber: #c08338;
  --amber-glow: #d99a4d;
  --moss: #3d4a35;
  --smoke: #5b5650;
  --line: rgba(236, 228, 214, 0.14);
  --line-strong: rgba(236, 228, 214, 0.3);

  --f-display: 'Aboreto', serif;
  --f-body: 'Lora', Georgia, serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1640px;
  --nav-h: 76px;
}

body {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.02vw, 17px);
  line-height: 1.6;
  background: var(--ink);
  color: var(--bone);
  font-weight: 400;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.italic { font-family: var(--f-body); font-style: italic; font-weight: 400; }

.micro {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(192, 131, 56, 0.18);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.loader__mark {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.4em;
  color: var(--bone);
}
.loader__bar {
  width: 180px; height: 1px;
  background: rgba(236, 228, 214, 0.15);
  position: relative;
  overflow: hidden;
}
.loader__bar-fill {
  position: absolute; inset: 0 100% 0 0;
  background: var(--amber);
  animation: loadBar 1.1s cubic-bezier(.6,.05,.3,1) forwards;
}
@keyframes loadBar {
  0% { right: 100%; }
  100% { right: 0%; }
}
body:not(.is-loading) .loader { opacity: 0; visibility: hidden; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: rgba(26, 24, 20, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(236, 228, 214, 0.06);
  transition: background .4s ease, border-color .4s ease;
}
.nav.is-scrolled {
  background: rgba(26, 24, 20, 0.85);
  border-bottom-color: rgba(236, 228, 214, 0.12);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
}
.nav__logo svg { color: var(--amber); }
.nav__name {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.3em;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--bone-soft);
  opacity: 0.78;
  transition: opacity .25s ease, color .25s ease;
  position: relative;
}
.nav__links a:hover { opacity: 1; color: var(--bone); }
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.6,.05,.3,1);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__loc {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav__tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.nav__tg:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: var(--bone);
  transition: transform .35s cubic-bezier(.6,.05,.3,1), opacity .25s ease, top .35s ease;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 90;
  padding: calc(var(--nav-h) + 24px) var(--gutter) var(--gutter);
  visibility: hidden;
  opacity: 0;
  transition: opacity .45s ease, visibility .45s ease;
  overflow-y: auto;
}
.menu-open .mobile-menu { visibility: visible; opacity: 1; }
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - var(--nav-h) - 48px);
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
}
.mobile-menu__links a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-display);
  font-size: clamp(36px, 12vw, 64px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s cubic-bezier(.6,.05,.3,1), transform .5s cubic-bezier(.6,.05,.3,1);
  transition-delay: calc(var(--i, 0) * 0.06s + 0.1s);
}
.mobile-menu__links a span {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--amber);
}
.menu-open .mobile-menu__links a { opacity: 1; transform: translateY(0); }
.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease .55s, transform .5s ease .55s;
}
.menu-open .mobile-menu__foot { opacity: 1; transform: translateY(0); }
.mobile-menu__foot p {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0;
  line-height: 1.7;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.6,.05,.3,1),
              background .35s ease,
              color .35s ease,
              border-color .35s ease;
  white-space: nowrap;
}
.btn--lg { padding: 18px 28px; font-size: 13px; }
.btn--solid {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn--solid:hover { background: var(--amber-glow); border-color: var(--amber-glow); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .3s ease, color .3s ease;
}
.link-underline:hover { color: var(--amber); border-color: var(--amber); }

/* ============ HERO (cinematic slider) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 16px) 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

/* === text column === */
.hero__text {
  padding: clamp(24px, 4vw, 64px) clamp(20px, 4vw, 64px) clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 56px);
  position: relative;
  z-index: 2;
}
.hero__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .8s ease 1.0s, transform .8s ease 1.0s;
}
body:not(.is-loading) .hero__topbar { opacity: 1; transform: translateY(0); }
.hero__chapter {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.hero__count {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--bone);
  font-feature-settings: "tnum";
}
.hero__count #heroCur { color: var(--amber); }
.hero__count-sep { width: 28px; height: 1px; background: var(--line-strong); display: inline-block; }

.hero__titles {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: clamp(140px, 22vw, 240px);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0;
  position: absolute;
  inset: auto 0 0 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  max-width: 100%;
}
.hero__title.is-active { visibility: visible; opacity: 1; pointer-events: auto; }
.hero__title .line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.hero__title.is-active .word { transform: translateY(0); }
.hero__title .italic .word {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 0.92em;
  color: var(--bone-soft);
}

.hero__leadwrap {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  min-height: 96px;
}
.hero__lead {
  position: absolute;
  inset: 22px 0 0 0;
  max-width: 44ch;
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--bone-soft);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.hero__lead.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.hero__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease 1.5s, transform .8s ease 1.5s;
}
body:not(.is-loading) .hero__nav { opacity: 1; transform: translateY(0); }

.hero__dots {
  display: flex;
  gap: 6px;
}
.hero__dot {
  background: transparent;
  border: 0;
  padding: 10px 4px;
  cursor: pointer;
  display: flex; align-items: center;
}
.hero__dot span {
  width: 28px; height: 1px;
  background: rgba(236, 228, 214, 0.18);
  display: block;
  transition: background .35s ease, width .35s ease;
}
.hero__dot:hover span { background: var(--bone-dim); }
.hero__dot.is-active span { background: var(--amber); width: 48px; }

.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* === image stage === */
.hero__stage {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  margin: clamp(24px, 4vw, 64px) clamp(24px, 4vw, 64px) clamp(24px, 4vw, 56px) 0;
  border-radius: 2px;
}
.hero__slides {
  position: absolute; inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  clip-path: inset(100% 0 0 0);
  transform: scale(1.06);
  transition: clip-path 1.1s cubic-bezier(.7,0,.3,1),
              transform 8s linear;
  will-change: clip-path, transform;
}
.hero__slide.is-active {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}
.hero__slide.is-active img {
  animation: kenBurns 14s ease-out forwards;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(-1.5%, -1%); }
}
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  will-change: transform;
}
.hero__slide-tag {
  position: absolute;
  top: 18px; left: 18px;
  padding: 8px 14px;
  background: rgba(26, 24, 20, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  z-index: 3;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .55s ease .3s, transform .55s ease .3s;
}
.hero__slide.is-active .hero__slide-tag { opacity: 1; transform: translateY(0); }

.hero__stage-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(26, 24, 20, 0.4), transparent 60%),
    linear-gradient(180deg, rgba(26, 24, 20, 0.15), rgba(26, 24, 20, 0) 25%);
  pointer-events: none;
  z-index: 2;
}

.hero__progress {
  position: absolute;
  left: 18px; right: 18px;
  bottom: 18px;
  height: 1px;
  background: rgba(236, 228, 214, 0.15);
  z-index: 4;
}
.hero__progress-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--amber);
  transition: width .15s linear;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(26, 24, 20, 0.55);
  border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--bone);
  cursor: pointer;
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.hero__arrow:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.hero__arrow--prev { left: 18px; transform: translateY(-50%) scaleX(-1); }
.hero__arrow--prev:hover { transform: translateY(-50%) scaleX(-1) translateX(-3px); }
.hero__arrow--next { right: 18px; }
.hero__arrow--next:hover { transform: translateY(-50%) translateX(3px); }

.hero__vside {
  position: absolute;
  top: 50%; right: -34px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
  z-index: 5;
  display: none;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 1s ease 2s;
  z-index: 5;
  pointer-events: none;
}
body:not(.is-loading) .hero__scroll { opacity: 0.85; pointer-events: auto; }
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--bone));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--amber));
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(54vh, auto) auto;
  }
  .hero__stage {
    order: -1;
    margin: 0 clamp(16px, 4vw, 32px);
    min-height: 54vh;
  }
  .hero__text { padding-top: clamp(22px, 4vw, 40px); gap: clamp(20px, 4vw, 40px); }
  .hero__titles { min-height: clamp(160px, 32vw, 240px); }
  .hero__arrow { width: 44px; height: 44px; }
  .hero__scroll { display: none; }
}
@media (max-width: 640px) {
  .hero { padding-top: var(--nav-h); }
  .hero__stage { margin: 12px 16px 0; min-height: 46vh; border-radius: 4px; }
  .hero__text { padding: 22px 20px 28px; gap: 18px; }
  .hero__topbar {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .hero__chapter { font-size: 10px; flex: 1; min-width: 0; }
  .hero__chapter span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero__count { font-size: 11px; flex-shrink: 0; }
  .hero__count-sep { width: 18px; }
  .hero__title {
    font-size: clamp(28px, 7.4vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.015em;
  }
  .hero__titles { min-height: 145px; }
  .hero__title .italic .word { font-size: 0.94em; }
  .hero__leadwrap { padding-top: 16px; min-height: 86px; }
  .hero__lead { inset: 16px 0 0 0; font-size: 14px; line-height: 1.5; }
  .hero__nav { gap: 14px; }
  .hero__actions .btn { font-size: 11px; padding: 11px 16px; letter-spacing: 0.08em; }
  .hero__actions .btn span { white-space: nowrap; }
  .hero__slide-tag { top: 12px; left: 12px; padding: 6px 10px; }
  .hero__slide-tag .micro { font-size: 9px; letter-spacing: 0.08em; }
  .hero__progress { left: 12px; right: 12px; bottom: 12px; }
  .pinscrub__title { font-size: clamp(24px, 6.8vw, 38px); }
  .pinscrub__sub { font-size: 14px; margin-top: 18px; }
  .pinscrub { height: 200vh; }
}

/* ============ PINNED SCRUB SECTION ============ */
.pinscrub {
  position: relative;
  height: 240vh;
  background: var(--ink);
}
.pinscrub__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pinscrub__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.pinscrub__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.6) saturate(0.9) contrast(1.08);
  transform-origin: 50% 55%;
  will-change: transform;
}
.pinscrub__bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(26, 24, 20, 0.3), rgba(26, 24, 20, 0.85) 80%),
    linear-gradient(180deg, rgba(26, 24, 20, 0.55), rgba(26, 24, 20, 0.2) 40%, rgba(26, 24, 20, 0.85));
}
.pinscrub__copy {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.pinscrub__eyebrow {
  color: var(--amber);
  display: inline-block;
  margin-bottom: 24px;
}
.pinscrub__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0 auto;
  max-width: 24ch;
  color: var(--bone);
}
.pinscrub__title [data-rev] {
  display: inline-block;
  margin: 0 0.16em 0 0;
  opacity: 0.18;
  transform: translateY(0);
  transition: opacity .5s ease;
}
.pinscrub__title [data-rev].is-on { opacity: 1; }
.pinscrub__title [data-rev].italic { font-family: var(--f-body); font-style: italic; color: var(--amber-glow); }
.pinscrub__sub {
  margin: 28px auto 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--bone-soft);
  opacity: 0;
  transition: opacity .8s ease;
}
.pinscrub__sub.is-on { opacity: 1; }

/* ============ MANIFESTO ============ */
.manifesto {
  padding: clamp(80px, 14vw, 200px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.manifesto > .section-label { display: inline-flex; }
.manifesto__text {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 36px 0 48px;
  max-width: 22ch;
  color: var(--bone);
}
.manifesto__text [data-word] {
  display: inline-block;
  margin-right: 0.2em;
  opacity: 0.2;
  transition: opacity .5s ease;
}
.manifesto__text [data-word].italic {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--amber-glow);
}
.manifesto__text [data-word].is-on { opacity: 1; }
.manifesto__sign {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 320px;
}

/* ============ COLLECTION ============ */
.collection {
  background: var(--ink-soft);
  padding: clamp(80px, 12vw, 160px) 0 0;
  position: relative;
  overflow: hidden;
}
.collection__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 8vw, 100px);
}
.collection__head .section-label { grid-column: 1; align-self: start; }
.collection__head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 24px 0 0;
  grid-column: 1;
}
.collection__head p {
  grid-column: 2;
  margin: 0;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--bone-soft);
  max-width: 44ch;
}

.collection__rail {
  position: relative;
  padding-bottom: clamp(40px, 6vw, 64px);
}
.collection__track {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: 0 var(--gutter);
  will-change: transform;
}
.card {
  flex: 0 0 clamp(280px, 32vw, 460px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-2);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.4,.05,.3,1), filter 1.4s ease;
  filter: saturate(0.85) brightness(0.95);
}
.card:hover .card__media img { transform: scale(1.04); filter: saturate(1) brightness(1.02); }
.card__no {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bone);
  background: rgba(26, 24, 20, 0.55);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--bone);
}
.card__notes {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 38ch;
}
.card__notes em { color: var(--bone-soft); font-style: italic; }
.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--bone-soft);
}
.card__price { color: var(--amber); font-feature-settings: "tnum"; }

.collection__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 6vw, 80px);
}

/* ============ RITUAL ============ */
.ritual {
  padding: clamp(80px, 14vw, 200px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.ritual__head {
  max-width: 800px;
  margin-bottom: clamp(48px, 8vw, 100px);
}
.ritual__head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 28px 0 0;
}

.ritual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: clamp(220px, 28vw, 360px);
  gap: clamp(16px, 2vw, 24px);
}
.ritual__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
}
.ritual__cell--tall { grid-row: span 2; }
.ritual__cell--wide { grid-column: span 2; }
.ritual__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
  will-change: transform;
}
.ritual__cell figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 14px 16px;
  background: rgba(26, 24, 20, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bone);
  line-height: 1.55;
  border-left: 2px solid var(--amber);
}
.ritual__cell figcaption .micro {
  color: var(--amber);
  flex: 0 0 auto;
}

/* ============ PROCESS ============ */
.process {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(80px, 14vw, 180px) var(--gutter);
  position: relative;
}
.process__head {
  max-width: var(--max);
  margin: 0 auto clamp(64px, 10vw, 140px);
}
.process .section-label { color: var(--smoke); border-color: rgba(26, 24, 20, 0.15); }
.process .section-label .dot { background: var(--ink); box-shadow: 0 0 0 3px rgba(26, 24, 20, 0.1); }
.process__head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 28px 0 0;
  color: var(--ink);
  max-width: 18ch;
}
.process__head h2 .italic { color: var(--amber); }

.process__steps {
  list-style: none;
  margin: 0; padding: 0;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 160px);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.step:nth-child(even) {
  grid-template-columns: 1fr 1fr 80px;
}
.step:nth-child(even) .step__num { order: 3; }
.step:nth-child(even) .step__media { order: 2; }
.step:nth-child(even) .step__copy { order: 1; text-align: right; }

.step__num {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  color: var(--amber);
  position: relative;
  align-self: start;
  padding-top: 8px;
}
.step__num span { position: relative; z-index: 2; }
.step__num::after {
  content: "";
  position: absolute;
  top: 8px;
  left: -16px;
  width: 56px; height: 56px;
  border: 1px solid rgba(192, 131, 56, 0.3);
  border-radius: 50%;
  z-index: 1;
}
.step__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.step__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
  filter: saturate(0.9);
}
.step:hover .step__media img { transform: scale(1.03); }
.step__copy h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.step__copy p {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--smoke);
  max-width: 42ch;
}
.step:nth-child(even) .step__copy p { margin-left: auto; }
.step__copy .micro { color: var(--smoke); }

/* ============ QUOTE STRIP ============ */
.quote {
  padding: clamp(60px, 9vw, 120px) var(--gutter);
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote p {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 44px);
  line-height: 1.3;
  text-align: center;
  color: var(--bone-soft);
}

/* ============ STORY ============ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink-soft);
  overflow: hidden;
}
.story__media {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.story__media img {
  width: 100%; height: 110%;
  object-fit: cover;
  will-change: transform;
  filter: saturate(0.85) contrast(1.05);
}
.story__copy {
  padding: clamp(60px, 10vw, 140px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  max-width: 680px;
}
.story__copy h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 16px 0 8px;
  color: var(--bone);
}
.story__copy p {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: var(--bone-soft);
  max-width: 48ch;
}
.story__stats {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
}
.story__stats li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.story__stats .num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 60px);
  color: var(--amber);
  font-feature-settings: "tnum";
}
.story__stats .lab {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ============ PRESS ============ */
.press {
  padding: clamp(60px, 9vw, 120px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.press ul {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.press li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: 0.01em;
  color: var(--bone);
  transition: color .3s ease;
}
.press li:last-child { border-bottom: 1px solid var(--line); }
.press li > span:first-child {
  display: inline-block;
  transition: transform .4s cubic-bezier(.6,.05,.3,1);
}
.press li:hover { color: var(--amber); }
.press li:hover > span:first-child { transform: translateX(14px); }

/* ============ VISIT ============ */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink-soft);
}
.visit__copy {
  padding: clamp(60px, 10vw, 140px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.visit__copy h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 16px 0 0;
}
.visit__copy > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--bone-soft);
  max-width: 50ch;
}
.visit__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 12px 0;
}
.visit__details > div { display: flex; flex-direction: column; gap: 8px; }
.visit__details p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bone-soft);
}
.visit__copy .btn { align-self: flex-start; margin-top: 8px; }

.visit__map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.visit__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.4) brightness(0.85) contrast(1.05);
}
.visit__map-card {
  position: absolute;
  top: 32px; right: 32px;
  padding: 18px 22px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 220px;
  z-index: 2;
}
.visit__map-card p {
  margin: 0;
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1.4;
  color: var(--bone);
}

/* ============ FOOTER ============ */
.foot {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 96px) var(--gutter) 24px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.foot__brand p {
  margin: 16px 0 0;
  color: var(--bone-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 32ch;
}
.foot__mark {
  font-family: var(--f-display);
  font-size: clamp(60px, 8vw, 120px);
  letter-spacing: 0.04em;
  display: block;
  line-height: 1;
  color: var(--bone);
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot__cols > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__cols a {
  color: var(--bone-soft);
  font-family: var(--f-body);
  font-size: 15px;
  transition: color .25s ease;
}
.foot__cols a:hover { color: var(--amber); }
.foot__cols p {
  margin: 0;
  color: var(--bone-soft);
  font-size: 15px;
  line-height: 1.6;
}
.foot__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
  flex-wrap: wrap;
}
.foot__credit {
  color: var(--amber);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
  margin-left: 4px;
}
.foot__credit:hover { border-bottom-color: var(--amber); }

/* ============ FAB ============ */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 0 6px rgba(192, 131, 56, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease, background .25s ease;
}
.fab.is-on { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab:hover { background: var(--amber-glow); }
.menu-open .fab { opacity: 0; pointer-events: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { gap: 12px; }
  .nav__loc { display: none; }
  .nav__tg { display: none; }
  .burger { display: block; }

  .collection__head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .collection__head h2 { grid-column: 1; }
  .collection__head p { grid-column: 1; max-width: 56ch; }

  .step,
  .step:nth-child(even) {
    grid-template-columns: 60px 1fr;
    gap: 24px 32px;
  }
  .step:nth-child(even) .step__num { order: 0; }
  .step:nth-child(even) .step__media { order: 0; }
  .step:nth-child(even) .step__copy { order: 0; text-align: left; }
  .step__media { grid-column: 1 / -1; }
  .step__copy { grid-column: 2; }
  .step:nth-child(even) .step__copy p { margin-left: 0; }
  .step__num { grid-column: 1; align-self: start; }

  .story { grid-template-columns: 1fr; }
  .story__media { min-height: 60vh; }
  .visit { grid-template-columns: 1fr; }
  .visit__map { min-height: 460px; }

  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --gutter: 1.25rem; --nav-h: 64px; }

  .hero { gap: 24px; padding-bottom: 90px; }
  .hero__meta { font-size: 10px; flex-wrap: wrap; gap: 8px; }
  .hero__title { font-size: clamp(48px, 14vw, 88px); }
  .hero__base { grid-template-columns: 1fr; gap: 20px; }
  .hero__corner { display: none; }
  .hero__scroll { bottom: 24px; }

  .manifesto__text { font-size: clamp(28px, 7vw, 42px); }

  .ritual__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(280px, 60vw, 380px);
  }
  .ritual__cell--tall { grid-row: span 1; }
  .ritual__cell--wide { grid-column: span 1; }

  .collection__head h2 { font-size: clamp(30px, 8vw, 44px); }

  .quote p { font-size: clamp(20px, 5.5vw, 30px); }

  .story__stats { grid-template-columns: 1fr; gap: 16px; }
  .visit__details { grid-template-columns: 1fr; }
  .visit__map-card { top: 16px; right: 16px; padding: 14px 16px; }

  .foot__cols { grid-template-columns: 1fr 1fr; }

  .fab { bottom: 18px; right: 18px; }

  /* On mobile the horizontal scroll becomes a regular scroll-snap rail */
  .collection__rail { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .collection__track { transform: none !important; padding-right: var(--gutter); }
  .card { scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__title .word { transform: none !important; }
  .manifesto__text [data-word] { opacity: 1 !important; }
}
