/* ==========================================================
   THE TESTICLE TABERNACLE — reggie built this himself
   (with some help from a fella at the kingman library)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rye&family=Special+Elite&family=Permanent+Marker&family=Lora:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --ink: #241610;
  --ink-soft: rgba(36, 22, 16, 0.8);
  --dust: #E4CFA3;
  --cardboard: #D9B173;
  --paper: #F4E6C3;
  --oxblood: #8E2A21;
  --busred: #C0392B;
  --turquoise: #24756D;
  --signyellow: #F0C231;
  --ochre: #C1892B;
  --whitewash: #FBF3DD;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--dust);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(240, 194, 49, 0.12), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(142, 42, 33, 0.07), transparent 50%),
    repeating-linear-gradient(45deg, rgba(36,22,16,0.02) 0 2px, transparent 2px 6px);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--oxblood); }

h1, h2, h3 { font-family: 'Rye', 'Fraunces', serif; font-weight: 400; line-height: 1.08; }
h4 { font-family: 'Special Elite', monospace; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px; }

/* wobbly hand-painted edges */
.wobble, .btn, .board, .exhibit-card, .merch-card, .program, .contact-form, .policy-box, .pull-plaque {
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

/* tilts */
.tilt-l { transform: rotate(-1.4deg); }
.tilt-r { transform: rotate(1.2deg); }
.tilt-l2 { transform: rotate(-0.7deg); }
.tilt-r2 { transform: rotate(0.8deg); }

/* tape strips */
.tape { position: relative; }
.tape::before {
  content: '';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 110px; height: 28px;
  background: rgba(240, 226, 180, 0.65);
  border-left: 1px dashed rgba(36,22,16,0.2);
  border-right: 1px dashed rgba(36,22,16,0.2);
  box-shadow: 0 2px 4px rgba(36,22,16,0.12);
  z-index: 3;
}

/* scrawled marker notes */
.scrawl {
  font-family: 'Permanent Marker', cursive;
  color: var(--oxblood);
  font-size: 1.05rem;
  transform: rotate(-2deg);
  display: inline-block;
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--signyellow);
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Special Elite', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  padding: 9px 0;
  border-bottom: 4px dashed var(--signyellow);
}
.ticker-track { display: inline-block; padding-left: 100%; animation: ticker 36s linear infinite; }
.ticker-track span { margin: 0 2em; }
.ticker-track span::after { content: "★"; margin-left: 2em; color: var(--busred); }
@keyframes ticker { to { transform: translateX(-100%); } }

/* ---------- navigation ---------- */
.site-nav {
  background: var(--paper);
  border-bottom: 4px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 3px 0 var(--oxblood), 0 6px 14px rgba(36,22,16,0.18);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink); }
.brand img {
  height: 56px; width: 56px; object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 50% 40% 55% 45%;
  transform: rotate(-3deg);
}
.brand-name {
  font-family: 'Rye', serif;
  font-size: 1.18rem;
  line-height: 1;
  color: var(--oxblood);
}
.brand-sub {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--turquoise);
  margin-top: 4px;
  transform: rotate(-1deg);
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-family: 'Special Elite', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 2px dashed transparent;
}
.nav-links a:hover { color: var(--oxblood); border-bottom-color: var(--ochre); }
.nav-links a.active { color: var(--oxblood); border-bottom-color: var(--oxblood); }
.nav-cta {
  background: var(--signyellow);
  color: var(--ink) !important;
  border: 3px solid var(--ink) !important;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  padding: 9px 16px;
  transform: rotate(-1.5deg);
  font-family: 'Permanent Marker', cursive !important;
  letter-spacing: 0.02em !important;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav-cta:hover { transform: rotate(-1.5deg) translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.menu-btn {
  display: none;
  background: var(--signyellow);
  border: 3px solid var(--ink);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.8rem;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}
.mobile-menu { display: none; border-top: 3px dashed var(--ink); background: var(--paper); }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 22px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Special Elite', monospace;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  border-bottom: 1px dashed rgba(36,22,16,0.3);
}
.mobile-menu a:hover { background: var(--dust); color: var(--oxblood); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--whitewash);
}
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(24,12,6,0.5), rgba(24,12,6,0.3) 45%, rgba(24,12,6,0.75));
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 80px 22px; }
.hero-kicker {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  background: var(--busred);
  border: 3px solid var(--whitewash);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  padding: 8px 24px;
  margin-bottom: 26px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}
.hero h1 {
  font-size: clamp(2.7rem, 8.5vw, 5.8rem);
  text-shadow: 4px 4px 0 rgba(0,0,0,0.55);
  color: var(--signyellow);
  transform: rotate(-1deg);
}
.hero h1 em { font-style: normal; color: var(--whitewash); }
.hero-tagline {
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  margin-top: 20px;
  font-style: italic;
  color: rgba(251,243,221,0.95);
}
.hero-sub {
  font-family: 'Special Elite', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  margin-top: 14px;
  color: rgba(251,243,221,0.75);
}
.hero-actions { margin-top: 36px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero.short { min-height: 54vh; }
.hero.short .hero-content { padding: 66px 22px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 14px 28px;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-gold { background: var(--signyellow); color: var(--ink); box-shadow: 5px 5px 0 var(--ink); transform: rotate(-1deg); }
.btn-gold:hover { transform: rotate(-1deg) translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn-ghost { background: rgba(24,12,6,0.35); color: var(--whitewash); border-color: var(--whitewash); transform: rotate(0.8deg); box-shadow: 5px 5px 0 rgba(0,0,0,0.4); }
.btn-ghost:hover { background: var(--whitewash); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--signyellow); box-shadow: 5px 5px 0 var(--oxblood); transform: rotate(-0.8deg); }
.btn-dark:hover { transform: rotate(-0.8deg) translate(-2px,-2px); box-shadow: 7px 7px 0 var(--oxblood); }
.btn-oxblood { background: var(--busred); color: var(--whitewash); box-shadow: 5px 5px 0 var(--ink); transform: rotate(0.6deg); }
.btn-oxblood:hover { transform: rotate(0.6deg) translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }

/* ---------- stat band ---------- */
.stat-band {
  background: var(--oxblood);
  color: var(--paper);
  padding: 30px 0;
  border-top: 4px dashed var(--signyellow);
  border-bottom: 4px dashed var(--signyellow);
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat-num { font-family: 'Rye', serif; font-size: 2.3rem; color: var(--signyellow); }
.stat-grid > div:nth-child(odd) .stat-num { transform: rotate(-2deg); }
.stat-grid > div:nth-child(even) .stat-num { transform: rotate(1.5deg); }
.stat-label { font-family: 'Special Elite', monospace; font-size: 0.66rem; letter-spacing: 0.2em; margin-top: 4px; color: rgba(244,230,195,0.85); }

/* ---------- sections ---------- */
.section { padding: 76px 0; }
.section-tight { padding: 52px 0; }
.museum-label {
  display: inline-block;
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  background: var(--ink);
  color: var(--signyellow);
  padding: 6px 16px;
  margin-bottom: 16px;
  transform: rotate(-1.5deg);
  border-radius: 3px 12px 5px 14px;
}
.museum-label.gold { background: var(--signyellow); color: var(--ink); transform: rotate(1deg); }
.section-title { font-size: clamp(1.9rem, 4.6vw, 3rem); color: var(--ink); }
.section-title .accent { color: var(--oxblood); }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }

.rule-ornament { border: none; height: 4px; margin: 24px 0; max-width: 220px;
  background: repeating-linear-gradient(90deg, var(--oxblood) 0 14px, transparent 14px 22px); }
.rule-ornament.center { margin-left: auto; margin-right: auto; }

/* ---------- founder quote ---------- */
.founder-quote { text-align: center; max-width: 760px; margin: 0 auto; }
.founder-quote blockquote {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
}
.founder-attrib { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.founder-attrib img {
  width: 66px; height: 66px;
  border-radius: 50% 45% 55% 48%;
  object-fit: cover; object-position: top;
  border: 3px solid var(--ink);
  transform: rotate(-3deg);
}
.founder-attrib .name { font-family: 'Rye', serif; font-size: 1rem; }
.founder-attrib .role { font-family: 'Permanent Marker', cursive; font-size: 0.85rem; color: var(--oxblood); }
.founder-attrib .origin { font-family: 'Special Elite', monospace; font-size: 0.68rem; letter-spacing: 0.12em; color: var(--ink-soft); margin-top: 2px; }

/* ---------- exhibit cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.exhibit-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(36,22,16,0.35);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.card-grid .exhibit-card:nth-child(1) { transform: rotate(-1.5deg); }
.card-grid .exhibit-card:nth-child(2) { transform: rotate(1deg) translateY(10px); }
.card-grid .exhibit-card:nth-child(3) { transform: rotate(-0.6deg); }
.card-grid .exhibit-card:hover { transform: rotate(0deg) translateY(-4px); }
.exhibit-plate {
  background: var(--cardboard);
  border-bottom: 3px dashed var(--ink);
  padding: 28px 22px;
  text-align: center;
  border-radius: 255px 15px 0 0 / 15px 225px 0 0;
}
.exhibit-plate .jar { font-family: 'Rye', serif; font-size: 2rem; color: var(--oxblood); }
.exhibit-plate .acc-no { font-family: 'Special Elite', monospace; font-size: 0.66rem; letter-spacing: 0.18em; color: var(--ink-soft); margin-top: 8px; }
.exhibit-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.exhibit-body h3 { font-size: 1.15rem; }
.exhibit-species { font-family: 'Special Elite', monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--turquoise); margin: 6px 0 12px; }
.exhibit-body p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.exhibit-foot {
  margin-top: 18px; padding-top: 14px;
  border-top: 2px dashed rgba(36,22,16,0.3);
  display: flex; justify-content: space-between;
  font-family: 'Special Elite', monospace;
  font-size: 0.66rem; letter-spacing: 0.08em;
}
.exhibit-foot .status { font-family: 'Permanent Marker', cursive; color: var(--oxblood); transform: rotate(-2deg); }

/* ---------- dark sections ---------- */
.dark-section { background: var(--ink); color: var(--paper); position: relative;
  border-top: 6px solid var(--oxblood); border-bottom: 6px solid var(--oxblood); }
.dark-section .section-title { color: var(--signyellow); }
.dark-section .lede { color: rgba(244,230,195,0.85); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-img { position: relative; }
.split-img img {
  border: 4px solid var(--paper);
  border-radius: 15px 255px 15px 225px / 225px 15px 255px 15px;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.45);
  transform: rotate(-1.5deg);
}
.split-img .img-tag {
  position: absolute; bottom: -16px; right: -8px;
  background: var(--signyellow);
  color: var(--ink);
  font-family: 'Permanent Marker', cursive;
  font-size: 0.78rem;
  padding: 8px 16px;
  transform: rotate(2deg);
  border: 2px solid var(--ink);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

/* ---------- fund meter ---------- */
.fund-meter { margin-top: 28px; }
.fund-row { display: flex; justify-content: space-between; font-family: 'Special Elite', monospace; font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: 8px; }
.fund-row .goal { color: var(--signyellow); }
.fund-track { height: 18px; background: rgba(244,230,195,0.12); border: 2px dashed rgba(244,230,195,0.5); border-radius: 20px 8px 18px 6px; transform: rotate(-0.4deg); }
.fund-fill { height: 100%; width: 7.5%; background: var(--signyellow); border-radius: 20px 4px 14px 4px; }
.fund-note { font-family: 'Permanent Marker', cursive; font-size: 0.85rem; margin-top: 10px; color: var(--signyellow); transform: rotate(-1deg); display: inline-block; }

/* ---------- tenets ---------- */
.tenet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; text-align: center; }
.tenet .tenet-num {
  font-family: 'Rye', serif;
  font-size: 1.7rem;
  color: var(--paper);
  background: var(--oxblood);
  border: 3px solid var(--ink);
  border-radius: 50% 44% 52% 46%;
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 4px 4px 0 rgba(36,22,16,0.3);
}
.tenet:nth-child(1) .tenet-num { transform: rotate(-4deg); }
.tenet:nth-child(2) .tenet-num { transform: rotate(3deg); }
.tenet:nth-child(3) .tenet-num { transform: rotate(-2deg); }
.tenet h3 { font-size: 1.1rem; margin-bottom: 10px; }
.tenet p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--turquoise);
  color: var(--whitewash);
  text-align: center;
  border-top: 5px dashed var(--ink);
  border-bottom: 5px dashed var(--ink);
}
.cta-band .section-title { color: var(--whitewash); text-shadow: 3px 3px 0 rgba(0,0,0,0.25); transform: rotate(-1deg); }
.cta-band .lede { color: rgba(251,243,221,0.92); margin: 16px auto 0; }
.cta-actions { margin-top: 32px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- prose ---------- */
.prose { max-width: 680px; margin: 0 auto; }
.prose p { margin-bottom: 1.35em; font-size: 1.08rem; }
.prose p.big { font-size: 1.28rem; font-weight: 600; line-height: 1.5; }
.pull-plaque {
  border: 3px solid var(--ink);
  background: var(--signyellow);
  padding: 30px 34px;
  margin: 2.2em 0;
  text-align: center;
  box-shadow: 7px 7px 0 rgba(36,22,16,0.3);
  transform: rotate(-1.2deg);
}
.pull-plaque p { font-family: 'Permanent Marker', cursive; font-size: 1.3rem; line-height: 1.45; margin: 0; color: var(--ink); }
.pull-plaque cite { display: block; font-family: 'Special Elite', monospace; font-style: normal; font-size: 0.7rem; letter-spacing: 0.16em; margin-top: 12px; color: var(--ink-soft); }

/* ---------- polaroid portrait ---------- */
.polaroid {
  background: var(--whitewash);
  border: 1px solid rgba(36,22,16,0.25);
  padding: 12px 12px 14px;
  box-shadow: 6px 8px 0 rgba(36,22,16,0.28);
  transform: rotate(2.2deg);
  width: min(300px, 80vw);
  float: right;
  margin: 6px 0 22px 34px;
  position: relative;
}
.polaroid::before {
  content: '';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 96px; height: 26px;
  background: rgba(240, 226, 180, 0.75);
  border-left: 1px dashed rgba(36,22,16,0.2);
  border-right: 1px dashed rgba(36,22,16,0.2);
  box-shadow: 0 2px 4px rgba(36,22,16,0.15);
}
.polaroid img { width: 100%; border: 1px solid rgba(36,22,16,0.2); }
.polaroid figcaption {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.92rem;
  color: var(--ink);
  text-align: center;
  margin-top: 10px;
  transform: rotate(-1deg);
}
@media (max-width: 640px) {
  .polaroid { float: none; margin: 0 auto 28px; }
}

/* ---------- oath ---------- */
.oath-list { list-style: none; max-width: 620px; margin: 0 auto; counter-reset: oath; }
.oath-list li {
  counter-increment: oath;
  position: relative;
  padding: 18px 0 18px 74px;
  border-bottom: 2px dashed rgba(244,230,195,0.35);
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.15rem;
}
.oath-list li:nth-child(odd) { transform: rotate(-0.5deg); }
.oath-list li:nth-child(even) { transform: rotate(0.5deg); }
.oath-list li::before {
  content: counter(oath);
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  font-family: 'Rye', serif;
  font-size: 1.2rem;
  color: var(--ink);
  background: var(--signyellow);
  border: 2px solid var(--ink);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50% 44% 52% 46%;
}

/* ---------- tour table ---------- */
.tour-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  box-shadow: 7px 7px 0 rgba(36,22,16,0.3);
  border: 3px solid var(--ink);
}
.tour-table th {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-align: left;
  background: var(--ink);
  color: var(--signyellow);
  padding: 14px 18px;
}
.tour-table td { padding: 16px 18px; border-bottom: 2px dashed rgba(36,22,16,0.2); font-size: 0.95rem; vertical-align: top; }
.tour-table tr:last-child td { border-bottom: none; }
.tour-table .date { font-family: 'Permanent Marker', cursive; font-size: 0.85rem; white-space: nowrap; color: var(--oxblood); }
.tour-table .venue { font-weight: 700; font-family: 'Lora', serif; }
.tour-table .note { color: var(--ink-soft); font-size: 0.88rem; }
.tour-badge {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.7rem;
  padding: 3px 10px;
  border: 2px solid currentColor;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  transform: rotate(-2deg);
}
.tour-badge.confirmed { color: var(--turquoise); }
.tour-badge.homecoming { color: var(--busred); background: rgba(192,57,43,0.1); }

/* ---------- merch ---------- */
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.merch-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(36,22,16,0.35);
  transition: transform 0.2s;
}
.merch-grid .merch-card:nth-child(3n+1) { transform: rotate(-1.3deg); }
.merch-grid .merch-card:nth-child(3n+2) { transform: rotate(0.9deg) translateY(8px); }
.merch-grid .merch-card:nth-child(3n) { transform: rotate(-0.5deg); }
.merch-grid .merch-card:hover { transform: rotate(0deg) translateY(-4px); }
.merch-card .merch-img { aspect-ratio: 1 / 0.85; overflow: hidden; border-bottom: 3px dashed var(--ink); border-radius: 255px 15px 0 0 / 15px 225px 0 0; }
.merch-card .merch-img img { width: 100%; height: 100%; object-fit: cover; }
.merch-body { padding: 20px 22px 24px; }
.merch-body h3 { font-size: 1.02rem; }
.merch-desc { font-size: 0.88rem; color: var(--ink-soft); margin: 8px 0 14px; }
.merch-foot { display: flex; align-items: center; justify-content: space-between; }
.merch-price { font-family: 'Rye', serif; font-size: 1.25rem; color: var(--oxblood); transform: rotate(-2deg); }
.merch-tag { font-family: 'Permanent Marker', cursive; font-size: 0.68rem; color: var(--turquoise); transform: rotate(1deg); }

/* ---------- programs / policy ---------- */
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.program {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 32px 32px 36px;
  box-shadow: 7px 7px 0 rgba(36,22,16,0.3);
}
.program { transform: rotate(-0.8deg); }
.program.alt { transform: rotate(0.8deg) translateY(12px); border-color: var(--turquoise); box-shadow: 7px 7px 0 rgba(36,109,101,0.4); }
.program h3 { font-size: 1.25rem; margin-bottom: 6px; }
.program .program-sub { font-family: 'Special Elite', monospace; font-size: 0.68rem; letter-spacing: 0.16em; color: var(--ink-soft); margin-bottom: 16px; }
.program ol { margin: 16px 0 0 20px; }
.program ol li { margin-bottom: 12px; font-size: 0.96rem; }
.policy-box {
  background: var(--ink);
  color: var(--paper);
  padding: 34px 36px;
  border: 3px dashed var(--signyellow);
  transform: rotate(-0.5deg);
}
.policy-box h3 { color: var(--signyellow); font-size: 1.2rem; margin-bottom: 14px; }
.policy-box ul { list-style: none; }
.policy-box li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px dashed rgba(244,230,195,0.25); font-size: 0.96rem; }
.policy-box li::before { content: "★"; position: absolute; left: 2px; color: var(--signyellow); }
.policy-box li:last-child { border-bottom: none; }

/* ---------- the census (gotta keep 'em all) ---------- */
.census-intro { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.census-block { margin-bottom: 38px; }
.census-block h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transform: rotate(-1deg);
}
.census-block h3 .count { font-family: 'Special Elite', monospace; font-size: 0.75rem; letter-spacing: 0.14em; color: var(--ink-soft); margin-left: 10px; }
.census-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: 'Special Elite', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border: 2px solid var(--ink);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  background: var(--paper);
  color: var(--ink);
}
.census-chips .chip:nth-child(odd) { transform: rotate(-1.2deg); }
.census-chips .chip:nth-child(even) { transform: rotate(1deg); }
.chip.got { background: var(--paper); }
.chip.got::before { content: "✔ "; color: var(--turquoise); font-weight: bold; }
.chip.want { background: transparent; border-style: dashed; color: var(--ink-soft); }
.chip.want::before { content: "☐ "; color: var(--oxblood); }
.chip.dream { background: var(--signyellow); border-width: 3px; font-weight: bold; box-shadow: 3px 3px 0 rgba(36,22,16,0.3); }
.chip.dream::before { content: "★ "; color: var(--oxblood); }
.chip.never { background: var(--ink); color: var(--paper); border-color: var(--oxblood); }
.chip.never::before { content: "✘ "; color: var(--busred); }
.census-note {
  font-family: 'Permanent Marker', cursive;
  color: var(--oxblood);
  font-size: 1rem;
  margin-top: 12px;
  transform: rotate(-0.8deg);
  display: inline-block;
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.contact-form {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 34px;
  box-shadow: 7px 7px 0 rgba(36,22,16,0.3);
  transform: rotate(-0.6deg);
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.8rem;
  margin-bottom: 7px;
  color: var(--oxblood);
  transform: rotate(-0.5deg);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  font-family: 'Special Elite', monospace;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px 3px 10px 4px;
  background: var(--whitewash);
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--oxblood); background: #fff; }
.contact-card { border-left: 5px solid var(--signyellow); padding: 4px 0 4px 22px; margin-bottom: 28px; transform: rotate(-0.3deg); }
.contact-card:nth-child(even) { border-left-color: var(--turquoise); transform: rotate(0.3deg); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p { font-size: 0.95rem; color: var(--ink-soft); }
.contact-card .mono { font-family: 'Special Elite', monospace; font-size: 0.85rem; color: var(--oxblood); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(244,230,195,0.75); padding: 58px 0 34px; border-top: 6px solid var(--oxblood); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 46px; width: 46px; object-fit: cover; border: 2px solid var(--signyellow); border-radius: 50% 44% 52% 46%; transform: rotate(-4deg); }
.footer-brand .fb-name { font-family: 'Rye', serif; color: var(--signyellow); line-height: 1.1; font-size: 0.95rem; }
.footer-brand .fb-sub { font-family: 'Permanent Marker', cursive; font-size: 0.62rem; margin-top: 4px; color: var(--turquoise); }
.site-footer h4 { font-family: 'Permanent Marker', cursive; font-weight: 400; font-size: 0.85rem; color: var(--signyellow); margin-bottom: 14px; transform: rotate(-1deg); }
.site-footer a { color: rgba(244,230,195,0.75); text-decoration: none; display: block; padding: 4px 0; font-size: 0.92rem; }
.site-footer a:hover { color: var(--signyellow); }
.footer-note { font-size: 0.9rem; max-width: 36ch; }
.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 2px dashed rgba(244,230,195,0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Special Elite', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
/* keep tilts after reveal */
.reveal.visible.tilt-l { transform: rotate(-1.4deg); }
.reveal.visible.tilt-r { transform: rotate(1.2deg); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .card-grid, .merch-grid, .tenet-grid { grid-template-columns: 1fr 1fr; }
  .split, .program-grid, .contact-grid { grid-template-columns: 1fr; }
  .split { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .program.alt { transform: rotate(0.8deg); }
}
@media (max-width: 600px) {
  .card-grid, .merch-grid, .tenet-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .tour-table th:nth-child(4), .tour-table td:nth-child(4) { display: none; }
  .hero { min-height: 76vh; }
  .card-grid .exhibit-card, .merch-grid .merch-card { transform: rotate(0deg); }
}
