* {
  box-sizing: border-box;
}

:root {
  --green: #54973f;
  --green-deep: #3f7a30;
  --green-dark: #2c3a2a;
  --orange: #f5a06b;
  --orange-deep: #e78a4f;
  --yellow: #f2b044;
  --cream: #faf8f4;
  --paper: #eee9df;
  --surface: #ffffff;
  --soft: #ecebe8;
  --line: #e0deda;
  --ink: #2d2d2d;
  --muted: #5a5a5a;
  --red: #c44a3a;
  --shadow: 0 18px 46px rgba(35, 43, 37, 0.14);
}

html {
  scroll-behavior: smooth;
}

html.pilates-checkout-open,
body.pilates-checkout-open {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Mulish", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.page {
  background: var(--surface);
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
}

.urgency {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px 14px;
  justify-content: center;
  line-height: 1.3;
  min-height: 38px;
  padding: 9px 16px;
  text-align: center;
}

.urgency b {
  color: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 66px;
  padding: 10px 18px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand-logo {
  height: auto;
  width: 128px;
}

.cta {
  align-items: center;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.cta:hover {
  background: var(--orange-deep);
  box-shadow: 0 12px 26px rgba(245, 160, 107, 0.34);
  transform: translateY(-1px);
}

.cta.secondary {
  background: var(--green);
}

.cta.secondary:hover {
  background: var(--green-deep);
}

.hero {
  display: grid;
  gap: 24px;
  padding: 28px 22px 34px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-deep);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  line-height: 1.35;
  margin-bottom: 18px;
  max-width: 100%;
  padding: 9px 14px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  flex: 0 0 6px;
  height: 6px;
  width: 6px;
}

h1,
h2,
h3 {
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 10vw, 58px);
  line-height: 1.02;
  margin: 0 0 16px;
  max-width: 760px;
  text-transform: uppercase;
}

.script {
  color: var(--green);
  display: block;
  font-family: "Sacramento", cursive;
  font-size: clamp(42px, 13vw, 72px);
  font-weight: 400;
  line-height: 0.9;
  margin-top: 7px;
  text-transform: none;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 22px;
  max-width: 660px;
}

.hero-action {
  display: none;
}

.carousel {
  aspect-ratio: 4 / 3;
  background: var(--green-dark);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 650ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.carousel-slide::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
  content: "";
  inset: 0;
  position: absolute;
}

.media-label {
  align-items: center;
  background: rgba(245, 160, 107, 0.84);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 7px;
  left: 14px;
  padding: 7px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
  z-index: 3;
}

.media-label::before {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  content: "";
  height: 5px;
  width: 5px;
}

.carousel-caption {
  bottom: 16px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  left: 16px;
  line-height: 1.35;
  position: absolute;
  right: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.44);
  z-index: 3;
}

.carousel-controls {
  align-items: center;
  display: flex;
  gap: 6px;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 4;
}

.carousel-dot {
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 7px;
  padding: 0;
  width: 7px;
}

.carousel-dot.is-active {
  background: #fff;
  width: 22px;
}

.price-card {
  background: linear-gradient(180deg, var(--cream), #fff);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(35, 43, 37, 0.1);
  margin-top: 20px;
  padding: 22px 20px 18px;
}

.price-kicker,
.section-kicker {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.price-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.old-price {
  color: #a8a29a;
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}

.new-price {
  color: var(--green);
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(52px, 14vw, 68px);
  font-weight: 800;
  line-height: 1;
}

.new-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
}

.save-note,
.fine-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 16px;
}

.save-note {
  color: var(--red);
  font-weight: 800;
}

.price-card .cta,
.offer-card .cta,
.final .cta {
  width: 100%;
}

.trust-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  padding-top: 18px;
}

.trust-row strong {
  color: var(--green-deep);
  display: block;
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.15;
  text-align: center;
}

.trust-row span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.section {
  padding: 48px 22px;
}

.section.alt {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section.green {
  background: var(--green);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.section.green::after {
  background: var(--green-deep);
  border-radius: 50%;
  content: "";
  height: 320px;
  opacity: 0.48;
  position: absolute;
  right: -150px;
  top: -120px;
  width: 320px;
}

.wrap {
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  z-index: 1;
}

.script-kicker {
  color: var(--green-deep);
  font-family: "Sacramento", cursive;
  font-size: 34px;
  line-height: 0.95;
  margin: 0 0 8px;
}

.green .script-kicker {
  color: #f4be5f;
}

.section h2 {
  font-size: clamp(24px, 7vw, 42px);
  line-height: 1.12;
  margin: 0 0 12px;
  max-width: 780px;
  text-transform: uppercase;
}

.section p {
  color: var(--muted);
  margin: 0;
}

.section-intro {
  margin-bottom: 24px;
  max-width: 760px;
}

.green p,
.green .timeline p {
  color: rgba(255, 255, 255, 0.86);
}

.underline {
  background: var(--yellow);
  display: block;
  height: 2px;
  margin: 18px 0 22px;
  width: 64px;
}

.story p + p,
.final p + p {
  margin-top: 14px;
}

.quote {
  border-left: 3px solid var(--orange);
  color: var(--green-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
  margin: 22px 0;
  padding: 4px 0 4px 18px;
}

.timeline,
.check-list,
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 8px;
  grid-template-columns: 72px 1fr;
  padding: 15px 0;
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-time {
  color: #f4be5f;
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.timeline h3,
.check-item h3,
.offer-line strong {
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 12px;
  padding: 14px 0;
}

.check-list li::before {
  color: var(--orange-deep);
  content: "->";
  flex: 0 0 24px;
  font-weight: 800;
}

.proof-grid,
.offer-lines {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.photo-grid {
  display: grid;
  gap: 14px;
}

.photo-card {
  aspect-ratio: 4 / 3;
  background: var(--soft);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(35, 43, 37, 0.1);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.photo-card.tall {
  aspect-ratio: 3 / 4;
}

.photo-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48));
  content: "";
  inset: 0;
  position: absolute;
}

.photo-card figcaption {
  bottom: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  left: 0;
  line-height: 1.35;
  padding: 18px;
  position: absolute;
  right: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
  z-index: 1;
}

.proof-card,
.offer-card,
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.proof-card {
  box-shadow: 0 10px 28px rgba(35, 43, 37, 0.08);
}

.proof-card h3,
.faq-list summary {
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 8px;
}

.offer-card {
  background: var(--cream);
  max-width: 760px;
}

.offer-line {
  align-items: flex-start;
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 12px;
  padding: 13px 0;
}

.offer-line:first-child {
  padding-top: 0;
}

.offer-line:last-of-type {
  border-bottom: 0;
}

.offer-line::before {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  content: "✓";
  display: inline-flex;
  flex: 0 0 23px;
  font-size: 13px;
  font-weight: 800;
  height: 23px;
  justify-content: center;
  margin-top: 1px;
}

.offer-total {
  border-top: 2px solid var(--ink);
  margin: 18px 0;
  padding-top: 14px;
}

.offer-total div {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.offer-total strong {
  color: var(--green);
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.guarantee {
  background: var(--green);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  padding: 30px 24px;
  position: relative;
}

.guarantee::after {
  border: 8px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  height: 150px;
  position: absolute;
  right: -34px;
  top: -34px;
  width: 150px;
}

.guarantee h2,
.guarantee p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  margin: 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 12px;
}

.final {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.final::before {
  background: var(--green-dark);
  content: "";
  height: 130%;
  position: absolute;
  right: -36%;
  top: -15%;
  transform: rotate(-12deg);
  width: 82%;
}

.final h2,
.final p {
  color: #fff;
}

.scarcity {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  margin: 22px 0;
  padding: 18px;
}

.scarcity-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}

.scarcity-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.scarcity-count {
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.scarcity-bar {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}

.scarcity-bar span {
  background: var(--orange);
  display: block;
  height: 100%;
  width: 75%;
}

.ps {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
}

.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 36px 22px 96px;
}

.footer .brand-logo {
  background: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  width: 150px;
}

.footer a {
  color: #fff;
}

.sticky {
  align-items: center;
  background: rgba(44, 58, 42, 0.98);
  border-top: 3px solid var(--orange);
  bottom: 0;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  left: 0;
  padding: 10px 14px;
  position: fixed;
  right: 0;
  z-index: 30;
}

.sticky strong {
  color: #fff;
  display: block;
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.15;
}

.sticky span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 12px;
  line-height: 1.25;
}

.sticky .cta {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
}

@media (min-width: 820px) {
  .page {
    box-shadow: 0 18px 70px rgba(35, 43, 37, 0.12);
    max-width: 1220px;
  }

  .topbar {
    padding: 10px 34px;
  }

  .brand-logo {
    width: 150px;
  }

  .hero {
    align-items: center;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
    padding: 50px 48px 56px;
  }

  .hero-action {
    display: inline-flex;
  }

  .carousel {
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  .price-card {
    max-width: 620px;
  }

  .section {
    padding: 76px 48px;
  }

  .story .wrap,
  .split-wrap {
    display: grid;
    gap: 50px;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  }

  .proof-grid,
  .offer-lines {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .photo-card {
    grid-column: span 4;
  }

  .photo-card.wide {
    grid-column: span 6;
  }

  .offer-card {
    padding: 28px;
  }

  .sticky {
    display: none;
  }

  .footer {
    padding-bottom: 40px;
  }
}

@media (max-width: 520px) {
  .topbar .cta {
    font-size: 12px;
    min-height: 44px;
    padding: 0 14px;
  }

  .brand-logo {
    width: 112px;
  }

  .hero {
    padding: 24px 18px 28px;
  }

  .eyebrow {
    border-radius: 18px;
    font-size: 10px;
  }

  .lead {
    font-size: 15.5px;
  }

  .section {
    padding: 46px 18px;
  }

  .carousel-caption {
    display: none;
  }

  .trust-row {
    gap: 6px;
  }

  .timeline-item {
    grid-template-columns: 62px 1fr;
  }

  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}
