:root {
  --sky: #6bb5ff;
  --sky-deep: #0b3d5c;
  --grass: #6dad31;
  --sand: #f4e4c1;
  --sand-dark: #e8d09a;
  --red: #e63946;
  --red-hot: #c1121f;
  --yellow: #f4d35e;
  --ink: #1a1a1a;
  --foam: #fffdf6;
  --purple: #6b2d8b;
  --shadow: rgba(11, 61, 92, 0.18);
  --radius: 18px;
  --max: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Segoe UI Black", "Arial Black", Impact, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse at top, #dff0ff 0%, transparent 55%),
    linear-gradient(180deg, #b8e0ff 0%, var(--sand) 38%, #f7edd4 100%);
  min-height: 100vh;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-deep); }
a:hover { color: var(--red-hot); }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* NAV */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 61, 92, 0.94);
  backdrop-filter: blur(8px);
  color: var(--foam);
  border-bottom: 4px solid var(--yellow);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.75rem 0;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--yellow); color: var(--sky-deep);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 0.7rem; letter-spacing: -0.02em;
  border: 2px solid var(--foam);
}
.brand-name { font-family: var(--display); font-size: 1rem; letter-spacing: 0.02em; display: block; }
.brand-sub { font-size: 0.72rem; opacity: 0.8; display: block; }
.nav-links { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.nav-links a { color: var(--foam); text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.nav-links a:hover { color: var(--yellow); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.25rem; border-radius: 999px; border: 3px solid var(--ink);
  font-weight: 800; text-decoration: none; cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink); transition: transform 0.12s, box-shadow 0.12s;
  font-family: var(--font); font-size: 1rem;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { color: white; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { color: var(--ink); }
.btn-ghost { background: transparent; color: var(--foam); border-color: var(--foam); box-shadow: 3px 3px 0 rgba(0,0,0,0.25); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; }

/* HERO */
.hero {
  padding: 2.5rem 0 1rem;
}
.hero-grid {
  display: grid; gap: 1.5rem; align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}
.badge {
  display: inline-block; background: var(--yellow); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 0.25rem 0.75rem; font-weight: 800; font-size: 0.8rem;
  margin-bottom: 0.75rem; box-shadow: 2px 2px 0 var(--ink);
}
.hero h1 {
  font-family: var(--display); font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 0.98; margin: 0 0 0.75rem; letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero h1 .drip { color: var(--red); display: block; }
.hero-lead {
  font-size: 1.15rem; max-width: 38ch; margin: 0 0 1.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  background: var(--foam); border: 2px dashed var(--sky-deep);
  border-radius: 999px; padding: 0.35rem 0.7rem; font-size: 0.82rem; font-weight: 700;
}
.hero-art {
  border: 4px solid var(--ink); border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--sky-deep);
  overflow: hidden; background: #0b3d5c;
  transform: rotate(-1.2deg);
}
.hero-art img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.hero-caption {
  text-align: center; font-size: 0.8rem; margin-top: 0.6rem; opacity: 0.75; font-style: italic;
}

/* SECTIONS */
section { padding: 3rem 0; }
.section-title {
  font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin: 0 0 0.4rem; text-transform: uppercase; letter-spacing: -0.01em;
}
.section-kicker {
  color: var(--red-hot); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.78rem; margin: 0 0 0.35rem;
}
.section-lead { max-width: 58ch; margin: 0 0 1.5rem; font-size: 1.05rem; }

.card-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card {
  background: var(--foam);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  box-shadow: 4px 4px 0 var(--shadow);
}
.card h3 {
  font-family: var(--display); margin: 0 0 0.5rem; font-size: 1.15rem;
  text-transform: uppercase;
}
.card p { margin: 0; }
.card .emoji { font-size: 1.6rem; display: block; margin-bottom: 0.4rem; }

.steps { counter-reset: step; display: grid; gap: 1rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--foam); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; box-shadow: 4px 4px 0 var(--grass);
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: white; border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.2rem;
}
.step h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.step p { margin: 0; }

.two-col {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
.panel {
  background: var(--foam); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: 5px 5px 0 var(--purple);
}
.panel.alt { box-shadow: 5px 5px 0 var(--sky-deep); }
.panel h3 { margin-top: 0; font-family: var(--display); text-transform: uppercase; }
.panel ul { margin: 0; padding-left: 1.1rem; }
.panel li { margin-bottom: 0.4rem; }

.location-banner {
  background: linear-gradient(135deg, var(--sky-deep), #145a84);
  color: var(--foam);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 6px 6px 0 var(--yellow);
}
.location-banner h3 { margin: 0 0 0.5rem; font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.location-banner p { margin: 0 0 0.75rem; opacity: 0.95; }
.signs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sign {
  background: var(--sand); color: var(--ink); border: 2px solid var(--ink);
  padding: 0.35rem 0.7rem; font-weight: 800; font-size: 0.82rem;
  transform: rotate(-1deg);
}
.sign:nth-child(2) { transform: rotate(1.5deg); background: var(--yellow); }
.sign:nth-child(3) { transform: rotate(-0.5deg); background: #ffd6e0; }

/* FAQ */
.faq details {
  background: var(--foam); border: 3px solid var(--ink); border-radius: 14px;
  padding: 0.9rem 1.1rem; margin-bottom: 0.7rem;
}
.faq summary {
  font-weight: 800; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); font-size: 1.3rem; color: var(--red); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.65rem 0 0; }

/* FORM */
.apply {
  background: var(--sky-deep); color: var(--foam);
  border-top: 6px solid var(--yellow); border-bottom: 6px solid var(--yellow);
}
.apply .section-title, .apply .section-kicker { color: var(--yellow); }
.apply .section-lead { color: rgba(255,253,246,0.9); }
.form-card {
  background: var(--foam); color: var(--ink);
  border: 4px solid var(--ink); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: 8px 8px 0 var(--red);
  max-width: 640px;
}
.form-grid { display: grid; gap: 0.85rem; }
.form-grid label { display: grid; gap: 0.3rem; font-weight: 700; font-size: 0.9rem; }
.form-grid input, .form-grid select, .form-grid textarea {
  font: inherit; padding: 0.7rem 0.8rem; border: 3px solid var(--ink);
  border-radius: 10px; background: white;
}
.form-grid textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; gap: 0.85rem; grid-template-columns: 1fr 1fr; }
.form-note { font-size: 0.85rem; margin: 0.75rem 0 0; opacity: 0.8; }

/* FOOTER */
.site-footer {
  padding: 2rem 0 2.5rem; text-align: center; font-size: 0.9rem;
}
.site-footer .fine { opacity: 0.7; max-width: 55ch; margin: 0.75rem auto 0; font-size: 0.8rem; }

.disclaimer {
  background: #fff3cd; border: 2px dashed var(--ink); border-radius: 12px;
  padding: 0.85rem 1rem; font-size: 0.85rem; margin-top: 1.5rem;
}

@media (max-width: 820px) {
  .hero-grid, .two-col, .form-row { grid-template-columns: 1fr; }
  .hero-art { transform: none; }
  .hide-sm { display: none !important; }
  .nav-links { gap: 0.5rem; }
}

.brand-logo{width:48px;height:48px;border-radius:10px;border:3px solid #111;image-rendering:auto;transform:rotate(-4deg);box-shadow:3px 3px 0 #111;}

.crew-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin-top:1rem;}
.crew-card{display:flex;flex-direction:column;gap:0.35rem;padding:1rem 1.1rem;border:3px solid #111;border-radius:14px;background:#fff7c2;color:#111;text-decoration:none;box-shadow:4px 4px 0 #111;transform:rotate(-0.5deg);}
.crew-card:hover{transform:scale(1.02) rotate(0deg);}
.crew-card strong{font-size:1.15rem;}
.crew-card span{opacity:0.85;font-size:0.95rem;}


/* === First-night date blast === */
.date-blast {
  background: #111;
  color: #ffe23a;
  border-bottom: 5px solid #ff3d7f;
  padding: 0.85rem 0 1rem;
}
.date-blast-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  justify-content: center;
  text-align: center;
}
.date-blast-kicker {
  width: 100%;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #ff7ab6;
}
.date-blast-day {
  font-family: var(--display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.06em;
}
.date-blast-date {
  font-family: var(--display);
  font-size: clamp(1.85rem, 6vw, 3.1rem);
  line-height: 1;
  color: #fff;
  text-shadow: 3px 3px 0 #ff3d7f;
  transform: rotate(-1deg);
}
.date-blast-where {
  width: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  color: #5ce1ff;
}
.hero-date-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1.1rem;
  background: #ffe23a;
  border: 4px solid #111;
  border-radius: 16px;
  box-shadow: 6px 6px 0 #ff3d7f;
  transform: rotate(-2deg);
  max-width: 100%;
}
.hero-date-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #111;
}
.hero-date-big {
  font-family: var(--display);
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  line-height: 0.95;
  color: #111;
}
.hero-date-year {
  font-weight: 800;
  font-size: 1.05rem;
}
.hero-date-lot {
  font-size: 0.92rem;
  font-weight: 700;
  color: #333;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 3px solid var(--ink);
}
.loc-date-callout {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 0.5rem;
  color: var(--red-hot);
  transform: rotate(-1deg);
}
.rsvp-confirm {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: rgba(17,17,17,0.96);
  border-top: 5px solid #ffe23a;
  padding: 1rem 0 1.25rem;
}
.rsvp-confirm-card {
  background: #ffe23a;
  color: #111;
  border: 4px solid #111;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 6px 6px 0 #ff3d7f;
  text-align: center;
}
.rsvp-confirm-card h3 { margin: 0 0 0.4rem; font-family: var(--display); text-transform: uppercase; }
.rsvp-date { font-size: 1.35rem; margin: 0.25rem 0; }


.date-blast-time {
  font-family: var(--display);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: #5ce1ff;
  letter-spacing: 0.04em;
}
.date-blast-party {
  width: 100%;
  font-weight: 800;
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  color: #ffe23a;
  letter-spacing: 0.04em;
}
.hero-date-party {
  font-size: 0.95rem;
  font-weight: 800;
  color: #b1003a;
}
.loc-party {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}
