:root {
  --ink: #171310;
  --ink-soft: #332923;
  --paper: #f8f5f0;
  --white: #fffdf9;
  --sand: #e8ddd1;
  --champagne: #d8aa78;
  --copper: #a8603b;
  --line: rgba(23, 19, 16, 0.14);
  --shadow: 0 24px 70px rgba(23, 19, 16, 0.16);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(3.1rem, 7vw, 6.8rem); max-width: 820px; margin-bottom: 1.3rem; }
h2 { font-size: clamp(2.25rem, 4vw, 4.2rem); margin-bottom: 1.35rem; }
h3 { font-size: 1.18rem; margin-bottom: .35rem; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: white; color: black; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: "Manrope", sans-serif; letter-spacing: -.02em; }
.brand b { font-weight: 800; }
.brand-mark {
  width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%;
  display: grid; place-items: center; color: var(--champagne); font-weight: 800;
}
.location-link { font-size: .92rem; text-underline-offset: 4px; }

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero-media {
  position: absolute; inset: 0;
  background-image: url("https://i0.wp.com/upgradepilates.com/wp-content/uploads/2022/02/56330999_xl-copia-scaled-e1644983204462.jpg?ssl=1&w=1600");
  background-size: cover;
  background-position: 64% center;
  filter: saturate(.72) contrast(1.03);
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,14,12,.92) 0%, rgba(18,14,12,.71) 43%, rgba(18,14,12,.17) 78%),
    linear-gradient(0deg, rgba(18,14,12,.88) 0%, transparent 42%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 66px;
}
.eyebrow { margin-bottom: 1rem; color: #f0c89e; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; }
.eyebrow.dark { color: var(--copper); }
.hero-subhead { max-width: 690px; font-size: clamp(1.08rem, 2vw, 1.35rem); color: rgba(255,255,255,.84); }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 24px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.88); font-size: .92rem; font-weight: 700; }
.hero-benefits li::before { content: "✓"; margin-right: 8px; color: #f0c89e; }
.offer-card {
  max-width: 760px;
  margin-top: 36px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--ink);
  background: rgba(255,253,249,.95);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.offer-card p { margin: 0; }
.offer-label { text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 700; color: var(--copper); }
.price-line { display: flex; align-items: baseline; gap: 12px; }
.price-line strong { font-family: "Manrope", sans-serif; font-size: 3.1rem; line-height: 1; }
.old-price { text-decoration: line-through; color: #877b72; }
.offer-actions { text-align: center; flex: 0 0 auto; }
.quick-actions { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; font-size: .92rem; }
.text-link { font-weight: 700; text-underline-offset: 3px; }
.microcopy { margin: 14px 0 0; font-size: .78rem; color: rgba(255,255,255,.66); }

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font: 700 .92rem/1 "DM Sans", sans-serif;
  cursor: pointer;
  white-space: normal;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--champagne); outline-offset: 3px; }
.button-primary { color: white; background: var(--copper); }
.button-primary:hover { background: #8e4f31; }
.button-dark { color: white; background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: white;
  border-top: 1px solid rgba(255,255,255,.16);
}
.trust-strip div { padding: 26px 34px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-family: "Manrope"; }
.trust-strip span { margin-top: 2px; color: rgba(255,255,255,.64); font-size: .82rem; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 110px 0; }
.results-section { padding-bottom: 80px; }
.results-heading { display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: end; margin-bottom: 38px; }
.results-heading h2 { margin-bottom: 0; }
.results-heading > p { margin: 0 0 8px; color: #665950; }
.results-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.result-card { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 12px 35px rgba(23,19,16,.07); }
.result-card-featured { grid-column: span 1; }
.result-card img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: contain; object-position: center; background: #ebe5de; }
.result-card-featured img { aspect-ratio: 1 / 1; }
.result-card figcaption { display: flex; justify-content: space-between; gap: 15px; padding: 16px 18px; }
.result-card figcaption strong { font-family: "Manrope", sans-serif; }
.result-card figcaption span { color: #7d6d62; font-size: .8rem; text-align: right; }
.results-cta { margin-top: 28px; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-radius: 18px; color: white; background: var(--ink); }
.results-cta strong, .results-cta span { display: block; }
.results-cta strong { font: 800 1.35rem/1.2 "Manrope", sans-serif; }
.results-cta span { margin-top: 4px; color: rgba(255,255,255,.65); font-size: .83rem; }
.results-disclaimer { max-width: 920px; margin: 16px auto 0; color: #84766c; text-align: center; font-size: .72rem; line-height: 1.5; }
.intro-after-results { padding-top: 60px; }
.intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: center; }
.section-copy p { max-width: 650px; color: #5e5148; }
.benefit-panel { padding: 46px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 16px 50px rgba(23,19,16,.07); }
.panel-kicker { color: var(--copper); font-weight: 700; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 35px; border-bottom: 1px solid var(--line); font-weight: 600; }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: "✦"; position: absolute; left: 0; color: var(--copper); }

.package-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 78px; align-items: center; padding-top: 40px; }
.package-visual { position: relative; }
.package-image {
  min-height: 650px;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, transparent 60%, rgba(23,19,16,.48)), url("https://i0.wp.com/upgradepilates.com/wp-content/uploads/2025/11/IMG_0863.jpg?ssl=1&w=1200");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.image-caption { position: absolute; inset: auto 24px 24px; display: flex; justify-content: space-between; color: white; font-weight: 700; font-size: .86rem; }
.steps article { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 21px 0; border-top: 1px solid var(--line); }
.steps article > span { color: var(--copper); font-family: "Manrope"; font-weight: 800; }
.steps p { margin: 0; color: #665950; }
.package-copy .button { margin-top: 24px; }

.client-voice-section { padding: 100px max(20px, calc((100% - var(--max))/2)); color: white; background: var(--ink); }
.client-voice-inner { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.client-voice-heading h2 { font-size: clamp(2.25rem, 4vw, 4rem); }
.client-voice-heading > p:last-child { color: rgba(255,255,255,.68); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.voice-grid article { min-height: 300px; padding: 28px 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.055); }
.voice-grid article > span { color: var(--champagne); font: 800 .78rem/1 "Manrope"; }
.voice-grid h3 { margin: 58px 0 14px; font-size: 1.3rem; }
.voice-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }
.voice-note { grid-column: 2; margin: 0; color: rgba(255,255,255,.44); font-size: .7rem; }

.proof-section {
  width: 100%; max-width: none;
  padding: 100px max(20px, calc((100% - var(--max))/2));
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  background: var(--copper);
  color: white;
}
.proof-copy p:last-child { max-width: 650px; color: rgba(255,255,255,.78); }
.studio-review { padding: 36px 38px; border: 1px solid rgba(255,255,255,.26); border-radius: 22px; background: rgba(255,255,255,.1); }
.stars { color: #ffe0af; letter-spacing: .18em; }
.studio-review blockquote { margin: 24px 0 18px; font: 600 1.24rem/1.5 "Manrope", sans-serif; }
.studio-review cite { color: rgba(255,255,255,.68); font-style: normal; font-size: .78rem; }
.proof-badges { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.proof-badges > * { min-width: 0; padding: 14px 13px; color: white; text-decoration: none; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: rgba(255,255,255,.07); }
.proof-badges strong, .proof-badges span { display: block; }
.proof-badges strong { font: 800 .86rem/1.2 "Manrope", sans-serif; }
.proof-badges span { margin-top: 4px; color: rgba(255,255,255,.67); font-size: .68rem; line-height: 1.35; }
.proof-badges a:hover { background: rgba(255,255,255,.14); }

.location-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.location-card, .contact-card { padding: clamp(30px, 5vw, 58px); border-radius: var(--radius); }
.location-card { display: flex; flex-direction: column; justify-content: center; background: var(--sand); }
address { margin: 12px 0 14px; font-style: normal; font-weight: 700; }
.location-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.dark-link { color: var(--ink); }
.contact-card { color: white; background: var(--ink); box-shadow: 0 16px 50px rgba(23,19,16,.14); }
.contact-card h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.contact-card > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contact-call { color: white; border: 1px solid rgba(255,255,255,.36); background: transparent; }
.contact-note { margin: 18px 0 0; font-size: .78rem; }
form { display: grid; gap: 15px; margin-top: 28px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; font-size: .82rem; font-weight: 700; }
label span { color: #877b72; font-weight: 500; }
input, select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  border: 1px solid #cfc2b8; border-radius: 10px;
  background: white; color: var(--ink); font: inherit;
}
.honeypot { position: absolute; left: -9999px; }
.form-note { margin: 0; color: #81756c; font-size: .72rem; line-height: 1.45; }
.form-status { min-height: 1.3em; margin: 0; font-weight: 700; font-size: .85rem; }

.faq-section { display: grid; grid-template-columns: .38fr .62fr; gap: 80px; align-items: start; padding-top: 55px; }
.faq-list details { padding: 22px 0; border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; font-family: "Manrope"; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--copper); font-size: 1.4rem; font-weight: 500; }
details[open] summary::after { content: "−"; }
.faq-list details p { margin: 14px 40px 0 0; color: #675950; }

.final-cta { padding: 105px 20px; text-align: center; color: white; background: var(--ink); }
.final-cta h2 { margin-inline: auto; max-width: 850px; }
.final-cta > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.light-links a { color: white; }

footer { padding: 42px max(20px, calc((100% - var(--max))/2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: #0f0c0a; color: rgba(255,255,255,.62); font-size: .78rem; }
footer p { margin: 0; }
.footer-brand { color: white; }
.mobile-cta { display: none; }

@media (max-width: 920px) {
  .hero { min-height: 850px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(18,14,12,.94) 0%, rgba(18,14,12,.63) 65%, rgba(18,14,12,.28) 100%); }
  .hero-content { padding-top: 130px; }
  .offer-card { align-items: flex-start; }
  .results-heading, .intro-grid, .package-section, .client-voice-inner, .proof-section, .location-section, .faq-section { grid-template-columns: 1fr; }
  .intro-grid, .package-section, .proof-section, .faq-section { gap: 45px; }
  .results-heading, .client-voice-inner { gap: 30px; }
  .results-gallery { grid-template-columns: repeat(2, 1fr); }
  .proof-badges { max-width: 620px; }
  .voice-note { grid-column: 1; }
  .package-image { min-height: 520px; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 650px) {
  body { font-size: 16px; padding-bottom: 68px; }
  .site-header { width: calc(100% - 28px); padding-top: 16px; }
  .brand { min-width: 0; gap: 8px; font-size: .82rem; white-space: nowrap; }
  .brand-mark { width: 34px; height: 34px; }
  .location-link { font-size: .72rem; white-space: nowrap; }
  .hero { min-height: 880px; }
  .hero-media { background-position: 69% center; }
  .hero-content { width: calc(100% - 28px); padding-top: 112px; padding-bottom: 34px; }
  h1 { font-size: clamp(2.7rem, 14vw, 3.75rem); line-height: 1.01; }
  h2 { font-size: 2.25rem; }
  .hero-subhead { font-size: 1rem; }
  .hero-benefits { display: grid; gap: 7px; margin-top: 20px; }
  .offer-card { margin-top: 28px; padding: 20px; flex-direction: column; gap: 20px; }
  .offer-actions, .offer-actions .button { width: 100%; }
  .price-line strong { font-size: 2.8rem; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { padding: 18px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { width: calc(100% - 28px); padding: 76px 0; }
  .results-section { padding-top: 68px; }
  .results-gallery { grid-template-columns: 1fr; gap: 14px; }
  .result-card img, .result-card-featured img { aspect-ratio: 1 / 1; object-fit: contain; }
  .result-card figcaption { align-items: center; }
  .result-card figcaption strong { max-width: 60%; }
  .result-card figcaption span { max-width: 40%; }
  .results-cta { align-items: stretch; flex-direction: column; padding: 22px; }
  .results-cta .button { width: 100%; }
  .benefit-panel { padding: 28px 22px; }
  .package-section { padding-top: 5px; }
  .package-image { min-height: 430px; }
  .proof-section { width: 100%; padding: 72px 20px; }
  .client-voice-section { padding: 72px 20px; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-grid article { min-height: 0; }
  .voice-grid h3 { margin-top: 32px; }
  .studio-review { padding: 28px 24px; }
  .proof-badges { grid-template-columns: 1fr; }
  .location-card, .contact-card { padding: 30px 22px; }
  .contact-actions { display: grid; grid-template-columns: 1fr; }
  .contact-actions .button { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .final-cta { padding: 78px 20px; }
  footer { padding: 34px 20px; }
  .mobile-cta {
    position: fixed; z-index: 50; inset: auto 0 0;
    height: 68px; display: grid; grid-template-columns: .62fr .62fr 1.5fr;
    padding: 8px; gap: 7px; background: rgba(15,12,10,.96); backdrop-filter: blur(14px);
    box-shadow: 0 -12px 30px rgba(0,0,0,.18);
  }
  .mobile-cta a { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; color: white; text-decoration: none; font-weight: 700; font-size: .82rem; }
  .mobile-cta a:last-child { border-color: var(--copper); background: var(--copper); }
}

@media (max-width: 360px) {
  .site-header { width: calc(100% - 20px); }
  .site-header .brand { font-size: .75rem; }
  .site-header .brand-mark { width: 31px; height: 31px; }
  .location-link { font-size: .66rem; }
  .hero-content, .section { width: calc(100% - 22px); }
  .offer-card { padding: 18px 16px; }
  .mobile-cta { grid-template-columns: .58fr .58fr 1.55fr; padding-inline: 6px; gap: 5px; }
  .mobile-cta a { font-size: .74rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
