/* ============================================================
   MARCHSTEAD — Design System
   Language: 70s Analog Warm
   Palette:   cream / terracotta / mustard / olive / deep-brown
   Type:      Recoleta (display) · Schibsted Grotesk (body) ·
              Major Mono Display (mono accents) · Caveat (sig)
   ============================================================ */


/* ---- 1. RESET + TOKENS ------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

:root {
  /* Off-white & off-black only — 70s warm rule. No #fff, no #000. */
  --paper:        #EDE3D2;   /* primary background, warm cream */
  --paper-2:      #E4D7BD;   /* secondary surface, slightly deeper */
  --paper-3:      #F3ECDB;   /* lifted surface (cards) */
  --ink:          #332821;   /* primary text, deep warm brown */
  --ink-soft:     #6A5847;   /* secondary text */
  --ink-faint:    #A09280;   /* muted captions */

  --terracotta:   #C9603D;   /* primary accent */
  --mustard:      #D4A24C;   /* secondary accent */
  --olive:        #7A7B3A;   /* tertiary accent */
  --deep-brown:   #4A3528;   /* dark accent */
  --rust:         #A0411E;   /* deep terracotta for hover lifts */
  --tape-cream:   #E8DCC2;   /* cassette plastic */

  --r-1:           4px;
  --r-2:           8px;
  --r-3:          14px;
  --r-pill:      999px;

  --shadow-card:    6px 6px 0 var(--terracotta);
  --shadow-card-h:  10px 10px 0 var(--rust);
  --shadow-cta:     5px 5px 0 var(--deep-brown);
  --shadow-cta-h:   8px 8px 0 var(--deep-brown);

  --container:    1200px;
  --gap:           32px;

  --ease:         cubic-bezier(.2, .9, .25, 1);
}


/* ---- 2. BASE TYPOGRAPHY ------------------------------------ */

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Recoleta", "Recoleta Local", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--terracotta); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--rust); }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--mustard); color: var(--deep-brown); }


/* ---- 3. PAPER GRAIN OVERLAY -------------------------------- */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.16  0 0 0 0 0.13  0 0 0 0.14 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}


/* ---- 4. CONTAINERS + REVEAL -------------------------------- */

.section__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ---- 5. NAV ------------------------------------------------ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1.5px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: rgba(51, 40, 33, 0.12);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(6px);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Recoleta", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav__brand:hover { color: var(--terracotta); }

.nav__mark {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.nav__word { line-height: 1; }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transition: right .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.nav__cta:hover {
  background: var(--terracotta);
  color: var(--paper);
  transform: translateY(-1px);
}
.nav__cta-price {
  font-family: "Major Mono Display", monospace;
  font-size: 12px;
  opacity: .75;
  letter-spacing: .05em;
}

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}


/* ---- 6. EYEBROW + STICKER + BUTTONS ------------------------ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Major Mono Display", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--deep-brown);
  background: var(--mustard);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rust);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: .25; }
}

.sticker {
  position: absolute;
  top: -14px;
  right: 22px;
  z-index: 3;
  transform: rotate(4deg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--mustard);
  color: var(--deep-brown);
  font-family: "Major Mono Display", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  border: 1.5px solid var(--deep-brown);
  border-radius: var(--r-1);
  box-shadow: 3px 3px 0 var(--deep-brown);
}
.sticker__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .005em;
  border: 1.5px solid var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--paper);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  background: var(--rust);
  color: var(--paper);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-cta-h);
}
.btn--primary:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--deep-brown);
}

.btn--ghost {
  background: var(--paper);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--paper-2);
  color: var(--ink);
  transform: translate(-2px, -2px);
}

.btn__price {
  font-family: "Major Mono Display", monospace;
  font-size: 13px;
  opacity: .85;
  padding-left: 8px;
  border-left: 1px solid currentColor;
  letter-spacing: .04em;
}


/* ---- 7. HERO ----------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.hero::before {
  /* soft radial glow in the corner — warm sun bleed */
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in oklab, var(--mustard) 35%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy { max-width: 580px; }

.hero__title {
  margin: 22px 0 24px;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero__title-mark {
  font-style: italic;
  color: var(--terracotta);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.hero__underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: auto;
  color: var(--mustard);
}

.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__chips li {
  font-family: "Major Mono Display", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-soft);
  padding: 6px 12px;
  background: var(--paper-3);
  border: 1px solid color-mix(in oklab, var(--ink) 15%, transparent);
  border-radius: var(--r-pill);
}

.hero__visual {
  position: relative;
  isolation: isolate;
}

.hero__photo {
  position: relative;
  transform: rotate(1.4deg);
}
.hero__photo img {
  width: 100%;
  border-radius: var(--r-2);
  border: 1.5px solid var(--deep-brown);
  box-shadow: 10px 10px 0 var(--mustard);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero__caption {
  font-family: "Caveat", cursive;
  font-size: 20px;
  color: var(--deep-brown);
  margin-top: 14px;
  text-align: right;
  padding-right: 4px;
  transform: rotate(-1deg);
}

/* CASSETTE WIDGET — animated, lives below+left of the hero photo */
.cassette {
  position: absolute;
  bottom: -36px;
  left: -28px;
  width: 240px;
  z-index: 2;
  transform: rotate(-6deg);
  filter: drop-shadow(6px 6px 0 var(--deep-brown));
}

.cassette__shell {
  background: var(--tape-cream);
  border: 2px solid var(--deep-brown);
  border-radius: 10px 10px 14px 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cassette__label {
  background: var(--paper);
  border: 1.5px solid var(--deep-brown);
  border-radius: 4px;
  padding: 8px 10px;
  position: relative;
}
.cassette__label-row {
  display: block;
  font-family: "Major Mono Display", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--deep-brown);
  line-height: 1.3;
}
.cassette__label-row--small {
  font-size: 9px;
  opacity: .7;
  margin-top: 2px;
}

.cassette__bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 14px;
  margin-top: 6px;
}
.cassette__bars span {
  display: block;
  width: 4px;
  background: var(--terracotta);
  border-radius: 1px;
  animation: vu 1.2s ease-in-out infinite;
}
.cassette__bars span:nth-child(1) { animation-delay: .0s; height: 70%; }
.cassette__bars span:nth-child(2) { animation-delay: .1s; height: 50%; background: var(--mustard); }
.cassette__bars span:nth-child(3) { animation-delay: .2s; height: 90%; }
.cassette__bars span:nth-child(4) { animation-delay: .3s; height: 40%; background: var(--olive); }
.cassette__bars span:nth-child(5) { animation-delay: .4s; height: 80%; }
.cassette__bars span:nth-child(6) { animation-delay: .5s; height: 60%; background: var(--mustard); }
.cassette__bars span:nth-child(7) { animation-delay: .6s; height: 75%; }
.cassette__bars span:nth-child(8) { animation-delay: .7s; height: 45%; background: var(--olive); }

@keyframes vu {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

.cassette__reels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  position: relative;
}
.cassette__reel {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep-brown);
  border: 2px solid var(--deep-brown);
  position: relative;
  display: grid;
  place-items: center;
  animation: spin 4s linear infinite;
}
.cassette__reel--right { animation-duration: 3.6s; }
.cassette__reel span {
  position: absolute;
  width: 2px;
  height: 16px;
  background: var(--tape-cream);
  border-radius: 1px;
}
.cassette__reel span:nth-child(1) { transform: rotate(0deg); }
.cassette__reel span:nth-child(2) { transform: rotate(60deg); }
.cassette__reel span:nth-child(3) { transform: rotate(120deg); }
.cassette__reel::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tape-cream);
  border: 1px solid var(--deep-brown);
  z-index: 1;
}

.cassette__tape {
  flex: 1;
  height: 2px;
  background: var(--deep-brown);
  margin: 0 6px;
  position: relative;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ---- 8. MARQUEE -------------------------------------------- */

.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1.5px solid var(--deep-brown);
  border-bottom: 1.5px solid var(--deep-brown);
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 36s linear infinite;
  padding-left: 48px;
}
.marquee__item {
  font-family: "Recoleta", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}
.marquee__item--terracotta { color: var(--terracotta); }
.marquee__item--mustard    { color: var(--mustard); }
.marquee__item--olive      { color: #B0B265; }
.marquee__item--brown      { color: var(--tape-cream); }

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

@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .cassette__bars span,
  .cassette__reel,
  .eyebrow__dot { animation: none; }
}


/* ---- 9. SECTION HEAD --------------------------------------- */

.section__head {
  margin: clamp(64px, 9vw, 110px) 0 clamp(32px, 5vw, 56px);
  max-width: 720px;
}
.section__head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.section__num {
  font-family: "Major Mono Display", monospace;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--terracotta);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.section__title--italic {
  font-style: italic;
  color: var(--ink);
}

.section__lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
  max-width: 36ch;
  margin-top: 16px;
}


/* ---- 10. CATALOGUE GRID ------------------------------------ */

.catalogue {
  position: relative;
}

.catalogue__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 28px;
}

.card {
  background: var(--paper-3);
  border: 1.5px solid var(--deep-brown);
  border-radius: var(--r-3);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-card-h);
}

/* Staircase + slight rotation for asymmetric feel */
.card:nth-child(2) { transform: translateY(18px) rotate(-0.6deg); }
.card:nth-child(3) { transform: translateY(0)    rotate(0.4deg); }
.card:nth-child(4) { transform: translateY(34px) rotate(-0.3deg); }
.card:nth-child(5) { transform: translateY(0)    rotate(0.7deg); }
.card:nth-child(6) { transform: translateY(22px) rotate(-0.4deg); }

.card:nth-child(2):hover { transform: translate(-3px, calc(18px - 3px)) rotate(-0.6deg); }
.card:nth-child(3):hover { transform: translate(-3px, -3px)             rotate(0.4deg); }
.card:nth-child(4):hover { transform: translate(-3px, calc(34px - 3px)) rotate(-0.3deg); }
.card:nth-child(5):hover { transform: translate(-3px, -3px)             rotate(0.7deg); }
.card:nth-child(6):hover { transform: translate(-3px, calc(22px - 3px)) rotate(-0.4deg); }

.card--bundle {
  grid-row: span 2;
  background: var(--mustard);
  color: var(--deep-brown);
  box-shadow: 8px 8px 0 var(--deep-brown);
}
.card--bundle:hover {
  box-shadow: 12px 12px 0 var(--deep-brown);
  transform: translate(-3px, -3px);
}
.card--bundle .card__title,
.card--bundle .card__copy,
.card--bundle .card__eyebrow,
.card--bundle .card__price,
.card--bundle .card__strike { color: var(--deep-brown); }
.card--bundle .card__art {
  background: var(--paper);
}

.card__art {
  margin: -24px -24px 0;
  border-radius: var(--r-3) var(--r-3) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-bottom: 1.5px solid var(--deep-brown);
}
.card__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card__art img { transform: scale(1.04); }

.card__art--bundle {
  aspect-ratio: 1 / 1;
}

.card__eyebrow {
  font-family: "Major Mono Display", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.card__title {
  font-family: "Recoleta", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.card--bundle .card__title { font-size: 28px; }

.card__copy {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card__foot {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed color-mix(in oklab, var(--ink) 22%, transparent);
}

.card__price {
  font-family: "Recoleta", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--terracotta);
  font-feature-settings: "tnum";
}
.card--bundle .card__price { color: var(--rust); font-size: 32px; }

.card__strike {
  font-family: "Major Mono Display", monospace;
  font-size: 13px;
  color: var(--ink-faint);
  text-decoration: line-through;
}


/* ---- 11. DIVIDER (wavy hand-drawn) ------------------------- */

.divider {
  margin: clamp(64px, 9vw, 110px) 0 0;
  color: var(--olive);
  opacity: .55;
}
.divider svg {
  width: 100%;
  height: 28px;
  display: block;
}
.divider--footer { margin: clamp(48px, 6vw, 80px) 0 0; color: var(--terracotta); opacity: .35; }


/* ---- 12. STUDIO / ABOUT ------------------------------------ */

.studio {
  padding: clamp(48px, 7vw, 96px) 0;
}
.studio__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.studio__copy { max-width: 540px; }
.studio__copy p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 18px;
}
.studio__copy .section__title { margin-top: 12px; }

.studio__sign {
  font-family: "Caveat", cursive !important;
  font-size: 26px !important;
  color: var(--terracotta) !important;
  margin-top: 26px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.studio__sign-mark {
  font-family: "Recoleta", serif;
  font-style: italic;
  font-size: 22px;
}

.studio__photo {
  position: relative;
  transform: rotate(-1.6deg);
}
.studio__photo img {
  width: 100%;
  border-radius: var(--r-2);
  border: 1.5px solid var(--deep-brown);
  box-shadow: -10px 10px 0 var(--olive);
  aspect-ratio: 5 / 6;
  object-fit: cover;
}
.studio__photo figcaption {
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: var(--deep-brown);
  margin-top: 14px;
  transform: rotate(1deg);
  padding-left: 10px;
}


/* ---- 13. POLAROID REVIEWS ---------------------------------- */

.words { padding: clamp(48px, 7vw, 96px) 0; }

.words__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
}

.polaroid {
  background: var(--paper-3);
  border: 1.5px solid var(--deep-brown);
  border-radius: var(--r-2);
  padding: 32px 26px 22px;
  position: relative;
  box-shadow: 5px 5px 0 var(--mustard);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.polaroid--r1 { transform: rotate(-1.8deg); }
.polaroid--r2 { transform: rotate(1.2deg);  }
.polaroid--r3 { transform: rotate(-0.6deg); }
.polaroid--r1:hover { transform: rotate(-1.8deg) translate(-3px, -3px); box-shadow: 8px 8px 0 var(--terracotta); }
.polaroid--r2:hover { transform: rotate(1.2deg)  translate(-3px, -3px); box-shadow: 8px 8px 0 var(--terracotta); }
.polaroid--r3:hover { transform: rotate(-0.6deg) translate(-3px, -3px); box-shadow: 8px 8px 0 var(--terracotta); }

/* "Tape" strip on top of each Polaroid */
.polaroid__tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 88px;
  height: 22px;
  background: color-mix(in oklab, var(--mustard) 70%, var(--paper));
  border: 1px solid color-mix(in oklab, var(--deep-brown) 40%, transparent);
  opacity: .85;
  border-radius: 2px;
  box-shadow: 1px 1px 0 color-mix(in oklab, var(--deep-brown) 25%, transparent);
}
.polaroid:nth-child(2n) .polaroid__tape { transform: translateX(-50%) rotate(3deg); background: color-mix(in oklab, var(--terracotta) 50%, var(--paper)); }
.polaroid:nth-child(3n) .polaroid__tape { transform: translateX(-50%) rotate(-4deg); background: color-mix(in oklab, var(--olive) 55%, var(--paper)); }

.polaroid__quote {
  font-family: "Recoleta", serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.polaroid__by {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px dashed color-mix(in oklab, var(--ink) 22%, transparent);
  padding-top: 14px;
}
.polaroid__by strong {
  font-family: "Recoleta", serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.polaroid__by span {
  font-family: "Major Mono Display", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}


/* ---- 14. FAQ ----------------------------------------------- */

.answers { padding: clamp(48px, 7vw, 96px) 0; }

.faq {
  max-width: 820px;
  border-top: 1.5px solid color-mix(in oklab, var(--ink) 18%, transparent);
}

.faq__item {
  border-bottom: 1.5px solid color-mix(in oklab, var(--ink) 18%, transparent);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "Recoleta", serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item:hover summary { color: var(--terracotta); }

.faq__plus {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--deep-brown);
  font-family: "Major Mono Display", monospace;
  font-size: 18px;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] .faq__plus {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: var(--paper);
}

.faq__body {
  padding: 0 0 24px;
  max-width: 64ch;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 16px;
}


/* ---- 15. FOOTER -------------------------------------------- */

.foot {
  background: var(--deep-brown);
  color: var(--tape-cream);
  padding: clamp(48px, 7vw, 88px) 0 28px;
  margin-top: 32px;
}

.foot__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.foot__brand .nav__brand,
.foot__brand .nav__mark { color: var(--paper); }
.foot__brand .nav__brand:hover { color: var(--mustard); }
.foot__brand .nav__word { color: var(--paper); }

.foot__tag {
  font-family: "Recoleta", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--mustard);
  margin-top: 18px;
  max-width: 22ch;
}
.foot__sig {
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: var(--tape-cream);
  margin-top: 14px;
  opacity: .85;
}

.foot__col h4 {
  font-family: "Major Mono Display", monospace;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--mustard);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.foot__col p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--tape-cream);
  opacity: .85;
}
.foot__col a {
  color: var(--tape-cream);
  border-bottom: 1px solid color-mix(in oklab, var(--mustard) 50%, transparent);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.foot__col a:hover {
  color: var(--mustard);
  border-color: var(--mustard);
}

.foot__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.foot__links a { border-bottom: 0; }
.foot__links a:hover { color: var(--mustard); text-decoration: underline; text-underline-offset: 3px; }

.foot__small {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 22px clamp(20px, 5vw, 56px) 0;
  border-top: 1px solid color-mix(in oklab, var(--mustard) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "Major Mono Display", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: color-mix(in oklab, var(--tape-cream) 70%, transparent);
}
.foot__stamp {
  padding: 4px 10px;
  border: 1px solid color-mix(in oklab, var(--mustard) 35%, transparent);
  border-radius: var(--r-pill);
}


/* ---- 16. RESPONSIVE ---------------------------------------- */

@media (max-width: 1024px) {
  .catalogue__grid {
    grid-template-columns: 1fr 1fr;
  }
  .card--bundle { grid-row: span 1; grid-column: span 2; }
  .card--bundle .card__art--bundle { aspect-ratio: 16 / 7; }
  .card:nth-child(n) { transform: none; }
  .card:nth-child(n):hover { transform: translate(-3px, -3px); }

  .studio__inner { grid-template-columns: 1fr; }
  .studio__photo { max-width: 520px; margin: 0 auto; }

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

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero__visual { order: 2; }
  .cassette { width: 180px; left: -8px; bottom: -24px; }

  .marquee__item { font-size: 18px; }
  .marquee__track { gap: 32px; padding-left: 32px; animation-duration: 28s; }

  .catalogue__grid { grid-template-columns: 1fr; gap: 22px; }
  .card--bundle { grid-column: span 1; }
  .card--bundle .card__art--bundle { aspect-ratio: 4 / 3; }

  .section__head--row { flex-direction: column; align-items: flex-start; }

  .words__grid { grid-template-columns: 1fr; gap: 48px; }
  .polaroid--r1, .polaroid--r2, .polaroid--r3 { transform: rotate(-1deg); }

  .foot__inner { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: span 2; }
  .foot__small { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 414px) {
  .hero__title { font-size: 42px; }
  .section__title { font-size: 32px; }
  .foot__inner { grid-template-columns: 1fr; }
  .foot__brand { grid-column: span 1; }
}


/* ---- 17. ACCESSIBILITY + MOBILE NAV OPEN STATE ------------- */

:where(button, a):focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
  border-radius: 4px;
}

body.is-nav-open .nav__links {
  display: flex;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--paper);
  flex-direction: column;
  padding: 32px clamp(20px, 5vw, 56px);
  gap: 24px;
  z-index: 40;
}
body.is-nav-open .nav__links a { font-size: 24px; }
body.is-nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.is-nav-open .nav__burger span:nth-child(2) { opacity: 0; }
body.is-nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ---- 18. LEGAL / SIMPLE-PAGE LAYOUT ------------------------ */

.legal {
  padding: clamp(48px, 7vw, 88px) 0 clamp(72px, 9vw, 120px);
}
.legal__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.legal__eyebrow {
  font-family: "Major Mono Display", monospace;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.legal h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.legal__lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px dashed color-mix(in oklab, var(--ink) 22%, transparent);
}
.legal h2 {
  font-family: "Recoleta", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--ink);
}
.legal h3 {
  font-family: "Recoleta", serif;
  font-size: 19px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}
.legal p, .legal li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal p { margin-bottom: 14px; }
.legal ul, .legal ol {
  margin: 8px 0 16px 22px;
}
.legal li { margin-bottom: 8px; }
.legal a {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-color: color-mix(in oklab, var(--terracotta) 50%, transparent);
  text-underline-offset: 3px;
}
.legal a:hover { text-decoration-color: var(--rust); color: var(--rust); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal__updated {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px dashed color-mix(in oklab, var(--ink) 22%, transparent);
  font-family: "Major Mono Display", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-faint);
  text-transform: uppercase;
}


/* ---- 19. CHECKOUT / RECEIPT PAGES -------------------------- */

.receipt {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: clamp(48px, 7vw, 88px) 24px;
}
.receipt__card {
  max-width: 520px;
  width: 100%;
  background: var(--paper-3);
  border: 1.5px solid var(--deep-brown);
  border-radius: var(--r-3);
  padding: 44px 36px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--mustard);
  position: relative;
}
.receipt__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 30px;
  border: 2px solid var(--deep-brown);
  box-shadow: 4px 4px 0 var(--deep-brown);
}
.receipt__icon--ok    { background: var(--terracotta); }
.receipt__icon--stop  { background: var(--paper-2); color: var(--deep-brown); }
.receipt h1 {
  font-family: "Recoleta", serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.receipt p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.receipt__order {
  display: inline-block;
  font-family: "Major Mono Display", monospace;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--ink) 25%, transparent);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: 26px;
}
.receipt .btn { margin-top: 14px; }


/* ---- 20. CUSTOM PAY FORM (operator) ------------------------ */

.pay {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: clamp(48px, 7vw, 88px) 24px;
}
.pay__card {
  width: 100%;
  max-width: 480px;
  background: var(--paper-3);
  border: 1.5px solid var(--deep-brown);
  border-radius: var(--r-3);
  padding: 40px 36px;
  box-shadow: 8px 8px 0 var(--mustard);
}
.pay__eyebrow {
  font-family: "Major Mono Display", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.pay h1 {
  font-family: "Recoleta", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pay p.pay__lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.pay__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.pay__field label {
  font-family: "Major Mono Display", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.pay__field input {
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 16px;
  padding: 12px 14px;
  border: 1.5px solid var(--deep-brown);
  border-radius: var(--r-1);
  background: var(--paper);
  color: var(--ink);
  transition: box-shadow .2s var(--ease);
}
.pay__field input:focus {
  outline: none;
  box-shadow: 3px 3px 0 var(--terracotta);
}
.pay__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.pay__error {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1.5px solid var(--rust);
  border-radius: var(--r-1);
  background: color-mix(in oklab, var(--rust) 10%, var(--paper-3));
  color: var(--rust);
  font-size: 13.5px;
}
.pay__error.is-shown { display: block; }
