/* ─────────────────────────────────────────────────────────────────────────
   Maidens of Mischief — "Gilded Hours" site stylesheet
   Multi-page site styles. Used on every page.
   ───────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Cinzel:wght@400;500;600;700&family=Cinzel+Decorative:wght@400;700;900&display=swap');

/* ── Reset + tokens ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:        #0a0a0d;
  --bg-2:      #111114;
  --panel:     #15151a;
  --velvet:    #1a1626;
  --champagne: #d6b97a;
  --gold-edge: #f4dca8;
  --gold-deep: #b08035;
  --copper:    #8a6022;
  --ink:       #f5f0e6;
  --ink-soft:  rgba(245,240,230,.72);
  --ink-mute:  rgba(245,240,230,.55);
  --muted:     #877f70;
  --rule:      rgba(214,185,122,.16);
  --rule-2:    rgba(214,185,122,.28);

  --page-pad: 80px;
  --section-y: 130px;

  --display: 'Cormorant Garamond', Georgia, serif;
  --caps:    'Cinzel', serif;
  --body:    'Cormorant Garamond', Georgia, serif;
  --deco:    'Cinzel Decorative', 'Cormorant Garamond', serif;
}

html, body {
  background:
    radial-gradient(ellipse 800px 600px at 75% 18%, rgba(214,185,122,.1), transparent 60%),
    radial-gradient(ellipse 700px 500px at 20% 60%, rgba(60,20,80,.18), transparent 70%),
    linear-gradient(180deg, #0a0a0d 0%, #0d0a14 50%, #06060a 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: transparent; border: 0; color: inherit; }

/* Cursor — global, hidden default, will be replaced by dot in JS */
body { cursor: none; }
a, button, input, textarea, select, label { cursor: none; }

/* ── Cursor dot + sparkle ────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #f3e1a3, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
@keyframes cursor-spark-fade {
  0%   { opacity: 1; transform: translate(-50%,-50%) rotate(0); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)); }
}

/* ── Glitter canvas ──────────────────────────────────────────────────── */
.glitter-canvas {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* ── Page chrome ─────────────────────────────────────────────────────── */
.site {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px var(--page-pad);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(10,10,13,.6), rgba(10,10,13,0));
  backdrop-filter: blur(6px);
}
.nav.solid {
  position: sticky;
  background: rgba(10,10,13,.85);
  border-bottom-color: var(--rule-2);
  padding-block: 20px;
}
.logo {
  display: flex; flex-direction: column;
  font-family: var(--display);
  color: var(--gold-edge);
  text-decoration: none;
  line-height: 1.05;
}
.logo .lockup {
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .04em;
}
.logo .sub {
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: .75;
  margin-top: 4px;
  font-style: normal;
}
.nav-links {
  display: flex; gap: 38px; list-style: none;
  font-family: var(--caps);
  font-size: 10.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  opacity: .82;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s, opacity .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-edge);
  border-bottom-color: var(--champagne);
  opacity: 1;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--caps);
  font-size: 10.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  border: 1px solid var(--champagne);
  color: var(--gold-edge);
  background: transparent;
  padding: 14px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { background: rgba(214,185,122,.08); transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-edge), var(--gold-deep));
  color: #0a0a0d;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(214,185,122,.25), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover { background: linear-gradient(180deg, #fff0c0, var(--gold-edge)); color: #0a0a0d; }
.btn-ghost { border-color: var(--rule-2); color: var(--ink); }
.btn-lg { padding: 18px 34px; font-size: 11px; }
.btn:disabled {
  opacity: .62;
  transform: none;
  box-shadow: none;
}

/* ── Typography helpers ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--caps);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--champagne);
}
.eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--champagne);
}
.eyebrow.no-line::before { display: none; }
.eyebrow-c {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--caps);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--champagne);
}
.eyebrow-c::before,
.eyebrow-c::after {
  content: ''; width: 40px; height: 1px; background: var(--champagne); opacity: .7;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: .95;
  color: var(--ink);
}
.display em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-edge) 0%, var(--champagne) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
h1.display { font-size: 104px; }
h2.display { font-size: 76px; }
h3.display { font-size: 42px; }

.lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 56ch;
}

/* ── Hero patterns ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 200px var(--page-pad) 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}
.hero-meta { margin-bottom: 40px; }
.hero h1 { margin-bottom: 36px; }
.hero p.lede { margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  height: 640px;
  border-radius: 2px;
  overflow: hidden;
  background: #0a0410;
}
.hero-art img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-art::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(214,185,122,.35);
  pointer-events: none;
  z-index: 6;
}

/* ── Hero — centered variant (used on inner pages) ───────────────────── */
.hero-centered {
  text-align: center;
  padding: 200px var(--page-pad) 100px;
}
.hero-centered .eyebrow,
.hero-centered .eyebrow-c { margin-bottom: 22px; }
.hero-centered h1 { font-size: 96px; margin: 0 auto 28px; max-width: 16ch; }
.hero-centered .lede { margin: 0 auto 40px; }
.hero-centered .hero-ctas { justify-content: center; }

/* ── Sections ────────────────────────────────────────────────────────── */
section {
  position: relative;
  padding: var(--section-y) var(--page-pad);
}
section.tight { padding-block: 90px; }

/* Divider between sections */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-2), transparent);
  margin: 0 var(--page-pad);
}

/* ── About / two-column ──────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 100px;
  align-items: center;
}
.two-col.flip { grid-template-columns: 1.05fr .95fr; }
.two-col h2.display { margin: 18px 0 28px; }
.two-col p { color: var(--ink-soft); margin-bottom: 18px; font-weight: 300; }
.two-col .image-frame { height: 580px; }

.image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: #0a0410;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(214,185,122,.35);
  pointer-events: none;
  z-index: 6;
}

/* ── Pillars (3-up info row) ─────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pillar { background: var(--bg); padding: 30px 26px; }
.pillar .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  color: var(--gold-edge);
  line-height: 1;
}
.pillar .title {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 16px 0 10px;
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ── Events calendar (timeline rows) ─────────────────────────────────── */
.events-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.events-head h2.display { font-size: 80px; }

.event-row {
  display: grid;
  grid-template-columns: 130px 1.4fr 1.6fr 200px 60px;
  gap: 40px;
  align-items: center;
  padding: 30px 12px;
  border-top: 1px solid var(--rule);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background .25s;
}
.event-row:last-child { border-bottom: 1px solid var(--rule); }
.event-row:hover { background: rgba(214,185,122,.04); }
.event-row .date {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-edge);
}
.event-row .date b {
  font-size: 46px; line-height: 1; font-weight: 400; font-style: normal;
  display: block;
  letter-spacing: -.02em;
}
.event-row .date span {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-top: 6px;
  font-style: normal;
}
.event-row .name {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.15;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.event-row .name .cat {
  display: block;
  font-family: var(--caps);
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}
.event-row .desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
}
.event-row .loc {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}
.event-row .loc b {
  display: block;
  color: var(--gold-edge);
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 11px;
}
.event-row .arrow {
  width: 42px; height: 42px;
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-edge);
  transition: all .25s;
}
.event-row:hover .arrow {
  background: var(--champagne);
  color: #0a0a0d;
  border-color: var(--champagne);
}

/* ── Curtain unveil ──────────────────────────────────────────────────── */
.unveil {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.veil {
  position: absolute; top: 0; bottom: 0;
  width: 51%;
  z-index: 5;
  pointer-events: none;
  transition: transform 1.1s cubic-bezier(.7, 0, .25, 1);
  background:
    radial-gradient(ellipse 70% 80% at 50% 30%, rgba(120,40,170,.22), transparent 70%),
    linear-gradient(180deg, #1a0a25 0%, #0a0410 45%, #1a0a25 100%);
}
.veil::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0) 0px, rgba(0,0,0,0) 11px,
      rgba(0,0,0,.32) 12px, rgba(0,0,0,0) 13px,
      rgba(0,0,0,0) 22px,
      rgba(255,255,255,.04) 23px, rgba(0,0,0,0) 24px),
    radial-gradient(ellipse 200% 100% at 50% 0%, rgba(214,185,122,.06), transparent 60%);
  pointer-events: none;
}
.veil::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 28px;
  background:
    linear-gradient(180deg, rgba(214,185,122,.35) 0%, rgba(214,185,122,.08) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 8px, rgba(0,0,0,.4) 8px, rgba(0,0,0,.4) 9px);
  border-bottom: 1px solid rgba(214,185,122,.35);
  box-shadow: 0 6px 14px rgba(0,0,0,.45);
}
.veil-l { left: 0;  box-shadow: inset -8px 0 22px rgba(0,0,0,.6), inset -1px 0 0 rgba(214,185,122,.18); }
.veil-r { right: 0; box-shadow: inset  8px 0 22px rgba(0,0,0,.6), inset  1px 0 0 rgba(214,185,122,.18); }
.unveil:hover .veil-l { transform: translateX(-101%); }
.unveil:hover .veil-r { transform: translateX(101%);  }

.veil-seam {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; transform: translateX(-50%);
  background: linear-gradient(180deg,
    transparent 0%, rgba(243,225,163,.4) 8%,
    var(--gold-edge) 50%, rgba(243,225,163,.4) 92%, transparent 100%);
  box-shadow: 0 0 24px rgba(233,196,106,.7), 0 0 6px rgba(255,240,180,.9);
  z-index: 6;
  pointer-events: none;
  transition: opacity .6s ease;
}
.unveil:hover .veil-seam { opacity: 0; }

.veil-hint {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold-edge);
  background: rgba(11,4,16,.55);
  padding: 12px 22px;
  border: 1px solid rgba(243,225,163,.5);
  border-radius: 2px;
  pointer-events: none;
  z-index: 8;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(214,185,122,.5);
  transition: opacity .55s ease, transform .8s cubic-bezier(.6,0,.3,1);
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
}
.veil-hint::before,
.veil-hint::after {
  content: '✦'; color: var(--gold-edge); margin: 0 12px; font-size: 9px; letter-spacing: 0;
}
.unveil:hover .veil-hint {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-12px);
}
.unveil > img,
.unveil > .unveil-body {
  transition: transform 1.2s cubic-bezier(.5,0,.2,1), filter 1.2s ease;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.unveil:hover > img,
.unveil:hover > .unveil-body { transform: scale(1.03); filter: brightness(1.08); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 80px var(--page-pad) 50px;
  border-top: 1px solid var(--rule);
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer h4 {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer a { color: var(--ink-soft); text-decoration: none; font-size: 15.5px; }
.footer a:hover { color: var(--gold-edge); }
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-edge);
  line-height: 1.4;
  max-width: 28ch;
  margin-top: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer-bottom .ornate { color: var(--champagne); margin: 0 8px; }

/* ── Page-specific helpers ───────────────────────────────────────────── */

/* Numbered list ornament (e.g. krewe history) */
.numbered {
  display: grid; gap: 24px;
}
.numbered .item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.numbered .item:last-child { border-bottom: 1px solid var(--rule); }
.numbered .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 48px;
  color: var(--gold-edge);
  line-height: 1;
}
.numbered h4 {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
}
.numbered p { color: var(--ink-soft); }

.mask-numbered .item {
  grid-template-columns: 94px 1fr;
  gap: 24px;
  align-items: start;
}
.mask-numbered .mask-num {
  width: 82px;
  min-height: 52px;
  display: grid;
  place-items: center;
  padding-top: 2px;
}
.mask-numbered .mask-num img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(214,185,122,.22));
}

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
.stat { background: var(--bg); padding: 36px 30px; text-align: center; }
.stat b {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  color: var(--gold-edge);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat span {
  display: block;
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 14px;
}

/* Page-title hero (no portrait, just text on a centered hero) */
.title-hero h1.display { font-size: 120px; line-height: .92; }

/* Schedule / itinerary list */
.itinerary { max-width: 880px; margin: 0 auto; }
.itinerary .row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.itinerary .row:last-child { border-bottom: 1px solid var(--rule); }
.itinerary .time {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-edge);
}
.itinerary .what h5 {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.itinerary .what p { color: var(--ink-soft); font-size: 16px; }

/* Cards (philanthropy partners, etc.) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: linear-gradient(180deg, rgba(20,18,28,.7), rgba(10,10,13,.7));
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
  text-decoration: none;
  color: inherit;
}
.card:hover { border-color: var(--rule-2); transform: translateY(-3px); }
.card .cover { height: 280px; background: #0a0410; position: relative; display: flex; align-items: center; justify-content: center; }
.card .cover img { width: 100%; height: 100%; object-fit: contain; }
.card .body { padding: 26px 28px 30px; }
.card .kicker {
  font-family: var(--caps);
  font-size: 9.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--champagne);
}
.card h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--gold-edge);
  margin: 10px 0 12px;
  line-height: 1.15;
}
.card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* Forms (Join page) */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20,18,28,.55), rgba(10,10,13,.55));
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 60px 70px;
  position: relative;
}
.form-wrap::before,
.form-wrap::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  border: 1px solid var(--gold-edge);
}
.form-wrap::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.form-wrap::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.field { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.field label {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 17px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-2);
  color: var(--ink);
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); font-style: italic; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold-edge); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.field-row .field { margin-bottom: 26px; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}
.tier {
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  cursor: none;
  transition: border-color .2s, background .2s;
  background: rgba(10,10,13,.4);
}
.tier:has(input:checked),
.tier.selected {
  border-color: var(--gold-edge);
  background: rgba(214,185,122,.06);
}
.tier input { position: absolute; opacity: 0; pointer-events: none; }
.tier .price {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  color: var(--gold-edge);
  line-height: 1;
}
.tier .tier-name {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 14px 0 8px;
}
.tier p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; }

.dues-panel {
  max-width: 920px;
  margin: 0 auto;
}

.dues-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.dues-card {
  min-height: 220px;
  padding: 44px 38px;
  background: rgba(10,10,13,.72);
}

.dues-label {
  font-family: var(--caps);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
}

.dues-price {
  margin: 18px 0 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--gold-edge);
}

.dues-card p {
  max-width: 24ch;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.5;
}

.dues-note {
  margin-top: 18px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 17px;
  font-style: italic;
}

.dues-photo-grid {
  max-width: 1080px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.photo-placeholder {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--rule-2);
  background:
    linear-gradient(135deg, rgba(214,185,122,.14), transparent 38%),
    radial-gradient(circle at 50% 20%, rgba(60,20,80,.32), transparent 56%),
    rgba(10,10,13,.72);
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(214,185,122,.22);
}

.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(45deg, transparent 48%, rgba(214,185,122,.14) 49%, rgba(214,185,122,.14) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(214,185,122,.12) 49%, rgba(214,185,122,.12) 51%, transparent 52%);
  opacity: .55;
}

.photo-placeholder span {
  position: relative;
  z-index: 1;
  font-family: var(--caps);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
}

.consent {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--ink-soft); font-weight: 300;
  margin-bottom: 30px;
}
.consent input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  margin-top: 4px;
  position: relative;
  flex-shrink: 0;
  background: transparent;
}
.consent input[type="checkbox"]:checked {
  background: var(--gold-edge);
  border-color: var(--gold-edge);
}
.consent input[type="checkbox"]:checked::after {
  content: '✦';
  position: absolute;
  inset: 0; display: grid; place-items: center;
  color: #0a0a0d;
  font-size: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
  font-style: italic;
}
.form-message.error { color: #ffb8a8; }
.form-message.success { color: var(--gold-edge); }

/* Form section labels & notes */
.form-section-label {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold-edge);
  padding: 18px 0 12px;
  margin: 18px 0 20px;
  border-top: 1px solid var(--rule-2);
  display: flex;
  align-items: center;
  gap: 14px;
}
.form-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule-2);
}
.form-section-note {
  font-size: 14.5px;
  color: var(--ink-mute);
  font-style: italic;
  margin: -12px 0 24px;
}

/* Required asterisk */
.req {
  color: var(--champagne);
  margin-left: 2px;
}

/* Policy list */
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.policy-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  background: rgba(10,10,13,.4);
  transition: background .2s;
}
.policy-item:last-child { border-bottom: 0; }
.policy-item:hover { background: rgba(214,185,122,.04); }
.policy-item strong {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 8px;
}
.policy-item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* Radio options */
.radio-row {
  display: flex;
  gap: 24px;
  align-items: center;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--ink-soft);
  cursor: pointer;
}
.radio-opt input[type="radio"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  background: transparent;
  transition: border-color .2s;
  cursor: pointer;
}
.radio-opt input[type="radio"]:checked {
  border-color: var(--gold-edge);
}
.radio-opt input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold-edge);
}


/* Admin CRM */
.admin-shell {
  max-width: 1480px;
  margin: 0 auto;
  padding: 150px var(--page-pad) 110px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 34px;
}
.admin-header h1 {
  margin: 14px 0 10px;
  font-size: 72px;
}
.admin-header p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 19px;
}
.admin-actions,
.admin-token-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-auth,
.admin-message,
.admin-stat,
.admin-table-wrap,
.admin-panel,
.admin-toolbar {
  background: rgba(10,10,13,.62);
  border: 1px solid var(--rule);
}

.admin-auth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: end;
  padding: 24px;
  margin-bottom: 22px;
}
.admin-auth h2,
.admin-panel h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--gold-edge);
}
.admin-auth p,
.admin-empty p {
  color: var(--ink-soft);
}

.admin-auth label,
.admin-toolbar label,
.admin-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-auth label,
.admin-toolbar label span,
.admin-panel label span {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--champagne);
}
.admin-auth input,
.admin-toolbar input,
.admin-toolbar select,
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  background: rgba(6,6,10,.72);
  color: var(--ink);
  padding: 10px 12px;
  font-family: var(--body);
  font-size: 17px;
  outline: none;
}
.admin-auth input:focus,
.admin-toolbar input:focus,
.admin-toolbar select:focus,
.admin-panel input:focus,
.admin-panel select:focus,
.admin-panel textarea:focus {
  border-color: var(--gold-edge);
}

.admin-message {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-style: italic;
}
.admin-message.error { color: #ffb8a8; border-color: rgba(255,184,168,.42); }
.admin-message.success { color: var(--gold-edge); }

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.admin-stat {
  padding: 18px 20px;
}
.admin-stat span {
  display: block;
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--champagne);
}
.admin-stat strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  color: var(--ink);
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px 220px;
  gap: 14px;
  padding: 18px;
  margin-bottom: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .85fr);
  gap: 24px;
  align-items: start;
}
.admin-table-wrap {
  overflow: auto;
  max-height: 760px;
}
.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(10,10,13,.96);
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--champagne);
}
.admin-table tbody tr {
  transition: background .18s, box-shadow .18s;
}
.admin-table tbody tr:hover,
.admin-table tbody tr.selected {
  background: rgba(214,185,122,.07);
}
.admin-table tbody tr:focus-visible {
  outline: 1px solid var(--gold-edge);
  outline-offset: -1px;
}
.admin-table td strong,
.admin-table td span {
  display: block;
}
.admin-table td strong {
  font-size: 17px;
  color: var(--ink);
}
.admin-table td span {
  color: var(--ink-mute);
  font-size: 14px;
}

.admin-badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--rule-2);
  padding: 4px 8px;
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.admin-badge.accepted,
.admin-badge.paid {
  border-color: rgba(214,185,122,.62);
  color: var(--gold-edge);
}
.admin-badge.unpaid,
.admin-badge.declined {
  border-color: rgba(255,184,168,.38);
  color: #ffb8a8;
}

.admin-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
}
.admin-empty {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 10px;
}
.admin-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.admin-detail-head h2 {
  margin-bottom: 4px;
}
.admin-detail-head p {
  color: var(--ink-soft);
}
.admin-detail-head > span {
  font-family: var(--display);
  font-size: 34px;
  font-style: italic;
  color: var(--gold-edge);
}
.admin-detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.admin-detail-meta div {
  border: 1px solid var(--rule);
  padding: 12px;
}
.admin-detail-meta span,
.admin-application h3 {
  display: block;
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champagne);
}
.admin-detail-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.admin-application {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.admin-application p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.admin-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.admin-textarea {
  margin-bottom: 14px;
}
.admin-panel textarea {
  min-height: 110px;
  resize: vertical;
}

/* Content editor */
.editor-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.editor-sidebar {
  position: sticky;
  top: 92px;
}
.editor-files {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.editor-file-button {
  width: 100%;
  border: 1px solid var(--rule);
  background: rgba(6,6,10,.52);
  color: var(--ink);
  padding: 14px;
  text-align: left;
}
.editor-file-button:hover,
.editor-file-button.selected {
  border-color: var(--gold-edge);
  background: rgba(214,185,122,.08);
}
.editor-file-button strong,
.editor-file-button span {
  display: block;
}
.editor-file-button strong {
  font-size: 16px;
}
.editor-file-button span {
  margin-top: 4px;
  color: var(--ink-mute);
  font-size: 12px;
}
.editor-main {
  position: static;
}
.editor-form-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.editor-form-head p {
  color: var(--ink-mute);
}
.editor-fieldset {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--rule);
}
.editor-fieldset legend {
  padding: 0 8px;
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  color: var(--gold-edge);
}
.editor-field {
  display: grid;
  gap: 8px;
}
.editor-field small {
  color: var(--ink-mute);
  font-size: 13px;
}
.editor-image-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}
.admin-panel .editor-upload-button {
  display: inline-flex;
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
}
.editor-upload-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}
.editor-list-items {
  display: grid;
  gap: 14px;
}
.editor-list-item {
  border: 1px solid var(--rule);
  background: rgba(6,6,10,.38);
  padding: 16px;
}
.editor-list-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.editor-list-head strong {
  color: var(--ink);
}
.editor-row-actions {
  display: inline-flex;
  gap: 6px;
}
.editor-row-actions button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule-2);
  background: rgba(10,10,13,.8);
  color: var(--ink);
}
.editor-row-actions button:disabled {
  opacity: .35;
}
.editor-image-preview {
  min-height: 80px;
  border: 1px solid var(--rule);
  display: grid;
  align-items: center;
  color: var(--ink-mute);
  overflow: hidden;
}
.editor-image-preview img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

/* Page wrapper for inner pages */
.intro-pad { padding-top: 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.section-head .eyebrow,
.section-head .eyebrow-c { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 24px; }
.section-head p { color: var(--ink-soft); font-size: 18px; line-height: 1.65; font-weight: 300; }

/* Image gallery (parade page) */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 14px;
}
.gallery .g1 { grid-row: 1 / 3; }
.gallery .img {
  background: #0a0410;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.gallery .img img { width: 100%; height: 100%; object-fit: cover; }

/* AI placeholder visual (for image regions before client supplies real photos) */
.ph {
  background:
    radial-gradient(ellipse at 30% 25%, rgba(214,185,122,.32), transparent 60%),
    radial-gradient(ellipse at 75% 60%, rgba(120,40,170,.4), transparent 65%),
    radial-gradient(ellipse at 50% 90%, rgba(20,5,35,.9), transparent 70%),
    linear-gradient(160deg, #1a0a25 0%, #2a0f3c 50%, #0b0410 100%);
  position: relative;
}
.ph::after {
  content: 'AI placeholder';
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--caps);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(243,225,163,.7);
  padding: 4px 9px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  border: .5px solid rgba(243,225,163,.22);
  border-radius: 99px;
  pointer-events: none;
  z-index: 7;
}

/* ─────────────────────────────────────────────────────────────── */
/* LETTERS — vertical FAQ-style accordion of testimonials          */
/* Each row: summary (eyebrow · numeral · pull-quote · cue) +      */
/* an expanding body below it that reveals the full letter.        */
/* ─────────────────────────────────────────────────────────────── */
.testimonial-bar-section {
  position: relative;
  z-index: 2;
}

.letters {
  border-top: 1px solid var(--rule);
}

.letter {
  border-bottom: 1px solid var(--rule);
  position: relative;
}

/* The clickable summary row (proper button for keyboard / a11y). */
.letter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 38px var(--page-pad);
  background: transparent;
  border: 0;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: background 0.3s ease;
}
.letter-toggle:hover,
.letter-toggle:focus-visible {
  background: rgba(214, 185, 122, 0.04);
  outline: none;
}
.letter-toggle[aria-expanded="true"] {
  background: rgba(214, 185, 122, 0.06);
}

.letter-summary {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.letter-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.95;
}

.letter-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

.letter-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  line-height: 1;
  color: var(--champagne);
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,185,122,.12), rgba(10,10,13,.18) 70%);
  box-shadow: 0 0 24px rgba(214,185,122,.12);
  flex-shrink: 0;
}

.letter-quote {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 740px;
}

.letter-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.75;
  transition: opacity 0.3s;
}
.letter-toggle:hover .letter-cue,
.letter-toggle[aria-expanded="true"] .letter-cue { opacity: 1; }

.cue-arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.7, 0, .25, 1);
}
.letter-toggle[aria-expanded="true"] .cue-arrow {
  transform: rotate(180deg);
}

/* The expanded body — the full letter. Inset to match a reading column. */
.letter-body {
  padding: 0 var(--page-pad) 60px;
  animation: letter-fade-in 0.5s ease;
}
.letter-body[hidden] { display: none; }

.letter-body > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes letter-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.letter-body blockquote {
  margin: 0;
  padding-top: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
}

.letter-body blockquote p { margin: 0; }
.letter-body blockquote p + p { margin-top: 18px; }

.letter-body blockquote em {
  font-style: normal;
  background: linear-gradient(180deg, var(--gold-edge) 0%, var(--champagne) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.letter-body .attribution {
  margin-top: 36px;
  text-align: right;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* Responsive — stack the summary's cue under the quote on mobile. */
@media (max-width: 768px) {
  .letter-toggle {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 30px var(--page-pad);
  }
  .letter-quote { font-size: 19px; line-height: 1.5; }
  .letter-icon {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }
  .letter-row { gap: 18px; }
  .letter-body { padding: 0 var(--page-pad) 44px; }
  .letter-body blockquote { font-size: 18.5px; line-height: 1.65; }
}

@media (max-width: 480px) {
  .letter-toggle { padding: 26px var(--page-pad); }
  .letter-quote { font-size: 17.5px; }
  .letter-icon {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .letter-row { gap: 14px; }
  .letter-body blockquote { font-size: 17.5px; }
}

/* ─────────────────────────────────────────────────────────────── */
/* CURTAIN TAP-TO-TOGGLE ON TOUCH                                   */
/* Hover doesn't exist on touch, so the curtain becomes a tap toggle. */
/* Replaces the earlier "hide veil on touch" behaviour.              */
/* ─────────────────────────────────────────────────────────────── */
@media (hover: none) {
  /* Restore the veil (the earlier rule hid it entirely) but only on
     elements that are actually wired up for tap-to-toggle via JS. */
  .unveil.tappable .veil,
  .unveil.tappable .veil-seam,
  .unveil.tappable .veil-hint {
    display: block;
  }

  /* Open state — same end-position as desktop hover. */
  .unveil.tappable.open .veil-l { transform: translateX(-101%); }
  .unveil.tappable.open .veil-r { transform: translateX(101%); }
  .unveil.tappable.open .veil-seam { opacity: 0; }
  .unveil.tappable.open .veil-hint {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-12px);
  }
  .unveil.tappable.open > img,
  .unveil.tappable.open > .unveil-body {
    transform: scale(1.03);
    filter: brightness(1.08);
  }

  /* Different hint copy when tappable. */
  .unveil.tappable .veil-hint {
    font-size: 11px;
  }
}

/* ════════════════════════════════════════════════════════════════ */
/* MOBILE NAV — hamburger + slide-down drawer                       */
/* ════════════════════════════════════════════════════════════════ */
.nav-toggle { display: none; }
.nav-drawer { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 10px 4px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--gold-edge);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 13, 0.97);
    backdrop-filter: blur(10px);
    padding: 36px var(--page-pad);
    border-bottom: 1px solid var(--rule-2);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 28;
  }
  .nav-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .nav-drawer-links a {
    font-family: var(--caps);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-drawer-links a:hover { color: var(--gold-edge); }
  .nav-drawer .btn { align-self: flex-start; }
}

/* ════════════════════════════════════════════════════════════════ */
/* TOUCH DEVICES — disable curtain reveal (no hover state to use)   */
/* Just show the photo bare so the image is visible.                */
/* ════════════════════════════════════════════════════════════════ */
@media (hover: none) {
  .unveil .veil,
  .unveil .veil-seam,
  .unveil .veil-hint {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════ */
/* TABLET (≤ 1024px) — tighten padding, scale display fonts down    */
/* ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --page-pad: 50px;
    --section-y: 110px;
  }
  h1.display { font-size: 80px; }
  h2.display { font-size: 60px; }
  h3.display { font-size: 36px; }
  .hero-centered h1 { font-size: 72px; }
  .title-hero h1.display { font-size: 72px; line-height: .96; }
  .events-head h2.display { font-size: 60px; }
  .hero { padding: 160px var(--page-pad) 100px; }
  .hero-grid { gap: 60px; }
  .hero-art { height: 540px; }
  .two-col { gap: 60px; }
  .two-col .image-frame { height: 480px; }
  .gallery { grid-template-rows: 260px 260px; }
}

/* ════════════════════════════════════════════════════════════════ */
/* PHONE (≤ 768px) — stack two-col layouts, hide nav menu,          */
/* compress everything to a single column                            */
/* ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --page-pad: 28px;
    --section-y: 80px;
  }

  /* Nav */
  .nav { padding: 18px var(--page-pad); }
  .logo .lockup { font-size: 22px; }
  .logo .sub { font-size: 8px; letter-spacing: 0.34em; }

  /* Headlines */
  h1.display { font-size: 54px; }
  h2.display { font-size: 42px; }
  h3.display { font-size: 28px; }
  .hero-centered h1 { font-size: 48px; max-width: none; }
  .title-hero h1.display { font-size: 48px; line-height: 1; max-width: 100%; }
  .events-head h2.display { font-size: 40px; }
  .lede { font-size: 17.5px; line-height: 1.6; }

  /* Hero (home) */
  .hero { padding: 130px var(--page-pad) 70px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-art { height: 380px; }

  /* Hero (centered, inner pages) */
  .hero-centered { padding: 130px var(--page-pad) 60px; }

  /* Two-col layouts stack */
  .two-col,
  .two-col.flip {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .two-col .image-frame { height: 340px; }
  .two-col h2.display { margin: 14px 0 22px; }

  /* Pillars stack — change background trick from 1px gap to inline borders */
  .pillars {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
    border: 1px solid var(--rule);
  }
  .pillar { border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: 0; }

  /* Events */
  .events-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }
  .event-row {
    grid-template-columns: 80px 1fr 44px;
    grid-template-rows: auto auto auto;
    gap: 12px 18px;
    padding: 24px 6px;
    align-items: start;
  }
  .event-row .date    { grid-column: 1; grid-row: 1; }
  .event-row .name    { grid-column: 2 / 4; grid-row: 1; }
  .event-row .desc    { grid-column: 1 / 4; grid-row: 2; }
  .event-row .loc     { grid-column: 1 / 3; grid-row: 3; text-align: left; }
  .event-row .arrow   { grid-column: 3; grid-row: 3; justify-self: end; }
  .event-row .date b  { font-size: 36px; }
  .event-row .name    { font-size: 22px; }
  .event-row .desc    { font-size: 14.5px; }

  /* Gallery — large feature on top, four in 2×2 */
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery .g1 {
    grid-row: auto;
    grid-column: 1 / 3;
    aspect-ratio: 16 / 10;
  }
  .gallery .img { aspect-ratio: 4 / 3; }

  /* Partner cards */
  .cards { grid-template-columns: 1fr; gap: 20px; }
  .card .cover { height: 200px; }

  /* Numbered list (Parade evening program, Philanthropy cause, Join FAQ) */
  .numbered .item {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  .numbered .num { font-size: 36px; }
  .numbered h4 { font-size: 21px; }
  .mask-numbered .item {
    grid-template-columns: 66px 1fr;
    gap: 16px;
  }
  .mask-numbered .mask-num {
    width: 58px;
  }
  .mask-numbered .mask-num img {
    width: 56px;
  }

  /* Itinerary (parade dates) */
  .itinerary .row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
  .itinerary .time { font-size: 18px; }
  .itinerary .what h5 { font-size: 19px; }

  /* Section heads */
  .section-head { margin-bottom: 50px; }
  .section-head p { font-size: 16px; }

  /* Stats reference removed — stats bar is gone */

  /* Form */
  .form-wrap { padding: 40px 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 26px; }
  .tier-grid { grid-template-columns: 1fr; }

  /* Tier card on Join page */
  .tier { padding: 28px 22px; }
  .dues-grid,
  .dues-photo-grid {
    grid-template-columns: 1fr;
  }
  .dues-card {
    min-height: auto;
    padding: 34px 28px;
  }
  .dues-price { font-size: 52px; }
  .dues-card p { max-width: none; font-size: 16.5px; }
  .dues-photo-grid { margin-top: 44px; }
  .photo-placeholder { min-height: 220px; }

  /* Footer — 4-col → 2-col */
  .footer { padding: 60px var(--page-pad) 40px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer-tag { font-size: 18px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    text-align: left;
  }

  /* Rule (section divider) tracks page-pad */
  .rule { margin: 0 var(--page-pad); }
}

/* ════════════════════════════════════════════════════════════════ */
/* SMALL PHONE (≤ 480px) — final compression                        */
/* ════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --page-pad: 20px; }

  /* Headlines */
  h1.display { font-size: 44px; }
  h2.display { font-size: 34px; }
  h3.display { font-size: 24px; }
  .hero-centered h1 { font-size: 38px; }
  .title-hero h1.display { font-size: 38px; line-height: 1.04; }
  .events-head h2.display { font-size: 30px; }

  /* Hero */
  .hero { padding: 110px var(--page-pad) 60px; }
  .hero-centered { padding: 110px var(--page-pad) 50px; }
  .hero-art { height: 300px; }

  /* CTAs stack to full width */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; width: 100%; }

  /* Two-col image height */
  .two-col .image-frame { height: 260px; }

  /* Footer to single column */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Section padding */
  .section-head { margin-bottom: 36px; }

  /* Form padding */
  .form-wrap { padding: 32px 20px; }
  .dues-card { padding: 30px 22px; }
  .dues-price { font-size: 44px; }
  .photo-placeholder { min-height: 190px; }
}

@media (max-width: 1024px) {
  .admin-shell {
    padding-top: 135px;
  }
  .admin-header {
    align-items: flex-start;
  }
  .admin-header h1 {
    font-size: 60px;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .editor-layout {
    grid-template-columns: 1fr;
  }
  .admin-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .admin-shell {
    padding-top: 125px;
    padding-bottom: 80px;
  }
  .admin-header,
  .admin-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-header h1 {
    font-size: 46px;
  }
  .admin-actions .btn {
    width: 100%;
  }
  .admin-auth {
    grid-template-columns: 1fr;
  }
  .admin-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-toolbar {
    grid-template-columns: 1fr;
  }
  .admin-detail-meta,
  .admin-edit-grid {
    grid-template-columns: 1fr;
  }
  .editor-fieldset {
    padding: 16px;
  }
  .editor-image-controls {
    grid-template-columns: 1fr;
  }
  .admin-panel .editor-upload-button {
    width: 100%;
  }
  .editor-list-head {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .admin-shell {
    padding-top: 112px;
  }
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }
  .admin-auth,
  .admin-toolbar,
  .admin-panel {
    padding: 18px;
  }
  .admin-token-row {
    flex-direction: column;
    align-items: stretch;
  }
  .editor-list-head {
    flex-direction: column;
  }
  .editor-row-actions {
    width: 100%;
  }
  .editor-row-actions button {
    flex: 1;
  }
}
