:root {
  --ink: #070707;
  --ink-soft: #111111;
  --paper: #f4f0e7;
  --paper-2: #e8e1d4;
  --white: #ffffff;
  --gold: #d1a653;
  --gold-bright: #f0cf82;
  --muted: #777166;
  --muted-dark: #aaa398;
  --line: rgba(7, 7, 7, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --success: #18794e;
  --error: #b42318;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.16);
  --max: 1440px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body:has(dialog[open]) { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(7,7,7,.72), rgba(7,7,7,0));
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(7, 7, 7, 0.92);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: baseline; width: max-content; font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: -.07em; }
.brand-number { color: var(--gold-bright); font-family: "Instrument Serif", serif; font-size: 38px; line-height: .8; }
.brand-city { margin-left: 5px; font-size: 18px; letter-spacing: .18em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.desktop-nav a { opacity: .74; transition: opacity .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { opacity: 1; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  cursor: pointer;
}
.menu-button span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 8px);
  padding: 12px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(7, 7, 7, .98);
  box-shadow: var(--shadow);
}
.mobile-menu a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); font-family: "Space Grotesk", sans-serif; font-weight: 600; }
.mobile-menu a:last-child { border-bottom: 0; color: var(--gold-bright); }
.mobile-menu.is-open { display: grid; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .filter-button:focus-visible, .event-rsvp-link:focus-visible, .event-card-open:focus-visible { outline: 3px solid rgba(209,166,83,.45); outline-offset: 3px; }
.button:disabled { cursor: wait; opacity: .58; transform: none; }
.button-small { min-height: 40px; padding: 10px 16px; font-size: 12px; }
.button-wide { width: 100%; }
.button-primary { background: var(--gold); color: var(--ink); box-shadow: 0 14px 42px rgba(209,166,83,.24); }
.button-primary:hover { background: var(--gold-bright); }
.button-outline { border-color: currentColor; background: transparent; }
.button-ghost { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-light { background: var(--paper); color: var(--ink); }
.text-link { display: inline-block; margin-top: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .74fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
  padding: 126px clamp(18px, 5vw, 76px) 78px;
  background:
    radial-gradient(circle at 15% 18%, rgba(209,166,83,.22), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(255,255,255,.09), transparent 22%),
    linear-gradient(135deg, #090909 0%, #13110d 54%, #050505 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "111";
  position: absolute;
  right: -2vw;
  top: 8vh;
  color: rgba(255,255,255,.025);
  font-family: "Instrument Serif", serif;
  font-size: min(38vw, 520px);
  line-height: .8;
  pointer-events: none;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.kicker { margin: 0 0 18px; color: var(--gold); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 6px rgba(240,207,130,.12); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(240,207,130,0); } }
.hero h1, .section-heading h2, .form-intro h2, .birthday-copy h2, .alerts-section h2, .dialog-content h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .86;
}
.hero h1 { font-size: clamp(66px, 10vw, 154px); max-width: 900px; }
.hero h1 em, .form-intro h2 em { color: var(--gold-bright); font-weight: 400; }
.hero-intro { max-width: 690px; margin: 30px 0 0; color: rgba(255,255,255,.7); font-size: clamp(17px, 1.7vw, 23px); line-height: 1.55; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-proof { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.hero-proof span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-visual { width: min(100%, 530px); justify-self: end; }
.hero-poster { aspect-ratio: 4 / 5; width: 100%; border-radius: 30px; box-shadow: 0 38px 110px rgba(0,0,0,.5); transform: rotate(1.5deg); }
.hero-event-caption { position: relative; z-index: 3; width: 88%; margin: -54px auto 0; padding: 20px 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(7,7,7,.84); backdrop-filter: blur(18px); box-shadow: 0 18px 55px rgba(0,0,0,.35); }
.caption-label { color: var(--gold-bright); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.hero-event-caption h2 { margin: 7px 0 4px; font-family: "Space Grotesk", sans-serif; font-size: clamp(21px, 2vw, 30px); letter-spacing: -.04em; }
.hero-event-caption p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.caption-actions { display: flex; gap: 14px; margin-top: 14px; }
.caption-actions button { padding: 0; border: 0; background: none; color: var(--gold-bright); font-weight: 700; cursor: pointer; }

.poster-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(18px, 2vw, 28px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.poster-placeholder::before, .poster-placeholder::after { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); z-index: -1; }
.poster-placeholder::before { width: 66%; aspect-ratio: 1; left: -20%; top: 10%; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 26px rgba(255,255,255,.035), 0 0 0 54px rgba(255,255,255,.025); }
.poster-placeholder::after { width: 72%; aspect-ratio: 1; right: -26%; bottom: -18%; background: rgba(255,255,255,.08); }
.poster-tone-1 { background: linear-gradient(145deg, #271d0b, #a77e32 48%, #090909); }
.poster-tone-2 { background: linear-gradient(145deg, #141414, #5a1f28 54%, #d69a7b); }
.poster-tone-3 { background: linear-gradient(145deg, #092b30, #166b74 50%, #d2b567); }
.poster-tone-4 { background: linear-gradient(145deg, #22162d, #6f457a 55%, #d6ad64); }
.poster-tone-5 { background: linear-gradient(145deg, #171d10, #566728 52%, #d8bd76); }
.poster-top, .poster-bottom { display: flex; justify-content: space-between; gap: 12px; font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.poster-center { display: grid; gap: 8px; align-content: center; text-align: center; }
.poster-center small { font-family: "Space Grotesk", sans-serif; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.poster-center strong { font-family: "Instrument Serif", serif; font-size: clamp(44px, 5vw, 84px); font-weight: 400; letter-spacing: -.06em; line-height: .82; text-transform: uppercase; overflow-wrap: anywhere; }

.signal-strip { overflow: hidden; border-block: 1px solid rgba(255,255,255,.12); background: var(--ink); color: var(--white); }
.signal-track { width: max-content; display: flex; align-items: center; gap: 20px; padding: 15px 0; animation: signal 28s linear infinite; font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .18em; white-space: nowrap; }
.signal-track i { color: var(--gold); font-style: normal; }
@keyframes signal { to { transform: translateX(-50%); } }

.section { position: relative; padding: clamp(78px, 9vw, 138px) clamp(18px, 5vw, 76px); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-heading { margin-bottom: 44px; }
.heading-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr); gap: 40px; align-items: end; }
.section-heading h2, .form-intro h2, .birthday-copy h2, .alerts-section h2 { font-size: clamp(48px, 7vw, 105px); }
.section-lede, .form-intro > p, .birthday-copy > p, .alerts-section > div > p { color: var(--muted); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.65; }
.compact-heading { max-width: var(--max); }
.compact-heading h2 { font-size: clamp(50px, 6vw, 86px); }

.events-section { background: var(--paper); }
.event-toolbar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filter-button { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; cursor: pointer; }
.filter-button.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 34px); }
.event-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.32); transition: transform .22s ease, box-shadow .22s ease; }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,.12); }
.event-card-open { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.event-poster { aspect-ratio: 4 / 5; width: 100%; overflow: hidden; }
.event-poster img { width: 100%; height: 100%; object-fit: cover; }
.event-poster .poster-center strong { font-size: clamp(38px, 4vw, 70px); }
.event-card-body { padding: 22px; }
.event-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.event-card h3 { margin: 12px 0 8px; font-family: "Space Grotesk", sans-serif; font-size: clamp(24px, 2.2vw, 35px); letter-spacing: -.05em; line-height: 1; }
.event-card-body > p { min-height: 48px; margin: 0; color: var(--muted); line-height: 1.5; }
.event-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.event-card-footer button, .event-card-footer a { padding: 0; border: 0; background: none; color: var(--ink); font-weight: 700; cursor: pointer; }
.event-rsvp-link { color: #9b6c16 !important; }
.event-skeleton { min-height: 580px; border: 0; background: linear-gradient(90deg, rgba(7,7,7,.045), rgba(255,255,255,.55), rgba(7,7,7,.045)); background-size: 220% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -220% 0; } }
.events-status { min-height: 22px; margin-top: 18px; color: var(--muted); font-size: 13px; }
.empty-events { grid-column: 1 / -1; padding: 70px 26px; border: 1px dashed var(--line); border-radius: 28px; text-align: center; }
.empty-events > span { color: var(--gold); font-family: "Instrument Serif", serif; font-size: 74px; }
.empty-events h3 { margin: 4px 0 10px; font-size: 28px; }
.empty-events p { color: var(--muted); }

.action-section { padding-top: 0; }
.action-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 30px; overflow: hidden; }
.action-card { min-height: 280px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); background: rgba(255,255,255,.25); transition: background .2s ease, color .2s ease; }
.action-card:last-child { border-right: 0; }
.action-card:hover { background: var(--ink); color: var(--white); }
.action-card > span { color: var(--gold); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.action-card h3 { margin: auto 0 10px; font-family: "Space Grotesk", sans-serif; font-size: 27px; letter-spacing: -.05em; }
.action-card p { min-height: 50px; margin: 0 0 18px; color: var(--muted); line-height: 1.5; }
.action-card:hover p { color: rgba(255,255,255,.65); }
.action-card b { font-size: 13px; }

.form-section { display: grid; grid-template-columns: minmax(0, .75fr) minmax(420px, 1fr); gap: clamp(42px, 7vw, 108px); align-items: start; }
.form-intro { position: sticky; top: 112px; }
.form-intro h2 { margin-bottom: 28px; }
.selected-event { display: grid; gap: 4px; margin-top: 28px; padding: 18px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.38); }
.selected-event span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.selected-event strong { font-family: "Space Grotesk", sans-serif; font-size: 19px; }
.selected-event small { color: var(--muted); }
.form-panel { padding: clamp(22px, 3vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.42); box-shadow: 0 20px 70px rgba(0,0,0,.06); }
.lead-form { display: grid; gap: 15px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.full-column { grid-column: 1 / -1; }
.lead-form label { display: grid; gap: 8px; color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.66);
  color: var(--ink);
  outline: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.lead-form textarea { min-height: 120px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(209,166,83,.13); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #979184; }
.consent-row { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; color: var(--muted) !important; font-family: "DM Sans", sans-serif !important; font-size: 12px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.45; text-transform: none !important; }
.consent-row input { min-height: 0; width: 18px; height: 18px; padding: 0; accent-color: var(--gold); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 20px; margin: 0; font-size: 13px; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }
.feature-list { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { padding-bottom: 10px; border-bottom: 1px solid currentColor; opacity: .72; }
.dark-panel { max-width: none; background: var(--ink); color: var(--white); }
.dark-panel > * { max-width: none; }
.dark-panel .kicker { color: var(--gold-bright); }
.dark-panel .form-intro > p { color: rgba(255,255,255,.62); }
.light-panel { background: var(--paper); color: var(--ink); }

.birthday-section { background: var(--gold); }
.birthday-banner { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr); gap: clamp(40px, 7vw, 100px); align-items: center; }
.birthday-copy .kicker { color: rgba(7,7,7,.62); }
.birthday-copy > p { color: rgba(7,7,7,.7); }
.birthday-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; padding: clamp(22px, 3vw, 34px); border-radius: 28px; background: var(--ink); }
.birthday-form input, .birthday-form select { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.16); color: var(--white); }
.birthday-form input::placeholder { color: rgba(255,255,255,.5); }
.birthday-form .button, .birthday-form .form-status { grid-column: 1 / -1; }
.birthday-form .form-status { color: rgba(255,255,255,.7); }
.birthday-form .form-status.is-success { color: #71e7ae; }
.birthday-form .form-status.is-error { color: #ff9b96; }

.host-section { background: #ece6db; }
.alerts-section { max-width: none; display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1fr); gap: clamp(38px,7vw,100px); align-items: center; background: #7e201f; color: var(--white); }
.alerts-section > * { max-width: none; }
.alerts-section .kicker { color: #ffd08d; }
.alerts-section > div > p { color: rgba(255,255,255,.68); }
.alert-form { grid-template-columns: 1fr 1fr; padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(0,0,0,.13); }
.alert-form input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: var(--white); }
.alert-form input::placeholder { color: rgba(255,255,255,.55); }
.alert-form .button, .alert-form .form-status { grid-column: 1 / -1; }
.alert-form .form-status.is-success { color: #a8f0cd; }
.alert-form .form-status.is-error { color: #ffb0aa; }

.nda-section { background: #dcd4c5; }
.nda-disclosure { max-width: var(--max); margin: 0 auto 26px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.35); overflow: hidden; }
.nda-disclosure summary { padding: 18px 20px; cursor: pointer; font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.legal-copy { max-height: 460px; overflow-y: auto; padding: 0 22px 24px; color: var(--muted); line-height: 1.6; }
.legal-copy h3, .legal-copy h4 { color: var(--ink); }
.legal-copy h3 { font-size: 25px; }
.legal-copy h4 { margin-top: 24px; }
.legal-note { padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; }
.nda-form { max-width: var(--max); margin: 0 auto; }
.agreement-checks { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.agreement-checks label { grid-template-columns: 22px 1fr; align-items: start; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.36); color: var(--ink); font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0; line-height: 1.4; text-transform: none; }
.agreement-checks input { min-height: 0; width: 18px; height: 18px; padding: 0; accent-color: var(--gold); }

.site-footer { display: grid; grid-template-columns: .7fr 1fr 1fr auto; gap: 36px; align-items: start; padding: 56px clamp(18px,5vw,76px) 110px; background: var(--ink); color: rgba(255,255,255,.65); }
.footer-brand { color: var(--white); font-family: "Space Grotesk", sans-serif; font-size: 22px; font-weight: 700; letter-spacing: .12em; }
.footer-brand span { color: var(--gold-bright); font-family: "Instrument Serif", serif; font-size: 40px; letter-spacing: -.05em; }
.site-footer strong { color: var(--white); }
.site-footer p { max-width: 440px; line-height: 1.5; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.back-top { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; color: var(--white); }
.mobile-dock { display: none; }

.event-dialog { width: min(920px, calc(100% - 28px)); max-height: calc(100svh - 30px); padding: 0; border: 0; border-radius: 30px; background: var(--paper); color: var(--ink); box-shadow: 0 38px 140px rgba(0,0,0,.55); overflow: hidden; }
.event-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.event-dialog[open] { display: grid; grid-template-columns: minmax(300px,.7fr) 1fr; }
.dialog-close { position: absolute; right: 14px; top: 14px; z-index: 5; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(0,0,0,.55); color: var(--white); font-size: 25px; cursor: pointer; }
.dialog-poster { min-height: 600px; }
.dialog-poster-inner { height: 100%; min-height: 600px; border-radius: 0; }
.dialog-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,5vw,62px); }
.dialog-content h2 { font-size: clamp(52px,7vw,92px); }
.dialog-content > p:not(.kicker) { color: var(--muted); font-size: 17px; line-height: 1.55; }
.event-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px 0; }
.event-facts div { padding: 14px; border: 1px solid var(--line); border-radius: 14px; }
.event-facts dt { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.event-facts dd { margin: 6px 0 0; font-weight: 700; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: minmax(0,1fr) minmax(300px,.62fr); gap: 50px; }
  .event-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .action-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .action-card:nth-child(2) { border-right: 0; }
  .action-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .site-header { min-height: 68px; grid-template-columns: 1fr auto; padding: 12px 16px; background: rgba(7,7,7,.82); backdrop-filter: blur(14px); }
  .header-actions .button { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 112px 18px 68px; }
  .hero h1 { font-size: clamp(64px,20vw,105px); }
  .hero-intro { font-size: 17px; }
  .hero-visual { width: min(100%,500px); justify-self: center; }
  .hero-poster { transform: none; }
  .heading-row, .form-section, .birthday-banner, .alerts-section { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .event-grid { gap: 18px; }
  .section { padding-inline: 18px; }
  .birthday-section, .alerts-section { padding-inline: 18px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-bottom: 116px; }
  .mobile-dock { position: fixed; z-index: 90; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 7px; padding: 7px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(7,7,7,.92); box-shadow: 0 15px 55px rgba(0,0,0,.38); backdrop-filter: blur(18px); }
  .mobile-dock a { min-height: 46px; display: grid; place-items: center; border-radius: 14px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; }
  .mobile-dock .dock-primary { background: var(--gold); color: var(--ink); }
  .event-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .dialog-poster, .dialog-poster-inner { min-height: 0; aspect-ratio: 4/5; }
  .dialog-content { padding: 28px 22px 34px; }
}

@media (max-width: 620px) {
  .hero-buttons .button { flex: 1 1 100%; }
  .hero-proof { gap: 7px; }
  .hero-event-caption { width: 94%; padding: 17px; }
  .section-heading h2, .form-intro h2, .birthday-copy h2, .alerts-section h2 { font-size: clamp(46px,15vw,72px); }
  .heading-row { gap: 18px; }
  .section-lede { margin-bottom: 0; }
  .event-toolbar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .event-toolbar::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; }
  .event-grid { grid-template-columns: 1fr; }
  .event-skeleton { min-height: 530px; }
  .action-grid { grid-template-columns: 1fr; }
  .action-card { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .action-card:last-child { border-bottom: 0; }
  .action-card:nth-child(2) { border-bottom: 1px solid var(--line); }
  .form-grid, .birthday-form, .alert-form, .agreement-checks { grid-template-columns: 1fr; }
  .birthday-form .button, .birthday-form .form-status, .alert-form .button, .alert-form .form-status { grid-column: auto; }
  .form-panel { padding: 20px; border-radius: 26px; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; }
  .footer-links { gap: 14px; }
  .event-facts { grid-template-columns: 1fr; }
  .dialog-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
