/* ═══════════════════════════════════════════════════════
   SEATTLE PLUNGE CLUB — Stylesheet
   ═══════════════════════════════════════════════════════
   Structure:
   1. Design tokens (colors, fonts, spacing, radius)
   2. Reset & base
   3. Typography
   4. Utility classes (container, buttons, badges)
   5. Navigation
   6. Hero
   7. Section headers
   8. Plunge cards
   9. About
   10. Merch
   11. Partners
   12. Safety
   13. FAQ
   14. Footer
   15. Animations
   16. Media queries
   ═══════════════════════════════════════════════════════ */


/* ─── 1. Design Tokens ─────────────────────────────── */
:root {
  /* Brand colors */
  --blue:        #1A55B8;   /* Benny's shoe blue — primary */
  --blue-dark:   #0F3478;
  --blue-mid:    #1442A0;
  --blue-light:  #EEF4FF;
  --blue-xlight: #F5F8FF;

  --amber:       #D97706;   /* Coffee / warm accent */
  --amber-light: #FEF3C7;

  /* Neutral palette */
  --black:       #0A0F1E;
  --slate-900:   #0F172A;
  --slate-800:   #1E293B;
  --slate-600:   #475569;
  --slate-400:   #94A3B8;
  --slate-200:   #E2E8F0;
  --slate-100:   #F1F5F9;
  --off-white:   #F8FAFC;
  --white:       #FFFFFF;

  /* Typography */
  --font-head:   'Space Grotesk', system-ui, sans-serif;
  --font-body:   'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Border radius */
  --r-sm:  0.5rem;
  --r-md:  0.875rem;
  --r-lg:  1.25rem;
  --r-xl:  1.75rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 250ms var(--ease);
  --t-slow: 400ms var(--ease);
}


/* ─── 2. Reset & Base ──────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--white);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul { list-style: none; }

section { position: relative; }


/* ─── 3. Typography ────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem);     font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }

p { color: var(--slate-600); line-height: 1.7; }

strong { color: var(--slate-900); }
small  { font-size: 0.75em; }


/* ─── 4. Utility Classes ───────────────────────────── */

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1.5em;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  box-shadow: 0 6px 20px rgba(26,85,184,.35);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue-light); }
.btn--outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--blue-light);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

.btn--lg   { padding: 0.9em 2em; font-size: 1rem; }
.btn--sm   { padding: 0.55em 1.1em; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ── Section Badge ── */
.section-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.35em 0.9em;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
}

.section-badge--light {
  color: var(--blue-light);
  background: rgba(255,255,255,.12);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}

.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p  { font-size: 1.0625rem; }

.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,.75); }

.section-header--left {
  text-align: left;
  margin-inline: 0;
}


/* ─── 5. Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t-base), box-shadow var(--t-base);
}

.nav.is-scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--slate-200);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: var(--sp-6);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav__benny {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform var(--t-base);
}

.nav__brand:hover .nav__benny { transform: rotate(-8deg) scale(1.08); }

.nav__brand-text {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255,255,255,.9);
  transition: color var(--t-base);
}

.nav__brand-text strong {
  font-weight: 700;
  display: block;
  color: inherit;
}

.nav.is-scrolled .nav__brand-text       { color: var(--slate-600); }
.nav.is-scrolled .nav__brand-text strong { color: var(--blue); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--t-fast);
}

.nav__links a:hover { color: var(--white); }

.nav.is-scrolled .nav__links a       { color: var(--slate-600); }
.nav.is-scrolled .nav__links a:hover { color: var(--blue); }

.nav__cta { margin-left: var(--sp-4); flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform var(--t-base), opacity var(--t-base);
}

.nav.is-scrolled .nav__hamburger span { background: var(--slate-800); }

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}

.nav__mobile.is-open { display: block; }

.nav__mobile nav {
  display: flex;
  flex-direction: column;
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  gap: var(--sp-1);
}

.nav__mobile a {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--slate-800);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--slate-100);
  transition: color var(--t-fast);
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover      { color: var(--blue); }
.nav__mobile .btn         { margin-top: var(--sp-4); width: 100%; }


/* ─── 6. Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 110%, rgba(26,85,184,.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(15,52,120,.6) 0%, transparent 60%),
    linear-gradient(160deg, #0A0F1E 0%, #0F2F6B 45%, #1A3A80 100%);
  z-index: 0;
}

/* Subtle dot texture */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-12);
  padding-block: var(--sp-20);
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-6);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 0.4em 1em;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__headline {
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding-top: var(--sp-2);
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__proof-item strong {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.hero__proof-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.03em;
}

.hero__proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.2);
}

.hero__mascot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mascot {
  width: min(420px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.45));
  animation: float 5s ease-in-out infinite;
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  z-index: 1;
  line-height: 0;
}

.hero__wave svg { width: 100%; height: 80px; }


/* ─── 7. Plunge Section ────────────────────────────── */
.plunges {
  padding-block: var(--sp-24);
  background: var(--white);
}

.plunges__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.plunge-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
}

.plunge-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.plunge-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
}

.plunge-card__header--friday {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

.plunge-card__header--saturday {
  background: linear-gradient(135deg, #0F2F6B 0%, #1E6BB5 100%);
}

.plunge-card__day {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.plunge-card__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-1);
}

.plunge-card__tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.15);
  padding: 0.3em 0.8em;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.2);
}

.plunge-card__tag--notice {
  color: #FDE68A;
  background: rgba(251,191,36,.15);
  border-color: rgba(251,191,36,.3);
}

.plunge-card__body {
  padding: var(--sp-6);
  flex: 1;
}

.event-row {
  display: grid;
  grid-template-columns: 70px 16px 1fr;
  gap: var(--sp-3);
  align-items: start;
}

.event-row__time {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}

.event-row__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--slate-200);
  outline: 2px solid var(--slate-300);
  outline-offset: 2px;
  margin-top: 3px;
  flex-shrink: 0;
}

.event-row__dot--blue {
  background: var(--blue);
  outline-color: var(--blue-light);
}

.event-row__title {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.event-row__loc {
  font-size: 0.8125rem;
  color: var(--slate-400);
}

.event-connector {
  height: 28px;
  width: 2px;
  background: var(--slate-200);
  margin-left: calc(70px + var(--sp-3) + 7px);
  margin-block: 4px;
}

.plunge-card__note {
  font-size: 0.8125rem;
  color: var(--slate-400);
  padding: 0 var(--sp-6) var(--sp-4);
  line-height: 1.5;
}

.plunge-card__note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.plunge-card .btn {
  margin: 0 var(--sp-6) var(--sp-6);
  width: calc(100% - var(--sp-12));
}

.plunges__footer {
  margin-top: var(--sp-12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}


/* ─── 8. About ─────────────────────────────────────── */
.about {
  padding-block: var(--sp-24);
  background: var(--blue-xlight);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about__visual { position: relative; }

.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

.about__photo-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blue-light), var(--slate-200));
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  border: 2px dashed var(--slate-200);
  overflow: hidden;
}

.about__benny {
  width: 60%;
  object-fit: contain;
  opacity: 0.9;
  animation: float 5s ease-in-out infinite;
}

.about__placeholder-label {
  font-size: 0.8125rem;
  color: var(--slate-400);
  text-align: center;
  padding-inline: var(--sp-6);
}

.about__stat-card {
  position: absolute;
  bottom: var(--sp-6);
  right: calc(-1 * var(--sp-6));
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.25;
}

.about__stat-num {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
}

.about__stat-label {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 500;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.about__content h2 { margin-top: var(--sp-1); }

.about__lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--slate-800) !important;
  line-height: 1.6;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.pill {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.4em 0.9em;
  border-radius: var(--r-sm);
  border: 1px solid rgba(26,85,184,.15);
}


/* ─── 9. Merch ─────────────────────────────────────── */
.merch {
  padding-block: var(--sp-24);
  background: var(--white);
}

.merch__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.merch-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
}

.merch-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.merch-card__img {
  background: var(--slate-100);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-card__placeholder { font-size: 3.5rem; opacity: 0.7; }

.merch-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.merch-card__body h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.3;
}

.merch-card__body p {
  font-size: 0.8125rem;
  color: var(--slate-400);
  line-height: 1.5;
}

.merch-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--slate-100);
}

.merch-card__status {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-light);
  padding: 0.3em 0.7em;
  border-radius: var(--r-full);
}

/* Shopify collection embed wrapper */
.shopify-collection-wrap {
  margin-top: var(--sp-4);
}

/* ── Merch teaser (index.html) ── */
.merch-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}

.merch-teaser__card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-10);
  align-items: center;
  background: var(--blue-xlight);
  border: 1px solid rgba(26,85,184,.12);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
  width: 100%;
  max-width: 680px;
}

.merch-teaser__visual {
  background: var(--white);
  border-radius: var(--r-md);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--slate-200);
}

.merch-teaser__body h3 {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
}

.merch-teaser__body p {
  margin-bottom: var(--sp-6);
}

.merch-teaser__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.merch-teaser__cta p {
  font-size: 0.9375rem;
  color: var(--slate-600);
}

@media (max-width: 600px) {
  .merch-teaser__card {
    grid-template-columns: 1fr;
  }
  .merch-teaser__visual { max-width: 140px; }
  .merch-teaser__cta { flex-direction: column; text-align: center; }
}


/* ─── 10. Partners ─────────────────────────────────── */

/* Slim strip version (index.html) */
.partners-strip {
  padding-block: var(--sp-10);
  background: var(--blue-dark);
  border-top: none;
  border-bottom: none;
}

.partners-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.partners-strip__text {
  display: flex;
  align-items: baseline;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.partners-strip__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

.partners-strip__text p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.85);
  margin: 0;
}

@media (max-width: 600px) {
  .partners-strip__inner { flex-direction: column; align-items: flex-start; gap: var(--sp-5); }
}

/* Full partners section (contact.html / future partners page) */
.partners {
  padding-block: var(--sp-24);
  background: linear-gradient(160deg, var(--slate-900) 0%, var(--blue-dark) 100%);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.partner-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: background var(--t-base), transform var(--t-base);
}

.partner-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.partner-card__icon { font-size: 1.75rem; margin-bottom: var(--sp-3); }

.partner-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.partner-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

.partners__cta-block {
  margin-top: var(--sp-12);
  text-align: center;
  padding: var(--sp-10) var(--sp-8);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
}

.partners__cta-block h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.partners__cta-block p {
  color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-6);
}


/* ─── 11. Safety ───────────────────────────────────── */
.safety {
  padding-block: var(--sp-12);
  background: var(--off-white);
}

.safety__card {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #FDE68A;
  border-left: 4px solid var(--amber);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: 0 4px 16px rgba(217,119,6,.08);
}

.safety__icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }

.safety__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.safety__text h3 { font-size: 1.125rem; color: var(--slate-900); }

.safety__note {
  font-size: 0.875rem;
  color: var(--slate-400) !important;
  font-style: italic;
}


/* ─── 12. FAQ ──────────────────────────────────────── */
.faq {
  padding-block: var(--sp-24);
  background: var(--white);
}

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast);
}

.faq-item__q:hover { background: var(--slate-100); }

.faq-item__q.is-open {
  color: var(--blue);
  background: var(--blue-xlight);
}

.faq-item.is-open {
  border-color: var(--blue);
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--slate-400);
  transition: transform var(--t-base), color var(--t-fast);
  line-height: 1;
}

.faq-item__q.is-open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-item__a {
  padding: 0 var(--sp-6) var(--sp-5);
  background: var(--blue-xlight);
  animation: fade-in var(--t-base) both;
}

.faq-item__a p  { font-size: 0.9375rem; line-height: 1.7; }
.faq-item__a a  { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }


/* ─── 13. Footer ───────────────────────────────────── */
.footer {
  background: var(--slate-900);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer__top {
  display: flex;
  gap: var(--sp-16);
  align-items: flex-start;
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.footer__benny {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer__name {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.footer__slogan {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
  margin-top: 2px;
}

.footer__cols {
  display: flex;
  gap: var(--sp-16);
  margin-left: auto;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-1);
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--t-fast);
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.3);
}


/* ─── 14. Animations ───────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* ─── 15. Media Queries ────────────────────────────── */

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger        { display: flex; }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-8);
    padding-block: var(--sp-16) var(--sp-12);
  }

  .hero__text    { align-items: center; }
  .hero__sub     { margin-inline: auto; }
  .hero__mascot-wrap { order: -1; }
  .hero__mascot  { width: min(280px, 70%); }
  .hero__proof   { justify-content: center; }

  .plunges__grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }

  .about__grid   { grid-template-columns: 1fr; }
  .about__visual { display: none; }

  .merch__grid   { grid-template-columns: repeat(2, 1fr); }

  .partners__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__top  { flex-direction: column; gap: var(--sp-8); }
  .footer__cols { margin-left: 0; gap: var(--sp-10); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  :root {
    --sp-24: 4rem;
    --sp-20: 3.5rem;
    --sp-16: 3rem;
  }

  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .hero__proof { gap: var(--sp-4); }

  .merch__grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }

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

  .safety__card { flex-direction: column; gap: var(--sp-3); }

  .footer__cols { flex-direction: column; gap: var(--sp-6); }
}
