/* ─────────────────────────────────────────────────────────────
   KATHY HEINTZ · WATERCOLORS FROM THE DESERT
   A static site that behaves like a vintage Vegas sign:
   paper by day, neon by night.
   ───────────────────────────────────────────────────────────── */

:root {
  --paper:    #f0e7d3;
  --paper-2:  #e6dbc2;
  --paper-3:  #d9cba9;
  --ink:      #15110c;
  --ink-2:    #3a2e22;
  --ink-soft: #5b4a37;
  --neon-red:      #d6362b;
  --neon-red-glow: #ff6555;
  --neon-gold:     #e7b85a;
  --neon-gold-glow:#ffd47a;
  --cobalt:   #0d1a32;
  --night:    #0a0805;
  --night-2:  #15110b;
  --rose:     #c98d8a;
  --sage:     #94a692;

  --display: 'Bungee', 'Impact', sans-serif;
  --shade:   'Bungee Shade', 'Impact', sans-serif;
  --body:    'Fraunces', 'Iowan Old Style', Georgia, serif;
  --hand:    'Caveat', cursive;

  --gutter: clamp(1rem, 3.5vw, 3rem);
  --max: 1480px;
}

/* ─── base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 350;
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(15px, 1vw + 0.6rem, 17px);
  line-height: 1.6;
  overflow-x: hidden;
  /* watercolor paper grain */
  background-image:
    radial-gradient(at 10% 12%, rgba(196, 167, 110, 0.18), transparent 40%),
    radial-gradient(at 88% 8%,  rgba(150, 110,  80, 0.12), transparent 45%),
    radial-gradient(at 78% 96%, rgba(110, 130, 160, 0.10), transparent 45%),
    radial-gradient(at 8%  86%, rgba(168, 130,  90, 0.16), transparent 50%);
  background-attachment: fixed;
}

body::before {
  /* film-grain texture overlay */
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0 0.05  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

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

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

/* ─── ticker (vintage marquee) ────────────────────────────────── */
.ticker {
  position: relative; z-index: 5;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 90s linear infinite;
}
.ticker__line {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  padding: 0.55rem 1.5rem;
  color: var(--neon-gold);
  white-space: nowrap;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── nav ─────────────────────────────────────────────────────── */
.nav {
  position: absolute; top: 2.4rem; left: 0; right: 0;
  z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  pointer-events: none;
}
.nav > * { pointer-events: auto; }

.nav__brand {
  font-family: var(--shade);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--paper);
  text-shadow: 2px 2px 0 var(--neon-red);
  display: inline-flex; gap: 0.05em;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: clamp(0.8rem, 2vw, 2rem);
  padding: 0; margin: 0;
}
.nav a:not(.nav__brand) {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  padding: 0.4rem 0;
  position: relative;
}
.nav a:not(.nav__brand)::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 0;
  height: 2px;
  background: var(--neon-gold);
  transition: all 0.35s ease;
}
.nav a:not(.nav__brand):hover::after { left: 0; right: 0; }

@media (max-width: 640px) {
  .nav { top: 1.8rem; }
  .nav ul { gap: 1rem; }
  .nav a:not(.nav__brand) { font-size: 0.78rem; }
}

/* ─── HERO: neon sign at night ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem var(--gutter) 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(214, 54, 43, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(231, 184, 90, 0.10), transparent 70%),
    linear-gradient(180deg, #060403 0%, #0d0907 60%, #1a1108 100%);
  display: grid; place-items: center;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.hero__horizon {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 28%;
  background:
    linear-gradient(180deg, transparent, rgba(201, 141, 138, 0.18) 60%, rgba(201, 141, 138, 0.30) 100%),
    linear-gradient(180deg, transparent, rgba(231, 184, 90, 0.06));
  z-index: 0;
}
.hero__stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 14%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 20% 6%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 33% 21%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 47% 9%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1.4px 1.4px at 62% 17%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 78% 8%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1.2px 1.2px at 90% 22%, rgba(255,255,255,0.6), transparent 50%);
  opacity: 0.85;
  z-index: 0;
}

.hero__plate {
  position: relative; z-index: 2;
  text-align: center;
  padding: 3.2rem clamp(1.5rem, 4vw, 4rem);
  max-width: 1100px;
}

.hero__eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.5em;
  color: var(--neon-gold);
  margin-bottom: 1.4rem;
  opacity: 0.85;
}

/* The neon */
.neon {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.5rem, 14vw, 11.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0;
}
.neon__line {
  display: block;
}
.neon__line--red {
  color: #fff7ec;
  text-shadow:
    0 0 1px #fff,
    0 0 8px #ffd5cb,
    0 0 18px var(--neon-red-glow),
    0 0 40px var(--neon-red),
    0 0 80px var(--neon-red);
}
.neon__line--gold {
  color: #fff8ea;
  text-shadow:
    0 0 1px #fff,
    0 0 9px #ffe7b3,
    0 0 24px var(--neon-gold-glow),
    0 0 48px var(--neon-gold),
    0 0 90px var(--neon-gold);
  margin-top: -0.05em;
}

.flicker { display: inline-block; animation: flicker 7s infinite; }
@keyframes flicker {
  0%, 19.9%, 21%, 22.9%, 24%, 99.9% { opacity: 1; }
  20%, 21.5%, 23.5% { opacity: 0.25; text-shadow: none; }
}

.hero__rule {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.6rem;
}
.hero__rule::before, .hero__rule::after {
  content: ""; height: 1px; width: clamp(40px, 14vw, 160px);
  background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
}
.hero__rule span {
  font-family: var(--display);
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  color: var(--neon-gold);
}

.hero__sub {
  margin-top: 1.3rem;
  font-family: var(--body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255, 240, 220, 0.78);
  max-width: 36ch;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}
.hero__sub em {
  font-style: italic;
  color: var(--neon-gold-glow);
  font-weight: 400;
}

/* light-bulbs on top and bottom of plate */
.hero__bulbs {
  height: 14px;
  background-image: radial-gradient(circle, var(--neon-gold-glow) 30%, transparent 32%);
  background-size: 28px 14px;
  background-repeat: repeat-x;
  background-position: center;
  filter: drop-shadow(0 0 6px var(--neon-gold-glow));
  margin: 0 auto;
  width: min(90%, 720px);
  opacity: 0.85;
}
.hero__bulbs--top { margin-bottom: 1.8rem; }
.hero__bulbs--bottom { margin-top: 2rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--neon-gold);
  opacity: 0.8;
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ─── section heads ──────────────────────────────────────────── */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-head--left  { text-align: left; }
.section-head--center { text-align: center; }
.section-head__kicker {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  color: var(--neon-red);
  margin-bottom: 1.2rem;
}
.section-head__title {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.section-head__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--neon-red);
}
.section-head__lede {
  max-width: 48ch;
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink-soft);
}
.section-head--center .section-head__lede { margin-left: auto; margin-right: auto; }

/* ─── THE WALL (studio wall, taped pieces) ───────────────────── */
.wall {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  z-index: 2;
}
.wall::before {
  /* a paint-stroke across the top */
  content: "";
  position: absolute;
  top: clamp(2.5rem, 6vw, 4.5rem);
  left: 0; right: 0;
  height: 10px;
  background: linear-gradient(90deg, transparent, var(--neon-red) 20%, var(--neon-red) 80%, transparent);
  opacity: 0.13;
  transform: rotate(-0.4deg);
}

.wall__grid {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(80px, auto);
  gap: clamp(1.5rem, 3.5vw, 3rem) clamp(1rem, 2.5vw, 2.5rem);
}

/* Each card sits on the paper, taped at the corners */
.card {
  position: relative;
  margin: 0;
  background: #fff;
  padding: 0.9rem 0.9rem 1.1rem;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.05),
    0 22px 30px -18px rgba(40, 25, 12, 0.32),
    0 5px 12px -6px rgba(40, 25, 12, 0.25);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
  cursor: pointer;
  will-change: transform;
}
.card img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: #efe6d3;
}
.card figcaption {
  display: flex; flex-direction: column;
  padding-top: 0.7rem;
}
.card__title {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--ink);
}
.card__sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

/* sizes & placement */
.card--xl   { grid-column: span 7; grid-row: span 2; }
.card--xl img   { aspect-ratio: 16 / 11; }
.card--wide { grid-column: span 6; }
.card--wide img { aspect-ratio: 16 / 9; }
.card--md   { grid-column: span 5; }
.card--md img   { aspect-ratio: 4 / 3; }
.card--sm   { grid-column: span 4; }
.card--sm img   { aspect-ratio: 4 / 5; }

/* random-feeling rotations */
.card--tilt-1 { transform: rotate(-1.4deg); }
.card--tilt-2 { transform: rotate(1.8deg);  }
.card--tilt-3 { transform: rotate(-0.8deg); }
.card--tilt-4 { transform: rotate(2.1deg);  }
.card--tilt-5 { transform: rotate(-2.3deg); }

.card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.05),
    0 36px 60px -22px rgba(40, 25, 12, 0.45),
    0 12px 24px -10px rgba(40, 25, 12, 0.30);
  z-index: 3;
}

/* tape strips */
.tape {
  position: absolute;
  width: 92px; height: 22px;
  background: rgba(220, 200, 142, 0.55);
  box-shadow: 0 2px 4px rgba(50, 30, 10, 0.10);
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 40%, rgba(255,255,255,0.20) 70%);
}
.tape--tl { top: -10px;  left: -22px;  transform: rotate(-35deg); }
.tape--tr { top: -10px;  right: -22px; transform: rotate(35deg); }
.tape--bl { bottom: -10px; left: -22px;  transform: rotate(35deg); }
.tape--br { bottom: -10px; right: -22px; transform: rotate(-35deg); }

.wall__pin {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.6rem;
  color: var(--ink-soft);
}
.caveat { font-family: var(--hand); }

@media (max-width: 900px) {
  .wall__grid { grid-template-columns: repeat(6, 1fr); }
  .card--xl   { grid-column: span 6; grid-row: auto; }
  .card--wide { grid-column: span 6; }
  .card--md   { grid-column: span 6; }
  .card--sm   { grid-column: span 3; }
  .card--xl img, .card--wide img { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .wall__grid { grid-template-columns: 1fr; }
  .card--sm   { grid-column: span 1; }
  .card { transform: rotate(0); }
  .card--tilt-1, .card--tilt-2, .card--tilt-3, .card--tilt-4, .card--tilt-5 {
    transform: rotate(0);
  }
}

/* ─── THE STORY (magazine spread) ────────────────────────────── */
.story {
  position: relative; z-index: 2;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(231, 184, 90, 0.13), transparent 50%),
    radial-gradient(ellipse at 0% 90%, rgba(214, 54, 43, 0.08), transparent 55%);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}
.story__layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.story__portrait {
  position: sticky;
  top: 2rem;
}

.polaroid {
  position: relative;
  background: #fff;
  padding: 1rem 1rem 3.4rem;
  transform: rotate(-2.2deg);
  box-shadow: 0 30px 50px -20px rgba(40, 25, 12, 0.45);
  max-width: 360px;
}
.polaroid img {
  width: 100%; aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
.polaroid__cap {
  position: absolute;
  bottom: 0.9rem; left: 0; right: 0;
  text-align: center;
  font-size: 1.25rem;
  color: var(--ink-2);
}
.polaroid__tape {
  position: absolute;
  width: 110px; height: 26px;
  background: rgba(220, 200, 142, 0.6);
  box-shadow: 0 2px 4px rgba(50, 30, 10, 0.10);
  pointer-events: none;
}
.polaroid__tape--1 { top: -12px; left: -18px; transform: rotate(-30deg); }
.polaroid__tape--2 { top: -12px; right: -18px; transform: rotate(28deg); }

.story__facts {
  margin-top: 2.5rem;
  padding: 1.4rem 1.5rem;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.story__facts dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1.2rem;
  margin: 0;
}
.story__facts dt {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--neon-red);
  align-self: center;
}
.story__facts dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.story__kicker {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  color: var(--neon-red);
  margin-bottom: 1.2rem;
}
.story__title {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 2rem;
  color: var(--ink);
}
.story__title em {
  font-style: italic;
  color: var(--neon-red);
}
.story__copy {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink);
}
.story__copy p { margin: 0 0 1.2rem; }
.story__lede { font-size: 1.18rem; }

.dropcap {
  float: left;
  font-family: var(--body);
  font-weight: 300;
  font-style: italic;
  font-size: 5.5rem;
  line-height: 0.85;
  padding: 0.35rem 0.6rem 0 0;
  color: var(--neon-red);
}

.pullquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.6rem 1.4rem 1.4rem 3.6rem;
  border-left: 4px solid var(--neon-red);
  font-family: var(--body);
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.4;
  color: var(--ink-2);
  background:
    radial-gradient(ellipse 80% 60% at 0 0, rgba(214, 54, 43, 0.06), transparent 60%);
}
.pullquote__mark {
  position: absolute;
  left: 1rem; top: -0.2rem;
  font-family: var(--body);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--neon-red);
  opacity: 0.65;
}

.story__sig {
  font-size: 2rem;
  color: var(--neon-red);
  margin-top: 1.5rem !important;
}

@media (max-width: 900px) {
  .story__layout { grid-template-columns: 1fr; }
  .story__portrait { position: static; max-width: 320px; }
}

/* ─── THE CATALOG (every painting) ───────────────────────────── */
.catalog {
  position: relative; z-index: 2;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(231, 184, 90, 0.10), transparent 50%),
    linear-gradient(180deg, var(--night-2), #0a0805 60%, #0a0805);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 8rem);
}
.catalog::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
  opacity: 0.4;
}
.catalog .section-head__title { color: var(--paper); }
.catalog .section-head__title em { color: var(--neon-gold); }
.catalog .section-head__kicker { color: var(--neon-gold); }
.catalog .section-head__lede { color: rgba(240, 230, 210, 0.7); }

.catalog__grid {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding: 0 var(--gutter);
  column-count: 4;
  column-gap: clamp(0.8rem, 2vw, 1.6rem);
}
@media (max-width: 1100px) { .catalog__grid { column-count: 3; } }
@media (max-width: 720px)  { .catalog__grid { column-count: 2; } }
@media (max-width: 420px)  { .catalog__grid { column-count: 1; } }

.tile {
  break-inside: avoid;
  margin: 0 0 clamp(0.8rem, 2vw, 1.6rem);
  position: relative;
  background: #1d1813;
  cursor: pointer;
  overflow: hidden;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(231, 184, 90, 0.08);
}
.tile:hover {
  border-color: rgba(231, 184, 90, 0.3);
}
.tile img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: saturate(0.88) brightness(0.92);
}
.tile__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
  color: var(--paper);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.tile__title {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--neon-gold-glow);
  display: block;
}
.tile__sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255, 240, 215, 0.82);
}
.tile:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}
.tile:hover .tile__cap {
  opacity: 1; transform: translateY(0);
}

/* ─── CONTACT (postcard) ─────────────────────────────────────── */
.contact {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  z-index: 2;
}

.postcard {
  max-width: 1080px;
  margin: 0 auto;
  background: #f4ebd6;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 460px;
  position: relative;
  box-shadow:
    0 36px 60px -24px rgba(40, 25, 12, 0.45),
    0 12px 24px -8px rgba(40, 25, 12, 0.28),
    inset 0 0 0 1px rgba(40, 25, 12, 0.08);
  transform: rotate(-0.7deg);
  background-image:
    radial-gradient(at 6% 8%, rgba(196, 167, 110, 0.18), transparent 40%),
    radial-gradient(at 92% 92%, rgba(214, 54, 43, 0.10), transparent 50%);
}
.postcard::after {
  /* dashed center divider */
  content: "";
  position: absolute;
  top: 7%; bottom: 7%;
  left: 50%; width: 2px;
  background-image: linear-gradient(180deg, var(--ink) 50%, transparent 50%);
  background-size: 2px 9px;
  opacity: 0.35;
}

.postcard__left {
  padding: clamp(1.6rem, 3.5vw, 3rem);
  display: flex; flex-direction: column; justify-content: space-between;
}
.postcard__greeting {
  font-size: 1.6rem;
  color: var(--ink-2);
  margin-bottom: -0.4rem;
}
.postcard__city {
  font-family: var(--shade);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  letter-spacing: 0.02em;
  color: var(--neon-red);
  line-height: 0.95;
  text-shadow: 3px 3px 0 var(--neon-gold);
}
.postcard__tag {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}
.postcard__note {
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 2rem 0 0;
}
.postcard__sig {
  font-size: 2.2rem;
  color: var(--neon-red);
  margin-top: 1.2rem;
}

.postcard__right {
  padding: clamp(1.6rem, 3.5vw, 3rem);
  position: relative;
}

.postcard__stamp {
  position: absolute;
  top: 1.6rem; right: 1.8rem;
  width: 112px; height: 138px;
  padding: 7px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(40, 25, 12, 0.18);
  outline: 2px dashed rgba(40, 25, 12, 0.22);
  outline-offset: 4px;
}
.postcard__stamp-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 60%, rgba(214, 54, 43, 0.10), transparent 70%),
    repeating-linear-gradient(45deg, rgba(214, 54, 43, 0.04) 0 6px, transparent 6px 12px),
    #f4ebd6;
  border: 2px solid var(--neon-red);
  padding: 8px 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
}
.postcard__stamp-kh {
  font-family: var(--shade);
  font-size: 2.6rem;
  color: var(--neon-red);
  letter-spacing: 0.03em;
  margin-top: -2px;
}
.postcard__stamp-val {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--ink-2);
}
.postcard__stamp-cap {
  font-family: var(--display);
  font-size: 0.45rem;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}

.postcard__postmark {
  position: absolute;
  top: 4.6rem; right: 9.5rem;
  width: 124px; height: 124px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  transform: rotate(-9deg);
  opacity: 0.55;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  padding: 8px;
  gap: 2rem;
}
.postcard__postmark::before, .postcard__postmark::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: var(--ink);
}
.postcard__postmark::before { top: 38%; }
.postcard__postmark::after  { top: 60%; }
.postcard__postmark span { background: #f4ebd6; padding: 0 4px; position: relative; z-index: 1; }

.postcard__address {
  position: absolute;
  bottom: 1.6rem; left: clamp(1.6rem, 3.5vw, 3rem); right: clamp(1.6rem, 3.5vw, 3rem);
  display: flex; flex-direction: column; gap: 0.55rem;
}
.postcard__line {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: end;
  padding: 0.4rem 0 0.5rem;
  border-bottom: 1px solid var(--ink-soft);
  transition: border-color 0.3s ease;
}
a.postcard__line:hover { border-bottom-color: var(--neon-red); }
.postcard__label {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--neon-red);
}
.postcard__val {
  font-family: var(--body);
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .postcard { grid-template-columns: 1fr; }
  .postcard::after { display: none; }
  .postcard__right { min-height: 340px; }
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.foot {
  position: relative;
  background: var(--night);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) 2.5rem;
  text-align: center;
}
.foot__sign {
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 1.6rem 2.2rem;
  border: 2px solid var(--neon-red);
  background: radial-gradient(ellipse at center, rgba(214, 54, 43, 0.10), transparent 70%);
  box-shadow:
    0 0 12px rgba(214, 54, 43, 0.5),
    0 0 32px rgba(214, 54, 43, 0.25),
    inset 0 0 16px rgba(214, 54, 43, 0.15);
}
.foot__line1 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  letter-spacing: 0.18em;
  color: #fff5e8;
  text-shadow:
    0 0 4px #ffd5cb,
    0 0 14px var(--neon-red-glow),
    0 0 28px var(--neon-red);
}
.foot__line2 {
  font-family: var(--hand);
  font-size: 1.3rem;
  color: var(--neon-gold-glow);
  opacity: 0.85;
}
.foot__meta {
  margin-top: 3rem;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(240, 230, 210, 0.45);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

/* ─── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(8, 6, 4, 0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 4rem 2rem 2rem;
}
.lightbox.is-open { display: flex; }

.lightbox__frame {
  margin: 0;
  max-width: min(1180px, 90vw);
  max-height: 86vh;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.2rem;
}
.lightbox__frame img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #f0e7d3;
  padding: 14px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.lightbox__frame figcaption {
  text-align: center;
  color: var(--paper);
}
.lightbox__title {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--neon-gold-glow);
}
.lightbox__meta {
  margin-top: 0.4rem;
  font-family: var(--body);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(240, 230, 210, 0.65);
  display: flex; gap: 1.4rem; justify-content: center;
}
.lightbox__counter { font-family: var(--display); font-style: normal; letter-spacing: 0.16em; }

.lightbox__close, .lightbox__nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(255, 240, 215, 0.25);
  color: var(--paper);
  width: 48px; height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s ease;
  display: grid; place-items: center;
}
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--neon-red); border-color: var(--neon-red);
}

/* ─── reveal-on-scroll ───────────────────────────────────────── */
/* opacity-only — using transform would clobber the card tilt rotations */
.reveal {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.reveal.is-visible { opacity: 1; }
/* Non-tilted elements get a gentle slide too */
.section-head.reveal, .story__title.reveal, .story__lede.reveal,
.pullquote.reveal, .polaroid.reveal, .postcard.reveal, .foot__sign.reveal {
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(24px);
}
.section-head.reveal.is-visible, .story__title.reveal.is-visible, .story__lede.reveal.is-visible,
.pullquote.reveal.is-visible, .polaroid.reveal.is-visible, .postcard.reveal.is-visible, .foot__sign.reveal.is-visible {
  transform: none;
}
/* the polaroid itself has a -2.2deg tilt; preserve it after reveal */
.polaroid.reveal { transform: translateY(24px) rotate(-2.2deg); }
.polaroid.reveal.is-visible { transform: rotate(-2.2deg); }
.postcard.reveal { transform: translateY(24px) rotate(-0.7deg); }
.postcard.reveal.is-visible { transform: rotate(-0.7deg); }

/* respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
