:root {
  --sun: #ffd000;
  --sky: #00aaff;
  --coral: #ff5533;
  --lime: #7ae000;
  --pink: #ff3d7f;
  --cream: #fff8e7;
  --navy: #0a1628;
  --white: #ffffff;
  --font-head: "Boogaloo", cursive;
  --font-body: "Nunito", sans-serif;
  --r: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  min-height: 100dvh;
}

.top-stripe {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--coral) 0 20px,
    var(--sun) 20px 40px,
    var(--sky) 40px 60px,
    var(--lime) 60px 80px,
    var(--pink) 80px 100px
  );
  margin-top: env(safe-area-inset-top);
}

nav {
  background: var(--navy);
  box-shadow: 0 4px 0 var(--sun);
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  position: sticky;
  top: env(safe-area-inset-top);
  z-index: 100;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  min-width: 0;
}

.logo {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 3px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.nav-cta {
  background: var(--sun);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  box-shadow: 2px 2px 0 #000;
  white-space: nowrap;
}

.hero {
  background: var(--sky);
  position: relative;
  overflow: hidden;
  padding: 48px 20px 72px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 25%, rgba(255, 208, 0, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 88% 75%, rgba(255, 85, 51, 0.35) 0%, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-block;
  background: var(--navy);
  color: var(--sun);
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 18px;
  transform: rotate(-1.5deg);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(56px, 14vw, 108px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow: 5px 5px 0 var(--navy);
  margin: 0 0 10px;
}

.hero h1 span,
.hero h1 .line2 {
  color: var(--sun);
  display: block;
}

.hero-sub {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 24px;
  background: var(--white);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 40px;
  transform: rotate(0.5deg);
  border: 3px solid var(--navy);
  max-width: 100%;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.h-pill {
  background: var(--white);
  border: 3px solid var(--navy);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 40px;
  box-shadow: 3px 3px 0 var(--navy);
}

.h-pill:nth-child(2) { background: var(--sun); }
.h-pill:nth-child(3) { background: var(--lime); }
.h-pill:nth-child(4) { background: var(--pink); color: var(--white); }

.hero-cta {
  background: var(--coral);
  color: white;
  border: 4px solid var(--navy);
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 1px;
  padding: 12px 36px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--navy);
}

.hero-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--navy);
}

.wave-div {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.wave-div svg {
  display: block;
  width: 100%;
}

.nbhd-banner {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-top: 4px solid var(--sun);
  border-bottom: 4px solid var(--sun);
}

.nbhd-track {
  display: flex;
  gap: 40px;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.nbhd-track span {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.nbhd-track span:nth-child(odd) { color: var(--sun); }
.nbhd-track span:nth-child(even) { color: var(--sky); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 20px 48px;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: 40px;
  letter-spacing: 1px;
}

.section-squiggle {
  flex: 1;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 12px, transparent 12px 18px);
  border-radius: 4px;
}

.section-lead {
  margin: 0 0 22px;
  font-weight: 700;
  max-width: 680px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.drink-card {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--navy);
  overflow: hidden;
}

.drink-card-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.drink-emoji {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drink-emoji img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.drink-name {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 2px;
}

.drink-desc {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
  line-height: 1.35;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 4px 4px 0 var(--navy);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sun);
  border: 3px solid var(--navy);
  font-family: var(--font-head);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1;
}

.step p {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}

.about {
  padding-top: 0;
}

.about-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 6px 6px 0 var(--sun);
}

.about-kicker {
  display: inline-block;
  background: var(--sun);
  color: var(--navy);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.about-card h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 7vw, 48px);
  line-height: 0.95;
  margin: 0 0 10px;
}

.about-card p {
  margin: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
}

.form-section {
  padding: 10px 14px 40px;
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 4px solid var(--navy);
  border-radius: var(--r);
  box-shadow: 7px 7px 0 var(--navy);
  padding: 20px;
}

.form-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 0.95;
}

.form-sub {
  margin: 8px 0 20px;
  font-weight: 700;
}

.field {
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.optional {
  font-size: 12px;
  color: #4f5a6a;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  border: 3px solid var(--navy);
  border-radius: 10px;
  padding: 12px 13px;
  font-size: 16px;
  font-family: var(--font-body);
}

input.error {
  border-color: #c62828;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #f7faff;
  border: 2px dashed #8eb7e8;
  border-radius: 12px;
  padding: 10px;
  margin-top: 2px;
}

.consent-row input {
  margin-top: 2px;
}

.consent-text {
  display: grid;
  gap: 4px;
  font-size: 14px;
  line-height: 1.35;
}

.field-error {
  display: none;
  color: #b71c1c;
  font-size: 13px;
  margin-top: 5px;
  font-weight: 700;
}

.field-error.show {
  display: block;
}

.legal-note {
  font-size: 12px;
  line-height: 1.45;
  color: #2f3f58;
  margin: 12px 0 16px;
}

.legal-note a,
.footer-links a {
  color: var(--navy);
  font-weight: 800;
}

.submit-btn {
  width: 100%;
  border: 3px solid var(--navy);
  border-radius: 999px;
  background: var(--sun);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--navy);
}

.submit-btn:disabled {
  opacity: 0.75;
  cursor: default;
}

.spinner {
  display: none;
}

.submit-btn.loading .btn-text {
  opacity: 0.7;
}

.submit-btn.loading .spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(10, 22, 40, 0.35);
  border-top-color: var(--navy);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 8px;
  animation: spin 0.8s linear infinite;
}

.success-card {
  display: none;
  text-align: center;
  padding: 8px 8px 2px;
}

.success-card.show {
  display: block;
}

.success-icon {
  display: inline-block;
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--lime);
  font-weight: 900;
  margin-bottom: 10px;
}

.success-card h2 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 0.95;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 28px 16px 32px;
  font-size: 13px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-links {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--sun);
}

.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px 12px;
}

.legal-main h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 7vw, 44px);
  margin: 0 0 8px;
  line-height: 1.1;
}

.legal-main h2 {
  font-family: var(--font-head);
  font-size: 24px;
  margin: 24px 0 10px;
}

.legal-main p,
.legal-main ul {
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.55;
}

.updated {
  font-size: 14px;
  font-weight: 800;
  color: #475569;
  margin-bottom: 18px !important;
}

.disclaimer {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  border-left: 4px solid var(--sun);
  padding: 12px 16px;
  background: rgba(255, 208, 0, 0.12);
  margin: 0 0 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  nav {
    grid-template-columns: 1fr auto;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .form-title {
    font-size: 36px;
  }

  .submit-btn {
    font-size: 26px;
  }
}
