/* PilatesScroll — "Strawberry Cream" theme (self-contained, CSP-safe: no external fonts/CDNs). */
:root {
  --bg: #fff6f4;
  --petal: #f4b8c6;
  --rose: #e38fa6;
  --strawberry: #d96e8a;
  --strawberry-deep: #c25a77;
  --mauve: #b98a9a;
  --latte: #e7d3c6;
  --champagne: #e4c9a0;
  --ink: #5b4550;
  --muted: #9e8792;
  --card: #ffffff;
  --line: rgba(91, 69, 80, 0.1);
  --shadow: 0 10px 30px rgba(217, 110, 138, 0.18);
  --shadow-sm: 0 4px 14px rgba(217, 110, 138, 0.12);
  --serif:
    "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica,
    Arial, sans-serif;
  --radius: 26px;
  --radius-sm: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.55;
  background:
    radial-gradient(1100px 520px at 78% -8%, #fce4ec, transparent 60%),
    radial-gradient(900px 500px at 5% 8%, #f3e7ef, transparent 58%), var(--bg);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--strawberry);
  text-decoration: none;
}
a:hover {
  color: var(--strawberry-deep);
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--strawberry);
}

/* ---- Focus visibility (a11y) ---- */
:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 246, 244, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mauve);
}
.site-nav a:hover {
  background: #fdeef2;
  color: var(--strawberry);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--petal), var(--strawberry));
  box-shadow: 0 8px 22px rgba(217, 110, 138, 0.32);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(217, 110, 138, 0.4);
}
.btn-secondary {
  color: var(--strawberry-deep);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f6d3de;
}
.btn-secondary:hover {
  color: var(--strawberry-deep);
  background: #fff5f8;
}

/* ---- Store badges (placeholder until store links exist) ---- */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.55;
  cursor: not-allowed;
}
.badge small {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.02em;
}
.badge b {
  font-size: 15px;
}
.badge-note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---- Sections ---- */
section {
  padding: 56px 0;
}
.section-head {
  max-width: 42rem;
}
.section-head h2 {
  font-size: 34px;
  margin-top: 10px;
}
.section-head p {
  margin-top: 12px;
  color: var(--mauve);
  font-size: 16.5px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}
.hero h1 {
  font-size: 58px;
  margin-top: 16px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--strawberry);
}
.hero .lede {
  margin-top: 20px;
  font-size: 19px;
  color: var(--ink);
  max-width: 32rem;
}
.hero-cta {
  margin-top: 28px;
}
.chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--mauve);
  font-size: 13.5px;
  font-weight: 600;
}
.chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-halo {
  position: absolute;
  width: min(440px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 42%,
    #ffffff 0%,
    #ffe6ef 55%,
    #f6d9e8 78%,
    transparent 100%
  );
  box-shadow: var(--shadow);
}
.hero-art img {
  position: relative;
  width: min(400px, 82%);
  filter: drop-shadow(0 18px 30px rgba(217, 110, 138, 0.28));
  animation: float 6s ease-in-out infinite;
}
.spark {
  position: absolute;
  font-size: 22px;
  animation: twinkle 4.5s ease-in-out infinite;
}

/* ---- Cards / grids ---- */
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.card .ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, #fde3ea, #f8d7e3);
}
.card h3 {
  margin-top: 16px;
  font-size: 19px;
}
.card p {
  margin-top: 8px;
  color: var(--mauve);
  font-size: 14.5px;
}

/* Step number */
.step .num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--strawberry));
}

/* Soft band */
.band {
  background: linear-gradient(180deg, #fff, #fdeff3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---- Premium ---- */
.premium {
  border-radius: var(--radius);
  padding: 44px;
  background:
    radial-gradient(600px 280px at 15% 0%, #fbe7cf, transparent 60%),
    radial-gradient(600px 280px at 100% 120%, #f8d7e3, transparent 60%), #fff;
  border: 1px solid #f3d8c9;
  text-align: center;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
}
.perks {
  margin: 22px auto 0;
  max-width: 40rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}
.perk {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ---- Footer ---- */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 246, 244, 0.6);
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  padding: 44px 0;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-footer ul {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.site-footer a {
  color: var(--mauve);
  font-size: 14px;
}
.site-footer a:hover {
  color: var(--strawberry);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.footer-brand p {
  margin-top: 10px;
  color: var(--mauve);
  font-size: 13.5px;
  max-width: 22rem;
}

/* ---- Legal pages ---- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 20px;
}
.legal .doc-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.legal h1 {
  font-size: 34px;
  margin-top: 6px;
}
.legal .meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  font-size: 14px;
  color: var(--mauve);
}
.legal .meta b {
  color: var(--ink);
  font-weight: 600;
}
.toc {
  margin-top: 26px;
}
.toc h2 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.toc ol {
  margin-top: 12px;
  columns: 2;
  gap: 24px;
  padding-left: 18px;
  font-size: 14px;
}
.toc li {
  margin-bottom: 4px;
}
.legal section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 84px;
}
.legal section:first-of-type {
  border-top: none;
}
.legal h2.s {
  font-size: 21px;
}
.legal p,
.legal li {
  color: #6a5560;
  font-size: 15.5px;
  margin-top: 12px;
  line-height: 1.65;
}
.legal ul {
  margin-top: 8px;
  padding-left: 22px;
}
.legal ul li {
  margin-top: 6px;
}
.legal .note {
  margin-top: 14px;
  background: #fdf6e9;
  border: 1px solid #f0e0c2;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #7a6a4a;
}
.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f6d3de;
  color: var(--strawberry-deep);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

/* ---- Support FAQ ---- */
.searchbox {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid #f3d3de;
  background: #fff;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink);
}
.searchbox:focus {
  outline: none;
  border-color: var(--rose);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 12px;
  padding: 4px 18px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] summary {
  color: var(--strawberry-deep);
}
.faq-item .a {
  padding: 0 0 16px;
  color: #6a5560;
  font-size: 14.5px;
}
.faq-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--strawberry-deep);
  background: #fdeef2;
  border-radius: 999px;
  padding: 2px 9px;
  margin-right: 8px;
}

/* ---- Forms ---- */
.field {
  margin-top: 14px;
}
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #f3d3de;
  background: #fff;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.hp {
  position: absolute;
  left: -9999px;
}

.center {
  text-align: center;
}
.mt-6 {
  margin-top: 24px;
}
.muted {
  color: var(--muted);
}

/* ---- Animations (respect reduced motion) ---- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    min-height: 300px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .site-footer .cols {
    grid-template-columns: 1fr 1fr;
  }
  .toc ol {
    columns: 1;
  }
  .legal .meta {
    grid-template-columns: 1fr;
  }
}

/* ---- Print (legal docs) ---- */
@media print {
  .site-header,
  .site-footer,
  .no-print {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .legal {
    max-width: none;
  }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555;
    word-break: break-all;
  }
}
