/* ============================================================
   SWEAT + SIP — Event landing page
   Built on the STRONG Pilates design system (Brand Guidelines 2026).
   Primary palette is black + white; sky blue (#97CAEA / PMS 291)
   is the only accent. Headings: Kessel 105 → Montserrat substitute.
   ============================================================ */

:root {
  /* ---- Black & neutral ink ramp ---- */
  --ink-1000: #000000;
  --ink-900:  #0A0A0A;
  --ink-800:  #161616;
  --ink-700:  #222222;
  --ink-600:  #303030;
  --ink-500:  #454545;
  --ink-400:  #6B6B6B;
  --ink-300:  #9A9A9A;
  --ink-200:  #C9C9C9;
  --ink-100:  #E4E4E4;
  --ink-50:   #F2F2F2;

  --white:    #FFFFFF;

  /* ---- Sky Blue accent (the ONLY blue on the page) ---- */
  --sky-400:  #97CAEA;
  --sky-glow: rgba(151, 202, 235, 0.40);

  --danger-500: #D8412B;

  /* ---- Type ---- */
  --font-display: 'Montserrat', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Montserrat', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-script:  'Dancing Script', 'Segoe Script', cursive;
}

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

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

body {
  margin: 0;
  background: var(--ink-1000);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

::selection { background: var(--sky-400); color: var(--ink-1000); }

:focus-visible {
  outline: 2px solid var(--sky-400);
  outline-offset: 2px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== Shared type patterns ===== */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-400);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 10px 0 0;
}

.section-lead {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-400);
  max-width: 52ch;
  margin: 16px 0 0;
  font-weight: 500;
}

/* ===== Buttons (STRONG DS .sp-btn) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 120ms cubic-bezier(0.22, 1, 0.36, 1),
              color 120ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 120ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 120ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:active { transform: translateY(1px); }

.btn--sm { font-size: 12px; padding: 8px 16px; }
.btn--lg { font-size: 16px; padding: 16px 34px; }

/* On dark surfaces the primary action inverts to white-on-black */
.dark .btn--primary {
  background: var(--white);
  color: var(--ink-1000);
  border-color: var(--white);
}
.dark .btn--primary:hover {
  background: var(--ink-50);
  border-color: var(--ink-50);
}
.dark .btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.dark .btn--outline:hover {
  background: var(--white);
  color: var(--ink-1000);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-700);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__brand { display: flex; align-items: center; gap: 13px; }
.nav__brand img { height: 25px; width: auto; }
.nav__slash { margin: 0 1px; color: var(--ink-600); font-size: 17px; }
.nav__event {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--sky-400);
  white-space: nowrap;
}
.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-200);
  transition: color 120ms;
}
.nav__link:hover { color: #fff; }

@media (max-width: 720px) {
  .nav__link { display: none; }
}
@media (max-width: 600px) {
  .nav__slash, .nav__event { display: none; }
  .nav__brand img { height: 20px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--ink-1000);
  overflow: hidden;
}
.hero__inner {
  padding-top: 66px;
  padding-bottom: 78px;
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: center;
}
.hero__copy { flex: 1 1 380px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid var(--ink-600);
  border-radius: 999px;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-400);
}
.hero__badge-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-100);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
  color: #fff;
}
.hero__script {
  margin-top: 12px;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--sky-400);
  line-height: 1;
}
.hero__lead {
  color: var(--ink-100);
  font-size: 18px;
  line-height: 1.62;
  max-width: 48ch;
  margin: 24px 0 0;
  font-weight: 500;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--ink-600);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.fact-pill svg { color: var(--sky-400); }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}
.hero__charity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--ink-200);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__charity svg { color: var(--sky-400); flex: none; }

.hero__poster {
  flex: 0 1 358px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
.hero__poster img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--ink-600);
  box-shadow: 0 36px 80px -34px rgba(0, 0, 0, 0.95);
}
.hero__limited {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: var(--sky-400);
  color: #000;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== Partner strip ===== */
.partners {
  background: var(--ink-900);
  border-top: 1px solid var(--ink-700);
  border-bottom: 1px solid var(--ink-700);
}
.partners__inner {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 44px;
}
.partners__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.partners__inner img { width: auto; opacity: 0.92; }
.partners__t2mb { height: 30px; }
.partners__modus { height: 48px; }
.partners__nort { height: 30px; }

/* ===== Stat band (STRONG DS .sp-stat) ===== */
.stats { background: var(--ink-1000); }
.stats__inner { padding-top: 58px; padding-bottom: 58px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px 20px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.stat--accent .stat__eyebrow { color: var(--sky-400); }
.stat__value {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  color: var(--white);
}
.stat__unit { font-size: 0.5em; font-weight: 800; margin-left: 2px; }
.stat__caption { font-size: 14px; color: var(--ink-400); font-weight: 500; }

/* ===== Light sections ===== */
.section--white { background: var(--white); color: var(--ink-1000); }
.section--grey  { background: var(--ink-50);  color: var(--ink-1000); }
.section__inner { padding-top: 88px; padding-bottom: 88px; }

/* ===== What to expect ===== */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.expect-card {
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.expect-card__media {
  position: relative;
  height: 220px;
  background: var(--ink-1000);
}
.expect-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expect-card__media img.pos-top { object-position: center 30%; }
.expect-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 10px;
  border-radius: 6px;
}
.expect-card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.expect-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.expect-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-400);
  margin: 10px 0 0;
  font-weight: 500;
}
.expect-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}
.tag {
  padding: 6px 11px;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* ===== Why ===== */
.why {
  position: relative;
  background: url('../assets/why-bg.jpg') center / cover no-repeat var(--ink-1000);
  color: var(--white);
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}
.why__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 84px 24px;
  text-align: center;
}
.why__statement {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 18px 0 0;
}
.why__text {
  font-size: 17px;
  line-height: 1.66;
  color: var(--ink-100);
  margin: 22px 0 0;
  font-weight: 500;
}

/* ===== Who it's for ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .who-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .who-grid { grid-template-columns: 1fr; }
}
.who-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
}
.who-item__check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sky-400);
  color: var(--ink-1000);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.who__closer {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  margin: 32px 0 0;
}
.who__closer span { color: var(--sky-400); }

/* ===== Details + map ===== */
.details-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}
.details-card {
  flex: 1 1 360px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 12px 26px;
}
.details-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-100);
}
.details-row:last-child { border-bottom: 0; }
.details-row > svg { flex: none; color: var(--ink-1000); }
.details-row__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.details-row__value {
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}
.details-map {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.details-map__frame {
  flex: 1;
  min-height: 320px;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink-100);
}
.details-map__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}
.details-map__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-1000);
  transition: color 120ms;
}
.details-map__link:hover { color: var(--sky-400); }

/* ===== Checkout ===== */
.checkout { border-top: 1px solid var(--ink-100); }
.checkout__inner { padding-top: 88px; padding-bottom: 96px; }
.checkout__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.checkout__head .section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1;
}
.checkout__head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-400);
  margin: 14px 0 0;
  font-weight: 500;
}
.checkout__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 44px;
  align-items: flex-start;
  justify-content: center;
}
.checkout__main { flex: 1 1 460px; max-width: 560px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.4);
}
.form-card__heading {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-400);
}
.field { margin-top: 16px; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
  display: block;
  margin-bottom: 7px;
}
.field input {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-1000);
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 9px;
  padding: 13px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus {
  border-color: var(--sky-400);
  box-shadow: 0 0 0 3px var(--sky-glow);
}
.field__error {
  font-size: 12px;
  color: var(--danger-500);
  margin-top: 6px;
  font-weight: 600;
  min-height: 14px;
}
.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.field-row .field { flex: 1 1 200px; margin-top: 0; }
.field-row .field--phone { flex: 1 1 160px; }
.field-row .field--exp { flex: 1 1 120px; }
.field-row .field--cvc { flex: 1 1 100px; }
.field-row .field--zip { flex: 1 1 120px; }

.field--card { position: relative; margin-top: 14px; }
.field--card input { padding-right: 70px; letter-spacing: 0.02em; }
.field--card .card-brands {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 4px;
}
.field--card .card-brands span {
  width: 26px;
  height: 17px;
  border-radius: 3px;
}
/* neutral ink — #97CAEA is the only blue allowed on the page */
.card-brands .visa { background: linear-gradient(135deg, var(--ink-800), var(--ink-500)); }
.card-brands .mc   { background: linear-gradient(135deg, #eb001b, #f79e1b); }
.field--card__wrap { position: relative; }

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--ink-100);
}
.qty-row__title { font-size: 14px; font-weight: 700; }
.qty-row__sub { font-size: 12.5px; color: var(--ink-400); font-weight: 500; }
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  border: 0;
  background: var(--white);
  width: 42px;
  height: 42px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-1000);
  cursor: pointer;
  line-height: 1;
}
.qty-stepper button:hover { background: var(--ink-50); }
.qty-stepper output {
  min-width: 44px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.payment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}
.payment-head__secure {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.pay-btn {
  margin-top: 14px;
  width: 100%;
  border: 0;
  background: var(--ink-1000);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 16px;
  padding: 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background 0.15s, transform 0.1s;
}
.pay-btn:hover { background: var(--ink-800); }
.pay-btn:active { transform: translateY(1px); }
.form-card__demo-note {
  font-size: 12px;
  color: var(--ink-300);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  font-weight: 500;
}

/* Success state */
.success-card {
  background: var(--ink-1000);
  color: #fff;
  border-radius: 18px;
  padding: 44px 34px;
  text-align: center;
}
@keyframes spPop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.success-card__tick {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--sky-400);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: spPop 0.5s ease-out both;
}
.success-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
}
.success-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-200);
  margin: 12px 0 0;
  font-weight: 500;
}
.success-card__facts {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px auto 0;
  padding: 18px 24px;
  border: 1px solid var(--ink-700);
  border-radius: 12px;
  text-align: left;
}
.success-card__fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.success-card__fact svg { color: var(--sky-400); flex: none; }
.success-card__again {
  margin-top: 26px;
  border: 1px solid var(--ink-600);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
}
.success-card__again:hover { background: var(--ink-800); }

/* Order summary */
.summary {
  flex: 0 1 340px;
  align-self: flex-start;
  position: sticky;
  top: 88px;
  background: var(--ink-1000);
  color: #fff;
  border-radius: 18px;
  padding: 28px;
}
.summary__heading {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-300);
}
.summary__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.summary__item-name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
}
.summary__item-when {
  font-size: 13px;
  color: var(--ink-300);
  margin-top: 3px;
  font-weight: 500;
}
.summary__item-price { font-size: 14px; font-weight: 700; white-space: nowrap; }
.summary__qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-200);
  font-weight: 600;
}
.summary__rule { height: 1px; background: var(--ink-700); margin: 20px 0; }
.summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.summary__total-label {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.summary__total-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.01em;
}
.summary__charity {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(151, 202, 235, 0.12);
  border: 1px solid rgba(151, 202, 235, 0.3);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.summary__charity svg { color: var(--sky-400); flex: none; }
.summary__perks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
}
.summary__perk {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-200);
  font-weight: 500;
}
.summary__perk svg { color: var(--sky-400); flex: none; }

/* ===== FAQ ===== */
.faq__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 84px 24px;
}
.faq__inner .section-title { margin-bottom: 28px; }
.faq details { border-top: 1px solid var(--ink-200); }
.faq details:last-of-type { border-bottom: 1px solid var(--ink-200); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ''; }
.faq .chev {
  flex: none;
  transition: transform 0.2s;
  color: var(--ink-400);
}
.faq details[open] .chev { transform: rotate(180deg); }
.faq details p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-400);
  margin: 0 0 22px;
  font-weight: 500;
  max-width: 64ch;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink-1000);
  color: #fff;
  border-top: 1px solid var(--ink-700);
}
.footer__inner { padding-top: 64px; padding-bottom: 36px; }
.footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ink-700);
}
.footer__headline {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding: 44px 0 36px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}
.footer__brand-row img { height: 24px; width: auto; }
.footer__brand-row span {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sky-400);
}
.footer__about {
  color: var(--ink-300);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 0;
  font-weight: 500;
  max-width: 32ch;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.footer__link {
  color: var(--ink-200);
  font-size: 14px;
  font-weight: 500;
  transition: color 120ms;
}
.footer__link:hover { color: #fff; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Utility */
.hidden { display: none !important; }
