/* =========================================================
   Darpan Printer — Homepage stylesheet
   ========================================================= */

:root {
  --paper:        #F2EDE5;
  --paper-2:      #ECE5D9;
  --cream:        #E3D8C5;
  --warm-paper:   #EFE8DC;
  --ink:          #1A1714;
  --ink-soft:     #3A322B;
  --ink-mid:      #5C5247;
  --muted:        #8A7F72;
  --rule:         #C9BEAA;
  --rule-soft:    #DCD2C0;
  --vermilion:    #B5141C;
  --maroon:       #6E1418;

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "Geist Mono", ui-monospace, "SF Mono", monospace;

  --ease-out: cubic-bezier(0.22, 0.7, 0.18, 1);
  --ease-soft: cubic-bezier(0.4, 0.0, 0.2, 1);

  --page-pad: clamp(20px, 4vw, 56px);
}

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

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html { overflow-x: clip; }
body { overflow-x: clip; }
html { scroll-behavior: auto; }
body { font-size: 16px; line-height: 1.55; }

::selection { background: var(--vermilion); color: var(--paper); }

button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ----- typography tokens ----- */
.mono {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.red { color: var(--vermilion); }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 56px;
}
.eyebrow .num {
  font-family: var(--mono); font-size: 11px;
  color: var(--vermilion); letter-spacing: 0.18em;
}
.eyebrow .line { flex: 0 0 56px; height: 1px; background: var(--vermilion); }
.eyebrow .label {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-soft); letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ----- lerp scroll wrapper ----- */
.lenis-wrap { position: relative; }
.lenis-content { will-change: transform; }

/* ----- nav ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--page-pad);
  transition: background 400ms var(--ease-soft), backdrop-filter 400ms;
  mix-blend-mode: multiply;
}
.nav.is-scrolled {
  background: rgba(242, 237, 229, 0.78);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  mix-blend-mode: normal;
  border-bottom: 1px solid var(--rule-soft);
}
.nav .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav .brand img { height: 32px; width: auto; }
.nav .brand .name { font-family: var(--serif); font-size: 20px; letter-spacing: -0.005em; white-space: nowrap; }
.nav .brand .name .stop { color: var(--vermilion); }
.nav .links { display: flex; gap: 32px; align-items: center; }
.nav .links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft);
  position: relative; transition: color 200ms;
}
.nav .links a:hover { color: var(--ink); }
.nav .links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--vermilion); transform: scaleX(0);
  transform-origin: left; transition: transform 300ms var(--ease-out);
}
.nav .links a:hover::after { transform: scaleX(1); }
.nav .cta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 10px 16px;
  border: 1px solid var(--ink); color: var(--ink);
  transition: all 250ms var(--ease-out);
}
.nav .cta:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 800px) {
  .nav .links { display: none; }
}

/* =========================================================
   01 — HERO
   ========================================================= */
.hero {
  height: 100vh; min-height: 720px;
  position: relative; overflow: hidden;
  padding: 96px var(--page-pad) 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}

.hero .topline {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--ink-soft); text-transform: uppercase;
}
.hero .topline .r { text-align: right; display: flex; flex-direction: column; gap: 4px; }

.hero .word-wrap {
  flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; position: relative; gap: 24px;
}
.hero .hero-mark {
  height: clamp(120px, 18vh, 200px); width: auto;
  opacity: 0; transform: translateY(20px) scale(0.94);
  transition: opacity 1200ms var(--ease-out), transform 1400ms var(--ease-out);
}
.hero.is-in .hero-mark { opacity: 1; transform: none; transition-delay: 0ms; }
@media (max-width: 720px) {
  .hero .hero-mark { height: 90px; }
  .hero .word-wrap { gap: 16px; }
}
.hero .word {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.88; letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.hero .word .it { font-style: italic; color: var(--ink-soft); }
.hero .word .stop { color: var(--vermilion); }

.hero .word .letter {
  display: inline-block; transform: translateY(110%);
  opacity: 0;
}
.hero.is-in .word .letter {
  animation: heroLetterIn 1200ms var(--ease-out) forwards;
}
.hero .word .letter:nth-child(1) { animation-delay: 100ms; }
.hero .word .letter:nth-child(2) { animation-delay: 160ms; }
.hero .word .letter:nth-child(3) { animation-delay: 220ms; }
.hero .word .letter:nth-child(4) { animation-delay: 280ms; }
.hero .word .letter:nth-child(5) { animation-delay: 340ms; }
.hero .word .letter:nth-child(6) { animation-delay: 400ms; }
.hero .word .letter:nth-child(7) { animation-delay: 460ms; }
.hero .word .letter:nth-child(8) { animation-delay: 520ms; }
.hero .word .letter:nth-child(9) { animation-delay: 580ms; }
.hero .word .letter:nth-child(10) { animation-delay: 640ms; }
.hero .word .letter:nth-child(11) { animation-delay: 700ms; }
.hero .word .letter:nth-child(12) { animation-delay: 760ms; }
.hero .word .letter:nth-child(13) { animation-delay: 820ms; }
.hero .word .letter:nth-child(14) { animation-delay: 880ms; }
.hero .word .letter:nth-child(15) { animation-delay: 940ms; }

@keyframes heroLetterIn {
  to { transform: translateY(0); opacity: 1; }
}

.hero .underline {
  margin: 0 auto; height: 1px; background: var(--vermilion);
  width: 0; transition: width 1000ms 1100ms var(--ease-out);
}
.hero.is-in .underline { width: min(420px, 60%); }

.hero .tagline {
  margin: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em;
  color: var(--ink-soft); text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity 800ms 1400ms, transform 800ms 1400ms var(--ease-out);
}
.hero.is-in .tagline { opacity: 1; transform: none; }

.hero .footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--ink-soft); text-transform: uppercase;
  opacity: 0; transition: opacity 800ms 1700ms;
}
.hero.is-in .footer { opacity: 1; }
.hero .scroll-cue { display: flex; align-items: center; gap: 10px; }
.hero .scroll-cue .bar {
  width: 1px; height: 36px; background: var(--ink-soft); position: relative; overflow: hidden;
}
.hero .scroll-cue .bar::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: var(--vermilion); animation: scrollBar 1800ms var(--ease-out) infinite;
}
@keyframes scrollBar {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* corner registration marks */
.hero .reg {
  position: absolute; width: 16px; height: 16px;
  border: 1px solid var(--rule); pointer-events: none;
}
.hero .reg.tl { top: 80px; left: var(--page-pad); border-right: none; border-bottom: none; }
.hero .reg.tr { top: 80px; right: var(--page-pad); border-left: none; border-bottom: none; }
.hero .reg.bl { bottom: 24px; left: var(--page-pad); border-right: none; border-top: none; }
.hero .reg.br { bottom: 24px; right: var(--page-pad); border-left: none; border-top: none; }

/* ---- hero swinging hangtag ---- */
.hero-tag {
  position: absolute;
  top: 78px;
  right: calc(var(--page-pad) + 80px);
  width: 0;
  height: 0;
  z-index: 4;
}
.hero-tag-card { cursor: grab; pointer-events: auto; }
.hero-tag-card.is-dragging { cursor: grabbing; }
@media (max-width: 1100px) {
  .hero-tag { right: calc(var(--page-pad) + 24px); }
}
@media (max-width: 720px) {
  /* Keep the hangtag visible on phones, but smaller, repositioned, and
     non-interactive — it just bobs gently to add life to the hero. */
  .hero-tag {
    top: 92px;
    right: calc(var(--page-pad) + 4px);
    transform: scale(0.62);
    transform-origin: top right;
    pointer-events: none;
  }
  .hero-tag-card { cursor: default; }
}

/* Mobile continuous-bob (added by JS via .is-mobile-bob).
   Override JS-driven transform with a CSS-only gentle pendulum. */
.hero-tag-pendulum.is-mobile-bob {
  animation: heroTagBob 4200ms ease-in-out infinite !important;
  transform-origin: top center;
}
@keyframes heroTagBob {
  0%   { transform: translateX(-50%) rotate(-4deg); }
  50%  { transform: translateX(-50%) rotate( 4deg); }
  100% { transform: translateX(-50%) rotate(-4deg); }
}

.hero-tag-anchor {
  position: absolute;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0;
  transition: opacity 400ms 200ms;
}
.hero.is-in .hero-tag-anchor { opacity: 0.85; }
.hero-tag-anchor::after {
  content: "";
  position: absolute; inset: -5px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  opacity: .22;
}

.hero-tag-pendulum {
  position: absolute;
  top: 0; left: 0;
  transform-origin: top center;
  transform: translateX(-50%) rotate(-58deg);
  /* hidden until hero is in view */
  opacity: 0;
}
.hero.is-in .hero-tag-pendulum {
  opacity: 1;
  animation: heroTagSwing 2800ms cubic-bezier(.34,.08,.2,1) 500ms both;
}
/* once JS takes over, kill the CSS animation and let JS drive the angle */
.hero-tag-pendulum.is-free {
  animation: none !important;
}
.hero-tag-card.is-free {
  animation: none !important;
}

.hero-tag-string {
  width: 1px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(to bottom,
    rgba(26,23,20,0) 0%,
    rgba(26,23,20,.45) 10%,
    rgba(26,23,20,.85) 100%);
}

.hero-tag-card {
  width: 124px;
  height: 168px;
  margin: -1px auto 0;
  position: relative;
  background: #F8F4EC;
  color: var(--ink);
  padding: 26px 12px 12px;
  box-shadow:
    0 1px 0 rgba(26,23,20,.06) inset,
    0 18px 32px -18px rgba(26,23,20,.45),
    0 6px 14px -10px rgba(26,23,20,.30);
  clip-path: polygon(50% 0%, 100% 16%, 100% 100%, 0% 100%, 0% 16%);
  transform-origin: top center;
  animation: heroTagFlex 2800ms cubic-bezier(.34,.08,.2,1) 500ms both;
}
.hero-tag-card::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(26,23,20,.18);
  clip-path: polygon(50% 0%, 100% 14%, 100% 100%, 0% 100%, 0% 14%);
  pointer-events: none;
}
.hero-tag-hole {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 1px 1.5px rgba(0,0,0,.35);
}
.hero-tag-mono {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-align: center;
  color: var(--muted);
  margin-top: 4px;
}
.hero-tag-serif {
  font-family: var(--serif);
  font-style: normal;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  margin-top: 8px;
}
.hero-tag-serif em { font-style: italic; color: var(--ink-soft); }
.hero-tag-rule {
  width: 22px; height: 1px;
  background: var(--ink);
  opacity: .55;
  margin: 10px auto;
}
.hero-tag-meta {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.2em;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
}
.hero-tag-stamp {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.22em;
  color: var(--vermilion);
  border: 1px solid var(--vermilion);
  padding: 2px 5px;
  opacity: .85;
}

@keyframes heroTagSwing {
  0%   { transform: translateX(-50%) rotate(-58deg); }
  35%  { transform: translateX(-50%) rotate(24deg); }
  55%  { transform: translateX(-50%) rotate(-13deg); }
  72%  { transform: translateX(-50%) rotate(7deg); }
  86%  { transform: translateX(-50%) rotate(-3deg); }
  100% { transform: translateX(-50%) rotate(-2deg); }
}
@keyframes heroTagFlex {
  0%   { transform: rotate(10deg); }
  35%  { transform: rotate(-5deg); }
  55%  { transform: rotate(3deg); }
  72%  { transform: rotate(-1.5deg); }
  100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-in .hero-tag-pendulum,
  .hero-tag-card {
    animation: none !important;
  }
  .hero-tag-pendulum { transform: translateX(-50%) rotate(-2deg); }
}

/* =========================================================
   General sections
   ========================================================= */
section.section {
  padding: clamp(80px, 12vh, 160px) var(--page-pad);
  max-width: 1480px; margin: 0 auto;
  position: relative;
}

.section-head { margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.0; letter-spacing: -0.02em;
  max-width: 18ch; text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--ink-soft); }
.section-head h2 .stop { color: var(--vermilion); }
.section-head .lead {
  max-width: 56ch; margin-top: 24px;
  font-size: 17px; color: var(--ink-soft); line-height: 1.6;
}

/* =========================================================
   02 — CATEGORIES (spotlight)
   ========================================================= */
.categories { background: var(--paper); }
.cat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  min-height: 540px;
}
.cat-tile {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 600ms var(--ease-out),
    filter 600ms var(--ease-out),
    box-shadow 600ms var(--ease-out),
    background 600ms var(--ease-out),
    border-color 400ms var(--ease-out);
}
.cat-tile .num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--ink-soft);
}
.cat-tile .visual {
  position: absolute; inset: 56px 24px 96px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 700ms var(--ease-out);
}
.cat-tile .name {
  position: relative; z-index: 2;
  font-family: var(--serif); font-size: 28px;
  line-height: 1; letter-spacing: -0.01em;
}
.cat-tile .name em { font-style: italic; color: var(--ink-soft); }
.cat-tile .name .stop { color: var(--vermilion); opacity: 0; transition: opacity 400ms; }
.cat-tile .meta {
  position: relative; z-index: 2;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; color: var(--muted);
  margin-top: 6px; text-transform: uppercase;
}
.cat-tile .arrow {
  position: absolute; bottom: 24px; right: 24px; z-index: 2;
  width: 28px; height: 28px; border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(4px);
  transition: opacity 400ms 100ms var(--ease-out), transform 400ms 100ms var(--ease-out), background 200ms, color 200ms;
  color: var(--ink); font-family: var(--mono); font-size: 11px;
}

/* Spotlight states */
.cat-grid.has-active .cat-tile {
  filter: saturate(0.4) brightness(0.97);
  opacity: 0.7;
}
.cat-grid.has-active .cat-tile.is-active {
  filter: none;
  opacity: 1;
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 36px 60px -32px rgba(26, 23, 20, 0.35), 0 8px 18px -8px rgba(26, 23, 20, 0.15);
  background: var(--paper);
  border-color: var(--ink);
  z-index: 3;
}
.cat-grid.has-active .cat-tile.is-active .name .stop { opacity: 1; }
.cat-grid.has-active .cat-tile.is-active .arrow { opacity: 1; transform: none; background: var(--vermilion); color: var(--paper); border-color: var(--vermilion); }
.cat-grid.has-active .cat-tile.is-active .visual { transform: scale(1.08); }

/* ---- Hover submenu (replaces the old unfold animation) ---- */
.cat-submenu {
  position: absolute;
  left: 24px; right: 24px;
  top: 56px;
  display: flex; flex-direction: column;
  gap: 0;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.cat-submenu[hidden] { display: none !important; }
.cat-grid.has-active .cat-tile.is-active .cat-submenu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cat-grid.has-active .cat-tile.is-active .tag-art { opacity: 0.18; }

.cat-submenu-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 200ms, padding 200ms var(--ease-out);
}
.cat-submenu-item:last-child { border-bottom: none; }
.cat-submenu-item:hover {
  color: var(--vermilion);
  padding-left: 6px;
}
.cat-submenu-item .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--vermilion);
  flex-shrink: 0;
}
.cat-submenu-item .lbl { line-height: 1; }

.cat-tile .tag-art {
  transition: opacity 320ms var(--ease-out);
}

@media (max-width: 900px) {
  /* Hide submenus entirely on mobile — they clutter the 2-up carousel. */
  .cat-submenu { display: none !important; }
}

/* Backdrop blur dust (between section and active tile) */
.cat-backdrop {
  position: absolute; inset: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: backdrop-filter 600ms var(--ease-out), background 600ms var(--ease-out);
  background: rgba(242, 237, 229, 0);
  z-index: 1;
}
.cat-grid.has-active .cat-backdrop {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background: rgba(242, 237, 229, 0.45);
}

/* Tag SVG illustration */
.tag-art {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.tag-art svg { width: 100%; height: 100%; max-width: 180px; }

/* MOBILE: snap carousel */
@media (max-width: 900px) {
  .cat-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 calc(var(--page-pad) * -1);
    padding: 0 12px;
    min-height: 0;
    scrollbar-width: none;
  }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat-tile {
    /* Two tiles visible: each ~46vw, accounting for 12px gap + 12px side padding. */
    flex: 0 0 calc(50vw - 18px);
    aspect-ratio: 3/4;
    scroll-snap-align: start;
    transform: scale(0.94);
    opacity: 0.7;
    transition: transform 500ms var(--ease-out), opacity 500ms var(--ease-out), filter 400ms;
    filter: saturate(0.7);
  }
  .cat-tile.is-snap-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
    background: var(--paper);
    border-color: var(--ink);
  }
  .cat-tile.is-snap-active .name .stop { opacity: 1; }
  .cat-tile.is-snap-active .arrow { opacity: 1; transform: none; background: var(--vermilion); color: var(--paper); border-color: var(--vermilion); }
  .cat-grid.has-active .cat-tile { filter: saturate(0.7); opacity: 0.7; transform: scale(0.94); }
  .cat-grid.has-active .cat-tile.is-snap-active { filter: none; opacity: 1; transform: scale(1); }
  .cat-backdrop { display: none; }
}

/* =========================================================
   03 — SHOWCASE (horizontal scroll catalogue)
   ========================================================= */
.showcase { background: var(--paper-2); position: relative; padding: 0; max-width: none; }
.showcase-pin {
  height: 320vh; /* scroll distance */
  position: relative;
}
.showcase-sticky {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
}
.showcase-header {
  padding: 32px var(--page-pad) 16px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.showcase-header h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px); line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.showcase-header h2 em { font-style: italic; color: var(--ink-soft); }
.showcase-header .meta { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.18em; }

.showcase-track-wrap {
  flex: 1; position: relative; overflow: hidden;
}
.showcase-track {
  display: flex; gap: 32px; height: 100%; align-items: center;
  padding: 0 var(--page-pad);
  will-change: transform;
}
.shot {
  flex: 0 0 auto;
  width: 480px; height: 72%;
  background: var(--cream);
  border: 1px solid var(--rule);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
}
.shot.tall { width: 380px; height: 84%; }
.shot.wide { width: 640px; height: 60%; }

.shot .pill {
  align-self: flex-start;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--paper);
  background: var(--ink); padding: 6px 10px;
  border-radius: 999px;
}
.shot .label-block {
  font-family: var(--serif); font-size: 32px; line-height: 1.05;
  letter-spacing: -0.01em;
}
.shot .label-block em { font-style: italic; color: var(--ink-soft); }
.shot .label-block .stop { color: var(--vermilion); }
.shot .spec { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.16em; margin-top: 6px; }

.shot .placeholder-img {
  position: absolute; inset: 64px 24px 100px;
  background:
    repeating-linear-gradient(135deg, var(--rule-soft) 0 1.5px, transparent 1.5px 16px),
    linear-gradient(180deg, var(--paper-2), var(--cream));
  border: 1px solid var(--rule-soft);
}
.shot .placeholder-img.dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1.5px, transparent 1.5px 16px),
    linear-gradient(180deg, var(--ink-soft), var(--ink));
}

.showcase-progress {
  padding: 0 var(--page-pad) 32px;
  display: flex; align-items: center; gap: 16px;
}
.showcase-progress .track {
  flex: 1; height: 1px; background: var(--rule); position: relative;
}
.showcase-progress .track .fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--vermilion); width: 0;
}
.showcase-progress .count {
  font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.16em;
}

@media (max-width: 900px) {
  .showcase-pin { height: auto; }
  .showcase-sticky { position: static; height: auto; }
  .showcase-track-wrap { overflow-x: auto; scrollbar-width: none; }
  .showcase-track-wrap::-webkit-scrollbar { display: none; }
  .showcase-track { transform: none !important; padding: 24px var(--page-pad); }
  .shot { width: 78vw; height: 480px; }
  .shot.tall { width: 78vw; height: 520px; }
  .shot.wide { width: 78vw; height: 440px; }
}

/* =========================================================
   04 — ABOUT
   ========================================================= */
.about { background: var(--paper); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.about-grid .copy h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.02; letter-spacing: -0.02em;
  text-wrap: balance;
}
.about-grid .copy h2 em { font-style: italic; color: var(--ink-soft); }
.about-grid .copy h2 .stop { color: var(--vermilion); }
.about-grid .copy p {
  margin-top: 32px; font-size: 17px; color: var(--ink-soft);
  line-height: 1.7; max-width: 44ch;
}
.about-stat {
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--rule);
  display: flex; align-items: baseline; gap: 48px; flex-wrap: wrap;
}
.about-stat .num {
  font-family: var(--serif); font-size: clamp(48px, 5.5vw, 80px);
  font-style: italic; line-height: 1; letter-spacing: -0.02em;
  flex-shrink: 0;
}
.about-stat .num .stop { color: var(--vermilion); }
.about-stat .label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--ink-soft); text-transform: uppercase;
  max-width: 14ch;
}

.about-image {
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--rule);
}
.about-image .photo {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1.5px, transparent 1.5px 18px),
    linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 100%);
}
.about-image .caption {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  color: rgba(242, 237, 229, 0.7); text-transform: uppercase;
}

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

/* =========================================================
   05 — WHY (5 pillars)
   ========================================================= */
.why { background: var(--paper-2); }
.pillars {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
}
.pillar {
  padding: 40px 24px 56px;
  border-right: 1px solid var(--rule);
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 360px;
  transition: background 300ms;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--paper); }

.pillar .ix {
  font-family: var(--mono); font-size: 10px;
  color: var(--vermilion); letter-spacing: 0.18em;
}
.pillar h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; line-height: 1.05; letter-spacing: -0.005em;
  text-wrap: balance;
}
.pillar h3 em { font-style: italic; color: var(--ink-soft); }
.pillar p {
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
  margin-top: auto;
}
.pillar .spec-line {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.18em; color: var(--muted);
  border-top: 1px solid var(--rule-soft); padding-top: 10px;
  margin-top: 12px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid var(--rule); }
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:nth-last-child(-n+2) { border-bottom: none; }
  .pillar:last-child { grid-column: 1 / -1; border-right: none; }
}
@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { grid-column: auto; border-bottom: none; }
}

/* =========================================================
   06 — MANUFACTURING TIMELINE
   ========================================================= */
.mfg { background: var(--ink); color: var(--paper); max-width: none; }
.mfg .section-head h2 { color: var(--paper); }
.mfg .section-head h2 em { color: rgba(242, 237, 229, 0.55); }
.mfg .section-head .lead { color: rgba(242, 237, 229, 0.7); }
.mfg .eyebrow .label { color: rgba(242, 237, 229, 0.7); }
.mfg .eyebrow .line { background: var(--vermilion); }

.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(242, 237, 229, 0.1);
  border-top: 1px solid rgba(242, 237, 229, 0.15);
  border-bottom: 1px solid rgba(242, 237, 229, 0.15);
}
.step {
  background: var(--ink); padding: 32px 24px 40px;
  position: relative; display: flex; flex-direction: column; gap: 20px;
  min-height: 480px;
}
.step .step-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--vermilion); letter-spacing: 0.18em;
}
.step .step-img {
  height: 200px; position: relative; overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(242, 237, 229, 0.12);
}
.step .step-img::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1.5px, transparent 1.5px 14px);
}
.step .step-img.has-image::before { display: none; }
.step .step-img.has-image .img-label {
  background: rgba(26,23,20,0.6);
  padding: 4px 8px;
  border-radius: 2px;
}
.step .step-img .img-label {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  color: rgba(242, 237, 229, 0.6); text-transform: uppercase;
}
.step h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 30px; line-height: 1; letter-spacing: -0.01em;
}
.step h3 em { font-style: italic; color: rgba(242, 237, 229, 0.55); }
.step p {
  font-size: 14px; color: rgba(242, 237, 229, 0.7); line-height: 1.6;
}
.step .spec {
  margin-top: auto;
  font-family: var(--mono); font-size: 9px; color: var(--vermilion);
  letter-spacing: 0.18em; text-transform: uppercase;
  border-top: 1px solid rgba(242, 237, 229, 0.15);
  padding-top: 12px;
}

@media (max-width: 1000px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .timeline { grid-template-columns: 1fr; }
}

/* =========================================================
   07 — CTA
   ========================================================= */
.cta-band { background: var(--paper); text-align: center; padding: clamp(120px, 18vh, 200px) var(--page-pad); }
.cta-band .pre {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  color: var(--vermilion); text-transform: uppercase; margin-bottom: 32px;
}
.cta-band h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 1; letter-spacing: -0.025em;
  max-width: 14ch; margin: 0 auto;
  text-wrap: balance;
}
.cta-band h2 em { font-style: italic; color: var(--ink-soft); }
.cta-band h2 .stop { color: var(--vermilion); }
.cta-band .sub {
  margin-top: 32px; font-size: 17px; color: var(--ink-soft);
  max-width: 48ch; margin-left: auto; margin-right: auto;
}
.cta-band .actions {
  margin-top: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-band .btn-primary {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--vermilion); color: var(--paper);
  padding: 20px 36px; border: none;
  display: inline-flex; align-items: center; gap: 14px;
  transition: background 250ms var(--ease-out), transform 250ms var(--ease-out);
}
.cta-band .btn-primary:hover { background: var(--maroon); transform: translateY(-2px); }
.cta-band .btn-primary .wa-icon { width: 14px; height: 14px; }
.cta-band .secondary {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft);
  border-bottom: 1px solid var(--rule); padding-bottom: 2px;
  transition: color 250ms, border-color 250ms;
}
.cta-band .secondary:hover { color: var(--ink); border-color: var(--ink); }

/* =========================================================
   08 — FOOTER
   ========================================================= */
.footer-band { background: var(--paper-2); border-top: 1px solid var(--rule); padding: 80px var(--page-pad) 0; }

/* Addresses */
.addresses {
  max-width: 1480px; margin: 0 auto;
  border-top: 1px solid var(--rule);
  padding: 40px 0 8px;
}
.addr-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}
.addr-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--vermilion); text-transform: uppercase;
  margin-bottom: 10px;
}
.addr-body {
  font-family: var(--serif); font-size: 17px;
  line-height: 1.5; color: var(--ink);
  letter-spacing: -0.005em;
}
.addr-body .pin {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase;
}
@media (max-width: 900px) {
  .addr-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1480px; margin: 0 auto;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand .name {
  font-family: var(--serif); font-size: 32px; letter-spacing: -0.01em;
}
.footer-brand .name .stop { color: var(--vermilion); }
.footer-brand .blurb {
  margin-top: 16px; font-size: 14px; color: var(--ink-soft);
  line-height: 1.6; max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--serif); font-size: 18px; color: var(--ink);
  display: inline-block; position: relative; white-space: nowrap;
}
.footer-col a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--vermilion); transform: scaleX(0);
  transform-origin: left; transition: transform 300ms var(--ease-out);
}
.footer-col a:hover::after { transform: scaleX(1); }

.footer-meta {
  max-width: 1480px; margin: 40px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--muted); text-transform: uppercase;
  flex-wrap: wrap;
}

/* The CMYK + vermilion colorbar */
.colorbar {
  display: flex; height: 6px; max-width: 1480px; margin: 0 auto;
}
.colorbar div { flex: 1; }
.colorbar div:nth-child(1) { background: #00B0E0; }   /* C */
.colorbar div:nth-child(2) { background: #E5007E; }   /* M */
.colorbar div:nth-child(3) { background: #FFD600; }   /* Y */
.colorbar div:nth-child(4) { background: #1A1714; }   /* K */
.colorbar div:nth-child(5) { background: var(--vermilion); } /* + */

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-meta { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* =========================================================
   reveals (entry animation)
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1100ms var(--ease-out), transform 1100ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* WhatsApp float button */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(26, 23, 20, 0.4);
  transition: background 300ms var(--ease-out), transform 300ms var(--ease-out);
  text-decoration: none;
  opacity: 0; transform: translateY(20px);
}
.wa-float.in { opacity: 1; transform: none; }
.wa-float:hover { background: var(--vermilion); transform: translateY(-2px); }
.wa-float svg { width: 22px; height: 22px; fill: currentColor; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero .word .letter { opacity: 1; transform: none; }
}
