/* =============================================================================
   PIOT — Peace In Our Time
   styles.css
============================================================================= */

/* ─── RESET ─────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */

:root {
  --black:   #050505;
  --deep:    #000;
  --ivory:   #f2eee7;
  --muted:   #8f8a82;
  --bronze:  #b08a52;
  --rule:    rgba(255,255,255,0.07);
  --gap:     clamp(80px, 11vw, 130px);
  --pad:     clamp(24px, 5vw, 72px);
}

/* ─── BASE ───────────────────────────────────────────────────────────────── */

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: 'Helvetica Neue', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── FILM GRAIN ─────────────────────────────────────────────────────────── */

.grain {
  position: fixed;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.038;
  pointer-events: none;
  z-index: 9000;
  animation: grain .35s steps(8) infinite;
}

@keyframes grain {
  0%  { transform: translate(0,    0)    }
  12% { transform: translate(-3px, 4px)  }
  25% { transform: translate(4px, -3px)  }
  37% { transform: translate(-4px,-4px)  }
  50% { transform: translate(4px,  3px)  }
  62% { transform: translate(-4px, 4px)  }
  75% { transform: translate(3px, -4px)  }
  87% { transform: translate(-3px, 4px)  }
}

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .reveal { transition: none !important; }
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── SHARED ATOMS ───────────────────────────────────────────────────────── */

.eyebrow {
  display: block;
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
  text-indent: .5em;
}

.section-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 200;
  letter-spacing: .35em;
  text-transform: uppercase;
  line-height: 1;
  text-indent: .35em;
}

/* Pricing rows */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.price-row:first-child { border-top: 1px solid var(--rule); }

.p-label {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .28em;
}

.p-val {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bronze);
  letter-spacing: .04em;
}

/* CTAs */
.cta-primary {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .45em;
  text-transform: uppercase;
  text-indent: .45em;
  transition: background .4s ease, color .4s ease;
}
.cta-primary:hover { background: var(--bronze); color: var(--black); }

.cta-secondary {
  display: inline-block;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(143,138,130,.3);
  padding-bottom: 3px;
  text-indent: .4em;
  transition: color .3s, border-color .3s;
}
.cta-secondary:hover { color: var(--ivory); border-color: var(--ivory); }

/* Missing image fallback */
.img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c0c0c;
  border: 1px solid var(--rule);
  color: var(--muted);
  font-size: .52rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 12px;
  text-align: center;
  line-height: 1.6;
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 54px;
  background: rgba(5,5,5,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.nav-wrap {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo {
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--ivory);
  text-indent: .55em;
}

.nav-center {
  display: flex;
  gap: clamp(14px, 2.5vw, 32px);
}

.nav-center a {
  font-size: .56rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .3em;
  transition: color .25s;
}
.nav-center a:hover { color: var(--ivory); }

.nav-bag {
  text-align: right;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .3em;
  transition: color .25s;
}
.nav-bag:hover { color: var(--ivory); }

@media (max-width: 840px) {
  .nav-center { display: none; }
  .nav-wrap { grid-template-columns: 1fr 1fr; }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
  --lx: 50%;
  --ly: 44%;
}

.hero-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55vw 44vw at var(--lx) var(--ly),
      rgba(176,138,82,.14) 0%,
      rgba(140,100,50,.05) 44%,
      transparent 68%),
    radial-gradient(ellipse 90vw 70vw at 50% 42%,
      rgba(40,24,6,.18) 0%,
      transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    transparent 38%, rgba(0,0,0,.78) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 24px 80px;
  max-width: 900px;
  width: 100%;
}

.hero-wordmark {
  font-size: clamp(4.5rem, 18vw, 14rem);
  font-weight: 100;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1;
  text-indent: .55em;
  margin-bottom: 24px;
  opacity: .72;
  will-change: opacity;
}

.hero-subtitle {
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  text-indent: .5em;
}

.hero-tagline {
  font-size: clamp(.9rem, 2vw, 1.15rem);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 52px;
}

.hero-details span {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .28em;
}

/* ─── CLEAN CINEMA ───────────────────────────────────────────────────────────────────────────────────── */

.clean-cinema {
  position: relative;
  overflow: hidden;
  padding: clamp(72px,10vw,120px) var(--pad) clamp(64px,9vw,100px);
  background: #050403;
  border-top: 1px solid var(--rule);
  min-height: 100vh;
}

.cc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 72% 55% at 38% 45%, rgba(232,223,207,0.20) 0%, transparent 60%),
    linear-gradient(145deg, #080604 0%, #2d2116 52%, #060402 100%);
  transition: background 1.1s ease;
}

.cc-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0,0,0,.52) 100%),
    linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.68) 100%);
}

.cc-wrap {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
}

.cc-hd { text-align: center; margin-bottom: clamp(36px,5vw,56px); }

.cc-sub {
  font-size: clamp(.9rem,1.7vw,1.1rem);
  font-weight: 300;
  line-height: 2;
  color: var(--muted);
  margin-top: 10px;
}

/* ── BODY */
.cc-body {
  display: grid;
  grid-template-columns: 1fr 33%;
  gap: clamp(28px,4.5vw,56px);
  align-items: start;
  margin-bottom: clamp(40px,6vw,64px);
}

/* ── ACCORDION RAIL */
.cc-rail {
  display: flex;
  height: clamp(440px,68vh,720px);
  gap: 3px;
}

.cc-slot {
  position: relative;
  flex-grow: 1.4;
  flex-shrink: 1;
  flex-basis: 0;
  overflow: hidden;
  border: none;
  background: #080807;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: flex-grow .9s cubic-bezier(.4,0,.2,1);
}
.cc-slot.active {
  flex-grow: 5;
  pointer-events: none;
  cursor: default;
}
.cc-slot:not(.active):hover { flex-grow: 1.9; }

.cc-slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  pointer-events: none;
  user-select: none;
  transition: opacity .8s ease, filter .8s ease, transform 1s ease;
}
.cc-slot:not(.active) .cc-slot-img {
  opacity: .38;
  filter: saturate(.45) brightness(.9);
}
.cc-slot:not(.active):hover .cc-slot-img {
  opacity: .62;
  filter: saturate(.75) brightness(1);
}
.cc-slot.active .cc-slot-img {
  opacity: 1;
  filter: none;
  transform: scale(1.015);
}

/* Editorial inner shadow on active — softens hard product edges */
.cc-slot.active::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 0 0 90px rgba(0,0,0,.42),
    inset 0 -70px 80px rgba(0,0,0,.45),
    inset 0 50px 55px rgba(0,0,0,.18);
}

/* Bronze top line on active */
.cc-slot.active::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--bronze);
  opacity: .7;
  z-index: 2;
  pointer-events: none;
}

/* Vertical label on inactive panels */
.cc-slot-lbl {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-lr;
  font-size: .42rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(242,238,231,.38);
  pointer-events: none;
  white-space: nowrap;
  transition: opacity .5s ease, color .5s ease;
  z-index: 2;
}
.cc-slot:not(.active):hover .cc-slot-lbl { color: rgba(242,238,231,.68); }
.cc-slot.active .cc-slot-lbl { opacity: 0; pointer-events: none; }

/* ── TEXT PANEL */
.cc-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 2px;
}

.cc-neck-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.cc-neck {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  background: #0a0a0a;
  outline: 1px solid rgba(176,138,82,.25);
  flex-shrink: 0;
  transition: opacity .45s ease;
}
.cc-neck-lbl {
  font-size: .46rem;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .38em;
}

.cc-ew {
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
  text-indent: .46em;
}

.cc-name {
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 200;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 22px;
  text-indent: .32em;
  transition: opacity .38s ease;
}

.cc-msg {
  font-size: clamp(.98rem,1.9vw,1.28rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.45;
  margin-bottom: 12px;
  transition: opacity .38s ease;
}

.cc-ro {
  font-size: .88rem;
  font-weight: 300;
  font-style: normal;
  color: rgba(242,238,231,.74);
  border-left: 2px solid rgba(176,138,82,.58);
  padding-left: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  transition: opacity .38s ease;
}

.cc-mood {
  font-size: .83rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 8px;
  transition: opacity .38s ease;
}

.cc-atmo {
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(143,138,130,.4);
  margin-bottom: 16px;
  text-indent: .2em;
  transition: opacity .38s ease;
}

.cc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 20px;
}
.cc-specs span {
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .24em;
}

.cc-pricing {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.cc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cc-pl {
  font-size: .56rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .22em;
}
.cc-pv {
  font-size: .82rem;
  font-weight: 300;
  color: var(--ivory);
}

/* ── BOTTOM COLOR NAV */
.cc-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px,3.5vw,44px);
  padding-top: clamp(28px,4.5vw,44px);
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.cc-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .54rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(242,238,231,.25);
  padding: 10px 0;
  position: relative;
  transition: color .45s ease;
  text-indent: .34em;
  font-family: inherit;
}
.cc-nav-btn.active { color: rgba(242,238,231,.86); }
.cc-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  height: 1px;
  background: var(--bronze);
  opacity: .65;
}
.cc-nav-btn:not(.active):hover { color: rgba(242,238,231,.5); }

/* ── RESPONSIVE */
@media (max-width: 860px) {
  .cc-body { grid-template-columns: 1fr; }
  .cc-rail { height: clamp(300px,65vw,440px); }
  .cc-slot { flex-grow: 1.6; }
  .cc-slot.active { flex-grow: 4; }
  .cc-slot:not(.active):hover { flex-grow: 1.9; }
}
@media (max-width: 480px) {
  .cc-slot-lbl { font-size: .36rem; letter-spacing: .2em; }
}

/* ─── COLLECTION GRID ────────────────────────────────────────────────────── */

.col-grid {
  padding: var(--gap) var(--pad);
  background: var(--black);
  border-top: 1px solid var(--rule);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 860px)  { .grid-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .grid-wrap { grid-template-columns: 1fr; } }

.prod-card { overflow: hidden; }

.prod-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0a0a;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }

.prod-body { padding: 18px 0 32px; }

.prod-name {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 14px;
  text-indent: .45em;
}

.prod-msg {
  font-size: .95rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.45;
  margin-bottom: 5px;
}

.prod-ro {
  font-size: .8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bronze);
  margin-bottom: 22px;
}

.prod-pricing { margin-bottom: 18px; }

.prod-cta {
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .35em;
  transition: color .25s;
}
.prod-cta:hover { color: var(--ivory); }

/* ─── INSIDE MESSAGE ─────────────────────────────────────────────────────── */

.neck-section {
  padding: var(--gap) var(--pad);
  background: #030303;
  border-top: 1px solid var(--rule);
}

.neck-inner { max-width: 1400px; margin: 0 auto; }

.neck-intro {
  font-size: clamp(.88rem, 1.8vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 2;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.neck-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

@media (max-width: 960px) { .neck-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .neck-gallery { grid-template-columns: repeat(2, 1fr); } }

.neck-item { overflow: hidden; }

.neck-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0a0a;
}

.neck-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.neck-item:hover .neck-img-wrap img { transform: scale(1.06); }

.neck-cw {
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 12px 0 5px;
  text-indent: .35em;
}

.neck-msg {
  font-size: .8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bronze);
  line-height: 1.45;
}

/* ─── EMBLEM ─────────────────────────────────────────────────────────────── */

.emblem-section {
  padding: var(--gap) var(--pad);
  background: var(--black);
  border-top: 1px solid var(--rule);
}

.emblem-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

@media (max-width: 720px) { .emblem-wrap { grid-template-columns: 1fr; } }

.emblem-visual { position: relative; }

/* Dark matte panel — artifact frame for the vector mark */
.emblem-frame {
  display: inline-block;
  background: #0c0a07;
  border: 1px solid rgba(176,138,82,.16);
  padding: clamp(32px,4.5vw,56px);
  max-width: 360px;
  width: 100%;
  box-sizing: border-box;
}

.emblem-img {
  display: block;
  width: 100%;
  /* SVG fills are near-black on transparent bg.
     invert(1) → near-white; sepia(0.35) → warm ivory. No halo. */
  filter: invert(1) sepia(0.35);
}

.emblem-text .eyebrow { margin-bottom: 32px; }

.emblem-story {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.emblem-story p {
  font-size: clamp(.88rem, 1.7vw, 1.02rem);
  font-weight: 300;
  line-height: 1.95;
  color: var(--ivory);
}

.emblem-close {
  font-style: italic;
  color: var(--bronze) !important;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-top: 6px;
}

/* ─── MANIFESTO ──────────────────────────────────────────────────────────── */

.manifesto {
  padding: var(--gap) var(--pad);
  background: #000;
  border-top: 1px solid var(--rule);
}

.manifesto-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-header {
  margin-bottom: clamp(44px, 7vw, 80px);
}

.manifesto-title {
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  font-weight: 100;
  letter-spacing: .35em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 28px;
  text-indent: .35em;
}

.manifesto-sub {
  font-size: clamp(.9rem, 1.8vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.85;
}

.manifesto-intro {
  font-size: clamp(.85rem, 1.6vw, 1rem);
  font-weight: 300;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.manifesto-list {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.manifesto-list li {
  font-size: clamp(1.3rem, 3.2vw, 2.6rem);
  font-weight: 200;
  letter-spacing: .04em;
  color: var(--ivory);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.2;
}
.manifesto-list li:first-child { border-top: 1px solid var(--rule); }

.manifesto-close {
  font-size: clamp(.82rem, 1.4vw, .96rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bronze);
  line-height: 1.95;
}

/* ─── PACKAGING ──────────────────────────────────────────────────────────── */

.packaging-section {
  padding: var(--gap) var(--pad);
  background: var(--black);
  border-top: 1px solid var(--rule);
}

.packaging-inner { max-width: 1200px; margin: 0 auto; }

.packaging-intro {
  font-size: clamp(.9rem, 1.8vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 2;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

@media (max-width: 620px) { .packaging-grid { grid-template-columns: 1fr; } }

/* Flatlay spans full height of the two supporting images */
.pkg-main .pkg-img-wrap {
  aspect-ratio: auto;
  height: 100%;
  min-height: 400px;
}

.pkg-supporting {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.pkg-item { overflow: hidden; }

.pkg-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0a0a0a;
}

.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.pkg-item:hover .pkg-img-wrap img { transform: scale(1.04); }

.pkg-label {
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  text-indent: .4em;
}

/* ─── BOLD ───────────────────────────────────────────────────────────────── */

.bold-section {
  padding: var(--gap) var(--pad);
  background: #000;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.bold-wrap { max-width: 680px; margin: 0 auto; }

.bold-title {
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 100;
  letter-spacing: .5em;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(242,238,231,.11);
  color: transparent;
  line-height: 1;
  margin: 16px 0 32px;
  text-indent: .5em;
}

.bold-sub {
  font-size: clamp(.88rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 20px;
}

.bold-note {
  font-size: .56rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(143,138,130,.35);
  text-indent: .28em;
}

/* ─── PRE-ORDER ──────────────────────────────────────────────────────────── */

.preorder-section {
  padding: var(--gap) var(--pad);
  background: #020202;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.preorder-wrap { max-width: 520px; margin: 0 auto; }

.preorder-title {
  font-size: clamp(1.8rem, 6vw, 4.2rem);
  font-weight: 200;
  letter-spacing: .4em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  text-indent: .4em;
}

.preorder-sub {
  font-size: .88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.preorder-pricing {
  max-width: 260px;
  margin: 0 auto 36px;
}

.preorder-note {
  margin-top: 22px;
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(143,138,130,.38);
  text-indent: .28em;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */

.site-footer {
  padding: 64px var(--pad) 48px;
  background: var(--black);
  border-top: 1px solid var(--rule);
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

@media (max-width: 620px) {
  .footer-wrap { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-copy { text-align: center; }
}

.footer-logo {
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: var(--ivory);
  text-indent: .6em;
}

.footer-line {
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .2em;
  color: var(--muted);
  margin-top: 6px;
  text-indent: .2em;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: .56rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .3em;
  transition: color .25s;
}
.footer-nav a:hover { color: var(--ivory); }

.footer-copy {
  font-size: .52rem;
  font-weight: 300;
  letter-spacing: .18em;
  color: rgba(143,138,130,.35);
  text-align: right;
  text-indent: .18em;
}

/* ═══════════════════════════════════════════════════════════
   THE FEW — FOUNDERS ACCESS SECTION
═══════════════════════════════════════════════════════════ */

.the-few-section {
  background: #000;
  padding: 120px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.the-few-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.the-few-header {
  text-align: center;
  margin-bottom: 64px;
}

.the-few-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.18em;
  color: #fff;
  margin: 16px 0 24px;
  line-height: 1;
}

.the-few-sub {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.the-few-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 640px) {
  .the-few-body { grid-template-columns: 1fr; gap: 40px; }
}

.the-few-info {
  padding-top: 8px;
}

.few-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.few-tier-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.few-tier-val {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.few-note {
  margin-top: 28px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

/* FORM */
.the-few-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.form-optional {
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 9px;
}

.form-field input,
.form-field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-field input::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(204,0,0,0.6);
}

.form-field select option {
  background: #111;
  color: #fff;
}

.few-submit {
  margin-top: 8px;
  width: 100%;
  cursor: pointer;
  border: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.form-disclaimer {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin: 0;
}

.form-success {
  display: none;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.3);
  color: rgba(255,255,255,0.8);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 16px;
  text-align: center;
}

.form-success.visible {
  display: block;
}
