@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");

:root {
  --ink: #0f0f11;
  --ink-2: #3a3a40;
  --ink-3: #7a7a85;
  --paper: #ffffff;
  --paper-2: #f6f5f7;
  --line: #e6e4ea;
  --pink: #ff2d95;
  --pink-600: #e0177c;
  --pink-100: #ffe1f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 15, 17, 0.08);
  --font: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}

.o {
  color: var(--pink);
}

/* ---------- Masthead ---------- */
.masthead {
  text-align: center;
  padding: 28px 0 14px;
}

.masthead h1 {
  margin: 0;
  font-size: clamp(26px, 6vw, 68px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
}

.masthead .wordmark {
  position: relative;
  display: inline-block;
}

.masthead .sig {
  position: absolute;
  right: -0.35em;
  bottom: -0.62em;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  transform: rotate(-6deg);
  transform-origin: right top;
  color: var(--pink-600);
  font-family: Allura, "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400;
  font-size: 0.46em;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.masthead .sig-line {
  width: 4.6em;
  height: 0.32em;
  margin-top: -0.12em;
  overflow: visible;
}

.masthead .city {
  margin: 18px 0 0;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 60px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 44px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu > li {
  position: relative;
}

.menu > li > a,
.menu > li > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  background: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.menu > li > a:hover,
.menu > li > button:hover,
.menu > li > button[aria-expanded="true"] {
  color: var(--ink);
  background: var(--paper-2);
}

.menu .caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.6;
}

.sub {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
}

.menu > li > button[aria-expanded="true"] + .sub {
  display: block;
}

.sub a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-2);
}

.sub a:hover {
  background: var(--pink-100);
  color: var(--ink);
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
  box-shadow: 0 0 0 2px var(--paper);
}

.chat-zone {
  margin-left: 8px;
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 10px 18px !important;
}

.chat-zone:hover {
  background: var(--pink) !important;
}

.chat-zone .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 149, 0.25);
}

.chat-zone:hover .dot {
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .nav .wrap {
    justify-content: space-between;
  }
  .nav-toggle {
    display: inline-block;
  }
  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 14px;
  }
  .menu.open {
    display: flex;
  }
  .menu > li > a,
  .menu > li > button {
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
  }
  .sub {
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--pink-100);
    margin: 0 0 6px 14px;
    padding: 4px 0;
  }
  .chat-zone {
    margin: 6px 0 0;
    justify-content: center !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
}

button.btn {
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

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

.btn[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

.plans-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--ink-3);
  font-size: 14px;
}

.plan-note {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-left: 3px solid var(--pink);
  background: var(--pink-soft, #fff0f6);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2, #444);
}

.wall {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}

.wall-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line, #e6e6ea);
  border-radius: 14px;
  background: #fff;
}

.wall-times {
  display: flex;
  flex-direction: column;
  font-variant-numeric: tabular-nums;
}

.wall-times s {
  color: var(--ink-3);
  font-size: 15px;
}

.wall-times strong {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.wall-who h4 {
  margin: 0 0 4px;
  font-size: 17px;
}

.wall-who p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.week {
  margin-top: 40px;
  padding: 24px 26px;
  border-radius: 14px;
  background: var(--pink-soft, #fff0f6);
}

.week ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.week time {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pink);
}

.week p {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .wall-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.plan-faq {
  max-width: 760px;
  margin: 20px auto 0;
  padding: 4px 18px;
  border: 1px solid var(--line, #e6e6ea);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.plan-faq summary {
  padding: 12px 0;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.plan-faq p {
  margin: 0 0 16px;
}

.plans-note.error {
  color: var(--pink-600);
}

.btn-primary {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--pink-600);
  border-color: var(--pink-600);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

.btn-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-light:hover {
  background: #fff;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(82vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  z-index: 0;
}

.hero::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15, 15, 17, 1) 0%,
    rgba(15, 15, 17, 0) 22%,
    rgba(15, 15, 17, 0) 100%
  );
}

.hero .wrap {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 72px clamp(20px, 5vw, 96px) 56px;
  align-self: center;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 14px;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 14ch;
}

.hero p {
  margin: 0 0 26px;
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.88);
}

.hero .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .stats {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
}

.hero .stats div strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
}

.hero .stats div span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Full-bleed hero variant: photo fills the section, copy sits bottom-left */
.hero--bleed {
  display: block;
  min-height: min(84vh, 800px);
}

.hero--bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 58%;
}

.hero--bleed::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 15, 17, 0.1) 0%,
      rgba(15, 15, 17, 0.25) 45%,
      rgba(15, 15, 17, 0.92) 100%
    ),
    linear-gradient(90deg, rgba(15, 15, 17, 0.55) 0%, rgba(15, 15, 17, 0) 60%);
}

.hero--bleed .wrap {
  position: relative;
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  min-height: min(84vh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 48px;
}

.hero--bleed h2 {
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: none;
}

.hero--bleed h2 em {
  font-style: normal;
  color: var(--pink);
}

.hero--bleed p {
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 46ch;
}

.hero--bleed .stats {
  margin-top: 28px;
  padding-top: 18px;
}

/* ---------- Sections ---------- */
section.block {
  padding: 84px 0;
}

section.block.alt {
  background: var(--paper-2);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
  margin: 0 0 12px;
}

.block h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.block p.lead {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  max-width: 60ch;
}

.zones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.zone {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    border-color 0.15s;
}

.zone:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}

.zone .num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--pink);
  font-weight: 700;
}

.zone h4 {
  margin: 10px 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.zone p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}

.zone .more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 2px solid var(--pink);
}

/* Story / second image */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story figure {
  margin: 0;
  position: relative;
  isolation: isolate;
}

.story img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 640px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.story figure::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  z-index: 0;
}

.story .quote {
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--pink);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-2);
}

.story ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.story li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-2);
}

.story li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.plan.featured {
  border-color: var(--pink);
  box-shadow: 0 16px 40px rgba(255, 45, 149, 0.14);
}

.plan .tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--pink-100);
  color: var(--pink-600);
  margin-bottom: 14px;
}

.plan h4 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
}

.plan .price {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 6px 0 2px;
}

.plan .price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
}

.plan .per {
  color: var(--ink-3);
  font-size: 13px;
  margin-bottom: 18px;
}

.plan ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 15px;
  flex: 1;
}

.plan li::before {
  content: "— ";
  color: var(--pink);
  font-weight: 700;
}

/* Events */
.events {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.event {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event .date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 16px;
}

.event .date strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.event .date span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
}

.event h4 {
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 800;
}

.event p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

/* Capture band */
.capture {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 72px 0;
}

.capture-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
  opacity: 0.22;
  filter: grayscale(1);
  z-index: -1;
}

.capture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(15, 15, 17, 0.95) 0%,
    rgba(15, 15, 17, 0.55) 100%
  );
}

.coach {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.bio {
  flex: none;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 45, 149, 0.25);
}

.capture .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.capture h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.05;
}

.capture p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.capture form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.capture input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 15px;
}

.capture input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.capture .fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

.zone-result {
  margin-top: 22px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 45, 149, 0.45);
  background: rgba(0, 0, 0, 0.35);
}

.zone-result h4 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
}

.zone-result p {
  margin: 0 0 16px;
}

.plan.recommended {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

/* Step 2: short onboarding questionnaire, revealed after the email lands */
.capture .onboard {
  display: block;
  margin-top: 22px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 45, 149, 0.45);
  background: rgba(0, 0, 0, 0.35);
}

.capture .onboard[hidden] {
  display: none;
}

.onboard-title {
  margin: 0 0 16px;
  font-weight: 700;
  color: #fff;
}

.onboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.onboard label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.onboard-wide {
  margin-top: 12px;
}

.capture .onboard input,
.capture .onboard select,
.capture .onboard textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

.capture .onboard select option {
  color: var(--ink);
}

.capture .onboard textarea {
  resize: vertical;
}

.onboard-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 560px) {
  .onboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 14px;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

footer a:hover {
  color: var(--pink);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Responsive */
@media (max-width: 1000px) {
  .zones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plans {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 800px) {
  section.block {
    padding: 60px 0;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .hero img {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 4 / 5;
    height: auto;
    max-height: 70vh;
    object-position: 50% 30%;
  }
  .hero::after {
    grid-column: 1;
    grid-row: 1;
    background: linear-gradient(
      180deg,
      rgba(15, 15, 17, 0) 55%,
      var(--ink) 100%
    );
  }
  .hero .wrap {
    grid-column: 1;
    grid-row: 2;
    padding: 8px 20px 48px;
  }
  /* On phones the photo sits on top and the copy stacks beneath it */
  .hero--bleed {
    display: grid;
  }
  .hero--bleed img {
    position: static;
    aspect-ratio: 4 / 5;
    height: auto;
    max-height: 70vh;
    object-position: 65% 45%;
  }
  .hero--bleed::after {
    position: static;
    background: linear-gradient(
      180deg,
      rgba(15, 15, 17, 0) 55%,
      var(--ink) 100%
    );
  }
  .hero--bleed .wrap {
    min-height: 0;
    width: auto;
    padding: 8px 20px 40px;
  }
  .hero--bleed h2 {
    font-size: clamp(40px, 11.5vw, 56px);
  }
  .hero--bleed .stats {
    gap: 24px;
  }
  .coach {
    flex-direction: column;
  }
  .bio {
    width: 96px;
    height: 96px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story figure::before {
    inset: 14px -12px -12px 14px;
  }
  .capture .wrap {
    grid-template-columns: 1fr;
  }
  .event {
    grid-template-columns: 76px 1fr;
  }
  .event .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .zones {
    grid-template-columns: 1fr;
  }
  .masthead h1 {
    font-size: 7.4vw;
    letter-spacing: 0.04em;
  }
  .masthead .sig {
    font-size: 0.62em;
    bottom: -1em;
    right: 0;
  }
  .masthead .city {
    margin-top: 22px;
  }
  .masthead .city {
    letter-spacing: 0.3em;
  }
  .hero .wrap {
    padding: 8px 20px 40px;
  }
}

/* Dina's 3 tips */
.tips {
  background: var(--pink-100);
}
.tips .lead a {
  color: var(--pink-600);
  font-weight: 700;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.tips-grid details {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.tips-grid summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  min-height: 56px;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tips-grid summary::-webkit-details-marker {
  display: none;
}
.tips-grid summary::after {
  content: "+";
  color: var(--pink);
  font-size: 1.5rem;
  line-height: 1;
}
.tips-grid details[open] summary::after {
  content: "–";
}
.tips-grid ol {
  margin: 0;
  padding: 0 20px 20px 40px;
  color: #333;
  line-height: 1.55;
}
.tips-grid ol li + li {
  margin-top: 10px;
}
.tips-grid ol li::marker {
  color: var(--pink);
  font-weight: 800;
}
@media (max-width: 900px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

.tips .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 32px;
  align-items: start;
}
.tips .eyebrow,
.tips h3,
.tips .lead {
  grid-column: 1 / -1;
}
.tips-photo {
  margin: 28px 0 0;
}
.tips-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.tips-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}
@media (max-width: 900px) {
  .tips .wrap {
    grid-template-columns: 1fr;
  }
  .tips-photo img {
    aspect-ratio: 16 / 10;
  }
}

.capture .chat-line {
  margin-top: 14px;
  color: #444;
}
.chat-zone-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px !important;
  margin-left: 6px;
  text-decoration: none;
  font-weight: 700;
  vertical-align: middle;
}

.merch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
.merch-grid .btn {
  margin-top: 18px;
}
.merch-photo {
  margin: 0;
}
.merch-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
}
@media (max-width: 900px) {
  .merch-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.seats {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
}

.seats.seats-full {
  color: var(--ink-3);
}

/* Warriors Wall — polaroid scatter */
.gallery {
  background: var(--paper-2);
  overflow: hidden;
}

.polaroids {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 18px;
  margin: 36px 0 40px;
  padding: 10px 0;
}

.polaroid {
  --tilt: 0deg;
  position: relative;
  width: clamp(190px, 22vw, 260px);
  padding: 12px 12px 14px;
  background: #fff;
  border: 0;
  border-radius: 3px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 14px 30px -12px rgba(0, 0, 0, 0.35);
  transform: rotate(var(--tilt));
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s;
  cursor: zoom-in;
  text-align: left;
  font: inherit;
  color: var(--ink);
}

.polaroid:nth-child(even) {
  margin-top: 26px;
}

.polaroid::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 64px;
  height: 22px;
  margin-left: -32px;
  background: rgba(224, 23, 124, 0.35);
  transform: rotate(calc(var(--tilt) * -1.5));
  border-radius: 2px;
}

.polaroid:hover,
.polaroid:focus-visible {
  transform: rotate(0deg) scale(1.05);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 28px 50px -16px rgba(0, 0, 0, 0.45);
  z-index: 2;
  outline: none;
}

.polaroid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper-2);
}

.polaroid .cap {
  margin: 12px 2px 0;
  font-family: Allura, "Brush Script MT", "Segoe Script", cursive;
  font-size: 22px;
  line-height: 1.05;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.polaroid .by {
  margin: 6px 2px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.polaroid .by b {
  color: var(--pink-600);
  font-weight: 700;
}

.send-shot {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.shot-form {
  margin-top: 22px;
  padding: 22px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  display: grid;
  gap: 14px;
}

.shot-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.shot-form .opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-3);
}

.shot-form input,
.shot-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

.shot-form textarea {
  resize: vertical;
}

.shot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.shot-form .check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--ink-2);
}

.shot-form .check input {
  width: 20px;
  min-height: 0;
  height: 20px;
  margin-top: 2px;
  padding: 0;
}

.shot-actions {
  display: grid;
  gap: 10px;
}

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 960px);
}

.lightbox::backdrop {
  background: rgba(15, 15, 17, 0.92);
}

.lightbox figure {
  margin: 0;
  background: #fff;
  padding: 14px 14px 18px;
  border-radius: 4px;
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  margin: 0 auto;
}

.lightbox figcaption {
  margin-top: 14px;
  font-family: Allura, "Brush Script MT", "Segoe Script", cursive;
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink);
}

.lightbox figcaption small {
  display: block;
  margin-top: 6px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.lightbox-close {
  position: fixed;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 640px) {
  .polaroids {
    gap: 22px 12px;
  }
  .polaroid {
    width: calc(50% - 14px);
    padding: 8px 8px 10px;
  }
  .polaroid:nth-child(even) {
    margin-top: 18px;
  }
  .polaroid .cap {
    font-size: 18px;
  }
  .shot-row {
    grid-template-columns: 1fr;
  }
}

.event-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.event-tabs button {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: var(--ink-2);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.event-tabs button[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.event-tabs button span {
  margin-left: 6px;
  font-weight: 400;
  opacity: 0.7;
}

.polaroid.is-out {
  display: none;
}

.shot-form[hidden] {
  display: none;
}

/* Partners / sponsors (from partners.json; hidden until a paid row is live) */
.partners {
  margin: 8px auto 28px;
}
.partners-inline {
  margin: 0 0 22px;
}
.partners-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 10px;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}
.partner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 700;
}
.partner img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.partner span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
}

/* Testimonials (hidden until testimonials.json has a real quote) */
.quotes {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.quote {
  margin: 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.quote p {
  margin: 0 0 14px;
  font-size: 1.08rem;
  line-height: 1.55;
}
.quote p::before {
  content: "\201C";
  color: var(--pink);
  font-weight: 700;
  margin-right: 2px;
}
.quote footer {
  font-size: 0.92rem;
  color: var(--muted);
}
.quote footer strong {
  color: var(--ink);
}

/* Sticky call-to-action: shown once the hero scrolls out, mobile-first. */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(6px);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-cta[hidden] {
  display: flex;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  margin: 0;
}

body.has-sticky-cta {
  padding-bottom: 76px;
}

@media (min-width: 900px) {
  .sticky-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    border-radius: 999px;
    padding: 8px;
  }

  .sticky-cta .btn {
    flex: 0 0 auto;
    padding-left: 22px;
    padding-right: 22px;
  }

  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

#pelatih ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

#pelatih li a {
  font-weight: 700;
}

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