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

:root {
  --red: #CC3318;
  --orange: #F05228;
  --ember: #FF7040;
  --cream: #EFE7DE;
  --body-text: #3A3330;
  --dark: #0D0D0D;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}
.page { min-height: 100vh; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 769px) {
  .nav { padding: 20px 40px; }
}
.nav-logo img { height: 30px; display: block; }
@media (min-width: 769px) {
  .nav-logo img { height: 36px; }
}
.nav-links { display: none; align-items: center; gap: 28px; }
@media (min-width: 769px) {
  .nav-links { display: flex; }
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links .nav-ig svg { display: block; }
.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(204,51,24,0.4);
}
.nav-toggle {
  display: flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin: -8px -8px -8px 4px;
  border: none; background: transparent; cursor: pointer; color: #fff;
}
@media (min-width: 769px) {
  .nav-toggle { display: none; }
}
.nav-toggle-box { display: block; position: relative; width: 22px; height: 16px; }
.nav-toggle-bar {
  display: block; position: absolute; left: 0; width: 100%; height: 2px;
  background: currentColor; border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), top 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.nav-toggle-bar:nth-child(1) { top: 0; }
.nav-toggle-bar:nth-child(2) { top: 7px; }
.nav-toggle-bar:nth-child(3) { top: 14px; }
.nav.nav-open .nav-toggle-bar:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle-bar:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.nav-drawer {
  display: block; position: fixed; inset: 0; z-index: 10000; background: #000;
  padding: calc(56px + env(safe-area-inset-top, 0px)) 28px 48px;
  overflow-y: auto;
  transform: translateY(-100%); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.42s;
}
.nav-drawer.is-open {
  transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-drawer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  width: 100%; max-width: 400px; margin: 0 auto; padding-top: 28px;
}
.nav-drawer-link {
  font-size: 18px; font-weight: 500; line-height: 1.3;
  color: #fff; text-decoration: none; text-align: center;
}
.nav-drawer-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 280px; padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 700; color: #fff !important; text-decoration: none;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 8px 28px rgba(204, 51, 24, 0.45);
  margin-top: 8px;
}
@media (min-width: 769px) {
  .nav-drawer { display: none !important; visibility: hidden !important; pointer-events: none !important; }
}

.sp-hero {
  position: relative;
  overflow: hidden;
  background: #120c08;
  padding: 108px 20px 36px;
  color: #fff;
}
@media (min-width: 769px) {
  .sp-hero { padding: 140px 40px 48px; }
}
.sp-hero__media {
  position: absolute;
  inset: 0;
  background:
    url("/assets/images/events/volleyball-indoor.jpg") center 40% / cover no-repeat;
  opacity: 0.48;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.04);
}
.sp-hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.45) 48%, rgba(8,6,4,0.28) 100%),
    radial-gradient(ellipse 80% 50% at 12% 0%, rgba(255,140,70,0.28), transparent 55%);
  pointer-events: none;
}
.sp-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.sp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.sp-kicker__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember);
}
.sp-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 10.5vw, 72px);
  letter-spacing: 1px;
  line-height: 0.92;
  margin: 0;
  max-width: 100%;
}

.sp-main {
  padding: 28px 20px 72px;
  background: var(--cream);
  min-width: 0;
}
@media (min-width: 769px) {
  .sp-main { padding: 40px 40px 96px; }
}
.sp-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sp-story {
  margin: 4px 0 28px;
}
.sp-story h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 8.4vw, 52px);
  letter-spacing: 0.8px;
  line-height: 0.96;
  color: var(--dark);
  margin: 0 0 16px;
}
.sp-story__body {
  border-left: 2px solid var(--red);
  padding-left: 14px;
  max-width: 36em;
}
@media (min-width: 560px) {
  .sp-story__body { padding-left: 16px; }
}
.sp-story p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0 0 12px;
}
.sp-story p:last-child { margin-bottom: 0; }
.sp-story__pulse {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
}
.sp-story__you { color: var(--red); }

.sp-logistics {
  margin: 0 0 36px;
  padding: 18px 16px 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.sp-logistics__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 560px) {
  .sp-logistics__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
}
.sp-logistics__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--dark);
}
.sp-logistics__note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(13,13,13,0.08);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(13,13,13,0.55);
  text-align: center;
}

.sp-ask {
  margin: 0 0 20px;
  text-align: center;
}
.sp-ask h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 6.8vw, 40px);
  letter-spacing: 0.6px;
  line-height: 1.08;
  color: var(--dark);
}
.sp-ask__lead {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(13,13,13,0.55);
}

.sp-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}
@media (min-width: 560px) {
  .sp-options { gap: 14px; }
}

.sp-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 112px;
  padding: 18px 8px;
  border-radius: 18px;
  border: 2px solid rgba(13,13,13,0.08);
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
}
.sp-option:hover {
  transform: translateY(-2px);
  border-color: rgba(204,51,24,0.35);
}
.sp-option:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(204,51,24,0.35);
}
.sp-option.is-selected {
  border-color: var(--red);
  background: linear-gradient(180deg, #fff 0%, #fff4ef 100%);
  box-shadow: 0 10px 24px rgba(204,51,24,0.16);
}
.sp-option__emoji { font-size: 34px; line-height: 1; }
.sp-option__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.sp-option__tick {
  display: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.sp-option.is-selected .sp-option__tick { display: block; }

.sp-hint {
  margin: 16px 0 8px;
  text-align: center;
  font-size: 14px;
  color: rgba(13,13,13,0.52);
}

.sp-other {
  margin: 20px 0 24px;
  padding: 18px 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px dashed rgba(13,13,13,0.12);
  text-align: center;
}
.sp-other__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.sp-other__text {
  font-size: 13px;
  color: rgba(13,13,13,0.5);
  margin-bottom: 12px;
}

.sp-input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(13,13,13,0.12);
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  color: var(--dark);
}
.sp-input::placeholder { color: rgba(13,13,13,0.38); }
.sp-input:focus {
  outline: none;
  border-color: rgba(204,51,24,0.45);
  box-shadow: 0 0 0 3px rgba(204,51,24,0.16);
}

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

.sp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 28px rgba(204,51,24,0.38);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.15s ease;
}
.sp-cta:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(204,51,24,0.45);
}
.sp-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(204,51,24,0.42), 0 10px 28px rgba(204,51,24,0.38);
}
.sp-cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.sp-message {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  min-height: 1.2em;
}
.sp-message:empty { display: none; }

.sp-vote[hidden],
.sp-thanks[hidden],
.sp-contact[hidden],
.sp-results-footer[hidden] { display: none !important; }

.sp-thanks {
  margin: 8px 0 4px;
  text-align: center;
}
.sp-thanks h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 9vw, 48px);
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 10px;
}
.sp-thanks p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(13,13,13,0.58);
}
.sp-thanks p + p { margin-top: 8px; }
.sp-thanks__check { color: var(--red); }

.sp-contact {
  margin-top: 28px;
  padding: 24px 18px 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  text-align: center;
}
.sp-contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 7vw, 36px);
  letter-spacing: 0.6px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.sp-contact__lead {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(13,13,13,0.58);
  margin-bottom: 16px;
}
.sp-contact .sp-input { margin-bottom: 12px; }
.sp-cta--contact { letter-spacing: 0.06em; }
.sp-contact__note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(13,13,13,0.45);
}
.sp-contact__done {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.sp-contact__form-wrap[hidden],
.sp-contact__done[hidden] { display: none !important; }

.sp-results-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.sp-results-link:hover { text-decoration: underline; }
.sp-results-footer {
  display: flex;
  justify-content: center;
}

footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 769px) {
  footer {
    padding: 40px 56px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-ig { color: rgba(255,255,255,0.4); }
.footer-ig:hover { color: var(--red); }
