/* =========================================================
   PunchWorX demo redesign - shared stylesheet
   ========================================================= */

:root {
  --navy: #062659;
  --navy-deep: #03183D;
  --sky: #38B6FF;
  --sky-dark: #1C97E0;
  --gray-light: #D9D9D9;
  --surface: #F3F6FA;
  --white: #FFFFFF;
  --ink: #0B1B33;
  --muted: #4A5A72;
  --success: #1D8A4C;
  --success-bg: #E7F6ED;
  --danger: #B3261E;
  --danger-bg: #FCEAE9;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(6, 38, 89, 0.08);
  --shadow-md: 0 8px 28px rgba(6, 38, 89, 0.14);
  --shadow-lg: 0 20px 60px rgba(3, 24, 61, 0.28);
  --header-h: 128px;
  --bottom-bar-h: 76px;
  --font-display: "Teko", sans-serif;
  --font-body: "Atkinson Hyperlegible", sans-serif;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

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

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  padding-bottom: 0;
}

body.has-bottom-bar {
  padding-bottom: calc(var(--bottom-bar-h) + 12px);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3.2vw, 1.9rem); }
h4 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a {
  color: var(--sky-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover { color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.6em;
  display: inline-block;
}

.eyebrow.on-dark { color: var(--sky); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head p { color: var(--muted); font-size: 1.15rem; }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p, .bg-navy li { color: #D7E3F5; }
.bg-navy .section-head p { color: #C4D6EF; }

.bg-surface { background: var(--surface); }
.bg-deep { background: var(--navy-deep); color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--sky);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--sky-dark); color: var(--navy-deep); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-outline.on-light {
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline.on-light:hover { background: var(--navy); color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-deep); color: var(--white); }

.btn-block { width: 100%; }
.btn-sm { min-height: 44px; padding: 8px 20px; font-size: 0.95rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Utility bar ---------- */
.utility-bar {
  background: var(--navy-deep);
  color: #CFE0F7;
  font-size: 0.9rem;
  padding: 8px 0;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-bar a { color: #CFE0F7; font-weight: 700; text-decoration: none; }
.utility-bar a:hover { color: var(--sky); }
.utility-left { display: flex; align-items: center; gap: 8px; }
.utility-right { display: flex; align-items: center; gap: 18px; }

.text-size-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px;
}
.text-size-toggle button {
  background: transparent;
  border: none;
  color: #CFE0F7;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 0.85rem;
}
.text-size-toggle button[aria-pressed="true"] {
  background: var(--sky);
  color: var(--navy-deep);
}
.text-size-toggle span.label { padding-right: 2px; color: #9FB6D9; }

/* ---------- Main nav ---------- */
.site-header { position: sticky; top: 0; z-index: 60; }

.main-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand img { width: 44px; height: 44px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--white);
}
.brand:hover .brand-word { color: var(--sky); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #E6EEFA;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--sky);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.16);
  color: var(--white);
  cursor: pointer;
}
.icon-btn:hover { background: rgba(255,255,255,0.16); }
.icon-btn svg { width: 24px; height: 24px; }

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--sky);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
}
.cart-count[hidden] { display: none; }

.hamburger-btn { display: none; }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--navy-deep);
  color: var(--white);
  padding: 20px;
  overflow-y: auto;
}
.mobile-nav-panel[hidden] { display: none; }
.mobile-nav-panel .mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mobile-nav-panel ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-panel a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.7rem;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: block;
}
.mobile-nav-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.16);
    color: var(--white);
    cursor: pointer;
  }
  .nav-actions .btn-primary.nav-cta { display: none; }
}

/* ---------- Bottom action bar (mobile) ---------- */
.bottom-action-bar {
  display: none;
}
@media (max-width: 900px) {
  .bottom-action-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,0.14);
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }
  .bottom-action-bar a {
    flex: 1;
    min-height: 52px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,24,61,0.55) 0%, rgba(3,24,61,0.78) 55%, rgba(3,24,61,0.96) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 64px 56px;
  max-width: 760px;
}
.hero p.lead { font-size: 1.3rem; color: #E6EEFA; max-width: 620px; }
.hero.hero-short { min-height: 360px; }
.hero.hero-short .hero-inner { padding-block: 48px 40px; }

/* ---------- Proof bar ---------- */
.proof-bar {
  background: var(--navy-deep);
  color: var(--white);
  padding: 28px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.proof-grid .stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--sky);
  line-height: 1;
}
.proof-grid .stat-label {
  font-size: 0.98rem;
  color: #C4D6EF;
  margin-top: 4px;
}
@media (max-width: 720px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.icon-card {
  text-align: left;
  border: 1px solid rgba(6,38,89,0.08);
}
.icon-card .icon-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--sky-dark);
}
.icon-badge svg { width: 30px; height: 30px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Membership / plan cards ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 940px) {
  .plans-grid { grid-template-columns: 1fr; }
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}
.plan-card.featured {
  border-color: var(--sky);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
@media (max-width: 940px) {
  .plan-card.featured { transform: none; }
}
.plan-badge {
  position: absolute;
  top: -16px;
  left: 28px;
  background: var(--sky);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.plan-status-badge {
  display: inline-block;
  background: var(--surface);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.plan-name { font-size: 1.5rem; margin-bottom: 4px; }
.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin: 6px 0 4px;
}
.plan-price .unit { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; color: var(--muted); }
.plan-desc { color: var(--muted); margin-bottom: 18px; }
.plan-checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.02rem;
}
.plan-checklist svg {
  flex: none;
  width: 22px; height: 22px;
  color: var(--sky-dark);
  margin-top: 2px;
}
.plans-fineprint {
  text-align: center;
  color: #C4D6EF;
  margin-top: 28px;
  font-size: 0.98rem;
}
.bg-surface .plans-fineprint, .bg-white .plans-fineprint { color: var(--muted); }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { text-align: left; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

/* ---------- Photo grid ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.photo-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }
.photo-tile .tile-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(3,24,61,0.9));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

/* ---------- Schedule grid ---------- */
.schedule-wrap { overflow-x: auto; }
.schedule-grid {
  display: grid;
  grid-template-columns: 110px repeat(4, 1fr);
  gap: 10px;
  min-width: 640px;
}
.schedule-grid .sched-head {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-align: center;
  padding: 10px 4px;
  color: var(--navy);
}
.schedule-grid .sched-time {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 4px;
}
.sched-pill {
  background: var(--surface);
  border: 1px solid rgba(6,38,89,0.1);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 12px 6px;
  font-weight: 700;
  color: var(--navy);
}
.sched-pill.active { background: var(--sky); color: var(--navy-deep); border-color: var(--sky); }
.sched-pill.aqua { background: #E4F5FF; color: var(--navy); font-size: 0.9rem; font-weight: 700; }
.sched-pill.off { background: transparent; border-style: dashed; color: var(--muted); font-weight: 400; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--sky);
}
.testimonial-card p.quote {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.testimonial-card .who { font-weight: 700; color: var(--navy); }

/* ---------- Community / CTA bands ---------- */
.band {
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 64px 32px;
  text-align: center;
}
.band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,24,61,0.6), rgba(3,24,61,0.9));
}
.band-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.band-inner h2 { color: var(--white); }
.band-inner p { color: #E6EEFA; font-size: 1.2rem; }

/* ---------- Sponsors ---------- */
.sponsor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.sponsor-item { text-align: center; }
.sponsor-item img {
  max-height: 72px;
  width: auto;
  margin: 0 auto 8px;
  border-radius: 8px;
}
.sponsor-item .sponsor-tier {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 64px 0;
}
.final-cta .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #C4D6EF;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.site-footer h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.site-footer a { color: #C4D6EF; text-decoration: none; }
.site-footer a:hover { color: var(--sky); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-disclaimer { font-size: 0.85rem; color: #8FA6C9; width: 100%; text-align: center; margin-top: 14px; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(3,24,61,0.5);
  z-index: 95;
}
.cart-overlay[hidden] { display: none; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: var(--white);
  z-index: 96;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.cart-drawer[hidden] { display: none; }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(6,38,89,0.1);
}
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-drawer-foot { padding: 20px 22px; border-top: 1px solid rgba(6,38,89,0.1); }
.cart-line {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6,38,89,0.08);
}
.cart-line-thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  background: var(--surface);
  flex: none;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-line-thumb svg { width: 100%; height: 100%; }
.cart-line-info { flex: 1; }
.cart-line-info .name { font-weight: 700; color: var(--navy); }
.cart-line-info .meta { color: var(--muted); font-size: 0.92rem; }
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(6,38,89,0.2);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.qty-stepper button {
  width: 34px; height: 34px;
  border: none;
  background: var(--surface);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.qty-stepper output { width: 34px; text-align: center; font-weight: 700; }
.remove-line {
  background: none; border: none;
  color: var(--danger);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 8px;
  padding: 4px 0;
}
.cart-empty { text-align: center; padding: 40px 10px; color: var(--muted); }
.cart-subtotal-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 14px;
}

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.02rem;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 2px solid rgba(6,38,89,0.18);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 120px; padding-top: 14px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--sky-dark);
}
.field .hint { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.field .error-msg {
  color: var(--danger);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 6px;
  display: none;
}
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: var(--danger);
}
.field.invalid .error-msg { display: block; }

.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1; }
@media (max-width: 600px) { .field-row { flex-direction: column; gap: 0; } }

.checkbox-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-check {
  position: relative;
}
.chip-check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip-check label {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  min-height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(6,38,89,0.18);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  margin: 0;
}
.chip-check input:checked + label {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--navy-deep);
}
.chip-check input:focus-visible + label { outline: 3px solid var(--sky-dark); outline-offset: 2px; }

.radio-cards { display: flex; flex-direction: column; gap: 14px; }
.radio-card { position: relative; }
.radio-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.radio-card label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 2px solid rgba(6,38,89,0.18);
  cursor: pointer;
}
.radio-card input:checked + label {
  border-color: var(--sky);
  background: #EFF9FF;
  box-shadow: var(--shadow-sm);
}
.radio-card input:focus-visible + label { outline: 3px solid var(--sky-dark); outline-offset: 2px; }
.radio-card .rc-name { font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.radio-card .rc-desc { color: var(--muted); font-size: 0.98rem; margin-top: 4px; }
.radio-card .rc-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); white-space: nowrap; }

.success-banner {
  background: var(--success-bg);
  color: var(--success);
  border: 2px solid var(--success);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.success-banner[hidden] { display: none; }
.demo-banner {
  background: #FFF6E0;
  border: 2px solid #E0A400;
  color: #7A5A00;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.demo-banner svg { flex: none; width: 24px; height: 24px; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(6,38,89,0.12);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; width: 22px; height: 22px; transition: transform 0.2s ease; color: var(--sky-dark); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item p { padding-bottom: 18px; color: var(--muted); margin: 0; }

/* ---------- Wizard (join.html) ---------- */
.wizard-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.wizard-step-dot {
  flex: 1;
  text-align: center;
}
.wizard-step-dot .dot-num {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--surface);
  border: 2px solid rgba(6,38,89,0.15);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
}
.wizard-step-dot.active .dot-num,
.wizard-step-dot.done .dot-num {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.wizard-step-dot .dot-label { font-size: 0.85rem; font-weight: 700; color: var(--muted); }
.wizard-step-dot.active .dot-label { color: var(--navy); }

.wizard-panel[hidden] { display: none; }
.wizard-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 5vw, 40px);
}
.wizard-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; }

.summary-list { list-style: none; margin: 0 0 18px; padding: 0; }
.summary-list li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(6,38,89,0.08);
}
.summary-total {
  display: flex; justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  padding-top: 10px;
}

.confirm-screen { text-align: center; max-width: 560px; margin: 0 auto; }
.confirm-check {
  width: 90px; height: 90px;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.confirm-check svg { width: 48px; height: 48px; }

/* ---------- Shop ---------- */
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; justify-content: center; }
.filter-chip {
  border: 2px solid rgba(6,38,89,0.18);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px;
  min-height: 48px;
  cursor: pointer;
}
.filter-chip[aria-pressed="true"] { background: var(--navy); color: var(--white); border-color: var(--navy); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 940px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card .thumb {
  background: var(--surface);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.product-card .thumb svg { width: 100%; height: 100%; }
.product-card .p-info { padding: 18px 20px 22px; }
.product-card .p-name { font-weight: 700; color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.product-card .p-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); }

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .pdp-grid { grid-template-columns: 1fr; gap: 28px; } }
.pdp-image {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.pdp-image svg { width: 100%; height: 100%; }
.pdp-price { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); margin: 6px 0 18px; }
.option-group { margin-bottom: 22px; }
.option-label { font-weight: 700; color: var(--navy); margin-bottom: 10px; display: block; }
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 3px solid transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.swatch[aria-pressed="true"] { border-color: var(--navy); box-shadow: 0 0 0 3px var(--white) inset; }
.swatch[aria-pressed="true"]::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 999px;
  border: 2px solid var(--sky-dark);
}
.size-row { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  min-width: 52px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(6,38,89,0.18);
  background: var(--white);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  padding: 6px 12px;
}
.size-btn[aria-pressed="true"] { background: var(--navy); color: var(--white); border-color: var(--navy); }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.pdp-desc { color: var(--muted); margin-top: 24px; }

/* ---------- Info / contact cards ---------- */
.info-card { text-align: left; }
.info-card .icon-badge { background: var(--navy); color: var(--sky); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Coach / board cards ---------- */
.coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .coach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .coach-grid { grid-template-columns: 1fr; } }
.coach-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.coach-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--surface); }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.coach-body { padding: 18px 20px 22px; }
.coach-body .c-name { font-size: 1.25rem; color: var(--navy); margin-bottom: 2px; }
.coach-body .c-cred { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; }
.role-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.role-chip {
  background: var(--surface);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}

.board-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 940px) { .board-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
.board-card { text-align: center; }
.board-photo {
  width: 96px; height: 96px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 12px;
  background: var(--surface);
}
.board-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.board-card .b-name { font-weight: 700; color: var(--navy); }
.board-card .b-role { color: var(--muted); font-size: 0.92rem; }

/* ---------- Marquee ---------- */
.marquee-strip {
  background: var(--sky);
  color: var(--navy-deep);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  animation: marquee 22s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Donate amount chips ---------- */
.amount-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.amount-chip {
  min-width: 96px;
  min-height: 56px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(6,38,89,0.18);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  padding: 6px 18px;
}
.amount-chip[aria-pressed="true"] { background: var(--sky); border-color: var(--sky); color: var(--navy-deep); }
.freq-toggle { display: inline-flex; border: 2px solid rgba(6,38,89,0.18); border-radius: 999px; overflow: hidden; margin-bottom: 24px; }
.freq-toggle button {
  border: none;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 22px;
  min-height: 48px;
  cursor: pointer;
}
.freq-toggle button[aria-pressed="true"] { background: var(--navy); color: var(--white); }

/* ---------- Order summary card ---------- */
.order-summary-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; }
.summary-row.total { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); border-top: 1px solid rgba(6,38,89,0.15); margin-top: 8px; padding-top: 14px; }

.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 940px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
}

.delivery-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.switch { position: relative; display: inline-block; width: 52px; height: 30px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.switch .track {
  position: absolute; inset: 0;
  background: rgba(6,38,89,0.25);
  border-radius: 999px;
  transition: background 0.15s ease;
}
.switch .track::before {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--white);
  top: 3px; left: 3px;
  transition: transform 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.switch input:checked + .track { background: var(--sky-dark); }
.switch input:checked + .track::before { transform: translateX(22px); }
.switch input:focus-visible + .track { outline: 3px solid var(--sky); outline-offset: 3px; }

/* ---------- Small helpers ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--muted); }
.divider { height: 1px; background: rgba(6,38,89,0.1); margin: 28px 0; border: none; }
.badge-pill {
  display: inline-block;
  background: var(--surface);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sky);
  color: var(--navy-deep);
  padding: 14px 20px;
  font-weight: 700;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

@media (max-width: 560px) {
  h1 { font-size: 2.6rem; }
  .plan-card.featured { transform: none; }
}

/* ---------- Review fixes ---------- */
/* Inline SVG icons inside text rows and buttons had no size and rendered huge */
.utility-left svg,
.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}
.utility-left a { line-height: 1.3; }

/* Hero headlines sit on dark photo overlays */
.hero h1 { color: var(--white); }

/* Plan cards are white, so they must not inherit light text from navy sections */
.bg-navy .plan-card h2,
.bg-navy .plan-card h3,
.bg-navy .plan-card h4,
.bg-navy .plan-card .plan-name { color: var(--navy); }
.bg-navy .plan-card p { color: var(--muted); }
.bg-navy .plan-card li { color: var(--ink); }

/* Fine print reads on both white and navy sections */
.plans-fineprint { color: var(--muted); }
.bg-navy .plans-fineprint { color: #C4D6EF; }
