/* ─────────────────────────────────────────────
   Keepsake Etchings — homepage styles
   Vintage Americana × clean modern e-commerce
   ───────────────────────────────────────────── */

:root {
  --paper:      #F1E7D2;
  --paper-2:    #E6D7B6;
  --paper-3:    #D9C6A0;
  --cream:      #FAF3E1;
  --ink:        #1B1612;
  --ink-2:      #2F241A;
  --sepia:      #6B4F32;
  --sepia-2:    #8A6B47;
  --gold:       #A88A4F;
  --rust:       #8B3A1F;
  --moss:       #4A5236;
  --hair:       rgba(27, 22, 18, 0.18);
  --hair-2:     rgba(27, 22, 18, 0.08);

  --f-display:  "DM Serif Display", "Times New Roman", serif;
  --f-vintage:  "IM Fell DW Pica SC", "DM Serif Display", serif;
  --f-vintage-r:"IM Fell DW Pica", "DM Serif Display", serif;
  --f-script:   "Pinyon Script", "Brush Script MT", cursive;
  --f-body:     "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-mono:     "Special Elite", "Courier New", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Paper texture overlay — body-level so it covers everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.32  0 0 0 0 0.22  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── Utilities ── */
.wrap        { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-wide   { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sepia);
}
.smallcaps {
  font-family: var(--f-vintage);
  letter-spacing: 0.04em;
}
.script { font-family: var(--f-script); font-weight: 400; }

/* Hairline & ornament dividers */
.hairline { height: 1px; background: var(--hair); width: 100%; }

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--sepia);
}
.ornament .line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.ornament .dot { width: 5px; height: 5px; background: currentColor; transform: rotate(45deg); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--ink-2); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--cream); }
.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn.gold:hover { background: #b89a5f; border-color: #b89a5f; }
.btn .arrow { font-family: serif; font-size: 14px; letter-spacing: 0; }

/* (announcement bar styles removed — banner intentionally not used) */

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 231, 210, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hair);
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}
.nav-row--slim {
  /* one-page layout — no left nav links, balance with empty span */
}

/* centered logo row + full-width quote bar beneath */
.nav-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 0 18px;
}
.nav-quote-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  transition: background .15s ease, letter-spacing .15s ease;
}
.nav-quote-bar:hover {
  background: var(--ink-2);
  letter-spacing: 0.36em;
}
.nav-quote-bar .arrow {
  font-family: serif;
  font-size: 16px;
  letter-spacing: 0;
  transition: transform .15s ease;
}
.nav-quote-bar:hover .arrow {
  transform: translateX(4px);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a { position: relative; }
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--ink);
}
.nav-end { display: flex; gap: 18px; justify-content: flex-end; align-items: center; }
.nav-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--hair);
  color: var(--ink-2);
}
.nav-icon:hover { background: var(--paper-2); }

/* ─── Logo wordmark ─── */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--ink);
  user-select: none;
}
.wordmark .top {
  font-family: var(--f-script);
  font-size: 28px;
  letter-spacing: 0.01em;
}
.wordmark .bot {
  font-family: var(--f-vintage);
  font-size: 11px;
  letter-spacing: 0.42em;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.wordmark.lg .top { font-size: 92px; }
.wordmark.lg .bot { font-size: 22px; letter-spacing: 0.5em; padding: 10px 18px 8px; }
.wordmark.md .top { font-size: 64px; }
.wordmark.md .bot { font-size: 16px; letter-spacing: 0.5em; padding: 8px 14px 6px; }

/* ─── HERO – engraved-illustration placeholders ─── */
/* The reference PNG has typography baked into the same canvas as the
   illustrations, so we can't cleanly crop Rushmore / bison / spoon out
   of it. Instead: render vintage placeholder cards in their positions
   that the user can swap for final engraved artwork. */
.eng-slot {
  position: relative;
  border: 1px solid var(--ink);
  background:
    repeating-linear-gradient(0deg,
      transparent 0 3px,
      rgba(27,22,18,0.08) 3px 4px),
    repeating-linear-gradient(90deg,
      transparent 0 3px,
      rgba(27,22,18,0.05) 3px 4px),
    var(--paper-2);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
}
.eng-slot::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed currentColor;
  opacity: 0.35;
  pointer-events: none;
}
.eng-slot .label {
  position: relative;
  z-index: 2;
  background: var(--paper);
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sepia);
  border: 1px solid var(--hair);
  text-align: center;
  line-height: 1.5;
}
.eng-slot .label small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-top: 4px;
  color: var(--sepia-2);
}
.eng-slot.rushmore {
  width: 100%;
  max-width: 760px;
  height: 360px;
}
.eng-slot.bison {
  width: 100%;
  max-width: 560px;
  height: 240px;
}
.eng-slot.spoon {
  width: 220px;
  height: 540px;
  border-radius: 110px / 30px;
}

/* ─── HERO base shell ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
}

/* === Variant 1: POSTER (full vintage poster reconstruction) === */
.hero.v-poster {
  padding: 56px 0 64px;
}
.poster {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 32px 40px;
  border: 1.5px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 6px;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%),
    var(--paper);
}
.poster-corner {
  position: absolute;
  width: 64px; height: 64px;
  color: var(--ink);
  opacity: 0.85;
}
.poster-corner.tl { top: 14px; left: 18px; }
.poster-corner.tr { top: 14px; right: 18px; transform: scaleX(-1); }
.poster-corner.bl { bottom: 14px; left: 18px; transform: scaleY(-1); }
.poster-corner.br { bottom: 14px; right: 18px; transform: scale(-1, -1); }

.poster-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  padding: 12px 28px 0;
}
.poster-side {
  font-family: var(--f-vintage);
  letter-spacing: 0.08em;
  font-size: 13px;
  line-height: 1.35;
}
.poster-side.l { text-align: left; padding-top: 14px; }
.poster-side.r { text-align: right; padding-top: 14px; }
.poster-side .deco {
  margin-top: 12px;
  color: var(--sepia);
  letter-spacing: 0.6em;
}

.poster-stage {
  position: relative;
  margin: -8px auto 0;
  width: 100%;
  max-width: 980px;
  height: 460px;
}
.poster-stage .rushmore {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.poster-ribbon {
  position: relative;
  margin: -40px auto 0;
  width: max-content;
  padding: 22px 64px 28px;
  background: var(--paper);
  z-index: 2;
  text-align: center;
}
.poster-ribbon::before, .poster-ribbon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px; height: 2px;
  background: var(--ink);
}
.poster-ribbon::before { left: -50px; transform: translateY(-50%) skewY(-3deg); }
.poster-ribbon::after { right: -50px; transform: translateY(-50%) skewY(3deg); }
.poster-ribbon .madein {
  font-family: var(--f-vintage);
  font-size: 18px;
  letter-spacing: 0.32em;
  display: block;
  margin-bottom: 6px;
}
.poster-ribbon .sd {
  font-family: var(--f-display);
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: block;
}
.poster-stars {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px;
  color: var(--ink);
}
.poster-stars .l { flex: 0 0 60px; height: 1px; background: currentColor; }

.poster-bison {
  position: relative;
  margin: -10px auto 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.poster-footer {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--f-vintage);
  letter-spacing: 0.16em;
  font-size: 13px;
}
.poster-footer .ornament { color: var(--sepia); }
.poster-cats {
  margin-top: 18px;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  gap: 32px;
  padding: 14px 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.poster-cats .star { color: var(--gold); }

.poster-medal {
  position: absolute;
  width: 130px; height: 130px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--f-vintage);
  font-size: 11px;
  letter-spacing: 0.18em;
  background: var(--paper);
  padding: 16px;
  line-height: 1.25;
}
.poster-medal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: 0.6;
}
.poster-medal.l { left: 24px; bottom: 90px; transform: rotate(-6deg); }
.poster-medal.r { right: 24px; bottom: 90px; transform: rotate(6deg); }

.poster-spoon {
  position: absolute;
  right: 24px;
  top: 60px;
  width: 130px;
  height: 460px;
  border: 1px solid var(--ink);
  border-radius: 65px / 22px;
  background:
    repeating-linear-gradient(0deg,
      transparent 0 3px,
      rgba(27,22,18,0.08) 3px 4px),
    var(--paper-2);
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  pointer-events: none;
}
.poster-spoon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed currentColor;
  border-radius: inherit;
  opacity: 0.3;
  color: var(--sepia);
}
.poster-spoon .label {
  position: relative;
  z-index: 2;
  background: var(--paper);
  padding: 8px 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sepia);
  border: 1px solid var(--hair);
  line-height: 1.5;
}

.poster-cta {
  margin-top: 28px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* === Variant 2: EDITORIAL SPLIT === */
.hero.v-split {
  padding: 0;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 720px;
}
.split-left {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.split-left .bg-art {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      transparent 0 3px,
      rgba(241,231,210,0.06) 3px 4px),
    repeating-linear-gradient(110deg,
      transparent 0 24px,
      rgba(241,231,210,0.04) 24px 26px),
    radial-gradient(ellipse at 50% 32%, rgba(168,138,79,0.18) 0%, transparent 55%),
    var(--ink);
}
.split-left .bg-label {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241,231,210,0.55);
  background: rgba(0,0,0,0.35);
  padding: 6px 10px;
  border: 1px solid rgba(241,231,210,0.18);
}
.split-left::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(241,231,210,0.4);
  pointer-events: none;
}
.split-left-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 56px;
  z-index: 2;
}
.split-left-content .eyebrow { color: var(--gold); }
.split-left-content .title {
  font-family: var(--f-display);
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--paper);
  max-width: 520px;
}
.split-left-content .title .acc {
  font-family: var(--f-script);
  color: var(--gold);
  display: block;
  font-size: 0.65em;
  margin-bottom: -10px;
  letter-spacing: 0;
}
.split-left-content .footnote {
  font-family: var(--f-vintage);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--paper-3);
}
.split-right {
  position: relative;
  background: var(--paper);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.split-right .lede {
  font-family: var(--f-body);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  font-style: italic;
  max-width: 460px;
}
.split-right .lede em {
  font-style: normal;
  color: var(--rust);
}
.split-right .quote {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 32px;
  position: relative;
  font-family: var(--f-body);
  font-size: 19px;
  line-height: 1.5;
  font-style: italic;
  max-width: 480px;
}
.split-right .quote::before {
  content: "\201C";
  font-family: var(--f-display);
  font-size: 78px;
  position: absolute;
  top: -10px; left: 14px;
  line-height: 1;
  color: var(--gold);
}
.split-right .quote .sig {
  display: block;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper-3);
}
.split-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.split-spoon {
  position: absolute;
  right: 32px;
  top: 56px;
  width: 92px;
  height: 320px;
  border: 1px solid var(--hair);
  border-radius: 46px / 18px;
  background:
    repeating-linear-gradient(0deg,
      transparent 0 3px,
      rgba(27,22,18,0.08) 3px 4px),
    var(--paper-2);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sepia);
  text-align: center;
  padding: 12px;
  opacity: 0.85;
}
.split-spoon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed currentColor;
  border-radius: inherit;
  opacity: 0.3;
}

/* === Variant 3: WIDE CINEMA — clean poster billboard === */
.hero.v-cinema {
  padding: 0;
  background: var(--paper);
}
.cinema {
  position: relative;
  width: 100%;
  background: var(--paper);
  overflow: hidden;
}
.cinema--billboard {
  /* full 3:2 poster, always shown intact at viewport width */
  aspect-ratio: 3 / 2;
  width: 100%;
}
.cinema-bg {
  position: absolute;
  inset: 0;
  background: var(--paper);
  overflow: hidden;
}
.cinema-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* tint to match parchment: whites pick up paper color via
     multiply; subtle warm-up so the gray sky doesn't read cold */
  mix-blend-mode: multiply;
  filter: sepia(0.18) saturate(1.05) contrast(1.04) brightness(1.04);
}
/* (mask overlays removed — full poster image shown as-is) */
/* legacy cinema overlay layers — no longer used in billboard mode */
.cinema-vignette,
.cinema-frame,
.cinema-content,
.cinema-meta,
.cinema-bg::before,
.cinema-bg::after { display: none; }

/* === Variant 4: CENTERED MINIMAL === */
.hero.v-minimal {
  padding: 72px 0 0;
}
.minimal {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.minimal .eyebrow { display: inline-block; margin-bottom: 22px; }
.minimal .title {
  font-family: var(--f-display);
  font-size: 92px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.minimal .title .acc {
  font-family: var(--f-script);
  display: block;
  color: var(--rust);
  font-size: 0.62em;
  margin-bottom: -8px;
  letter-spacing: 0;
}
.minimal .sub {
  margin: 24px auto 30px;
  max-width: 580px;
  font-style: italic;
  color: var(--ink-2);
  font-size: 21px;
  line-height: 1.5;
}
.minimal-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.minimal-stage {
  position: relative;
  margin: 56px auto 0;
  max-width: 1320px;
  height: 380px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
}
.minimal-stage .eng-slot.rushmore {
  margin-top: 20px;
  max-width: 920px;
  height: 320px;
}
.minimal-marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.minimal-marquee .track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.minimal-marquee .star { color: var(--gold); margin: 0 12px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section heading pattern ─── */
.sec { padding: 96px 0; }
.sec-tight { padding: 64px 0; }
.sec-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 760px;
}
.sec-head .eyebrow { display: block; margin-bottom: 14px; }
.sec-head .title {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
}
.sec-head .title .acc {
  font-family: var(--f-script);
  font-size: 0.78em;
  color: var(--rust);
  display: inline-block;
  margin-right: 8px;
  vertical-align: -2px;
  letter-spacing: 0;
}
.sec-head .sub {
  font-family: var(--f-body);
  font-size: 20px;
  font-style: italic;
  color: var(--ink-2);
  margin: 0;
}

/* ─── Trust strip ─── */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  border-top: 1px solid var(--hair);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 28px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.trust-item .ic {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--gold);
}
.trust-item b { color: var(--paper); font-weight: 400; }
.trust-item span { color: var(--paper-3); }

/* ─── Categories ─── */
.cats {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 32px 28px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(27,22,18,0.4);
}
.cat-card .cat-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--sepia);
  letter-spacing: 0.18em;
}
.cat-art {
  height: 180px;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.cat-art .stripe-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0 8px,
      rgba(27,22,18,0.06) 8px 9px);
}
.cat-art .placeholder-label {
  position: relative;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--sepia);
  text-transform: uppercase;
  background: var(--paper);
  padding: 6px 12px;
  border: 1px solid var(--hair);
}
.cat-card .cat-title {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}
.cat-card .cat-desc {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
}
.cat-card .cat-cta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sepia);
}
/* static info cards (no hover lift/cta) */
.cat-card--static {
  cursor: default;
}
.cat-card--static:hover {
  transform: none;
  box-shadow: none;
}

/* ─── How it works ─── */
.how {
  background: var(--cream);
  position: relative;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}
.how-step { position: relative; padding: 0 8px; text-align: center; }
.how-step .num {
  font-family: var(--f-display);
  font-size: 96px;
  line-height: 1;
  color: var(--paper-3);
  margin: 0 0 12px;
}
.how-step .num .ord {
  font-family: var(--f-script);
  color: var(--rust);
  font-size: 0.6em;
  vertical-align: 24px;
  margin-right: 4px;
}
.how-step .step-title {
  font-family: var(--f-vintage);
  letter-spacing: 0.12em;
  font-size: 18px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.how-step .step-body {
  font-family: var(--f-body);
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
  max-width: 320px;
  margin: 0 auto;
}
.how-divider {
  width: 1px;
  background: var(--hair);
  height: 80px;
  align-self: center;
  margin: 0 -24px;
}

/* ─── Gallery (mosaic) ─── */
.gallery { background: var(--paper); }
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}
.tile {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  overflow: hidden;
}
.tile .stripe-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0 8px,
      rgba(27,22,18,0.06) 8px 9px);
}
.tile .tag {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--paper);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--hair);
  color: var(--sepia);
}
.tile .tag .heart { color: var(--rust); margin-right: 6px; }

/* mosaic spans */
.t-A { grid-column: span 5; grid-row: span 3; }
.t-B { grid-column: span 4; grid-row: span 2; }
.t-C { grid-column: span 3; grid-row: span 2; }
.t-D { grid-column: span 4; grid-row: span 2; }
.t-E { grid-column: span 3; grid-row: span 3; }
.t-F { grid-column: span 5; grid-row: span 2; }
.t-G { grid-column: span 4; grid-row: span 2; }

/* Featured testimonial in mosaic */
.tile.quote-tile {
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
}
.tile.quote-tile::before {
  content: "\201C";
  font-family: var(--f-display);
  font-size: 84px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 6px;
}
.tile.quote-tile .author {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper-3);
}

/* ─── FAQ ─── */
.faq {
  background: var(--cream);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.faq-item {
  border-bottom: 1px solid var(--hair);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 8px;
  text-align: left;
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
}
.faq-q .sign {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--sepia);
  width: 30px; text-align: center;
  transition: transform .2s ease;
}
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  padding: 0 8px;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 8px 26px;
}

/* ─── Newsletter / CTA band ─── */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px;
  border: 1px solid rgba(168,138,79,0.18);
  border-radius: 50%;
}
.cta-band::before { left: -90px; }
.cta-band::after { right: -90px; }
.cta-band .eyebrow { color: var(--gold); }
.cta-band .title {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 1.05;
  margin: 14px 0 14px;
  color: var(--paper);
}
.cta-band .title .acc {
  font-family: var(--f-script);
  display: inline-block;
  color: var(--gold);
  font-size: 0.85em;
  letter-spacing: 0;
  margin-right: 4px;
}
.cta-band .sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 20px;
  color: var(--paper-2);
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .actions .btn.ghost { color: var(--paper); border-color: var(--paper); }
.cta-band .actions .btn.ghost:hover { background: var(--paper); color: var(--ink); }

/* ─── Footer ─── */
.footer {
  background: var(--paper-2);
  color: var(--ink);
  padding: 64px 0 24px;
  border-top: 1px solid var(--hair);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer h4 {
  font-family: var(--f-vintage);
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li {
  font-family: var(--f-body);
  font-size: 17px;
  padding: 5px 0;
  color: var(--ink-2);
}
.footer li a:hover { color: var(--ink); text-decoration: underline; }
.footer-about p {
  font-family: var(--f-body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 14px 0 0;
  max-width: 360px;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sepia);
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--hair);
  display: grid; place-items: center;
  color: var(--ink-2);
}
.footer-socials a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ─── Footer (slim) ────────────────────────────── */
.footer--slim {
  padding: 56px 0 24px;
}
.footer-slim-row {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.footer-blurb {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 18px auto 22px;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 16px;
  border: 1px solid var(--hair);
  background: var(--paper);
}
.footer-email:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.footer-bottom--slim {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}

/* ─── Quote form section ───────────────────────── */
.quote-sec {
  background:
    radial-gradient(ellipse at top, rgba(168,138,79,0.08) 0%, transparent 60%),
    var(--cream);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.quote-aside {
  position: sticky;
  top: 100px;
}
.quote-aside .eyebrow { display: block; margin-bottom: 18px; }
.quote-title {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.quote-title .acc {
  font-family: var(--f-script);
  display: inline-block;
  color: var(--rust);
  font-size: 0.82em;
  vertical-align: -4px;
  margin-right: 6px;
  letter-spacing: 0;
}
.quote-lede {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 460px;
}
.quote-aside .ornament { margin: 6px 0 22px; max-width: 320px; }

.next-steps {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.next-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.next-steps .ord {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  color: var(--rust);
}
.next-steps b {
  display: block;
  font-family: var(--f-vintage);
  letter-spacing: 0.06em;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--ink);
}
.next-steps span {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.4;
}

.quote-or {
  display: flex; align-items: center; gap: 14px;
  margin: 8px 0 12px;
  color: var(--sepia);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.quote-or::before, .quote-or::after {
  content: "";
  flex: 1; max-width: 60px;
  height: 1px; background: var(--hair);
}
.quote-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 18px;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.quote-email:hover { background: var(--ink); color: var(--paper); }

/* form card */
.quote-form {
  background: var(--paper);
  border: 1px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 5px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: grid;
  gap: 22px;
}
.form-row-2 {
  grid-template-columns: 1fr 1fr;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sepia);
}
.field .lbl .opt {
  text-transform: none;
  letter-spacing: 0.05em;
  font-style: italic;
  color: var(--sepia-2);
  margin-left: 6px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 18px;
  background: var(--cream);
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 10px 4px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
  border-radius: 0;
  width: 100%;
}
.field textarea {
  background: transparent;
  border: 1px solid var(--hair);
  padding: 14px;
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rust);
  background: var(--paper);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'><polyline points='1,1 7,8 13,1' fill='none' stroke='%236B4F32' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 28px;
}

.upload {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 16px 14px;
  border: 1px dashed var(--sepia-2);
  background: var(--cream);
  cursor: pointer;
  min-height: 88px;
  transition: background .15s ease, border-color .15s ease;
}
.upload:hover { background: var(--paper); border-color: var(--ink); }
.upload-ic { color: var(--sepia); margin-bottom: 2px; }
.upload-cta {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink-2);
}
.upload-cta u { text-decoration-color: var(--rust); }
.upload-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sepia-2);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}
.btn-submit {
  padding: 16px 32px;
  font-size: 13px;
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
}
.btn-submit:hover { background: #6f2e17; border-color: #6f2e17; }
.form-foot {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sepia);
  text-align: right;
}

/* thanks state */
.quote-thanks {
  text-align: center;
  padding: 32px 12px;
  outline: none;
}
.thanks-ornament { color: var(--sepia); margin-bottom: 22px; }
.thanks-title {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
}
.thanks-body {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 auto 18px;
  max-width: 460px;
}
.thanks-sig {
  font-family: var(--f-script);
  font-size: 28px;
  color: var(--rust);
  margin: 0 0 24px;
}

@media (max-width: 980px) {
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .quote-aside { position: static; }
  .quote-title { font-size: 44px; }
  .quote-form { padding: 32px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .form-foot { text-align: center; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 22px; font-size: 11px; }
  .poster-stage { height: 380px; }
  .poster-spoon { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-left { min-height: 460px; }
  .cinema .title { font-size: 80px; }
  .minimal .title { font-size: 64px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap, .wrap-wide { padding: 0 18px; }
  .nav-links { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .poster-side { font-size: 11px; }
  .poster-ribbon .sd { font-size: 56px; }
  .cinema .title { font-size: 52px; }
  .minimal .title { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
}
