/* ================================================================
   LUX PRESS GROUP  —  Archival Stationer Edition
   Typography: Fraunces (display, variable italic)
               Instrument Sans (body)
               IBM Plex Mono (micro / meta labels)
   Palette:    warm paper cream + archival crimson + deep sage
   ================================================================ */

:root {
  /* palette */
  --paper:        #FAF6EE;
  --paper-deep:   #F1EBDD;
  --paper-edge:   #E6DDC6;
  --ink:          #1A1513;
  --ink-soft:     #4A423D;
  --ink-muted:    #8A7F72;
  --crimson:      #8B1D2C;
  --crimson-deep: #5C0F1C;
  --sage:         #2F3D2E;
  --rule:         #C9BEA8;

  /* type */
  --serif:   "Fraunces", "Times New Roman", serif;
  --sans:    "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "Courier New", monospace;

  /* geometry */
  --gutter:       clamp(20px, 4vw, 72px);
  --max:          1400px;
  --radius:       2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

::selection { background: var(--crimson); color: var(--paper); }

/* ================================================================
   GRAIN + PAPER TEXTURE
================================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(139, 29, 44, 0.04), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(47, 61, 46, 0.05), transparent 60%);
}

/* ================================================================
   ANNOUNCEMENT STRIP
================================================================ */
.announce {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.announce-track {
  display: flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;
  animation: slide 50s linear infinite;
  padding-left: 48px;
}

.announce-track span { display: inline-block; }

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   MASTHEAD
================================================================ */
.masthead {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.masthead-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* WORDMARK */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: opacity .25s ease;
}

.wordmark:hover { opacity: .75; }

.wordmark-img {
  height: 56px;
  width: auto;
  display: block;
}

.wordmark-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
  padding-top: 6px;
}

.wordmark-tag > span { display: inline-block; }

/* PRIMARY NAV */
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
  transition: color .25s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.primary-nav a:hover { color: var(--crimson); }
.primary-nav a:hover::after { transform: scaleX(1); }

/* TOOLS (search + login) */
.masthead-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.field-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: var(--paper-deep);
  color: var(--ink-muted);
  transition: border-color .25s ease, background .25s ease;
}

.field-search:focus-within {
  border-color: var(--crimson);
  background: var(--paper);
  color: var(--crimson);
}

.field-search svg { flex: none; }

.field-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  width: 160px;
}

.field-search input::placeholder {
  color: var(--ink-muted);
  font-style: italic;
}

.stockist-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background .25s ease, transform .25s ease;
}

.stockist-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 3px rgba(139, 29, 44, 0.2);
}

.stockist-pill:hover {
  background: var(--crimson);
  transform: translateY(-1px);
}

/* ================================================================
   MARQUEE HERO  (widescreen cinematic plate)
================================================================ */
.marquee {
  max-width: var(--max);
  margin: clamp(12px, 1.4vw, 22px) auto 0;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* top ticker — newspaper-style meta bar */
.marquee-ticker {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 10px 16px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.mt-cell { white-space: nowrap; }

.mt-no {
  color: var(--crimson);
  font-weight: 600;
}

.mt-no em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  margin-right: 2px;
  font-weight: 600;
}

.mt-no sup { font-size: 0.7em; vertical-align: super; }

.mt-slug {
  justify-self: center;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.mt-sig {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--crimson);
}

@media (max-width: 900px) {
  .marquee-ticker {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .mt-slug, .mt-sig { display: none; }
}

@media (max-width: 560px) {
  .marquee-ticker {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }
  .mt-edition, .mt-date { font-size: 10px; letter-spacing: .2em; }
}

/* ================================================================
   MARQUEE STAGE (widescreen video)
================================================================ */
.marquee-stage {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  box-shadow:
    0 2px 0 var(--paper-edge),
    0 30px 60px rgba(26, 21, 19, 0.25),
    0 10px 20px rgba(26, 21, 19, 0.1);
  isolation: isolate;
}

.stage-media {
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: clamp(300px, 48vh, 520px);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.stage-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.85) contrast(1.05);
}

.stage-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* darken the left third so the tip-in card reads */
    linear-gradient(
      90deg,
      rgba(26, 21, 19, 0.55) 0%,
      rgba(26, 21, 19, 0.35) 35%,
      transparent 60%
    ),
    /* soft top + bottom fades for cinematic feel */
    linear-gradient(
      180deg,
      rgba(26, 21, 19, 0.25) 0%,
      transparent 25%,
      transparent 70%,
      rgba(26, 21, 19, 0.35) 100%
    ),
    /* warm paper wash everywhere */
    linear-gradient(
      135deg,
      rgba(139, 29, 44, 0.06) 0%,
      transparent 40%,
      rgba(47, 61, 46, 0.08) 100%
    );
}

/* film sprocket holes at top and bottom edges */
.stage-sprockets {
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background-image:
    radial-gradient(circle, rgba(250, 246, 238, 0.85) 3px, transparent 3.6px);
  background-size: 24px 14px;
  background-position: center;
  background-repeat: repeat-x;
  opacity: .14;
  pointer-events: none;
  mix-blend-mode: screen;
}
.stage-sprockets-top { top: 0; }
.stage-sprockets-bot { bottom: 0; }

/* ================================================================
   TIP-IN HEADLINE CARD (paper strip pasted onto film still)
================================================================ */
/* ================================================================
   TIP-IN STAMP  (postage stamp pasted onto the film)
================================================================ */
.tip-in {
  position: absolute;
  left: clamp(20px, 3vw, 54px);
  top: 50%;
  transform: translateY(-50%) rotate(-3.2deg);
  background: var(--paper);
  color: var(--ink);
  padding: clamp(34px, 3.6vw, 52px) clamp(30px, 3vw, 44px) clamp(34px, 3.6vw, 50px);
  max-width: 52%;
  /* triple-frame: outer crimson rule + paper margin + inner dashed
     ink rule — the classic postage-stamp double border */
  outline: 9px solid var(--paper);
  outline-offset: 0;
  border: 1.5px solid var(--crimson);
  box-shadow:
    /* outer thick crimson stamp border */
    0 0 0 11px var(--crimson),
    /* hard-offset paper drop (like it's pressed onto the film) */
    8px 10px 0 rgba(26, 21, 19, 0.18),
    /* deep soft shadow underneath */
    0 24px 44px rgba(26, 21, 19, 0.45),
    0 6px 14px rgba(26, 21, 19, 0.22);
  z-index: 3;
  isolation: isolate;
}

/* inner dashed frame — the classic stamp inner rule */
.tip-in::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--crimson);
  pointer-events: none;
  opacity: .55;
  z-index: 0;
}

/* ============== PERFORATED EDGES ============== */
/* Four absolutely-positioned strips that punch crimson dots
   along each edge — reads as stamp perforation against the
   surrounding crimson border. */
.tip-perforation {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  background-image:
    radial-gradient(circle at center, var(--paper) 4.5px, transparent 5px);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 14px 14px;
}

.tip-perf-top,
.tip-perf-bot {
  left: -2px;
  right: -2px;
  height: 14px;
}
.tip-perf-top { top: -7px; }
.tip-perf-bot { bottom: -7px; }

.tip-perf-left,
.tip-perf-right {
  top: -2px;
  bottom: -2px;
  width: 14px;
  background-repeat: repeat-y;
  background-size: 14px 14px;
}
.tip-perf-left { left: -7px; }
.tip-perf-right { right: -7px; }

/* ============== POSTAGE LABELS ============== */
.tip-postage {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--crimson);
  z-index: 2;
}

.tip-country {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--crimson);
  z-index: 2;
}

/* ============== KICKER (tracked, between rules, like a stamp byline) ============== */
.tip-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  text-align: center;
}

.tip-rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
  opacity: .7;
  max-width: 50px;
}

/* ============== CENTRAL DISPLAY ============== */
.tip-title {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
  text-align: center;
}

.tip-title span { display: block; }
.tip-title em { font-style: italic; color: var(--ink); }
.tip-title span:first-child em { color: var(--crimson); }
.tip-title span:last-child { text-indent: 0; }

.tip-close {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1;
  color: var(--crimson);
  text-align: center;
  letter-spacing: -0.01em;
  margin-top: 6px;
}

.tip-close em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 500;
}

/* ============== DENOMINATION CORNER ============== */
.tip-denom {
  position: absolute;
  top: 28px;
  left: 22px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--crimson);
  color: var(--paper);
  padding: 6px 12px 8px;
  border-radius: 2px;
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  line-height: 1;
  transform: rotate(-3deg);
}

.tip-denom em {
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .04em;
  opacity: .85;
}

.tip-denom em sup { font-size: 0.7em; vertical-align: super; }

.tip-denom strong {
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
}

/* ============== CANCELLATION (wavy lines stamped over) ============== */
.tip-cancel {
  position: absolute;
  top: 18%;
  left: 8%;
  width: 60%;
  height: auto;
  color: var(--ink);
  z-index: 6;
  transform: rotate(-7deg);
  opacity: .35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ============== POSTMARK CIRCLE ============== */
.tip-postmark {
  position: absolute;
  top: -34px;
  right: -28px;
  width: 110px;
  height: 110px;
  color: var(--ink);
  z-index: 7;
  transform: rotate(14deg);
  opacity: .55;
  mix-blend-mode: multiply;
  pointer-events: none;
  filter: drop-shadow(0 1px 0 rgba(26, 21, 19, 0.05));
}

/* ============== RESPONSIVE ============== */
@media (max-width: 780px) {
  /* let the stamp escape the stage so it can flow naturally below */
  .marquee-stage { overflow: visible; }
  .stage-media { overflow: hidden; aspect-ratio: 16 / 10; max-height: 46vh; }

  /* pull the stamp out of its absolute centered position and
     re-flow it below the video, overlapping slightly for editorial feel */
  .tip-in {
    position: relative;
    top: auto;
    left: auto;
    transform: rotate(-2deg);
    max-width: min(460px, 88%);
    margin: -36px auto 16px;
    padding: 30px 26px 34px;
  }

  .tip-title { font-size: clamp(44px, 11vw, 68px); }
  .tip-close { font-size: clamp(22px, 4.5vw, 30px); }

  .tip-postmark { width: 84px; height: 84px; top: -22px; right: -14px; }
  .tip-denom { top: 20px; left: 18px; padding: 4px 10px 6px; }
  .tip-denom strong { font-size: 18px; }
  .tip-cancel { width: 58%; top: 14%; }

  /* shrink the hanging stage stamp so it doesn't crash into the stamp */
  .stage-stamp {
    width: 86px;
    height: 86px;
    right: -6px;
    bottom: -14px;
  }
}

@media (max-width: 560px) {
  .tip-in {
    max-width: 94%;
    padding: 28px 22px 30px;
    margin: -30px auto 12px;
  }
  .tip-postmark { width: 68px; height: 68px; top: -16px; right: -6px; }
  .tip-cancel { width: 70%; }
  .tip-denom { top: 16px; left: 14px; padding: 3px 8px 5px; }
  .tip-denom strong { font-size: 16px; }
  .tip-postage { font-size: 8px; letter-spacing: .26em; }
  .tip-country { font-size: 8px; letter-spacing: .22em; }

  .stage-stamp {
    width: 72px;
    height: 72px;
    right: -2px;
    bottom: -10px;
  }

  .stage-media { aspect-ratio: 16 / 11; max-height: 42vh; }
}

/* ================================================================
   STAGE STAMP (postmark in corner)
================================================================ */
.stage-stamp {
  position: absolute;
  right: clamp(-24px, -1vw, -14px);
  bottom: clamp(-26px, -1.2vw, -18px);
  width: 140px;
  height: 140px;
  z-index: 4;
  display: block;
  text-decoration: none;
  filter: drop-shadow(4px 8px 14px rgba(26, 21, 19, 0.35));
  transform: rotate(-10deg);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.stage-stamp:hover { transform: rotate(0) scale(1.05); }

.stage-stamp-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--crimson);
  animation: stage-spin 34s linear infinite;
}

@keyframes stage-spin { to { transform: rotate(360deg); } }

.stage-stamp:hover .stage-stamp-ring { animation-duration: 14s; }

.stage-stamp-core {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #a8243a 0%, var(--crimson) 50%, var(--crimson-deep) 100%);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  box-shadow:
    inset 0 2px 3px rgba(255, 240, 220, 0.2),
    inset 0 -3px 8px rgba(0,0,0,0.25);
}

.stage-stamp-core .stamp-logo {
  width: 58%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: .95;
  border-radius: 2px;
}

@media (max-width: 700px) {
  .stage-stamp { width: 92px; height: 92px; right: -10px; bottom: -14px; }
  .stage-stamp-core { inset: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .stage-stamp-ring { animation: none; }
}

/* ================================================================
   MARQUEE CAPTION STRIP (scene caption beneath the video)
================================================================ */
.marquee-caption {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 16px 14px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  background: var(--paper);
}

.marquee-caption em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 500;
  text-align: center;
}

.mc-rule {
  height: 1px;
  background: var(--ink);
  opacity: .55;
}

@media (max-width: 700px) {
  .marquee-caption { grid-template-columns: 1fr; gap: 4px; text-align: center; }
  .mc-rule { display: none; }
}

/* ================================================================
   NOW SHOWING (ticket strip)
================================================================ */
.now-showing {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 28px 4px 0;
}

.ns-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.ns-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 4px rgba(139, 29, 44, 0.2);
  animation: ns-pulse 2.4s ease-in-out infinite;
}

@keyframes ns-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(139, 29, 44, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(139, 29, 44, 0.05); }
}

.ns-tickets {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* stamp-like tilts — each ticket lands at a slightly different angle */
.ns-t1 { transform: rotate(-1.5deg); }
.ns-t2 { transform: rotate(0.8deg); }
.ns-t3 { transform: rotate(-0.6deg); }

.ns-tickets .ticket { transition: transform .4s cubic-bezier(.2,.8,.2,1), background .3s ease, box-shadow .3s ease; }
.ns-tickets .ticket:hover { transform: rotate(0) translateY(-3px) scale(1.02); }

@media (max-width: 900px) {
  .now-showing { grid-template-columns: 1fr; gap: 18px; }
  .ns-tickets { gap: 14px; }
}

@media (max-width: 560px) {
  .now-showing { padding: 22px 0 0; }
  .ns-tickets { flex-direction: column; align-items: stretch; gap: 12px; }
  .ns-tickets .ticket { transform: rotate(0) !important; width: 100%; }
  .ns-tickets .ticket-main { max-width: none; }
}

/* ================================================================
   MARQUEE BELOW  (lede + credits)
================================================================ */
.marquee-below {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 40px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.marquee-lede {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.marquee-lede strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--crimson);
}

.marquee-credits {
  list-style: none;
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.marquee-credits li { display: inline-flex; align-items: baseline; gap: 6px; }
.marquee-credits span { color: var(--crimson); font-weight: 600; }

@media (max-width: 780px) {
  .marquee-below { grid-template-columns: 1fr; gap: 20px; }
  .marquee-credits { flex-wrap: wrap; gap: 14px 22px; }
  .tip-in { max-width: 78%; }
}

@media (max-width: 560px) {
  .stage-media { aspect-ratio: 16/10; }
  .tip-in { max-width: 86%; padding: 18px 20px; }
}

/* ================================================================
   EDITION PLATE  (legacy, kept for safety)
================================================================ */
.edition-plate {
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  color: var(--ink);
}

.edition-rule {
  height: 0;
  border-top: 1px solid var(--ink);
  position: relative;
}

.edition-rule::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 4px;
  border-top: 1px solid var(--ink);
  opacity: .5;
}

.edition-block {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
}

.edition-label,
.edition-date { color: var(--ink); }

.edition-no {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--crimson);
}

.edition-no sup { font-size: 0.7em; vertical-align: super; margin-right: 1px; }

.edition-orn {
  color: var(--crimson);
  font-size: 9px;
  letter-spacing: 0;
}

@media (max-width: 700px) {
  .edition-plate { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .edition-rule { display: none; }
  .edition-block { justify-content: center; gap: 10px; }
  .edition-block .edition-label,
  .edition-block .edition-date { font-size: 10px; }
}

/* ================================================================
   COVER FEATURE (redesigned hero)
================================================================ */
.cover {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 48px) var(--gutter) clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

/* --- LEFT: video plate --- */
.cover-plate {
  position: relative;
  background: var(--paper);
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid var(--paper-edge);
  box-shadow:
    0 1px 0 var(--paper-edge),
    0 28px 56px rgba(26, 21, 19, 0.18),
    0 8px 16px rgba(26, 21, 19, 0.08);
  transform: rotate(-0.6deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  isolation: isolate;
}

.cover-plate:hover { transform: rotate(0); }

/* printer's corner ornaments */
.plate-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--crimson);
  opacity: .7;
  z-index: 2;
}
.plate-corner.tl { top: 8px; left: 8px; }
.plate-corner.tr { top: 8px; right: 8px; }
.plate-corner.bl { bottom: 8px; left: 8px; }
.plate-corner.br { bottom: 8px; right: 8px; }

/* the video itself, masked into the plate */
.plate-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  margin: 0;
  box-shadow:
    inset 0 0 0 1px var(--crimson),
    inset 0 0 0 4px var(--paper);
}

.plate-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.88) contrast(1.03);
}

.plate-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, transparent 55%, rgba(26, 21, 19, 0.35) 100%),
    linear-gradient(180deg, rgba(250, 246, 238, 0.06) 0%, transparent 30%, rgba(139, 29, 44, 0.08) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* caption strip beneath the video */
.plate-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(26, 21, 19, 0.75), rgba(26, 21, 19, 0) 100%);
}

.plate-caption-left {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.plate-caption-no {
  color: #F2D6C8;
  font-weight: 600;
}

.plate-caption em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--paper);
  font-weight: 400;
}

/* overlapping rotating postmark */
.plate-stamp {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 124px;
  height: 124px;
  z-index: 3;
  filter: drop-shadow(4px 6px 10px rgba(26, 21, 19, 0.25));
  transform: rotate(-8deg);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.plate-stamp:hover { transform: rotate(0) scale(1.05); }

.plate-stamp-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--crimson);
  animation: plate-spin 36s linear infinite;
}

@keyframes plate-spin { to { transform: rotate(360deg); } }

.plate-stamp-core {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #a8243a 0%, var(--crimson) 50%, var(--crimson-deep) 100%);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  box-shadow:
    inset 0 2px 3px rgba(255, 240, 220, 0.2),
    inset 0 -3px 8px rgba(0,0,0,0.25);
}
.plate-stamp-core em { font-style: italic; font-weight: 700; font-size: 22px; }
.plate-stamp-core strong { font-weight: 400; font-size: 17px; opacity: .85; }

@media (prefers-reduced-motion: reduce) {
  .plate-stamp-ring { animation: none; }
}

/* --- RIGHT: editorial column --- */
.cover-text {
  padding-top: clamp(0px, 1vw, 14px);
}

.cover-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.cover-eyebrow .no { color: var(--crimson); font-weight: 600; }
.cover-eyebrow .no sup { font-size: 0.7em; vertical-align: super; }
.cover-eyebrow .rule { display: inline-block; width: 52px; height: 1px; background: var(--ink-soft); opacity: .5; }

/* three-part title: preamble / display / close */
.cover-title {
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1;
}

.title-preamble {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.title-display {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(68px, 9.5vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}

.title-display em {
  font-style: italic;
  color: var(--crimson);
  display: block;
}

.title-display em + em {
  text-indent: 1.4ch;     /* slight offset for the second line */
  color: var(--ink);
}

.title-close {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  margin-top: 4px;
}

/* lede */
.cover-lede {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.cover-lede strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--crimson);
}

/* actions */
.cover-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
}

/* TICKET CTA */
.ticket {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 230, 0.1),
    0 3px 0 rgba(0, 0, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform .25s ease, box-shadow .25s ease, background .3s ease;
}

.ticket-stub {
  position: relative;
  background: var(--crimson);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
}

.ticket-no sup { font-size: 0.7em; vertical-align: super; margin-right: 1px; }

/* perforated divider between stub & body */
.ticket-perf {
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: -1px;
  width: 2px;
  background-image: radial-gradient(circle, rgba(250, 246, 238, 0.85) 1px, transparent 1.2px);
  background-size: 2px 6px;
  background-repeat: repeat-y;
}

.ticket-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 24px;
  line-height: 1.1;
}

.ticket-kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
  margin-bottom: 4px;
}

.ticket-main {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-size: 22px;
  letter-spacing: -0.005em;
}

.ticket:hover {
  transform: translateY(-2px);
  background: var(--crimson-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 230, 0.14),
    0 6px 0 rgba(92, 15, 28, 0.45),
    0 14px 30px rgba(139, 29, 44, 0.3);
}

.ticket:hover .ticket-stub { background: var(--ink); }

/* reset browser defaults when used on <button> */
button.ticket {
  border: none;
  outline: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

button.ticket:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
}

/* GHOST variant — outlined on paper, for secondary tickets */
.ticket.ghost {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--crimson);
  box-shadow:
    0 3px 0 rgba(139, 29, 44, 0.18),
    0 8px 18px rgba(26, 21, 19, 0.08);
}

.ticket.ghost .ticket-stub {
  background: transparent;
  color: var(--crimson);
  border-right: 1px solid var(--crimson);
}

.ticket.ghost .ticket-perf {
  background-image: radial-gradient(circle, var(--crimson) 1px, transparent 1.2px);
  opacity: .55;
}

.ticket.ghost .ticket-kicker {
  color: var(--ink-muted);
}

.ticket.ghost .ticket-main {
  color: var(--ink);
}

.ticket.ghost:hover {
  background: var(--crimson);
  color: var(--paper);
  border-color: var(--crimson);
  box-shadow:
    0 6px 0 var(--crimson-deep),
    0 14px 30px rgba(139, 29, 44, 0.3);
}

.ticket.ghost:hover .ticket-stub {
  background: var(--paper);
  color: var(--crimson);
  border-right-color: transparent;
}

.ticket.ghost:hover .ticket-kicker { color: rgba(250, 246, 238, 0.72); }
.ticket.ghost:hover .ticket-main { color: var(--paper); }
.ticket.ghost:hover .ticket-perf {
  background-image: radial-gradient(circle, rgba(250, 246, 238, 0.85) 1px, transparent 1.2px);
  opacity: 1;
}

/* compact fits for longer labels */
.ticket .ticket-main {
  max-width: 22ch;
  line-height: 1.1;
}

@media (max-width: 600px) {
  .ticket-body { padding: 10px 18px; }
  .ticket-main { font-size: 18px; }
  .ticket-stub { padding: 10px 14px; font-size: 15px; }
}

/* credits row */
.cover-credits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cover-credits li { display: inline-flex; align-items: baseline; gap: 8px; }
.cover-credits span { color: var(--crimson); font-weight: 600; }

/* ================================================================
   HERO  (legacy — preserved for any lingering references)
================================================================ */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) var(--gutter) clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.eyebrow .no {
  color: var(--crimson);
  font-weight: 600;
}

.eyebrow .no sup {
  font-size: 0.7em;
  vertical-align: super;
}

.eyebrow .rule {
  display: inline-block;
  width: 52px;
  height: 1px;
  background: var(--ink-soft);
  opacity: .5;
}

/* HERO TITLE */
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 8.2vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  margin-bottom: 32px;
}

.hero-title .line {
  display: block;
}

.hero-title em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 400;
}

.hero-title .italic {
  font-style: italic;
  font-variation-settings: "opsz" 144;
}

/* reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise .9s cubic-bezier(.2,.8,.2,1) var(--d, 0s) forwards;
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* LEDE */
.lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  font-variation-settings: "opsz" 14;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 44px;
}

.lede em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 500;
}

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 64px;
}

/* WAX SEAL */
.seal {
  position: relative;
  width: 160px;
  height: 160px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .3s ease;
  filter: drop-shadow(6px 8px 0 rgba(92, 15, 28, 0.15));
}

.seal .seal-ring {
  position: absolute;
  inset: 0;
  color: var(--crimson);
  animation: spinring 28s linear infinite;
}

.seal .seal-ring svg {
  width: 100%; height: 100%;
  font-family: var(--mono);
  font-weight: 600;
}

@keyframes spinring {
  to { transform: rotate(360deg); }
}

.seal .seal-center {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #a8243a 0%, var(--crimson) 45%, var(--crimson-deep) 100%);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow:
    inset 0 2px 4px rgba(255, 240, 220, 0.18),
    inset 0 -4px 10px rgba(0,0,0,0.25);
}

.seal .seal-center em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: .02em;
  opacity: .9;
  margin-bottom: 4px;
}

.seal .seal-center strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.seal:hover {
  transform: rotate(0deg) scale(1.06);
  filter: drop-shadow(8px 12px 0 rgba(92, 15, 28, 0.25));
}

/* TEXT LINK W/ ARROW */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
}

.link-arrow svg {
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}

.link-arrow:hover {
  color: var(--crimson);
  border-color: var(--crimson);
  gap: 20px;
}

.link-arrow:hover svg { transform: translateX(3px); }

/* FOOTNOTE */
.hero-footnote {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.hero-footnote strong {
  color: var(--crimson);
  font-weight: 600;
}

/* HERO STACK (postcards) */
.hero-stack {
  position: relative;
  min-height: 560px;
}

.postcard {
  position: absolute;
  background: var(--paper);
  padding: 14px 14px 44px;
  box-shadow:
    0 1px 0 var(--paper-edge),
    0 14px 28px rgba(26, 21, 19, 0.15),
    0 2px 6px rgba(26, 21, 19, 0.1);
  border: 1px solid var(--paper-edge);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.postcard img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(.92);
}

.postcard figcaption {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.postcard figcaption em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--crimson);
  font-weight: 500;
}

.hero-stack .postcard-1 {
  top: 0; left: 8%;
  width: 52%;
  transform: rotate(-6deg);
  z-index: 3;
}
.hero-stack .postcard-2 {
  top: 22%; right: 6%;
  width: 48%;
  transform: rotate(4deg);
  z-index: 2;
}
.hero-stack .postcard-3 {
  bottom: 2%; left: 22%;
  width: 46%;
  transform: rotate(-2deg);
  z-index: 1;
}

.hero-stack .postcard:hover {
  transform: rotate(0deg) scale(1.03);
  z-index: 4;
}

.hero-stack .stamp-stamp {
  position: absolute;
  right: -20px;
  bottom: 12%;
  width: 110px;
  color: var(--sage);
  opacity: .85;
  z-index: 4;
  transform: rotate(12deg);
}

/* ================================================================
   MOTION STAMP (video treated as a postmark)
================================================================ */
.motion-stamp {
  position: absolute;
  right: -28px;
  bottom: 6%;
  width: 180px;
  height: 180px;
  z-index: 5;
  display: block;
  filter: drop-shadow(4px 8px 14px rgba(26, 21, 19, 0.25));
  transform: rotate(-9deg);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.motion-stamp:hover { transform: rotate(0) scale(1.04); }

/* rotating text ring */
.motion-stamp-ring {
  position: absolute;
  inset: 0;
  color: var(--crimson);
  animation: motion-spin 32s linear infinite;
  pointer-events: none;
}

.motion-stamp-ring svg {
  width: 100%;
  height: 100%;
}

@keyframes motion-spin {
  to { transform: rotate(360deg); }
}

.motion-stamp:hover .motion-stamp-ring {
  animation-duration: 14s;
}

/* circular video well */
.motion-stamp-media {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    inset 0 0 0 2px var(--paper),
    inset 0 0 0 3px var(--crimson),
    inset 0 0 20px rgba(0, 0, 0, 0.45);
}

.motion-stamp-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.85) contrast(1.04);
}

.motion-stamp-media::after {
  /* subtle paper-warmth vignette over the video to keep the
     overall cream palette coherent */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, transparent 55%, rgba(26, 21, 19, 0.5) 100%),
    linear-gradient(180deg, rgba(250, 246, 238, 0.05) 0%, transparent 30%, rgba(139, 29, 44, 0.08) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* tiny letterpress play glyph in the corner — a hint that it's
   video, not a still stamp */
.motion-stamp-play {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px var(--crimson),
    0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity .3s ease;
}

.motion-stamp:hover .motion-stamp-play { opacity: 1; }

@media (max-width: 1100px) {
  .motion-stamp {
    right: -10px;
    bottom: 4%;
    width: 150px;
    height: 150px;
  }
  .motion-stamp-media { inset: 14px; }
}

@media (max-width: 560px) {
  .motion-stamp {
    right: 4%;
    bottom: 2%;
    width: 120px;
    height: 120px;
  }
  .motion-stamp-media { inset: 10px; }
}

/* respect reduced motion — pause the ring */
@media (prefers-reduced-motion: reduce) {
  .motion-stamp-ring { animation: none; }
}

/* ================================================================
   SECTION HEAD SHARED
================================================================ */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.015em;
}

.section-head h2 em {
  font-style: italic;
  color: var(--crimson);
}

/* ================================================================
   WHAT TO EXPECT
================================================================ */
.expect {
  padding: clamp(60px, 9vw, 140px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(var(--paper-deep), var(--paper-deep));
  position: relative;
  z-index: 2;
}

.expect-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  counter-reset: expect;
}

.expect-list li {
  position: relative;
  padding: 8px 32px 8px 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 100ms);
}

.expect-list li:nth-child(1) { --i: 0; }
.expect-list li:nth-child(2) { --i: 1; }
.expect-list li:nth-child(3) { --i: 2; }
.expect-list li:nth-child(4) { --i: 3; }

.expect-list.in li,
.expect-list li.in { opacity: 1; transform: none; }

.expect-list li + li {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}

.expect-list .roman {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: 32px;
  color: var(--crimson);
  margin-bottom: 18px;
}

.expect-list .roman-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
  display: block;
}

.expect-list h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}

.expect-list p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 28ch;
}

/* reveal */
.section-head,
.collection,
.catalogue,
.pullquote,
.postcard-cta,
.stockist-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}

.section-head.in,
.collection.in,
.catalogue.in,
.pullquote.in,
.postcard-cta.in,
.stockist-cta.in { opacity: 1; transform: none; }

.expect-list li.in { opacity: 1; transform: none; }

/* ================================================================
   COLLECTIONS
================================================================ */
.collection {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 160px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.collection.alt-right .collection-media { order: 0; }
.collection.alt-right .collection-text  { order: 1; }


.collection-media {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.collection-text { min-width: 0; }

.postcard-feature {
  background: var(--paper);
  padding: 18px 18px 22px;
  border: 1px solid var(--paper-edge);
  box-shadow:
    0 18px 40px rgba(26, 21, 19, 0.18),
    0 4px 10px rgba(26, 21, 19, 0.08);
  transform: rotate(-1.5deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  max-width: 520px;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.collection.alt-right .postcard-feature {
  transform: rotate(1.5deg);
}

.postcard-feature:hover,
.collection.alt-right .postcard-feature:hover {
  transform: rotate(0) translateY(-6px);
}

.postcard-feature img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.94);
}

/* Section IV — crop the RetailDisplays photo so the top portion
   (fixture + cards) fills the frame and the bottom is trimmed off */
#specials .postcard-feature img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.postcard-feature figcaption {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

/* price stamp */
.stamp-price {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: rotate(12deg);
  box-shadow: 0 8px 18px rgba(47, 61, 46, 0.3);
  z-index: 2;
  padding: 6px;
  text-align: center;
}

.stamp-price em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: .85;
}

.stamp-price strong {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  font-variation-settings: "opsz" 144;
  margin-bottom: 4px;
}

.stamp-price small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .8;
}

.collection.alt-right .stamp-price {
  right: auto;
  left: -10px;
  transform: rotate(-12deg);
}

/* collection text */
.collection-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}

.collection-text h2 em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 500;
}

.collection-text .lead-line {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: 22px;
  color: var(--crimson);
  margin-bottom: 16px;
  line-height: 1.2;
}

.collection-text .lead-line strong {
  font-weight: 600;
  font-style: italic;
}

.collection-text .body {
  font-family: var(--serif);
  font-size: 19px;
  font-variation-settings: "opsz" 14;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}

/* spec list */
.spec {
  list-style: none;
  margin-bottom: 36px;
  border-top: 1px solid var(--rule);
  max-width: 500px;
}

.spec li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  align-items: baseline;
}

.spec li span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.spec li em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-variation-settings: "opsz" 14;
  color: var(--ink);
  font-weight: 400;
}

/* ORNAMENT */
.ornament {
  max-width: 920px;
  margin: clamp(40px, 5vw, 72px) auto;
  padding: 0 var(--gutter);
  color: var(--crimson);
  opacity: .55;
  position: relative;
  z-index: 1;
}

.ornament svg { width: 100%; height: 24px; display: block; }

/* ================================================================
   MOTION PLATE (framed video interstitial)
================================================================ */
.motion-plate {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}

/* when the motion plate is the first element below the masthead */
.motion-plate.top {
  max-width: var(--max);
  padding: clamp(16px, 2vw, 28px) var(--gutter) clamp(20px, 2.5vw, 32px);
}

.motion-plate.top .motion-frame { transform: rotate(0); }
.motion-plate.top .motion-media { aspect-ratio: 32/9; }

@media (max-width: 900px) {
  .motion-plate.top .motion-media { aspect-ratio: 21/9; }
}
@media (max-width: 600px) {
  .motion-plate.top .motion-media { aspect-ratio: 16/10; }
}

.motion-plate.in { opacity: 1; transform: none; }

.motion-frame {
  position: relative;
  background: var(--paper);
  padding: clamp(14px, 1.4vw, 20px);
  border: 1px solid var(--paper-edge);
  box-shadow:
    0 1px 0 var(--paper-edge),
    0 24px 50px rgba(26, 21, 19, 0.2),
    0 4px 12px rgba(26, 21, 19, 0.08);
  transform: rotate(-0.8deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.motion-frame:hover { transform: rotate(0); }

.motion-media {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--ink);
}

.motion-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.88) contrast(1.02);
}

/* subtle paper-cream vignette keeps the video feeling archival
   and prevents pure-black edges against the cream page. */
.motion-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      transparent 55%,
      rgba(26, 21, 19, 0.35) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(250, 246, 238, 0.08) 0%,
      transparent 30%,
      transparent 70%,
      rgba(26, 21, 19, 0.15) 100%
    );
  mix-blend-mode: multiply;
}

.motion-frame figcaption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.motion-no {
  color: var(--crimson);
  font-weight: 600;
  font-size: 12px;
}

.motion-no sup { font-size: 0.7em; vertical-align: super; }

.motion-caption {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  text-align: center;
}

.motion-caption em {
  color: var(--crimson);
  font-weight: 500;
}

.motion-meta {
  color: var(--ink-muted);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .motion-media { aspect-ratio: 16/10; }
  .motion-frame figcaption {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6px;
  }
  .motion-meta { text-align: center; }
}

/* ================================================================
   CATALOGUE
================================================================ */
.catalogue {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.catalogue-cover {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  justify-self: end;
  padding: 0;
  /* slight tilt on the whole composition */
  transform: rotate(-1.5deg);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.catalogue-cover:hover {
  transform: rotate(0) translateY(-8px);
}

.catalogue-cover img {
  transition: filter .5s ease;
}

.catalogue-cover:hover img {
  filter:
    drop-shadow(0 4px 4px rgba(26, 21, 19, 0.22))
    drop-shadow(0 22px 36px rgba(26, 21, 19, 0.3));
}

/* drop-shadow follows the alpha channel of the PNG, so the shadow
   traces the actual fanned-page silhouette instead of the rectangular
   bounding box. Stack two shadows for depth. */
.catalogue-cover img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 2px 2px rgba(26, 21, 19, 0.18))
    drop-shadow(0 14px 22px rgba(26, 21, 19, 0.22));
}

/* pieces of washi tape — positioned over actual paper (not on
   the transparent bounding area) of Group16.png */
.tape {
  position: absolute;
  width: 74px;
  height: 20px;
  background: rgba(139, 29, 44, 0.20);
  border-left: 1px dashed rgba(139, 29, 44, 0.35);
  border-right: 1px dashed rgba(139, 29, 44, 0.35);
  mix-blend-mode: multiply;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(26, 21, 19, 0.12);
}

/* sits over the top-left of the "HOLIDAY 2026" front cover */
.tape-a {
  top: -6px;
  left: 12%;
  transform: rotate(-14deg);
}

/* sits over the top-right fanned pages */
.tape-b {
  top: -8px;
  right: 16%;
  transform: rotate(10deg);
  background: rgba(47, 61, 46, 0.20);
  border-color: rgba(47, 61, 46, 0.35);
}

.catalogue-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

.catalogue-text h2 em {
  font-style: italic;
  color: var(--crimson);
}

.catalogue-text .body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 36px;
}

.catalogue-ctas {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

/* LETTERPRESS BUTTON */
.btn-letterpress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;

  padding: 18px 30px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;

  position: relative;
  transition: background .3s ease, color .3s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 230, 0.08),
    0 2px 0 rgba(0,0,0,0.25);
}

.btn-letterpress:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 230, 0.12),
    0 6px 16px rgba(139, 29, 44, 0.3);
}

.btn-letterpress.primary {
  background: var(--crimson);
  border-color: var(--crimson);
}

.btn-letterpress.primary:hover {
  background: var(--crimson-deep);
  border-color: var(--crimson-deep);
}

.btn-letterpress.outline {
  background: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
  box-shadow: none;
}

.btn-letterpress.outline:hover {
  background: var(--crimson);
  color: var(--paper);
  border-color: var(--crimson);
}

/* dual CTA row under the catalog section */
.catalog-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  max-width: 680px;
}

.catalog-dual .ticket {
  width: 100%;
}

.catalog-dual .ticket-main {
  font-size: 17px;
  max-width: none;
}

.catalog-dual .ticket-body { padding: 10px 18px; }

@media (max-width: 720px) {
  .catalog-dual { grid-template-columns: 1fr; }
}

.postcard-right .ticket {
  align-self: flex-start;
  margin-top: 4px;
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-editorial {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}

.about-editorial.in { opacity: 1; transform: none; }

.about-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-editorial .eyebrow {
  justify-content: center;
}

.about-editorial h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.about-editorial h2 em {
  font-style: italic;
  color: var(--crimson);
}

.about-body {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-variation-settings: "opsz" 14;
  line-height: 1.6;
  color: var(--ink-soft);
}

.about-body em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 500;
}

/* ================================================================
   PULLQUOTE
================================================================ */
.pullquote {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) var(--gutter);
  text-align: center;
  color: var(--ink);
}

.pullquote .quotemark {
  width: 48px; height: 48px;
  color: var(--crimson);
  margin: 0 auto 6px;
  display: block;
}

.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
}

.pullquote figcaption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pullquote figcaption em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  color: var(--crimson);
  margin: 0 4px;
}

/* ================================================================
   FIELD NOTE  (in-situ retail photograph + pullquote)
================================================================ */
.field-note {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 160px) var(--gutter);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}

.field-note.in { opacity: 1; transform: none; }

.field-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

/* ============== POLAROID PHOTO ============== */
.field-photo {
  position: relative;
  background: var(--paper);
  padding: 14px 14px 16px;
  border: 1px solid var(--paper-edge);
  box-shadow:
    0 2px 0 var(--paper-edge),
    10px 10px 0 rgba(26, 21, 19, 0.1),
    0 26px 50px rgba(26, 21, 19, 0.22),
    0 6px 14px rgba(26, 21, 19, 0.1);
  transform: rotate(-2.2deg);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
  max-width: 460px;
  width: 100%;
  justify-self: center;
}

.field-photo:hover {
  transform: rotate(0) translateY(-6px);
}

/* washi tape pieces at the corners — pinned to a pinboard feel */
.field-tape {
  position: absolute;
  width: 78px;
  height: 20px;
  background: rgba(139, 29, 44, 0.18);
  border-left: 1px dashed rgba(139, 29, 44, 0.35);
  border-right: 1px dashed rgba(139, 29, 44, 0.35);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(26, 21, 19, 0.1);
}

.field-tape-a {
  top: -10px;
  left: 8%;
  transform: rotate(-14deg);
}

.field-tape-b {
  top: -10px;
  right: 6%;
  transform: rotate(12deg);
  background: rgba(47, 61, 46, 0.18);
  border-color: rgba(47, 61, 46, 0.35);
}

.field-photo-frame {
  background: var(--ink);
  overflow: hidden;
}

.field-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.92) contrast(1.02);
}

.field-photo figcaption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field-fig {
  color: var(--crimson);
  font-weight: 600;
  font-size: 11px;
}

.field-photo figcaption em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  text-align: center;
}

.field-meta {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .field-photo figcaption {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4px;
  }
  .field-meta { text-align: center; }
}

/* ============== TEXT COLUMN ============== */
.field-text {
  padding-top: 8px;
}

.field-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.field-text .eyebrow .no { color: var(--crimson); font-weight: 600; }
.field-text .eyebrow .no sup { font-size: 0.7em; vertical-align: super; }
.field-text .eyebrow .rule { display: inline-block; width: 52px; height: 1px; background: var(--ink-soft); opacity: .5; }

.field-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.field-text h2 em {
  font-style: italic;
  color: var(--crimson);
}

/* big italic pullquote with oversized quotemark */
.field-quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 28px;
  padding: 24px 0 24px 40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.field-quote::before {
  content: "\201C";
  position: absolute;
  left: -6px;
  top: -6px;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 700;
  font-size: 82px;
  line-height: 1;
  color: var(--crimson);
  opacity: .85;
}

.field-quote::after {
  content: "\201D";
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 700;
  font-size: 82px;
  line-height: 0;
  color: var(--crimson);
  opacity: .85;
  vertical-align: -0.35em;
  margin-left: 6px;
}

.field-body {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 32px;
}

.field-body strong {
  color: var(--crimson);
  font-weight: 600;
  font-style: italic;
}

/* stats row — three pull-stats, ruled */
.field-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.field-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--rule);
  padding-left: 16px;
}

.field-stats li:first-child { border-left: none; padding-left: 0; }

.field-stats em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--crimson);
  line-height: 1;
}

.field-stats span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .field-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .field-photo { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .field-stats { grid-template-columns: 1fr; gap: 16px; }
  .field-stats li { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 16px; }
  .field-stats li:first-child { border-top: none; padding-top: 0; }
  .field-quote { font-size: 20px; padding-left: 30px; }
  .field-quote::before { font-size: 60px; left: -4px; }
  .field-quote::after { font-size: 40px; vertical-align: -0.15em; margin-left: 4px; }
}

/* ================================================================
   POSTCARD NEWSLETTER
================================================================ */
.postcard-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
}

.postcard-paper {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 2px;
  padding: clamp(30px, 4vw, 56px);
  box-shadow:
    0 1px 0 var(--paper-edge),
    0 24px 50px rgba(26, 21, 19, 0.18),
    0 4px 12px rgba(26, 21, 19, 0.08);
  background-image:
    repeating-linear-gradient(
      transparent,
      transparent 8px,
      rgba(26, 21, 19, 0.025) 8px,
      rgba(26, 21, 19, 0.025) 9px
    );
}

.postcard-head {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--ink);
}

.postcard-label {
  color: var(--crimson);
  font-weight: 600;
  font-size: 13px;
}

.postcard-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.postcard-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.postcard-left h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.postcard-left h2 em {
  font-style: italic;
  color: var(--crimson);
  display: block;
  margin-bottom: 6px;
}

.postcard-left p {
  font-family: var(--serif);
  font-size: 16px;
  font-variation-settings: "opsz" 14;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}

.postcard-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Thank-you panel that replaces the form on successful subscribe */
.postcard-thanks {
  justify-content: center;
  align-items: flex-start;
  padding: 8px 4px;
  gap: 10px;
}
.postcard-thanks .thanks-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.postcard-thanks .thanks-headline {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.postcard-thanks .thanks-headline em {
  font-style: italic;
  font-weight: 500;
}
.postcard-thanks .thanks-body {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 36ch;
  margin: 4px 0 0;
}
.postcard-thanks .thanks-sign {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted);
  margin: 10px 0 0;
}

.addr-line {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px dashed var(--ink-muted);
  padding: 10px 0;
}

.addr-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.addr-line input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  font-size: 18px;
  color: var(--ink);
  padding: 4px 0;
  width: 100%;
}

.addr-line input::placeholder {
  color: var(--ink-muted);
  opacity: .8;
}

.addr-line:focus-within { border-bottom-color: var(--crimson); }

.postcard-right .btn-letterpress {
  align-self: flex-start;
  margin-top: 8px;
}

/* stamp & postmark */
.stamp-mail {
  position: absolute;
  top: -16px;
  right: -12px;
  width: 90px;
  color: var(--crimson);
  transform: rotate(6deg);
  background: var(--paper);
  padding: 4px;
}

.postmark {
  position: absolute;
  bottom: -14px;
  left: 44%;
  width: 110px;
  color: var(--ink-soft);
  opacity: .55;
  transform: rotate(-8deg);
  pointer-events: none;
}

/* ================================================================
   STOCKIST CTA (quiet closing)
================================================================ */
.stockist-cta {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(100px, 14vw, 200px);
  text-align: center;
  position: relative;
}

.stockist-cta::before,
.stockist-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 48px;
  background: var(--crimson);
  transform: translateX(-50%);
}
.stockist-cta::before { top: 10px; }
.stockist-cta::after  { bottom: 10px; }

.stockist-mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 24px;
}

.stockist-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.stockist-cta h2 em {
  font-style: italic;
  color: var(--crimson);
}

.stockist-body {
  font-family: var(--serif);
  font-size: 19px;
  font-variation-settings: "opsz" 14;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 40px;
}

.stockist-actions {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ================================================================
   COLOPHON (FOOTER)
================================================================ */
.colophon {
  background: var(--ink);
  color: var(--paper);
  border-top: 6px double var(--crimson);
  position: relative;
  z-index: 2;
}

.colophon-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.1fr 2fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

/* wraps the image + WHOLESALE tag so the container shrinks to the
   image's natural width — lets the tag span exactly the logo width */
.colophon-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  margin-bottom: 20px;
}

.colophon-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 8px;
  /* Knock the logo out to the paper color for the dark footer;
     assumes a mono/dark source logo. Swap for a white-variant
     asset if the original is colour. */
  filter: brightness(0) invert(1);
  opacity: .92;
}

.colophon-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--crimson);
  padding-top: 6px;
}

.colophon-tag > span { display: inline-block; }

.colophon-sig {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--paper);
}

.colophon-addr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.55);
  line-height: 1.8;
}

/* columns */
.colophon-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.colophon-cols h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.2);
  font-weight: 600;
}

.colophon-cols a {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-variation-settings: "opsz" 14;
  font-weight: 400;
  color: var(--paper);
  text-decoration: none;
  padding: 6px 0;
  opacity: .82;
  transition: color .25s ease, opacity .25s ease, transform .3s ease;
}

.colophon-cols a:hover {
  color: var(--crimson);
  opacity: 1;
  transform: translateX(4px);
}

.colophon-note {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.65);
}

.colophon-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  border-top: 1px solid rgba(250, 246, 238, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.55);
  flex-wrap: wrap;
}

.colophon-bottom em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--paper);
}

.tiny-ornament {
  color: var(--crimson);
  letter-spacing: .4em;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .masthead-inner {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }
  .primary-nav { gap: 22px; font-size: 11px; }
  .field-search input { width: 110px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-bottom: 100px;
  }
  .hero-stack { min-height: 480px; }

  .cover {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cover-plate { max-width: 560px; margin: 0 auto; }
  .plate-stamp { width: 104px; height: 104px; right: -14px; bottom: -14px; }

  .catalogue { grid-template-columns: 1fr; }
  .catalogue-cover { justify-self: center; }

  .expect-list { grid-template-columns: repeat(2, 1fr); }
  .expect-list li + li { border-left: none; padding-left: 0; }
  .expect-list li:nth-child(3),
  .expect-list li:nth-child(4) {
    border-top: 1px solid var(--rule);
    padding-top: 36px;
    margin-top: 24px;
  }
  .expect-list li:nth-child(2) {
    border-left: 1px solid var(--rule);
    padding-left: 32px;
  }
  .expect-list li:nth-child(4) {
    border-left: 1px solid var(--rule);
    padding-left: 32px;
  }

  .colophon-inner { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 780px) {
  .masthead-inner {
    gap: 16px;
    flex-wrap: wrap;
  }
  .field-search { display: none; }

  .wordmark-img { height: 44px; }
  .wordmark-tag { font-size: 11px; padding-top: 4px; }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: 28px; }

  .cover-actions { flex-direction: column; align-items: flex-start; gap: 22px; }
  .cover-credits { gap: 14px 22px; }
  .plate-media { aspect-ratio: 5 / 4; }

  .postcard-body { grid-template-columns: 1fr; }
  .stamp-mail { right: -6px; width: 70px; }
  .postmark { bottom: -8px; left: auto; right: 8%; width: 90px; }

  .colophon-cols { grid-template-columns: 1fr; gap: 30px; }

  /* COLLECTIONS — keep 2-col layout but shrink the text to fit
     narrower columns. The `minmax(0, 1fr)` on .collection prevents
     overflow; we just tighten spacing here. */
  .collection {
    gap: 32px;
    padding: 60px var(--gutter);
  }
  .collection .collection-text h2 { font-size: clamp(32px, 6.5vw, 52px); }
  .collection .collection-text .body { font-size: 15px; }
  .collection .collection-text .lead-line { font-size: 17px; }
}

@media (max-width: 560px) {
  .collection { gap: 20px; padding: 40px 16px; }
  .collection .collection-text h2 { font-size: clamp(28px, 7vw, 44px); }
  .collection .collection-text .body { font-size: 14px; }
  .collection .stamp-price { width: 80px; height: 80px; top: -4px; right: -4px; }
  .collection.alt-right .stamp-price { left: -4px; right: auto; }
  .collection .stamp-price strong { font-size: 18px; }
  .collection .stamp-price em { font-size: 8px; }
  .collection .stamp-price small { font-size: 7px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .expect-list { grid-template-columns: 1fr; }
  .expect-list li:nth-child(n) {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding: 28px 0 0;
  }
  .expect-list li:first-child { border-top: none; padding-top: 0; }

  .stockist-actions { flex-direction: column; gap: 24px; }
  .hero-stack .postcard-3 { display: none; }
  .hero-stack .stamp-stamp { width: 80px; right: -4px; bottom: 4%; }

  .colophon-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ================================================================
   REDUCED MOTION
================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .section-head, .collection, .catalogue,
  .pullquote, .postcard-cta, .stockist-cta, .expect-list li {
    opacity: 1 !important;
    transform: none !important;
  }
}
