/* What Could This Have Been? — Greenwich Peninsula imagination board
   Playful editorial / community-zine styling. No frameworks. */

/* Projekt Blackbird by Leonit Gashi — self-hosted, free for commercial use (via UNCUT.wtf) */
@font-face {
  font-family: "Project Blackbird";
  src: url("assets/projekt-blackbird.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --paper: #f6f1e7;
  --paper-2: #efe7d6;
  --ink: #1d1b16;
  --ink-soft: #4a463c;
  --river: #2f5d62;
  --river-light: #6ea2a3;
  --sun: #f4b942;
  --coral: #e8624a;
  --pink: #e98ab0;
  --sky: #88b7d5;
  --line: #d8cdb6;
  --tape: rgba(244, 185, 66, 0.55);
  --shadow: 6px 6px 0 rgba(29, 27, 22, 0.12);
  --font-display: "Project Blackbird", "Instrument Sans", ui-sans-serif, sans-serif; /* anchor: bold grotesk headlines */
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;                       /* accent: warm expressive serif */
  --font-grotesk: "Instrument Sans", ui-sans-serif, system-ui, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --font-head: var(--font-display);
  --font-poster: var(--font-grotesk);
  --font-hand: var(--font-grotesk);
  --font-body: var(--font-grotesk);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  background-image: none;
}
/* paper grain veil over everything */
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.3;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- sticker tags ---- */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: #fff;
  margin: 3px 4px 3px 0;
  transform: rotate(-1.5deg);
  white-space: nowrap;
}
.tag:nth-child(even) { transform: rotate(1.5deg); }
.card .thumb .imagined { display: none; }

/* ---- hero ---- */
header.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hero .kicker {
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--river);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1.0;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.hero h1 .squiggle {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--coral);
  letter-spacing: -0.025em;
  position: relative;
  display: inline-block;
  padding-right: 0.03em;
}
.hero h1 .squiggle::after {
  content: "";
  position: absolute; left: -1%; right: -1%; bottom: -0.04em; height: 0.16em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='14'%3E%3Cpath d='M3 9 Q 32 2 60 7 T 117 6' stroke='%23e8624a' stroke-width='5.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero .lede {
  max-width: 600px;
  font-size: clamp(19px, 2.5vw, 25px);
  font-family: var(--font-grotesk);
  font-weight: 500;
  color: var(--ink);
  margin: 18px 0 18px;
  line-height: 1.4;
}
.hero .lede strong {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  color: var(--coral); font-size: 1.08em;
}
.hero-caption {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--tape);
  padding: 6px 12px;
  transform: rotate(-1.5deg);
  border: 1.5px dashed var(--ink);
  margin-top: 6px;
}
.hero-sticker {
  position: absolute;
  left: -24px; bottom: -16px;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: var(--sun);
  border: 2.5px solid var(--ink);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  transform: rotate(-9deg);
  box-shadow: var(--shadow);
  z-index: 3;
}
@media (max-width: 560px) {
  .hero-sticker { width: 104px; height: 104px; font-size: 15px; left: 8px; bottom: 8px; }
}

/* full-width map hero: text overlaid on the "land" (top-left) */
.hero-media { position: relative; display: block; margin-top: -10px; }
.hero-bg { display: block; width: 100%; height: auto; }
.hero-text {
  position: absolute; z-index: 2;
  top: calc(10% + 70px);
  left: clamp(20px, 4vw, 180px);
  width: min(48%, 560px);
}
@media (max-width: 760px) {
  header.hero { display: flex; flex-direction: column; }
  .hero-text { position: static; order: 1; width: auto; min-width: 0; padding: 36px 24px 12px; text-align: center; }
  .hero-text .lede { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-media { order: 2; min-width: 0; margin-top: 0; overflow: hidden; }
  .hero-media .hero-bg { margin-top: 0; width: 100%; height: 132vw; object-fit: cover; object-position: right top; margin-left: 0; max-width: none; }
  .site-pulse { display: none; }
  .hero::before { display: none; }
  #board { margin-top: 0; }
}
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 26px 0 10px; }
.hero-btn {
  display: inline-block; background: var(--coral); color: #fff;
  font-family: var(--font-grotesk); font-weight: 700; font-size: 19px;
  padding: 16px 28px; border: 2px solid var(--ink); border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink); text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.12s ease;
}
.hero-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); filter: brightness(1.05); }
.hero-btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.hero-or { font-family: var(--font-grotesk); font-weight: 500; color: var(--ink-soft); text-decoration: none; }
.hero-or:hover { color: var(--coral); }

.scroll-cue { margin-top: 34px; font-weight: 700; color: var(--river); }
.scroll-cue span { display: inline-block; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---- generic section ---- */
section { padding: 64px 0; }
.section-label {
  font-family: var(--font-mono);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 12px; color: var(--coral); margin-bottom: 16px;
  display: inline-block;
}
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
h2 em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  color: var(--coral);
  letter-spacing: 0;
}
.grid-head { margin-bottom: 22px; }
.grid-head .arr { color: var(--river); font-family: var(--font-grotesk); font-weight: 700; }
.story p { max-width: 680px; font-size: 19px; }
.story p strong { background: linear-gradient(transparent 55%, var(--tape) 55%); }

/* ---- frame strip ---- */
.frame {
  background: var(--ink);
  color: var(--paper);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.frame p {
  max-width: 780px; margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(23px, 3.4vw, 38px);
  line-height: 1.18; text-align: center; letter-spacing: -0.005em;
}
.frame em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--sun); font-size: 1.06em;
}
.frame strong { color: var(--pink); font-weight: 400; }

/* ---- concept grid ---- */
#board { background: #fff; margin-top: -22%; padding-top: 32px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px 30px;
  padding-top: 14px;
}
.card {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:nth-child(3n) { transform: rotate(-1.4deg); }
.card:nth-child(3n+2) { transform: rotate(1.2deg); }
.card:nth-child(4n) { transform: rotate(0.8deg); }
.card:hover { transform: rotate(0) translateY(-5px) scale(1.015); box-shadow: 10px 10px 0 rgba(29,27,22,0.18); z-index: 2; }
/* bit of masking tape on each card */
.card::before { content: none; }

.card .thumb {
  height: 168px;
  position: relative;
  display: grid; place-items: center;
  border-bottom: 2.5px solid var(--ink);
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(29,27,22,0.55);
}
.card .imagined {
  position: absolute; left: 9px; top: 9px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: #fff; border: 1.5px solid var(--ink); padding: 4px 9px; transform: rotate(-2deg);
  box-shadow: 1px 1px 0 rgba(29,27,22,0.2);
}
.card .illus {
  position: absolute; right: 8px; bottom: 8px;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 400; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink);
  background: rgba(255,255,255,0.92); border: 1px dashed var(--ink);
  padding: 4px 8px; transform: rotate(1.5deg);
}
/* hand-drawn doodle thumbnails (scribble variant) */
.card .thumb .doodle {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; pointer-events: none;
}
.card .thumb.has-doodle { font-size: 0; }

.t-sand, .t-roller, .t-move, .t-shed, .t-market, .t-club, .t-ware, .t-book, .t-cinema, .t-play {
  background: #fcfbf7; /* near-white — colour comes from the scribbles */
}
.t-blank  { background: repeating-linear-gradient(45deg, #fff, #fff 12px, var(--paper-2) 12px, var(--paper-2) 24px); }
.t-community { background: #fcfbf7; }
.card .thumb img.doodle { object-fit: contain; padding: 10px; }
.load-more {
  display: block; margin: 10px auto 0; font-family: var(--font-mono); font-weight: 700;
  font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 12px 22px; border: 2.5px solid var(--ink); border-radius: 6px;
  background: #fff; box-shadow: var(--shadow); cursor: pointer;
}
.load-more:hover { background: var(--sun); }

.card .body { padding: 18px 20px 22px; }
.card .num {
  font-family: var(--font-mono); font-size: 12px; color: var(--river);
  font-weight: 700; line-height: 1; letter-spacing: 0.08em;
}
.card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; margin: 4px 0 5px; letter-spacing: -0.01em; line-height: 1.0;
}
.card .sub {
  font-family: var(--font-serif); font-style: italic; color: var(--coral); font-weight: 400;
  font-size: 18px; line-height: 1.18; margin-bottom: 11px;
}
.card p.desc { font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0 0 14px; }
.card p.desc em { font-family: var(--font-serif); font-style: italic; color: var(--ink); }
.card .tags { margin-top: 6px; }
.card .tags .tag { font-size: 11.5px; padding: 3px 8px; }

/* one-tap concept voting — full-width blocky button at the card bottom */
.card .body { flex: 1 1 auto; display: flex; flex-direction: column; }
.card .body p.desc { flex: 1 1 auto; } /* desc grows, so tags + vote sit on the baseline */
.vote {
  width: 100%; margin-top: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 14px 16px; border: 2.5px solid var(--ink); border-radius: 4px;
  background: var(--coral); color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.12s ease;
}
.vote:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); filter: brightness(1.05); }
.vote:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.vote.is-voted { background: var(--sun); color: var(--ink); border-color: var(--ink); filter: none; }
.vote .vlabel { display: inline-flex; align-items: center; gap: 9px; }
.vote .vlabel::before { content: "✷"; font-size: 15px; line-height: 1; }
.vote.is-voted .vlabel::before { content: "✓"; }
.vote .vcount {
  font-size: 14px; font-weight: 700; min-width: 2.4em; text-align: center;
  padding: 3px 0; border-radius: 999px; font-variant-numeric: tabular-nums;
  background: rgba(246, 241, 231, 0.18);
}
.vote.is-voted .vcount { background: rgba(29, 27, 22, 0.14); }

/* get-involved ladder */
.ways-intro { max-width: 600px; color: var(--ink-soft); margin: 0 0 22px; }
.ways {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px; margin: 0 0 30px;
}
@media (max-width: 1024px) { .ways { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .ways { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .ways { grid-template-columns: 1fr; } }
.way {
  background: #fff; border: 2.5px solid var(--ink); border-radius: 6px;
  box-shadow: var(--shadow); padding: 18px 18px 20px; position: relative;
}
.way:nth-child(even) { transform: rotate(-0.7deg); }
.way:nth-child(3n) { transform: rotate(0.7deg); }
.way .wnum {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--river);
}
.way h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 23px; margin: 5px 0 7px; letter-spacing: -0.01em; line-height: 1;
}
.way h3 em, .ways-intro em { font-family: var(--font-serif); font-style: italic; color: var(--coral); }
.way p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); margin: 0 0 13px; }
.way p em { font-family: var(--font-serif); font-style: italic; color: var(--ink); }
.wgo {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; text-decoration: none;
  color: var(--ink); border-bottom: 2px solid var(--coral); padding-bottom: 2px;
}
.wgo-static { color: var(--ink-soft); border-bottom-color: var(--line); }

/* ---- tags key ---- */
.key-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px 26px; max-width: 900px; }
.key-grid div { font-size: 15px; color: var(--ink-soft); }
.key-grid b { color: var(--ink); }
.test-lede { max-width: 720px; font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 22px; }
.precedent {
  max-width: 720px; margin: 22px 0 0; padding: 14px 18px;
  font-size: 14.5px; line-height: 1.55; color: var(--ink-soft);
  border-left: 3px solid var(--sun); background: rgba(244,185,66,0.10);
}
.precedent b { color: var(--ink); }
.precedent a { color: var(--coral); font-weight: 600; text-decoration: none; }
.precedent a:hover { text-decoration: underline; }
.test-closer {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(21px, 2.8vw, 30px); line-height: 1.08; letter-spacing: -0.01em;
  color: var(--ink); margin: 24px 0 0; max-width: 760px;
}
.action-bridge { margin: 20px 0 0; font-size: 14px; color: var(--ink-soft); }
.action-bridge a { color: var(--coral); font-weight: 600; }
.reveal { position: relative; background: linear-gradient(90deg, #ffffff 0 38%, #BCDFF1 38% 100%); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); overflow: hidden; min-height: 480px; }
.reveal-media { position: absolute; top: 0; bottom: 0; left: clamp(0px, 4vw, 72px); }
.reveal-bg { display: block; height: 100%; width: auto; max-width: none; }
.reveal-bg-v { display: none; }
.reveal-text { position: relative; z-index: 1; width: min(54%, 700px); margin-left: auto; padding: 76px clamp(20px, 5vw, 72px) 76px 24px; }
.reveal-body { max-width: 700px; }
@media (max-width: 820px) {
  .reveal { min-height: 0; background: #BCDFF1; display: flex; flex-direction: column; padding: 0; }
  .reveal-text { order: 1; min-width: 0; width: 100%; box-sizing: border-box; max-width: 620px; margin: 0 auto; padding: 28px 22px 18px; }
  .reveal-media { order: 2; min-width: 0; width: 100%; position: static; left: 0; }
  .reveal-bg { display: none; }
  .reveal-bg-v { display: block; width: 100%; height: 82vw; object-fit: cover; object-position: center bottom; }
}
.reveal-body p { font-size: 18px; line-height: 1.55; margin: 0 0 16px; color: var(--ink-soft); }
.reveal-body p strong { color: var(--ink); }
.reveal-body .reveal-punch {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(21px, 2.8vw, 30px); line-height: 1.12; letter-spacing: -0.01em;
  color: var(--ink); margin-top: 22px;
}
.deadline {
  max-width: 720px; margin: 28px 0 0; padding: 20px 22px;
  border: 2.5px solid var(--ink); border-radius: 6px; background: var(--sun);
  box-shadow: var(--shadow);
}
.deadline p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink); }
.deadline .deadline-links { margin-top: 12px; font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
.deadline .deadline-links a { color: var(--ink); }

/* ---- draw-your-idea pad ---- */
.drawpad { margin: 8px 0 22px; max-width: 640px; }
.drawpad-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.dp-title { font-family: var(--font-serif); font-style: italic; font-size: 23px; color: var(--coral); }
.dp-note { font-family: var(--font-mono); text-transform: uppercase; font-size: 11px; letter-spacing: 0.04em; color: var(--ink-soft); }
.drawpad-canvas {
  display: block; width: 100%; height: 340px; background: #fff;
  border: 2.5px solid var(--ink); border-radius: 4px; box-shadow: var(--shadow);
  touch-action: none; cursor: crosshair;
}
.drawpad-tools { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-top: 14px; }
.dp-group { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.dp-btn {
  cursor: pointer; font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 8px 13px; border: 2px solid var(--ink); border-radius: 4px; background: #fff; color: var(--ink);
}
.dp-btn.is-on { background: var(--ink); color: var(--paper); }
.dp-size {
  cursor: pointer; width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: 50%;
  background: #fff; display: grid; place-items: center; padding: 0;
}
.dp-size.is-on { background: var(--sun); }
.dp-size i { display: block; background: var(--ink); border-radius: 50%; }
.dp-color { cursor: pointer; width: 30px; height: 30px; border: 2px solid var(--ink); border-radius: 50%; padding: 0; }
.dp-color.is-on { box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--ink); }
.dp-or { display: flex; align-items: center; gap: 12px; margin: 8px 0 2px; color: var(--ink-soft); }
.dp-or::before, .dp-or::after { content: ""; flex: 1; height: 2px; background: var(--line); }
.dp-or span { font-family: var(--font-mono); text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; }

/* ---- submit form ---- */
.submit { background: var(--paper-2); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.submit .wrap { max-width: 680px; }
.submit form { max-width: none; }
.submit .drawpad { max-width: none; }
form { max-width: 640px; margin-top: 22px; }
label.f { display: block; font-weight: 700; margin: 16px 0 6px; }
label.f .opt { font-weight: 400; color: var(--ink-soft); font-size: 14px; }
input[type=text], input[type=email], textarea, select {
  width: 100%; padding: 12px 14px; font-size: 16px; font-family: var(--font-body);
  border: 2px solid var(--ink); border-radius: 4px; background: #fff;
}
textarea { min-height: 90px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  cursor: pointer; user-select: none;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 400; padding: 7px 12px; border-radius: 999px;
  border: 1.5px solid var(--ink); background: #fff;
}
.chip.on { background: var(--sun); }
.btn {
  margin-top: 22px; cursor: pointer;
  font-size: 13px; font-weight: 700; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 15px 26px; border: 2.5px solid var(--ink); border-radius: 4px;
  background: var(--coral); color: #fff; box-shadow: var(--shadow);
  transition: transform 0.1s;
}
.btn:active { transform: translate(3px,3px); box-shadow: none; }
.fineprint { font-size: 13px; color: var(--ink-soft); margin-top: 14px; max-width: 560px; }
.toast {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: var(--river); color: #fff; border-radius: 4px; font-weight: 700;
}
.toast.show { display: block; }

/* ---- spread ---- */
.spread .invite {
  background: #fff; border: 2.5px dashed var(--ink); border-radius: 6px;
  padding: 26px 28px; max-width: 760px; box-shadow: var(--shadow); transform: rotate(-0.5deg);
}
.spread .invite p { font-size: 17px; }
.share-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.share-row a {
  text-decoration: none; font-weight: 800; color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px; padding: 9px 18px; background: var(--sun);
  transform: rotate(-1deg);
}
.share-row a:nth-child(2){ background: var(--pink); transform: rotate(1.5deg); }
.share-row a:nth-child(3){ background: var(--sky); transform: rotate(-1.5deg); }

/* ---- disclaimer + footer ---- */
.disclaimer { background: var(--paper-2); }
.disclaimer .box {
  max-width: 760px; border: 1.5px solid var(--ink-soft); border-radius: 4px;
  padding: 22px 24px; font-size: 15px; color: var(--ink-soft); background: rgba(255,255,255,0.5);
}
.disclaimer .box strong { color: var(--ink); }
footer {
  background: var(--ink); color: var(--paper); padding: 56px 0; border-top: 3px solid var(--ink);
}
footer .big {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 4vw, 44px); line-height: 1.1; max-width: 760px;
  letter-spacing: -0.01em;
}
footer .big em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--sun);
}
footer .meta { margin-top: 22px; color: var(--river-light); font-size: 15px; }
footer a { color: var(--sun); }

/* ---- orientation map ---- */
.mapband { padding: 12px 0 4px; }
.peninsula-map { margin: 0 auto; max-width: 780px; text-align: center; }
.map-frame {
  position: relative; display: inline-block; width: 100%;
  background: #fff; border: 2px solid var(--ink);
  border-radius: 6px; box-shadow: var(--shadow); overflow: hidden;
}
.map-frame img { display: block; width: 100%; height: auto; }
/* soft glow drawing the eye to the red "?" site; nudge with --px/--py inline */
.site-pulse {
  position: absolute; left: var(--px, 68%); top: var(--py, 62%);
  width: 11%; aspect-ratio: 1 / 1; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(232, 98, 74, 0.40) 0%, rgba(232, 98, 74, 0) 62%);
  animation: sitepulse 2.6s ease-in-out infinite;
}
@keyframes sitepulse {
  0%, 100% { opacity: 0.22; transform: translate(-50%, -50%) scale(0.82); }
  50%      { opacity: 0.66; transform: translate(-50%, -50%) scale(1.18); }
}
.peninsula-map figcaption {
  margin: 12px auto 0; max-width: 640px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 15px; line-height: 1.5; color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .site-pulse { animation: none; opacity: 0.4; }
}
