/* ====================================================================
   NONNA'S LAUNDRY — SITE STYLES
   mobile-first, editorial, loud, warm, slightly over the edge
   ==================================================================== */

:root {
  --orange:  #E8500A;
  --cobalt:  #1A3FBF;
  --yellow:  #F2C12E;
  --green:   #2D5E3A;
  --red:     #C0292B;
  --cream:   #F5F0E8;
  --white:   #FEFCF8;
  --black:   #0F0F0F;
  --ink:     #1A1A1A;
  --soft:    #fff8ed;
  --amber:   #E89B3A;
  --blush:   #D4877A;
  --gold:    #B8862A;
  --pist:    #94A36C;
  --skin:    #E9C2A6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Page-wide grain — film texture, not noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* type */
.bebas { font-family: 'Bebas Neue', Impact, sans-serif; letter-spacing: 0.02em; }
.serif { font-family: 'DM Serif Display', Georgia, serif; font-style: italic; }

/* highlight colors */
.hi-orange { color: var(--orange); }
.hi-cobalt { color: var(--cobalt); }
.hi-yellow { color: var(--yellow); }
.hi-red    { color: var(--red); }
.hi-green  { color: var(--green); }
.hi-cream  { color: var(--cream); }

/* the signature stripe — orange/cobalt/yellow/green/red */
.stripe {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0px,  var(--orange) 24px,
    var(--cobalt) 24px, var(--cobalt) 48px,
    var(--yellow) 48px, var(--yellow) 72px,
    var(--green)  72px, var(--green)  96px,
    var(--red)    96px, var(--red)   120px
  );
  border-bottom: 2px solid var(--black);
}
@media (min-width: 768px) {
  .stripe {
    height: 14px;
    background: repeating-linear-gradient(
      90deg,
      var(--orange) 0px,  var(--orange) 34px,
      var(--cobalt) 34px, var(--cobalt) 68px,
      var(--yellow) 68px, var(--yellow) 102px,
      var(--green)  102px,var(--green)  136px,
      var(--red)    136px,var(--red)    170px
    );
    border-bottom: 3px solid var(--black);
  }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 2px solid var(--black);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-logo .dot { color: var(--orange); }
.nav-links { display: none; }
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-cart {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: 2px solid var(--black);
  padding: 8px 12px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cart .count {
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.nav-burger {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--black);
  background: var(--white);
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--black);
  position: relative;
}
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--black);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { top:  6px; }

@media (min-width: 900px) {
  .nav-inner { padding: 18px 32px; }
  .nav-logo  { font-size: 28px; }
  .nav-links {
    display: flex; gap: 28px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.12em;
    font-size: 14px;
  }
  .nav-links a { position: relative; padding: 4px 0; }
  .nav-links a:hover { color: var(--orange); }
  .nav-burger { display: none; }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--black);
  color: var(--white);
  z-index: 300;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
  padding: 24px;
  overflow-y: auto;
}
.drawer.open { transform: translateY(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer-close {
  width: 44px; height: 44px;
  border: 2px solid var(--cream); color: var(--cream);
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
}
.drawer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.06em; }
.drawer-logo .dot { color: var(--orange); }
.drawer ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.drawer ul li a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.drawer ul li a:hover { color: var(--orange); }
.drawer-foot {
  margin-top: 32px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.5;
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--black);
  color: var(--cream);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}
.marquee.orange { background: var(--orange); color: var(--white); }
.marquee.yellow { background: var(--yellow); color: var(--black); }
.marquee.cobalt { background: var(--cobalt); color: var(--white); }
.marquee.red    { background: var(--red);    color: var(--white); }
.marquee.cream  { background: var(--cream);  color: var(--black); border-top:2px solid var(--black); border-bottom:2px solid var(--black); }

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee-track > * {
  display: inline-flex;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  padding: 0 28px;
  flex-shrink: 0;
}
.marquee-track > *::after {
  content: "✺";
  margin-left: 28px;
  color: var(--orange);
  opacity: 0.8;
  font-size: 14px;
}
.marquee.orange .marquee-track > *::after,
.marquee.red    .marquee-track > *::after { color: var(--yellow); }
.marquee.yellow .marquee-track > *::after { color: var(--red); }
.marquee.cobalt .marquee-track > *::after { color: var(--yellow); }

.marquee.fast .marquee-track { animation-duration: 22s; }
.marquee.slow .marquee-track { animation-duration: 70s; }
.marquee.reverse .marquee-track { animation-direction: reverse; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .marquee-track > * { font-size: 24px; padding: 0 40px; }
  .marquee-track > *::after { margin-left: 40px; font-size: 18px; }
}

/* ===== IMAGE PLACEHOLDERS — editorial, atmospheric ===== */
/* Each .scene is a "photograph" — gradients + grain + vignette + label.
   Drop a real <img> inside .scene as direct child to replace.        */

.scene {
  position: relative;
  overflow: hidden;
  background: #2a1a0e;
  isolation: isolate;
}
.scene > img,
.scene > picture > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* warm grade overlay */
.scene::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255,210,140,0.42), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(120,40,0,0.55), transparent 60%),
    linear-gradient(180deg, rgba(255,180,80,0.10), rgba(40,15,0,0.35));
  mix-blend-mode: multiply;
}
/* vignette + grain */
.scene::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%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)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100% 100%, 220px 220px;
  background-blend-mode: multiply;
  opacity: 0.9;
}

/* placeholder body — only visible when no img child */
.scene-body {
  position: absolute; inset: 0;
  z-index: 2;
}

/* atmospheric variants — each is a hand-painted CSS still-life */

/* Amalfi balcony, sunlight on white sheets, blue shutters */
.scene.amalfi .scene-body {
  background:
    /* hanging sheets */
    linear-gradient(180deg, rgba(255,250,240,0) 30%, rgba(255,250,240,0.92) 30%, rgba(255,250,240,0.85) 64%, transparent 64%),
    linear-gradient(180deg, rgba(255,250,240,0) 38%, rgba(255,250,240,0.8) 38%, rgba(245,235,210,0.75) 70%, transparent 70%),
    /* clothesline */
    linear-gradient(180deg, transparent 28%, rgba(0,0,0,0.55) 28%, rgba(0,0,0,0.55) 28.4%, transparent 28.4%),
    /* shutter band on left */
    linear-gradient(90deg, var(--cobalt) 0 16%, transparent 16%),
    /* sky */
    radial-gradient(ellipse at 70% 20%, #f7e0a0, #e8b56a 45%, #c8783a 80%);
}
/* amber/old money still life — whiskey, marble, gold hour */
.scene.amber .scene-body {
  background:
    radial-gradient(circle at 35% 65%, rgba(180,80,10,0.85) 0 12%, rgba(120,50,0,0.7) 12% 18%, transparent 20%),
    radial-gradient(ellipse at 28% 90%, rgba(255,255,255,0.4), transparent 25%),
    linear-gradient(180deg, transparent 55%, rgba(245,235,210,0.85) 55%),
    radial-gradient(ellipse at 80% 25%, #f6d08a, transparent 55%),
    linear-gradient(135deg, #8a4a16, #c97a2a 55%, #b06022);
}
/* pistachio velvet bedroom, blush + green */
.scene.pistachio .scene-body {
  background:
    radial-gradient(ellipse at 25% 30%, rgba(255,220,200,0.5), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(60,80,40,0.5), transparent 55%),
    linear-gradient(180deg, transparent 50%, rgba(40,30,30,0.6) 100%),
    linear-gradient(135deg, var(--blush), #8e6a4c 55%, var(--pist));
}
/* marble surface, whites separated */
.scene.marble .scene-body {
  background:
    linear-gradient(180deg, rgba(255,250,245,0.95) 0 55%, transparent 55%),
    radial-gradient(ellipse at 30% 30%, rgba(180,180,180,0.18), transparent 35%),
    radial-gradient(ellipse at 70% 60%, rgba(160,140,120,0.2), transparent 40%),
    linear-gradient(180deg, #e6dac8, #b89e7a);
}
/* deep close-up amber pour */
.scene.pour .scene-body {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,200,90,0.9), rgba(220,130,30,0.6) 18%, transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(40,20,5,0.85), transparent 45%),
    linear-gradient(180deg, #4a2a0a, #8a4818 50%, #2a1405);
}
/* washing machine porthole, soft light */
.scene.porthole .scene-body {
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.85) 0 26%, rgba(60,40,20,0.4) 26% 30%, transparent 31%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(0,0,0,0.4) 35%, transparent 38%),
    radial-gradient(ellipse at 30% 30%, #f5d68a, transparent 55%),
    linear-gradient(135deg, #c9a06a, #8a5c2a);
}
/* face buried in towel, golden hour */
.scene.towel .scene-body {
  background:
    radial-gradient(ellipse at 50% 55%, rgba(255,250,235,0.95) 0 28%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, var(--skin), transparent 30%),
    radial-gradient(ellipse at 30% 20%, #f7d68a, transparent 55%),
    linear-gradient(180deg, #b56a2a, #6e3a14);
}
/* luxury interior — towels on marble */
.scene.interior .scene-body {
  background:
    linear-gradient(180deg, transparent 0 55%, rgba(255,250,240,0.94) 55%, rgba(245,232,210,0.88) 78%, transparent 78%),
    linear-gradient(180deg, transparent 60%, rgba(180,150,110,0.6) 60% 65%, transparent 65%),
    radial-gradient(ellipse at 70% 30%, #f6d68a, transparent 60%),
    linear-gradient(135deg, #a06030, #c98a4a 55%, #6a3818);
}
/* portrait — Nonna character */
.scene.nonna .scene-body {
  background:
    radial-gradient(ellipse at 50% 38%, rgba(232,194,166,0.95) 0 14%, transparent 22%),
    radial-gradient(ellipse at 50% 70%, var(--red) 0 16%, transparent 28%),
    radial-gradient(ellipse at 50% 36%, rgba(40,20,10,0.85) 0 5%, transparent 7%),
    radial-gradient(ellipse at 30% 15%, #f5d2a0, transparent 60%),
    linear-gradient(135deg, #6a3a18, #2a1a08);
}
/* kitchen — espresso + warm tile */
.scene.kitchen .scene-body {
  background:
    radial-gradient(circle at 35% 65%, rgba(40,20,5,0.85) 0 7%, transparent 9%),
    radial-gradient(circle at 35% 62%, rgba(180,100,40,0.9) 0 4%, transparent 6%),
    linear-gradient(180deg, transparent 55%, rgba(255,250,240,0.85) 55%),
    radial-gradient(ellipse at 70% 30%, #f7d990, transparent 55%),
    linear-gradient(135deg, var(--green), #8a5a2a 55%, var(--red));
}
/* tabloid spotted — generic warm scene */
.scene.spotted .scene-body {
  background:
    radial-gradient(ellipse at 40% 40%, rgba(255,250,240,0.7), transparent 50%),
    linear-gradient(135deg, var(--cobalt), var(--orange) 55%, var(--yellow));
}
/* folded linen — pale, warm, tactile */
.scene.linen .scene-body {
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0, transparent 3px,
      rgba(150,120,70,0.045) 3px, rgba(150,120,70,0.045) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0, transparent 6px,
      rgba(150,120,70,0.03) 6px, rgba(150,120,70,0.03) 7px
    ),
    linear-gradient(180deg,
      transparent 36%,
      rgba(90,60,20,0.14) 41%, rgba(90,60,20,0.09) 50%, transparent 56%
    ),
    radial-gradient(ellipse at 80% 10%, rgba(255,230,155,0.75), transparent 55%),
    radial-gradient(ellipse at 20% 85%, rgba(180,140,80,0.35), transparent 45%),
    linear-gradient(155deg, #ede0c4, #ddd0b0 55%, #c8b088);
}

/* label visible only when no img — sits above grade overlays */
.scene-label {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 5;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,250,240,0.7);
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  border: 1px solid rgba(255,250,240,0.18);
  text-transform: uppercase;
  max-width: calc(100% - 24px);
}
.scene > img ~ .scene-label,
.scene > picture ~ .scene-label { display: none; }
@media (min-width: 768px) {
  .scene-label { font-size: 11px; left: 16px; bottom: 16px; padding: 8px 12px; }
}

/* Ken Burns — applied to .scene-body and any inner img */
.kb .scene-body, .kb > img {
  animation: kenburns 120s ease-in-out infinite alternate;
  transform-origin: center 40%;
}
@keyframes kenburns {
  0%   { transform: scale(1.00) translate(0,0); }
  50%  { transform: scale(1.06) translate(-1%,-1%); }
  100% { transform: scale(1.10) translate(1%, 1%); }
}

/* slow drift (smaller) */
.drift .scene-body { animation: drift 30s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: scale(1.02) translate(0,0); }
  to   { transform: scale(1.05) translate(-1.5%, 1%); }
}

/* corner ticker label inside scene */
.scene-meta {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 5;
  display: flex; gap: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,250,240,0.65);
}
.scene-meta span { padding: 4px 8px; border: 1px solid rgba(255,250,240,0.3); }
@media (min-width: 768px) {
  .scene-meta { top: 16px; left: 16px; font-size: 11px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  border: 2px solid var(--black);
  background: var(--cream);
  color: var(--black);
  text-align: center;
  transition: transform .12s, box-shadow .12s, background .12s;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  line-height: 1;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--black); }
.btn:active { transform: translate(0,0); box-shadow: none; }
.btn.orange { background: var(--orange); color: var(--white); }
.btn.cobalt { background: var(--cobalt); color: var(--white); }
.btn.yellow { background: var(--yellow); color: var(--black); }
.btn.red    { background: var(--red);    color: var(--white); }
.btn.green  { background: var(--green);  color: var(--white); }
.btn.black  { background: var(--black);  color: var(--white); }
.btn.white  { background: var(--white);  color: var(--black); }
.btn.big {
  min-height: 60px;
  font-size: 20px;
  padding: 18px 28px;
}
.btn.full { width: 100%; }
@media (min-width: 768px) {
  .btn { font-size: 17px; }
  .btn.big { font-size: 24px; min-height: 68px; padding: 20px 32px; }
}

/* inline quote box */
.iq {
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  padding: 22px 24px;
  background: var(--white);
}
.iq.orange { background: var(--orange); color: var(--white); }
.iq.cobalt { background: var(--cobalt); color: var(--white); }
.iq.yellow { background: var(--yellow); color: var(--black); }
.iq.red    { background: var(--red);    color: var(--white); }
.iq.green  { background: var(--green);  color: var(--white); }
.iq.black  { background: var(--black);  color: var(--white); }
.iq .iq-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.iq .iq-attr {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .iq { padding: 32px 36px; box-shadow: 7px 7px 0 var(--black); }
  .iq .iq-text { font-size: 28px; }
}

/* ===== TYPE BASE ===== */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.on-black .eyebrow, .sec-black .eyebrow, .sec-cobalt .eyebrow { color: var(--yellow); }

.huge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 14vw, 220px);
  line-height: 0.86;
  letter-spacing: 0.005em;
}
.big-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 9vw, 110px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}
.mid-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.serif-lead {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(18px, 4vw, 28px);
  line-height: 1.4;
}
.body { font-size: 15px; line-height: 1.65; color: #2A2A2A; }
.on-black .body, .sec-black .body { color: rgba(254,252,248,0.78); }

/* ===== SECTIONS ===== */
.sec {
  padding: 56px 20px;
  border-bottom: 2px solid var(--black);
  position: relative;
}
@media (min-width: 768px) {
  .sec { padding: 96px 64px; border-bottom: 3px solid var(--black); }
}
@media (min-width: 1200px) {
  .sec { padding: 120px 80px; }
}
.sec-cream  { background: var(--cream); }
.sec-soft   { background: var(--soft);  }
.sec-white  { background: var(--white); }
.sec-black  { background: var(--black); color: var(--white); }
.sec-cobalt { background: var(--cobalt); color: var(--white); }
.sec-orange { background: var(--orange); color: var(--white); }
.sec-red    { background: var(--red);    color: var(--white); }

/* ===== CRAFTSMANSHIP ===== */
.craft-sec { overflow: visible; }

.craft-intro { margin-bottom: 40px; }
.craft-intro-sub {
  margin-top: 18px;
  max-width: 520px;
  color: rgba(0,0,0,0.62);
}

.craft-card {
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  background: var(--soft);
  overflow: hidden;
}

.craft-card-header {
  background: var(--black);
  color: var(--cream);
  padding: 14px 20px 16px;
  border-bottom: 2px solid var(--black);
}
.craft-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  display: block;
  margin-bottom: 4px;
}
.craft-card-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(245,240,232,0.55);
  display: block;
  line-height: 1.5;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .craft-grid { grid-template-columns: repeat(3, 1fr); }
  .craft-spec--wide { grid-column: span 2; }
}

.craft-spec {
  padding: 24px 22px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  border-right: 1px solid rgba(0,0,0,0.12);
  position: relative;
}
@media (min-width: 600px) {
  .craft-spec:nth-child(even) { border-right: none; }
}
@media (min-width: 900px) {
  .craft-spec { padding: 32px 28px 36px; }
  .craft-spec:nth-child(even) { border-right: 1px solid rgba(0,0,0,0.12); }
  .craft-spec:nth-child(3n) { border-right: none; }
}

.craft-spec-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(0,0,0,0.38);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.craft-spec-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 88px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 14px;
}
.craft-spec-value--text {
  font-size: clamp(32px, 6.5vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}
.craft-spec-unit {
  font-size: 0.42em;
  letter-spacing: 0.06em;
  opacity: 0.55;
  margin-left: 1px;
}
.craft-spec-note {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0,0,0,0.6);
  max-width: 360px;
}

.craft-card-closing {
  padding: 24px 22px 26px;
  border-top: 2px solid var(--black);
  background: var(--black);
  color: var(--cream);
}
.craft-card-closing p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(15px, 2.8vw, 20px);
  line-height: 1.5;
  max-width: 760px;
}
.craft-card-closing span {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.38);
}
@media (min-width: 768px) {
  .craft-card-header { padding: 18px 28px 20px; }
  .craft-card-closing { padding: 32px 28px 34px; }
}
@media (min-width: 1200px) {
  .craft-intro { margin-bottom: 56px; }
}

/* sticky note inside craft card */
.craft-sticky {
  margin-top: 18px;
  max-width: 260px;
}

/* ===== MICRO-MOMENTS ===== */

/* scent panel community notes */
.sc-note {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(255,250,240,0.38);
  margin-top: 18px;
  max-width: 340px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* sticky note — yellow, slightly rotated */
.note-sticky {
  display: inline-block;
  background: var(--yellow);
  border: 1.5px solid rgba(0,0,0,0.1);
  padding: 10px 14px 13px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0,0,0,0.72);
  transform: rotate(-2deg);
  box-shadow: 2px 3px 10px rgba(0,0,0,0.1), 0 1px 0 rgba(0,0,0,0.06);
  max-width: 240px;
  margin-top: 20px;
  position: relative;
  align-self: flex-start;
}
.note-sticky::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 10px;
  background: rgba(242,193,46,0.7);
  border: 1px solid rgba(0,0,0,0.08);
}

/* domestic realism inline aside */
.note-domestic {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(0,0,0,0.42);
  margin-top: 14px;
  line-height: 1.45;
}

/* editorial annotation — italic, slightly faded */
.note-editorial {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  display: inline-block;
}

/* hero annotation */
.hero-annotation {
  position: absolute;
  bottom: 72px;
  right: 20px;
  z-index: 8;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(255,250,240,0.42);
  text-align: right;
  line-height: 1.5;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-annotation { right: 40px; bottom: 100px; font-size: 12px; }
}

/* lp-what second caption line */
.lp-what-caption--note {
  font-style: italic;
  opacity: 0.65;
  margin-top: 4px;
}

/* cult statement footnote */
.cult-foot {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(245,240,232,0.35);
  margin-top: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

/* tabloid section note */
.tabloid-note {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(0,0,0,0.38);
  margin-top: 20px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* ===== WHAT IS LAUNDRY PERFUME ===== */
.lp-what {
  background: var(--soft);
  border-bottom: 3px solid var(--black);
  overflow: hidden;
  position: relative;
}

.lp-what-head {
  padding: 56px 24px 40px;
  border-bottom: 2px solid var(--black);
}
.lp-what-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 16vw, 180px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  margin: 14px 0 22px;
}
.lp-what-pull {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(19px, 3.5vw, 28px);
  line-height: 1.4;
  color: rgba(15,15,15,0.65);
  max-width: 560px;
}

.lp-what-body {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 2px solid var(--black);
}
.lp-what-copy {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 2px solid var(--black);
}
.lp-what-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15,15,15,0.78);
  max-width: 540px;
}
.lp-what-copy em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.05em;
  color: var(--black);
}
.lp-what-scene {
  position: relative;
  min-height: 300px;
  border-bottom: none;
}
.lp-what-scene .scene {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.lp-what-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,250,240,0.55);
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  z-index: 6;
}

.lp-what-statement {
  background: var(--black);
  padding: 32px 24px;
  border-bottom: 2px solid var(--black);
}
.lp-what-statement span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 7vw, 80px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--cream);
  display: block;
}
.lp-what-statement span em {
  color: var(--orange);
  font-style: normal;
}

.lp-what-note {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.lp-what-note-text p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.45;
  color: rgba(15,15,15,0.85);
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  max-width: 620px;
}
.lp-what-note-text span {
  display: block;
  margin-top: 12px;
  padding-left: 23px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.38);
}

@media (min-width: 768px) {
  .lp-what-head { padding: 80px 64px 56px; }
  .lp-what-copy { padding: 56px 64px; border-bottom: none; border-right: 2px solid var(--black); }
  .lp-what-body { grid-template-columns: 1fr 1fr; min-height: 500px; }
  .lp-what-scene { min-height: 0; }
  .lp-what-scene .scene { min-height: 0; }
  .lp-what-statement { padding: 40px 64px; }
  .lp-what-note { padding: 56px 64px; flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; }
}
@media (min-width: 1200px) {
  .lp-what-head { padding: 100px 80px 64px; }
  .lp-what-copy { padding: 72px 80px; }
  .lp-what-statement { padding: 48px 80px; }
  .lp-what-note { padding: 72px 80px; }
}

/* ===== THE SOCIETY ===== */
.society-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

/* — stats row — */
.soc-left { display: flex; flex-direction: column; }
.soc-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  border: 1.5px solid rgba(255,250,240,0.22);
  background: rgba(255,250,240,0.06);
}
.soc-stat {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.soc-stat-div {
  width: 1px;
  align-self: stretch;
  background: rgba(255,250,240,0.18);
}
.soc-stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--yellow);
}
.soc-stat-unit {
  font-size: 0.55em;
  letter-spacing: 0.08em;
  opacity: 0.75;
}
.soc-stat-l {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,250,240,0.5);
}

/* — batch allocation bar — */
.soc-batch-status {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1.5px solid rgba(255,250,240,0.22);
  background: rgba(255,250,240,0.06);
}
.soc-batch-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,250,240,0.5);
  margin-bottom: 10px;
}
.soc-batch-pct {
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: 0.04em;
}
.soc-batch-track {
  height: 6px;
  background: rgba(255,250,240,0.12);
  position: relative;
  overflow: visible;
}
.soc-batch-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--yellow);
  opacity: 0.85;
}
.soc-batch-member {
  position: absolute;
  right: 0; top: -3px; bottom: -3px;
  width: 14%;
  border: 1.5px solid rgba(255,250,240,0.6);
  background: rgba(255,250,240,0.12);
}
.soc-batch-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,250,240,0.5);
}
.soc-batch-legend span { display: flex; align-items: center; gap: 6px; }
.soc-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 1px;
  flex-shrink: 0;
}
.soc-dot.yellow { background: var(--yellow); }
.soc-dot.white  { background: rgba(255,250,240,0.5); border: 1px solid rgba(255,250,240,0.4); }

/* — form header — */
.soc-form-header {
  background: var(--black);
  color: var(--cream);
  padding: 16px 20px;
  margin: -28px -22px 20px;
  border-bottom: 2px solid var(--black);
}
.soc-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.14em;
  line-height: 1;
}
.soc-form-meta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 4px;
}
.soc-form-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.soc-form-status .soc-dot.yellow {
  animation: pulse-soc 2s infinite;
  border-radius: 50%;
  width: 7px; height: 7px;
}
@keyframes pulse-soc {
  0%,100% { box-shadow: 0 0 0 0 rgba(242,193,46,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(242,193,46,0); }
}

/* — fineprint under submit — */
.soc-fineprint {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(0,0,0,0.5);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* — allocation confirmed state — */
.alloc-confirmed { padding: 4px 0; }
.alloc-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  background: var(--green);
  color: var(--white);
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.alloc-ref-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(0,0,0,0.2);
  padding-bottom: 14px;
}
.alloc-ref-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.alloc-ref-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--cobalt);
}
.alloc-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0,0,0,0.7);
  border-left: 3px solid var(--amber);
  padding-left: 14px;
  margin-bottom: 20px;
}
.alloc-details {
  border: 1.5px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.025);
}
.alloc-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 12px;
}
.alloc-detail-row:last-child { border-bottom: none; }
.alloc-detail-row span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.alloc-detail-row strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: right;
}

/* ===== LIVE ACTIVITY TOAST ===== */
.live-toast {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 150;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  padding: 12px 14px 12px 12px;
  max-width: calc(100vw - 32px);
  width: 320px;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.5,.1,.2,1), opacity .3s;
}
.live-toast.show { transform: translateY(0); opacity: 1; }
.live-toast .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(45,94,58,0.7);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,94,58,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(45,94,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,94,58,0); }
}
.live-toast .body-txt { font-size: 12px; line-height: 1.35; }
.live-toast .body-txt strong { font-weight: 700; }
.live-toast .meta {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-top: 3px;
}
@media (min-width: 768px) {
  .live-toast { bottom: 24px; left: 24px; width: 360px; padding: 14px 16px 14px 14px; }
  .live-toast .body-txt { font-size: 13px; }
}

/* ===== STICKY MOBILE CTA BAR (product pages) ===== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 2px solid var(--black);
  padding: 10px 14px;
  display: flex; gap: 10px; align-items: center;
  z-index: 140;
}
.sticky-cta .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  line-height: 1;
}
.sticky-cta .btn { flex: 1; min-height: 48px; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ===== FOOTER (chaotic italian newspaper) ===== */
.foot {
  background: var(--cream);
  border-top: 2px solid var(--black);
  padding: 40px 20px 0;
}
.foot-paper {
  border: 2px solid var(--black);
  background: var(--soft);
  padding: 24px;
  position: relative;
}
.foot-masthead {
  border-bottom: 2px solid var(--black);
  padding-bottom: 14px;
  margin-bottom: 18px;
  text-align: center;
}
.foot-masthead .title {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.foot-masthead .sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  margin-top: 6px;
  color: rgba(0,0,0,0.55);
}
.foot-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.foot-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--black);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.foot-col ul { list-style: none; }
.foot-col li { font-size: 13px; line-height: 1.55; padding: 2px 0; }
.foot-col li a { border-bottom: 1px dotted transparent; }
.foot-col li a:hover { border-bottom-color: var(--black); }
.foot-classified {
  margin-top: 28px; padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,0.2);
  text-align: center;
}
.foot-classified-label {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 11px; letter-spacing: 0.12em; color: rgba(0,0,0,0.35);
  display: block; margin-bottom: 8px;
}
.foot-classified ul {
  list-style: none; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 4px 20px;
}
.foot-classified li a {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 12px; color: rgba(0,0,0,0.4);
  text-decoration: none; transition: color 0.2s;
}
.foot-classified li a:hover { color: rgba(0,0,0,0.7); }
.foot-fineprint {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 13px; line-height: 1.5; color: rgba(0,0,0,0.6);
  padding-top: 14px; margin-top: 14px; border-top: 1px dashed rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
  .foot { padding: 64px 64px 0; }
  .foot-paper { padding: 40px 48px; }
  .foot-masthead .title { font-size: 64px; }
  .foot-cols { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* ===== UTIL ===== */
.stack-sm { display: flex; flex-direction: column; gap: 12px; }
.stack-md { display: flex; flex-direction: column; gap: 20px; }
.stack-lg { display: flex; flex-direction: column; gap: 36px; }
.row { display: flex; flex-wrap: wrap; gap: 12px; }
.center { text-align: center; }
.maxw { max-width: 720px; }
.maxw-sm { max-width: 520px; }
.maxw-lg { max-width: 960px; }
.divider {
  height: 2px; background: var(--black); border: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: calc(100vh - 56px);
  min-height: 600px;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}
/* dark gradient at the bottom so text stays readable over any photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.50) 38%,
    rgba(0,0,0,0.12) 62%,
    transparent 100%
  );
}
.hero .scene { position: absolute; inset: 0; }
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 6;
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(255,250,240,0.7);
  margin-bottom: 18px;
  display: flex; gap: 10px; align-items: center;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse-orange 2.2s infinite;
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,80,10,0.7); }
  70%      { box-shadow: 0 0 0 10px rgba(232,80,10,0); }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 16vw, 200px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 8px 40px rgba(0,0,0,0.7);
}
.hero-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(20px, 4.5vw, 32px);
  line-height: 1.3;
  margin-top: 14px;
  color: var(--yellow);
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.hero-corner {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 7;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,250,240,0.75);
  display: flex; flex-direction: column; gap: 4px; align-items: flex-end;
}
.hero-corner span { padding: 4px 8px; border: 1px solid rgba(255,250,240,0.35); }
@media (min-width: 768px) {
  .hero { height: calc(100vh - 64px); min-height: 720px; }
  .hero-content { padding: 48px 64px 56px; }
  .hero-ctas { flex-direction: row; gap: 14px; }
  .hero-eyebrow { font-size: 13px; }
}
@media (min-width: 1200px) {
  .hero-content { padding: 64px 80px 80px; }
}

/* ===== SCENT CARDS / PANELS ===== */
.scent-panel {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-rows: 1fr;
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}
.scent-panel .scene {
  position: absolute; inset: 0;
}
.scent-panel .scent-inner {
  position: relative; z-index: 6;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 32px 20px 32px;
  min-height: 80vh;
  color: var(--white);
}
.scent-panel .scent-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: rgba(255,250,240,0.7);
  margin-bottom: 12px;
}
.scent-panel .scent-name {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(22px, 5vw, 36px);
  color: var(--yellow);
  margin-bottom: 8px;
}
.scent-panel .scent-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 11vw, 110px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  max-width: 880px;
}
.scent-panel .scent-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,250,240,0.7);
}
.scent-panel .scent-meta span { padding: 6px 10px; border: 1px solid rgba(255,250,240,0.3); }
.scent-panel .scent-cta { margin-top: 28px; }

@media (min-width: 900px) {
  .scent-panel { min-height: 92vh; }
  .scent-panel .scent-inner { padding: 64px 80px; min-height: 92vh; }
}

/* ===== COMMENTS WALL ===== */
.comments-wall {
  background: var(--black);
  color: var(--cream);
  padding: 40px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}
.comments-wall .head {
  padding: 0 20px 20px;
  display: flex; align-items: center; gap: 10px;
}
.comments-wall .head .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse-orange 2s infinite;
}
.comments-wall .head .label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 0.28em;
  color: rgba(255,250,240,0.65);
}
.comments-strip {
  display: flex; gap: 12px;
  animation: slide 60s linear infinite;
  width: max-content;
  padding: 0 20px;
}
.comments-strip.slow { animation-duration: 90s; }
.comments-strip.reverse { animation-direction: reverse; }
.comments-strip + .comments-strip { margin-top: 14px; }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.comment {
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  max-width: 320px;
  display: flex; flex-direction: column; gap: 6px;
}
.comment .who {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(255,250,240,0.55);
  text-transform: uppercase;
}
.comment .who .av {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 11px;
  color: var(--cream);
}
.comment .av.o { background: var(--orange); }
.comment .av.c { background: var(--cobalt); }
.comment .av.y { background: var(--yellow); color: var(--black); }
.comment .av.r { background: var(--red); }
.comment .av.g { background: var(--green); }
.comment .text {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 16px; line-height: 1.35;
  color: var(--cream);
}
.comment .stars { color: var(--yellow); letter-spacing: 0.1em; font-size: 13px; }

/* ===== EUROPE MAP ===== */
.map-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: var(--cream);
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  aspect-ratio: 4 / 3;
}
.map-svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--black);
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(232,80,10,0.6);
  animation: pulse-orange 2.5s infinite;
}
.map-pin .label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--cream);
  padding: 8px 12px;
  border: 1px solid var(--black);
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  max-width: 80vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.map-pin .label::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--black);
}
.map-pin .label .city {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 4px;
}
.map-pin:hover .label, .map-pin.active .label { opacity: 1; }
.map-pin.cobalt { background: var(--cobalt); }
.map-pin.yellow { background: var(--yellow); }
.map-pin.red    { background: var(--red); }
.map-pin.green  { background: var(--green); }

/* ===== TABLOID GRID ===== */
.tabloid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .tabloid-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .tabloid-grid { grid-template-columns: repeat(4, 1fr); } }
.tabloid-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  overflow: hidden;
  background: var(--black);
}
.tabloid-card .scene { position: absolute; inset: 0; }
.tabloid-card .cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 6;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--cream);
}
.tabloid-card .cap .stamp {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  background: var(--red);
  color: var(--white);
  padding: 3px 6px;
  margin-bottom: 6px;
  transform: rotate(-3deg);
}
.tabloid-card .cap .txt {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.35;
}

/* ===== SOCIAL CHAOS / SCREENSHOT CARDS ===== */
.chaos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .chaos-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .chaos-grid { grid-template-columns: repeat(3, 1fr); } }
.chaos-card {
  border: 2px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  background: var(--white);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  transform: rotate(var(--rot, 0deg));
  transition: transform .15s;
}
.chaos-card:hover { transform: rotate(var(--rot, 0deg)) translate(-2px,-2px); box-shadow: 7px 7px 0 var(--black); }
.chaos-card.tweet  { background: var(--white); }
.chaos-card.ig     { background: #FFF6E8; }
.chaos-card.tiktok { background: var(--black); color: var(--cream); box-shadow: 5px 5px 0 var(--orange); }
.chaos-card.review { background: var(--soft); }
.chaos-card.text   { background: var(--cobalt); color: var(--cream); box-shadow: 5px 5px 0 var(--yellow); }
.chaos-card .platform {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 0.2em;
  opacity: 0.7;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}
.chaos-card .platform .h { color: inherit; }
.chaos-card .handle {
  display: flex; align-items: center; gap: 8px; font-size: 13px;
}
.chaos-card .handle .av {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
}
.chaos-card .handle .name { font-weight: 700; font-size: 14px; }
.chaos-card .handle .at { opacity: 0.55; font-size: 12px; }
.chaos-card .msg {
  font-size: 16px; line-height: 1.4;
}
.chaos-card .meta {
  display: flex; gap: 16px; font-size: 11px; opacity: 0.6;
  letter-spacing: 0.06em;
}
.chaos-card .stars { color: var(--yellow); }

/* ===== RITUAL STEP PANELS ===== */
.ritual-panel {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}
.ritual-panel .scene { position: relative; aspect-ratio: 4 / 5; }
.ritual-body {
  padding: 32px 24px;
  background: var(--cream);
  position: relative;
}
.ritual-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 28vw, 200px);
  line-height: 0.85;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.ritual-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 10vw, 92px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 8px 0 14px;
}
.ritual-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(18px, 4vw, 26px);
  color: rgba(0,0,0,0.65);
}
@media (min-width: 900px) {
  .ritual-panel { display: grid; grid-template-columns: 1fr 1fr; }
  .ritual-panel .scene { aspect-ratio: auto; min-height: 88vh; }
  .ritual-body { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
  .ritual-panel:nth-child(even) .scene { order: 2; }
}

/* ===== CULT STATEMENT ===== */
.cult-statement {
  background: var(--black);
  color: var(--cream);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid var(--black);
  position: relative;
  overflow: hidden;
}
.cult-statement::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,80,10,0.18), transparent 60%);
}
.cult-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 26vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--orange);
  position: relative;
}
.cult-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 7vw, 76px);
  line-height: 0.95;
  margin-top: 14px;
  position: relative;
  letter-spacing: 0.01em;
}
.cult-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(16px, 3.5vw, 24px);
  margin-top: 28px;
  color: rgba(255,250,240,0.65);
  position: relative;
}

/* ===== SECRET ACCESS FORM ===== */
.form-block {
  border: 2px solid var(--black);
  box-shadow: 7px 7px 0 var(--orange);
  background: var(--soft);
  padding: 28px 22px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
}
.form-row input, .form-row select, .form-row textarea {
  border: 2px solid var(--black);
  background: var(--white);
  padding: 14px 14px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  min-height: 50px;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 3px solid var(--orange);
  outline-offset: 0;
}

/* ===== COMPLAINT OF THE DAY ===== */
.complaint-block {
  background: var(--red);
  color: var(--white);
  padding: 56px 20px;
  border-bottom: 2px solid var(--black);
  position: relative;
  overflow: hidden;
}
.complaint-block::before {
  content: "OGGI";
  position: absolute; right: -30px; top: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px; line-height: 1;
  color: rgba(0,0,0,0.18);
}
.complaint-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  margin-bottom: 14px;
}
.complaint-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 10vw, 92px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  position: relative;
}
.complaint-text .typed-cursor {
  display: inline-block;
  width: 0.45em;
  background: var(--yellow);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { background: transparent; } }
.complaint-foot {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(15px, 3vw, 22px);
  margin-top: 24px;
  color: rgba(255,250,240,0.8);
}

/* ===== EDITORIAL HERO / SUBPAGE HEADER ===== */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 460px;
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}
.page-hero .scene { position: absolute; inset: 0; }
.page-hero .ph-body {
  position: absolute; inset: 0; z-index: 6;
  padding: 32px 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream);
}
.page-hero .ph-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 0.28em;
  color: var(--yellow);
  margin-bottom: 14px;
}
.page-hero .ph-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 14vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.005em;
}
.page-hero .ph-sub {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(18px, 4vw, 28px);
  margin-top: 12px;
  color: rgba(255,250,240,0.85);
  max-width: 720px;
}
@media (min-width: 900px) {
  .page-hero .ph-body { padding: 56px 64px; }
}

/* ===== PRODUCT PAGE ===== */
.pp-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.pp-image { position: relative; aspect-ratio: 4 / 5; border-bottom: 2px solid var(--black); }
.pp-image .scene { position: absolute; inset: 0; }
.pp-info { padding: 32px 20px 96px; background: var(--cream); }
.pp-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 0.28em;
  color: var(--orange);
}
.pp-name {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(28px, 7vw, 56px);
  line-height: 1.05;
  margin: 8px 0 6px;
}
.pp-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 9vw, 64px);
  line-height: 0.95;
  margin-bottom: 14px;
}
.pp-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.pp-price s { opacity: 0.4; margin-right: 8px; }
.pp-notes {
  display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0;
}
.pp-note {
  border: 1.5px solid var(--black);
  padding: 6px 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.2em;
  background: var(--white);
}
.pp-story p { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 18px; line-height: 1.5; margin-bottom: 14px; }

.size-pick { display: flex; gap: 8px; margin: 18px 0; flex-wrap: wrap; }
.size-pick label {
  flex: 1; min-width: 80px;
  border: 2px solid var(--black);
  padding: 14px 10px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: var(--white);
  position: relative;
  min-height: 56px;
  display: flex; flex-direction: column; gap: 4px;
  justify-content: center;
}
.size-pick label .ml { font-size: 18px; }
.size-pick label .pr { font-size: 12px; opacity: 0.6; }
.size-pick input { position: absolute; opacity: 0; }
.size-pick input:checked + .ml { color: var(--orange); }
.size-pick label:has(input:checked) {
  background: var(--orange); color: var(--white);
  box-shadow: 4px 4px 0 var(--black);
  transform: translate(-2px,-2px);
}
.size-pick label:has(input:checked) .pr { opacity: 0.85; }

.pp-warn {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 14px; line-height: 1.5;
  color: var(--red);
  border-top: 1px dashed rgba(0,0,0,0.3);
  padding-top: 14px;
  margin-top: 18px;
}

@media (min-width: 900px) {
  .pp-grid { grid-template-columns: 1.1fr 1fr; }
  .pp-image { aspect-ratio: auto; min-height: 100vh; border-bottom: none; border-right: 3px solid var(--black); }
  .pp-info { padding: 80px 64px; }
}

/* ===== COLLECTION GRID ===== */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 24px 20px;
}
@media (min-width: 700px) { .collection-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 48px; } }
@media (min-width: 1100px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
.col-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  overflow: hidden;
  display: block;
  transition: transform .25s, box-shadow .25s;
}
.col-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--black); }
.col-card .scene { position: absolute; inset: 0; }
.col-card .scene-body { transition: transform 1.2s; }
.col-card:hover .scene-body { transform: scale(1.06); }
.col-card .col-body {
  position: absolute; inset: auto 0 0 0;
  z-index: 6;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--cream);
}
.col-card .col-name { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 22px; color: var(--yellow); }
.col-card .col-tag { font-family: 'Bebas Neue', sans-serif; font-size: 28px; line-height: 1; margin-top: 6px; }
.col-card .col-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.col-card .col-price { color: var(--orange); }

/* warnings (section dividers) */
.warning-strip {
  background: var(--yellow);
  color: var(--black);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 16px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16px, 3.5vw, 22px);
  letter-spacing: 0.12em;
  text-align: center;
  position: relative;
}
.warning-strip::before, .warning-strip::after {
  content: "▲";
  margin: 0 12px;
  color: var(--red);
}

/* ===== EASTER-EGG hidden links ===== */
.secret-link {
  cursor: help;
  position: relative;
}
.secret-link::after {
  content: "↗";
  font-size: 0.65em;
  margin-left: 2px;
  color: var(--orange);
  opacity: 0;
  transition: opacity .2s;
}
.secret-link:hover::after { opacity: 1; }

/* hide scrollbar for marquee containers */
.comments-wall::-webkit-scrollbar { display: none; }

/* ===== SCROLL REVEAL ===== */
/*
  Hidden state is gated behind .js-ready on <html> so that:
  - no-JS: everything visible, no flash
  - reduced-motion: JS skips this block entirely (see site.js)
  - normal: elements start hidden, IntersectionObserver adds .in
*/
.js-ready .sr {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity   0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}
/* punch: slight scale + lift — big numbers, headings, impact blocks */
.js-ready .sr.sr--punch {
  transform: scale(0.96) translateY(14px);
  transition:
    opacity   0.46s cubic-bezier(0.34, 1.5, 0.64, 1),
    transform 0.46s cubic-bezier(0.34, 1.5, 0.64, 1);
}
/* speed modifiers */
.js-ready .sr.sr--fast { transition-duration: 0.28s !important; }
.js-ready .sr.sr--slow { transition-duration: 0.78s; }

/* stagger delays for group reveals */
.js-ready .sr.sr--d1 { transition-delay: 0.07s; }
.js-ready .sr.sr--d2 { transition-delay: 0.14s; }
.js-ready .sr.sr--d3 { transition-delay: 0.21s; }
.js-ready .sr.sr--d4 { transition-delay: 0.29s; }
.js-ready .sr.sr--d5 { transition-delay: 0.37s; }
.js-ready .sr.sr--d6 { transition-delay: 0.46s; }

/* visible state — added by observer */
.js-ready .sr.in {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE CINEMATIC LAYOUT ===== */

/* Scent panels — true full-screen on mobile. On desktop they're already
   near-full-screen (92vh), this just makes mobile feel equivalent. */
@media (max-width: 899px) {
  .scent-panel,
  .scent-panel .scent-inner { min-height: 100svh; }
  /* svh = small viewport height: excludes browser chrome, no address-bar jank */
}

/* Hero uses svh on mobile for the same reason */
@media (max-width: 767px) {
  .hero { height: calc(100svh - 56px); }
}

/* Ritual scenes: taller aspect ratio on mobile for more visual weight */
@media (max-width: 899px) {
  .ritual-panel .scene { aspect-ratio: 9 / 11; }
}

/* Cult statement: full-screen black punch moment on mobile.
   Already centered text — this just gives it breathing room. */
@media (max-width: 767px) {
  .cult-statement {
    min-height: 88svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* lp-what-statement: the "THIS CHANGES HOW YOUR HOUSE FEELS" bar
   should feel more imposing on mobile — close to a full-bleed card */
@media (max-width: 767px) {
  .lp-what-statement {
    padding: 44px 24px;
    display: flex;
    align-items: center;
  }
}

/* Philosophy interstitial hero: 16/11 ratio is too short at mobile widths.
   Override via data attribute to avoid a new HTML class. */
@media (max-width: 767px) {
  [data-screen-label="05 Philosophy"] .scene {
    aspect-ratio: 4 / 5 !important;
  }
  [data-screen-label="05 Philosophy"] {
    height: auto !important;
  }
}

/* Warning strip: slightly taller on mobile for punch */
@media (max-width: 767px) {
  .warning-strip { padding: 20px; }
}

/* Section rhythm: marginally tighter on mobile so pacing is faster
   between sections. The content doesn't change — just the breathing. */
@media (max-width: 767px) {
  .sec { padding: 48px 20px; }
}

/* Craft section: let the spec values breathe on narrow screens */
@media (max-width: 599px) {
  .craft-spec { padding: 20px 18px 24px; }
  .craft-spec-value { font-size: clamp(44px, 18vw, 72px); }
}

/* ===== ANIMATIONS / UTIL ===== */
.float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================================
   NONNA INTERVENTION — popup
   =========================================================== */
.nip-root {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.nip-root.open { display: flex; }
.nip-root.closing { animation: nipFadeOut .35s ease forwards; }

@keyframes nipFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; transform: translateY(8px); }
}

.nip-backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232,155,58,0.35), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(80,30,5,0.55), transparent 60%),
    rgba(10,6,2,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nip-backdrop::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%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)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 240px;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.nip-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  background: var(--cream);
  border: 2px solid var(--black);
  box-shadow: 12px 12px 0 var(--black);
  transform: rotate(-0.5deg);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 900px) {
  .nip-card { grid-template-columns: 1fr 1.05fr; transform: rotate(-0.5deg); box-shadow: 14px 14px 0 var(--black); }
  .nip-root.closing .nip-card { animation: nipCardOut .35s ease forwards; }
}

@keyframes nipCardOut {
  to { transform: rotate(0.5deg) translateY(20px); opacity: 0; }
}

/* paper grain on card */
.nip-card::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

/* ----- LEFT: image ----- */
.nip-image {
  position: relative;
  min-height: 220px;
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}
@media (min-width: 900px) {
  .nip-image { min-height: 100%; border-bottom: none; border-right: 2px solid var(--black); }
}
.nip-image .scene { position: absolute; inset: 0; }
.nip-image .label {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 6;
  display: inline-flex; gap: 6px; align-items: center;
  background: var(--red);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  padding: 5px 9px;
  border: 1.5px solid var(--black);
  transform: rotate(-2deg);
}
.nip-image .label::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  animation: pulse-orange 2s infinite;
}
.nip-image .pull {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 6;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.3;
  color: var(--yellow);
  max-width: 80%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.65);
}

/* ----- RIGHT: body ----- */
.nip-body {
  position: relative;
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 900px) {
  .nip-body { padding: 36px 32px 30px; gap: 14px; }
}

.nip-top {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(0,0,0,0.6);
}
.nip-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}
.nip-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(16px, 3.5vw, 19px);
  line-height: 1.4;
  color: rgba(0,0,0,0.7);
}
.nip-emergency {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  position: relative;
}
.nip-emergency .lbl {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  margin-bottom: 4px;
}
.nip-emergency::before {
  content: "▲";
  position: absolute;
  top: -10px; right: 12px;
  background: var(--yellow);
  color: var(--red);
  font-size: 12px;
  padding: 2px 6px;
  border: 1.5px solid var(--black);
}

.nip-offer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 6vw, 40px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.nip-offer span.b { color: var(--orange); }
.nip-tease {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(0,0,0,0.55);
}

.nip-form {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}
.nip-form input {
  border: 2px solid var(--black);
  background: var(--white);
  padding: 14px 14px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  min-height: 52px;
}
.nip-form input:focus {
  outline: 3px solid var(--orange);
  outline-offset: 0;
}
.nip-cta {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 16px 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 0.12em;
  min-height: 56px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, letter-spacing .15s;
  position: relative;
  overflow: hidden;
}
.nip-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,200,90,0.45), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.nip-cta:hover {
  transform: translate(-2px,-2px) scale(1.02);
  box-shadow: 5px 5px 0 var(--black);
  letter-spacing: 0.16em;
  background: var(--red);
}
.nip-cta:hover::after { opacity: 1; }
.nip-cta:active { transform: translate(0,0); box-shadow: none; }

.nip-fineprint {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(0,0,0,0.5);
  text-align: center;
}

/* rotating chaos line */
.nip-chaos {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--orange);
  border-top: 1px dashed rgba(0,0,0,0.3);
  padding-top: 10px;
  margin-top: 4px;
  text-transform: uppercase;
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nip-chaos::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-orange 2s infinite;
  flex-shrink: 0;
}
.nip-chaos .txt {
  display: inline-block;
  transition: opacity .35s, transform .35s;
}
.nip-chaos.swap .txt {
  opacity: 0;
  transform: translateY(4px);
}

.nip-dismiss {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(0,0,0,0.4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.2);
  z-index: 7;
}
.nip-dismiss:hover { color: var(--red); }

/* ===== STEP 2: success / reveal ===== */
.nip-step1 { display: flex; flex-direction: column; gap: 14px; }
.nip-root[data-step="2"] .nip-step1 { display: none; }
.nip-root[data-step="2"] .nip-step2 { display: flex; }
.nip-step2 { display: none; flex-direction: column; gap: 14px; }
.nip-root[data-step="2"] .nip-image .scene-body,
.nip-root[data-step="2"] .nip-image > .scene > img { animation-duration: 60s; }
.nip-root[data-step="2"] .nip-image::after {
  /* flash overlay */
  content: "";
  position: absolute; inset: 0;
  z-index: 7;
  background: radial-gradient(circle at 30% 30%, rgba(255,210,120,0.65), transparent 65%);
  animation: nipFlash 1.4s ease forwards;
  pointer-events: none;
}
@keyframes nipFlash {
  0%   { opacity: 0; }
  10%  { opacity: 0.95; }
  100% { opacity: 0; }
}

.nip-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}
.nip-h2 .b { color: var(--orange); }

.nip-success-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(16px, 3.5vw, 19px);
  line-height: 1.4;
  color: rgba(0,0,0,0.7);
}

.nip-code {
  position: relative;
  border: 2.5px dashed var(--black);
  background: var(--white);
  padding: 18px 14px 20px;
  text-align: center;
  margin-top: 4px;
  overflow: hidden;
}
.nip-code .lbl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}
.nip-code .code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 5.5vw, 38px);
  letter-spacing: 0.06em;
  line-height: 1;
  user-select: all;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.nip-code .foot {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  margin-top: 8px;
}

.nip-btns {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.nip-btns .btn { flex: 1; min-height: 50px; font-size: 15px; }

/* confetti — Italian chaos */
.nip-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}
.nip-confetti span {
  position: absolute;
  display: block;
  width: 8px; height: 14px;
  background: var(--orange);
  border: 1px solid var(--black);
  top: -20px;
  animation: nipDrop linear forwards;
  opacity: 0;
}
.nip-confetti span:nth-child(5n)  { background: var(--cobalt); }
.nip-confetti span:nth-child(5n+1){ background: var(--yellow); }
.nip-confetti span:nth-child(5n+2){ background: var(--green);  }
.nip-confetti span:nth-child(5n+3){ background: var(--red);    }
.nip-confetti span:nth-child(5n+4){ background: var(--orange); }
.nip-confetti span:nth-child(7n)  { width: 6px; height: 6px; border-radius: 50%; }
.nip-confetti span:nth-child(9n)  { width: 14px; height: 4px; }
.nip-confetti span:nth-child(11n) { width: 10px; height: 18px; }
@keyframes nipDrop {
  0%   { opacity: 0; transform: translateY(-30px) rotate(0); }
  10%  { opacity: 1; }
  100% { opacity: 0.85; transform: translateY(110vh) rotate(720deg); }
}

/* hide the body of the chaos rotator after dismiss animation */
.nip-root.hidden { display: none !important; }

/* ===== NONNA COMMAND CENTER ===== */
.ns { background: var(--cream); position: relative; overflow: hidden; border-bottom: 2px solid var(--black); }
.ni { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 80px 24px 100px; }

/* header */
.sh { text-align: center; margin-bottom: 60px; }
.ey { font-size: 11px; font-weight: 600; letter-spacing: .25em; color: var(--orange); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; text-transform: uppercase; }
.ey::before, .ey::after { content: ''; width: 30px; height: 1px; background: var(--orange); }
.ld { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block; animation: ld-pulse 1.2s ease-in-out infinite; }
@keyframes ld-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }
.mh { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 9vw, 120px); color: var(--black); line-height: .9; letter-spacing: .02em; margin-bottom: 20px; }
.mh span { color: var(--orange); }
.sl { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(16px, 2.5vw, 22px); color: var(--black); opacity: .7; max-width: 560px; margin: 0 auto; }

/* metrics */
.mg { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); border: 3px solid var(--black); margin-bottom: 60px; overflow: hidden; }
.mc { padding: 28px 24px; border-right: 3px solid var(--black); background: var(--cream); position: relative; overflow: hidden; }
.mc:last-child { border-right: none; }
.mc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.mc:hover::after { transform: scaleX(1); }
.ml { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--black); opacity: .5; margin-bottom: 10px; }
.mn { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; margin-bottom: 6px; }
.mn.or { color: var(--orange); }
.mn.co { color: var(--cobalt); }
.mn.re { color: var(--red); }
.mn2 { font-size: 10px; color: var(--black); opacity: .4; font-style: italic; }
@media (max-width: 768px) {
  .mc { border-right: none; border-bottom: 3px solid var(--black); }
  .mc:last-child { border-bottom: none; }
  .mg { grid-template-columns: 1fr 1fr; }
  .mc:nth-child(odd) { border-right: 3px solid var(--black); }
}

/* layout */
.cl { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .cl { grid-template-columns: 400px 1fr; gap: 60px; align-items: start; } }

/* city status panel */
.sb { border: 3px solid var(--black); overflow: hidden; box-shadow: 6px 6px 0 var(--black); margin-bottom: 32px; }
.sbh { background: var(--black); padding: 12px 20px; display: flex; align-items: center; gap: 10px; }
.sbh span { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--cream); letter-spacing: .1em; }
.sr { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1.5px solid var(--black); gap: 12px; }
.sr:last-child { border-bottom: none; }
.sc { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: .05em; color: var(--black); }
.badge { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: 4px 10px; border: 1.5px solid; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.badge.cr { color: var(--red);    border-color: var(--red); }
.badge.wa { color: var(--orange); border-color: var(--orange); }
.badge.in { color: var(--cobalt); border-color: var(--cobalt); }
.badge.st { color: var(--green);  border-color: var(--green); }
.badge .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: ld-pulse 1s infinite; }

/* incident reports */
.iw { border: 3px solid var(--black); overflow: hidden; box-shadow: 6px 6px 0 var(--black); }
.ih { background: var(--orange); padding: 12px 20px; }
.ih span { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--cream); letter-spacing: .1em; }
.ic { padding: 18px 20px; border-bottom: 1.5px solid var(--black); display: none; animation: fi .5s ease; }
.ic.active { display: block; }
.in_ { font-size: 9px; font-weight: 700; letter-spacing: .2em; color: var(--orange); text-transform: uppercase; margin-bottom: 6px; }
.it { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 15px; color: var(--black); line-height: 1.4; }
.ids { display: flex; gap: 6px; padding: 14px 20px; }
.id_ { width: 8px; height: 8px; border-radius: 50%; background: var(--black); opacity: .2; cursor: pointer; transition: opacity .2s; }
.id_.active { opacity: 1; background: var(--orange); }
@keyframes fi { from { opacity: 0; } to { opacity: 1; } }

/* globe */
.gw { display: flex; flex-direction: column; align-items: center; }
.go { position: relative; width: min(520px, 100%); aspect-ratio: 1; margin: 0 auto 32px; }
.go::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 3px solid var(--black); box-shadow: 8px 8px 0 var(--black); pointer-events: none; z-index: 10; }
#gc { width: 100%; height: 100%; border-radius: 50%; display: block; cursor: grab; }
#gc:active { cursor: grabbing; }
.co_ { position: absolute; pointer-events: none; z-index: 8; top: 0; left: 0; width: 100%; height: 100%; }
.cm { position: absolute; transform: translate(-50%, -50%); pointer-events: auto; cursor: pointer; }
.cm .do { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--black); position: relative; z-index: 2; transition: transform .2s; }
.cm:hover .do { transform: scale(1.8); }
.cm .pr { position: absolute; top: 50%; left: 50%; width: 12px; height: 12px; border-radius: 50%; transform: translate(-50%, -50%); animation: pr 2.5s ease-out infinite; z-index: 1; }
@keyframes pr { 0% { transform: translate(-50%, -50%) scale(1); opacity: .7; } 100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0; } }
.cm .ct { position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: var(--cream); border: 2px solid var(--black); box-shadow: 4px 4px 0 var(--black); padding: 10px 14px; min-width: 170px; opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 20; }
.cm:hover .ct { opacity: 1; pointer-events: auto; }
.ct-n { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--black); margin-bottom: 4px; }
.ct-t { font-size: 11px; color: var(--black); opacity: .7; line-height: 1.3; }
.gn { position: absolute; background: var(--cream); border: 2px solid var(--black); box-shadow: 4px 4px 0 var(--black); padding: 10px 14px; max-width: 190px; font-size: 11px; z-index: 15; opacity: 0; transition: opacity .3s; pointer-events: none; white-space: nowrap; }
.gn strong { font-weight: 700; font-size: 12px; display: block; margin-bottom: 2px; }
.gn-t { font-size: 9px; letter-spacing: .1em; color: var(--orange); margin-top: 4px; display: block; text-transform: uppercase; }

/* live feed */
.lf { border: 3px solid var(--black); overflow: hidden; box-shadow: 6px 6px 0 var(--black); width: 100%; }
.lfh { background: var(--cobalt); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; }
.lfh span { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--cream); letter-spacing: .1em; }
.fl { max-height: 220px; overflow-y: auto; scrollbar-width: thin; }
.fi_ { padding: 12px 20px; border-bottom: 1px solid rgba(15,15,15,.1); display: flex; gap: 12px; align-items: flex-start; animation: si .4s ease; }
@keyframes si { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.fd { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.ft { font-size: 12px; color: var(--black); line-height: 1.4; }
.ft strong { font-weight: 700; }
.ft2 { font-size: 9px; letter-spacing: .15em; color: var(--black); opacity: .4; margin-top: 3px; display: block; text-transform: uppercase; }

/* footer disclaimer */
.sf { text-align: center; margin-top: 60px; padding-top: 40px; border-top: 1.5px solid rgba(15,15,15,.15); }
.di { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--black); opacity: .35; }
.di span { color: var(--orange); opacity: 1; }

@media (min-width: 768px) {
  .ns { border-bottom: 3px solid var(--black); }
}
