/* ═══════════════════════════════════════════════
   PitPads — light, airy, elegant
   ═══════════════════════════════════════════════ */

:root {
  --ivory:      #FBF8F6;
  --white:      #FFFFFF;
  --blush:      #E8CECC;
  --blush-soft: #F4E6E4;
  --blush-mist: #F9F1EF;
  --rose:       #C79A94;
  --rose-deep:  #B0837D;
  --navy:       #364A63;
  --navy-deep:  #2C3D52;
  --muted:      #7A8699;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--navy);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ── Type ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }

h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); letter-spacing: 0.01em; }
h2 em { font-style: italic; color: var(--rose-deep); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn--rose {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(199, 154, 148, 0.35);
}
.btn--rose:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(176, 131, 125, 0.4);
}
.btn--ghost {
  border-color: var(--blush);
  color: var(--navy);
  background: transparent;
}
.btn--ghost:hover { background: var(--blush-mist); transform: translateY(-2px); }
.btn--small { padding: 0.65rem 1.5rem; font-size: 0.7rem; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(251, 248, 246, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(232, 206, 204, 0.6);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav__flower { height: 84px; width: auto; margin: -26px 0; object-fit: contain; }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.28em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
}
.nav__toggle span {
  width: 26px; height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s ease;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(90rem 60rem at 85% -10%, var(--blush-soft) 0%, transparent 55%),
    radial-gradient(70rem 50rem at -15% 110%, var(--blush-mist) 0%, transparent 50%),
    var(--ivory);
  padding: 7rem 2rem 4rem;
}
.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero__title {
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
}
.hero__title em { font-style: italic; color: var(--rose-deep); }
.hero__sub {
  font-size: 1.08rem;
  max-width: 34rem;
  color: var(--muted);
  margin-bottom: 2.4rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__note {
  margin-top: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
}

/* hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 26rem; height: 26rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 230, 228, 0.9) 0%, transparent 68%);
}
.hero__pad {
  position: relative;
  width: min(300px, 70vw);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-14px) rotate(1.2deg); }
}
.hero__badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--blush-soft);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(199, 154, 148, 0.18);
  animation: floaty 7s ease-in-out infinite;
}
.hero__badge--1 { top: 12%; left: 0; animation-delay: -1.5s; }
.hero__badge--2 { bottom: 24%; right: -4%; animation-delay: -3.5s; }
.hero__badge--3 { bottom: 4%; left: 8%; animation-delay: -5s; }

/* petals */
.hero__petals { position: absolute; inset: 0; pointer-events: none; }
.petal {
  position: absolute;
  top: -6%;
  width: 22px;
  fill: var(--blush);
  opacity: 0;
  animation: drift 14s linear infinite;
}
.petal--1 { left: 8%;  animation-delay: 0s;   width: 18px; }
.petal--2 { left: 26%; animation-delay: 3s;   width: 24px; }
.petal--3 { left: 44%; animation-delay: 7s;   width: 16px; }
.petal--4 { left: 62%; animation-delay: 1.5s; width: 20px; }
.petal--5 { left: 78%; animation-delay: 5s;   width: 26px; }
.petal--6 { left: 92%; animation-delay: 9s;   width: 18px; }
@keyframes drift {
  0%   { transform: translateY(0) rotate(0deg);      opacity: 0; }
  8%   { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(115vh) rotate(340deg); opacity: 0; }
}

/* scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 56px;
  background: linear-gradient(var(--rose), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ═══════════ RIBBON ═══════════ */
.ribbon {
  background: var(--navy);
  color: var(--blush);
  overflow: hidden;
  padding: 1.05rem 0;
}
.ribbon__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.ribbon__track span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ribbon__track i { font-style: normal; opacity: 0.55; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ═══════════ SECTIONS ═══════════ */
.section {
  padding: 7rem 2rem;
  max-width: 1160px;
  margin: 0 auto;
}
.section--narrow { max-width: 820px; }
.section--blush {
  max-width: none;
  background: linear-gradient(180deg, var(--blush-mist) 0%, var(--ivory) 100%);
}
.section--blush > * { max-width: 1160px; margin-left: auto; margin-right: auto; }

.section__head { text-align: center; margin-bottom: 4rem; }
.section__lede {
  max-width: 36rem;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.section__lede--left { margin-left: 0; }

/* ═══════════ CARDS ═══════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--blush-soft);
  border-radius: 20px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--blush);
  box-shadow: 0 24px 48px rgba(199, 154, 148, 0.22);
}
.card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--blush-mist);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease);
}
.card:hover .card__icon { background: var(--blush-soft); transform: rotate(-6deg) scale(1.06); }
.card__icon svg { width: 32px; height: 32px; }
.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.card p { font-size: 0.92rem; color: var(--muted); }

/* ═══════════ FREEDOM (with/without) ═══════════ */
.freedom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}
.freedom__toggle {
  position: relative;
  display: inline-flex;
  margin: 2rem 0 1.6rem;
  background: var(--white);
  border: 1px solid var(--blush-soft);
  border-radius: 999px;
  padding: 5px;
}
.freedom__tab {
  position: relative;
  z-index: 1;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.7rem 1.7rem;
  cursor: pointer;
  transition: color 0.35s ease;
}
.freedom__tab.is-active { color: var(--white); }
.freedom__pill {
  position: absolute;
  top: 5px; bottom: 5px;
  width: calc(50% - 5px);
  left: calc(50% + 0px);
  border-radius: 999px;
  background: var(--rose);
  transition: left 0.4s var(--ease), background 0.4s ease;
}
.freedom__toggle.is-without .freedom__pill { left: 5px; background: var(--navy); }

.freedom__list { list-style: none; }
.freedom__list li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.55rem 0;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  animation: itemIn 0.5s var(--ease) forwards;
}
.freedom__list li::before {
  font-family: var(--serif);
  flex-shrink: 0;
}
.freedom__list.is-with li::before  { content: "✿"; color: var(--rose); }
.freedom__list.is-without li::before { content: "—"; color: var(--muted); }
.freedom__list.is-without li { color: var(--muted); }
@keyframes itemIn {
  to { opacity: 1; transform: translateY(0); }
}

.freedom__visual { display: flex; justify-content: center; }
.freedom__photo {
  position: relative;
  width: min(24rem, 78vw);
  aspect-ratio: 1;
  margin: 0 0 3rem;
}
.freedom__photo img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid var(--white);
  box-shadow: 0 30px 70px rgba(199, 154, 148, 0.3);
}
.freedom__quote-card {
  position: absolute;
  left: 50%;
  bottom: -2.6rem;
  transform: translateX(-50%);
  width: min(19rem, 90%);
  background: var(--white);
  border: 1px solid var(--blush-soft);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(199, 154, 148, 0.25);
  padding: 1.1rem 1.5rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--navy);
}

/* ═══════════ EDITORIAL ═══════════ */
.editorial__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.editorial__frame {
  position: relative;
  max-width: 26rem;
  justify-self: center;
}
.editorial__frame img:first-child {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 999px 999px 24px 24px;
  border: 10px solid var(--white);
  box-shadow: 0 34px 80px rgba(199, 154, 148, 0.28);
}
.editorial__flower {
  position: absolute;
  width: 11rem;
  right: -3.4rem;
  bottom: -2.6rem;
  transform: rotate(-8deg);
  pointer-events: none;
}
.editorial__text {
  color: var(--muted);
  font-size: 1rem;
  max-width: 34rem;
  margin-bottom: 1.1rem;
}
.editorial__stats {
  display: flex;
  gap: 2.6rem;
  margin: 2rem 0 2.4rem;
}
.editorial__stats div { display: flex; flex-direction: column; }
.editorial__stats strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--rose-deep);
  line-height: 1.2;
}
.editorial__stats span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════ STEPS ═══════════ */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.steps__nav { position: relative; display: flex; flex-direction: column; gap: 0.4rem; }
.step {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  text-align: left;
  background: none;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.step:hover { background: var(--blush-mist); }
.step.is-active { background: var(--white); border-color: var(--blush-soft); box-shadow: 0 16px 40px rgba(199,154,148,0.16); }
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--blush);
  transition: color 0.4s ease;
  line-height: 1.2;
}
.step.is-active .step__num { color: var(--rose-deep); }
.step__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.step__desc { display: block; font-size: 0.92rem; font-weight: 300; color: var(--muted); }

.steps__progress {
  margin: 1.2rem 1.6rem 0;
  height: 2px;
  background: var(--blush-soft);
  border-radius: 2px;
  overflow: hidden;
}
.steps__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--rose);
  transition: width 0.2s linear;
}

.steps__stage { display: flex; justify-content: center; }
.steps__art {
  width: min(380px, 80vw);
  background: var(--white);
  border: 1px solid var(--blush-soft);
  border-radius: 50%;
  box-shadow: 0 30px 70px rgba(199, 154, 148, 0.18);
}
.stage {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transform-origin: center;
}
.stage.is-shown { opacity: 1; transform: scale(1); }
.peel-corner { animation: peelWiggle 2.4s ease-in-out infinite; transform-origin: 230px 100px; }
@keyframes peelWiggle {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-4deg); }
}

/* ═══════════ ANATOMY ═══════════ */
.anatomy { position: relative; padding: 0 2rem; }
.anatomy__art { width: 100%; max-width: 760px; display: block; margin: 0 auto; overflow: visible; }
.anatomy__label {
  position: absolute;
  max-width: 12.5rem;
  font-size: 0.85rem;
  line-height: 1.45;
}
.anatomy__label strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
}
.anatomy__label span { color: var(--muted); font-size: 0.82rem; }
.anatomy__label--1 { top: -2%; left: 6%; text-align: right; }
.anatomy__label--2 { top: 22%; right: 2%; }
.anatomy__label--3 { top: 52%; left: 2%; text-align: right; }
.anatomy__label--4 { bottom: -4%; right: 10%; }

/* ═══════════ QUOTES ═══════════ */
.quotes { max-width: 720px; margin: 0 auto; text-align: center; }
.quotes__viewport { position: relative; min-height: 12rem; }
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.quote.is-shown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.quote figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.quotes__dots { display: flex; justify-content: center; gap: 0.7rem; margin-top: 1.5rem; }
.quotes__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--rose);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.quotes__dots button.is-active { background: var(--rose); transform: scale(1.3); }

/* ═══════════ WAITLIST ═══════════ */
.waitlist { padding: 4rem 2rem 7rem; }
.waitlist__card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--white) 0%, var(--blush-mist) 100%);
  border: 1px solid var(--blush-soft);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(199, 154, 148, 0.22);
  padding: 4rem 3rem;
  text-align: center;
}
.waitlist__flower { width: 240px; margin: -4.5rem auto -4rem; }
.waitlist__card h2 { margin-bottom: 1rem; }
.waitlist__card > p { color: var(--muted); max-width: 30rem; margin: 0 auto 2.2rem; }
.waitlist__form[hidden] { display: none; }
.waitlist__form {
  display: flex;
  gap: 0.8rem;
  max-width: 30rem;
  margin: 0 auto;
}
.waitlist__form input {
  flex: 1;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: 999px;
  padding: 1rem 1.6rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.waitlist__form input::placeholder { color: var(--muted); }
.waitlist__form input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(199, 154, 148, 0.15);
}
.waitlist__form input.is-error { border-color: #C4766E; box-shadow: 0 0 0 4px rgba(196, 118, 110, 0.15); }
.waitlist__success {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose-deep);
}
.waitlist__privacy {
  margin-top: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ═══════════ FAQ ═══════════ */
.faq { display: flex; flex-direction: column; gap: 0.9rem; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--blush-soft);
  border-radius: 16px;
  padding: 0 1.8rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq__item[open] { border-color: var(--blush); box-shadow: 0 14px 36px rgba(199, 154, 148, 0.14); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  padding: 1.3rem 2.4rem 1.3rem 0;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--rose);
  transition: transform 0.35s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 1.5rem; color: var(--muted); font-size: 0.95rem; max-width: 60ch; }
.faq__item a { color: var(--rose-deep); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--navy);
  color: var(--blush);
  text-align: center;
  padding: 4.5rem 2rem 3rem;
}
.footer__logo { width: 300px; margin: -3.2rem auto -2.4rem; }
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer__links a:hover { opacity: 1; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}
.footer__copy { font-size: 0.75rem; opacity: 0.6; letter-spacing: 0.06em; }

/* ═══════════ REVEAL ON SCROLL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: 0.15s; }

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .petal, .hero__pad, .hero__badge, .ribbon__track,
  .peel-corner, .hero__scroll-line { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .freedom { grid-template-columns: 1fr; gap: 3rem; }
  .editorial__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .editorial__flower { right: -1rem; }
  .steps { grid-template-columns: 1fr; gap: 3rem; }
  .anatomy__label { position: static; width: 100%; max-width: 30rem; text-align: left !important; margin: 0.9rem auto 0; }
  .anatomy { display: flex; flex-direction: column; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(20rem, 80vw);
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    box-shadow: -20px 0 60px rgba(54, 74, 99, 0.15);
    transform: translateX(110%);
    transition: transform 0.45s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__toggle { display: flex; z-index: 110; }
  .nav__toggle.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav__toggle.is-open span:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

  .cards { grid-template-columns: 1fr; }
  .section { padding: 5rem 1.4rem; }
  .waitlist__form { flex-direction: column; }
  .waitlist__card { padding: 3.2rem 1.8rem; }
  .waitlist__flower { width: 200px; margin: -3.6rem auto -3.2rem; }
  .hero__badge--2 { right: 0; }
  .footer__logo { width: 240px; }
}
