/* Bloom & Book — landing page styles
   Mobile-first (390 px). No framework. */

:root {
  --ivory: #FBF7F2;
  --plum: #2B1B2E;
  --plum-2: #3A2640;
  --rose: #B4476A;
  --rose-dark: #963A58;
  --rose-light: #E48AA8;   /* rose for text on plum (contrast) */
  --blush: #F3E3E6;
  --muted: #6B5A66;
  --muted-light: #CDBFC8;  /* muted text on plum */
  --line: #E8DDD6;
  --line-dark: rgba(251, 247, 242, .16);

  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 20px;
  --gutter: 20px;
  --maxw: 1200px;
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--plum);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
button, input, select { font: inherit; color: inherit; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--plum); outline-offset: 3px; border-radius: 6px; }
.section--dark :focus-visible, .offer--launch :focus-visible { outline-color: var(--ivory); }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--plum); color: var(--ivory); padding: 10px 16px; border-radius: 10px;
  text-decoration: none;
}
.skip:focus { top: 12px; }

.container { width: 100%; max-width: calc(var(--maxw) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.center { text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.eyebrow__num {
  font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0;
  text-transform: none; font-size: 15px; color: var(--muted);
  padding-right: 12px; border-right: 1px solid var(--line);
}
.eyebrow--light { color: var(--rose-light); }

h1, .h2, .offer__title, .report__title, .wordmark {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 50;
  font-weight: 380;
  letter-spacing: -0.02em;
}
em { font-style: italic; color: var(--rose); font-variation-settings: "SOFT" 100; font-weight: 360; }
.section--dark em, .offer--launch em { color: var(--rose-light); }

.h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.5rem); line-height: 1.08; max-width: 20ch; }
.section__head--center .h2 { margin-left: auto; margin-right: auto; }
.h3 { font-family: var(--sans); font-size: 19px; font-weight: 600; line-height: 1.3; letter-spacing: -.005em; }
.lead { font-size: clamp(17px, 16px + .3vw, 19px); color: var(--muted); max-width: 56ch; margin-top: 18px; }
.section__head--center .lead { margin-left: auto; margin-right: auto; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); background: var(--ivory);
  border-radius: 999px; padding: 4px 12px; line-height: 1.4;
}
.tag--center { display: flex; width: max-content; margin: 18px auto 0; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  min-height: 48px; padding: 0 24px; border-radius: 999px; border: 0;
  background: var(--rose); color: #fff; font-weight: 600; font-size: 16px; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 1px 0 rgba(43, 27, 46, .08), 0 8px 24px -12px rgba(180, 71, 106, .55);
}
.btn:hover { background: var(--rose-dark); }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 44px; padding: 0 14px; font-size: 14px; white-space: nowrap; }
.btn--lg { min-height: 56px; padding: 0 30px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }
.btn--ghost { background: transparent; color: var(--plum); box-shadow: inset 0 0 0 1px var(--plum); }
.btn--ghost:hover { background: var(--plum); color: var(--ivory); }

.link-arrow {
  display: inline-flex; align-items: center; min-height: 44px; gap: 8px;
  font-weight: 600; color: var(--plum); text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 calc(100% - 10px);
}
.link-arrow:hover { color: var(--rose); }
.link-arrow--light { color: var(--ivory); }
.link-arrow--light:hover { color: var(--rose-light); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: var(--header-h); transition: height .3s var(--ease); }
.header.is-scrolled { background: rgba(251, 247, 242, .92); box-shadow: 0 1px 0 var(--line); backdrop-filter: saturate(1.2) blur(10px); -webkit-backdrop-filter: saturate(1.2) blur(10px); }
.header.is-scrolled .header__inner { height: 60px; }
.wordmark { font-size: 20px; text-decoration: none; white-space: nowrap; font-weight: 420; }
.amp { color: var(--rose); font-style: italic; font-variation-settings: "SOFT" 100; }
.section--dark .amp, .footer .amp { color: var(--rose-light); }
.nav { display: none; }
.header__actions { display: flex; align-items: center; gap: 8px; }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: var(--ivory); }
.lang__btn {
  min-width: 36px; min-height: 38px; border: 0; background: transparent; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; cursor: pointer; color: var(--muted);
}
.lang__btn[aria-pressed="true"] { background: var(--plum); color: var(--ivory); }

@media (min-width: 900px) {
  :root { --gutter: 40px; --header-h: 88px; }
  .wordmark { font-size: 26px; }
  .nav { display: flex; gap: 28px; }
  .nav a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--plum); padding: 10px 0; position: relative; }
  .nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
  .nav a:hover::after { transform: scaleX(1); }
  .header__actions { gap: 14px; }
  .btn--sm { padding: 0 22px; }
  .header.is-scrolled .header__inner { height: 68px; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 9vw, 132px) 0; }
.section--tight { padding: clamp(24px, 4vw, 48px) 0; }
.section--tint { background: linear-gradient(180deg, var(--ivory), #F7EDEC 18%, #F7EDEC 82%, var(--ivory)); }
.section--dark { background: var(--plum); color: var(--ivory); }
.section--dark .lead { color: var(--muted-light); }
.section__head { margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding: 28px 0 72px; position: relative; overflow: hidden; }
.hero__grid { display: grid; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(2.6rem, 1.4rem + 5.4vw, 5.4rem); line-height: 1.02; letter-spacing: -0.03em; font-variation-settings: "SOFT" 50, "opsz" 144; }
.hero__title em { font-weight: 340; }
.hero__sub { margin-top: 24px; font-size: clamp(18px, 16px + .5vw, 21px); color: var(--muted); max-width: 40ch; }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 32px; }
.hero__ctas .btn { width: 100%; }
.hero__note { margin-top: 16px; font-size: 14px; color: var(--muted); display: flex; gap: 10px; align-items: baseline; }
.hero__note::before { content: ""; width: 18px; height: 1px; background: var(--rose); flex: none; transform: translateY(-4px); }
@media (min-width: 560px) { .hero__ctas .btn { width: auto; } }
@media (min-width: 900px) {
  .hero { padding: 40px 0 120px; }
  .hero__grid { grid-template-columns: 1.25fr 1fr; gap: 64px; }
}

.hero__visual { position: relative; display: grid; justify-items: center; padding: 8px 0; }
.arch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(360px, 88%); height: 88%; border-radius: 999px 999px 28px 28px;
  background: linear-gradient(180deg, var(--blush), #EBCFD6);
}
.arch::after {
  content: ""; position: absolute; inset: 14px; border-radius: inherit; border: 1px solid rgba(180, 71, 106, .28);
}

/* Phone mockup (pure CSS) */
.phone {
  position: relative; width: min(290px, 78vw); aspect-ratio: 9 / 18.5;
  background: var(--plum); border-radius: 44px; padding: 10px;
  box-shadow: 0 40px 80px -30px rgba(43, 27, 46, .55), 0 0 0 1px rgba(255, 255, 255, .06) inset;
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 22px; border-radius: 999px; background: #140B16; z-index: 2;
}
.phone__screen {
  height: 100%; border-radius: 34px; overflow: hidden; display: flex; flex-direction: column;
  background-color: #EFE6DC;
  background-image: radial-gradient(rgba(107, 90, 102, .09) 1px, transparent 1px);
  background-size: 14px 14px;
}
.wa-head { display: flex; align-items: center; gap: 10px; padding: 46px 16px 12px; background: #F8F2EC; border-bottom: 1px solid var(--line); }
.wa-avatar { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--rose); color: #fff; font-family: var(--serif); font-style: italic; font-size: 17px; }
.wa-name { display: flex; flex-direction: column; line-height: 1.15; font-size: 14px; }
.wa-name small { color: #3F8F5A; font-size: 11.5px; }
.chat { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 16px 12px; justify-content: flex-end; }
.msg {
  max-width: 84%; padding: 8px 10px 6px; border-radius: 14px; font-size: 13.5px; line-height: 1.4;
  box-shadow: 0 1px 0 rgba(43, 27, 46, .08);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.msg time { display: block; text-align: right; font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.ticks { color: #3A8FC9; letter-spacing: -3px; margin-left: 2px; }
.msg--in { align-self: flex-start; background: #fff; border-top-left-radius: 4px; }
.msg--out { align-self: flex-end; background: #F6DCE3; border-top-right-radius: 4px; }
.wa-input { display: flex; gap: 8px; align-items: center; padding: 10px 12px 16px; }
.wa-input span { flex: 1; height: 34px; border-radius: 999px; background: #fff; }
.wa-input i { width: 34px; height: 34px; border-radius: 50%; background: var(--rose); }

.booking-chip {
  position: absolute; right: max(0px, calc(50% - 215px)); bottom: 21%;
  display: flex; gap: 10px; align-items: center;
  background: var(--ivory); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 14px; font-size: 13px; line-height: 1.35;
  box-shadow: 0 18px 40px -20px rgba(43, 27, 46, .45);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.booking-chip strong { font-weight: 600; }
.booking-chip__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px var(--blush); flex: none; }

/* Chat animation states — only applied when JS runs and motion is allowed */
.chat.is-anim .msg { opacity: 0; transform: translateY(8px) scale(.98); }
.chat.is-anim .msg.on { opacity: 1; transform: none; }
.chat.is-anim.is-out .msg.on { opacity: 0; transform: none; }
.booking-chip.is-anim { opacity: 0; transform: translateY(8px); }
.booking-chip.is-anim.on { opacity: 1; transform: none; }

/* ---------- Problems ---------- */
.problems { display: grid; gap: 16px; }
.problem {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 18px; justify-content: space-between;
}
.problem__quote { font-family: var(--serif); font-size: 23px; line-height: 1.25; font-weight: 380; letter-spacing: -.01em; font-variation-settings: "SOFT" 100; }
.problem__cost { color: var(--muted); font-size: 15px; padding-top: 16px; border-top: 1px solid var(--line); }
@media (min-width: 700px) { .problems { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .problems { grid-template-columns: repeat(4, 1fr); } .problem { min-height: 280px; } }

/* ---------- Before / after ---------- */
.ba {
  position: relative; max-width: 980px; margin: 0 auto; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden; background: var(--blush);
  box-shadow: 0 40px 80px -48px rgba(43, 27, 46, .55);
  user-select: none; -webkit-user-select: none; touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px;
  background: var(--ivory); pointer-events: none;
}
.ba__handle span {
  position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--ivory); box-shadow: 0 6px 20px rgba(43, 27, 46, .3);
}
.ba__handle span::before, .ba__handle span::after {
  content: ""; position: absolute; top: 50%; width: 8px; height: 8px; border: solid var(--plum); border-width: 0 0 2px 2px;
}
.ba__handle span::before { left: 12px; transform: translateY(-50%) rotate(45deg); }
.ba__handle span::after { right: 12px; transform: translateY(-50%) rotate(-135deg); }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; touch-action: pan-y;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 48px; height: 100vh; }
.ba__range:focus-visible ~ .ba__handle span, .ba:has(.ba__range:focus-visible) .ba__handle span { outline: 3px solid var(--rose); outline-offset: 3px; }
.ba__label {
  position: absolute; top: 14px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(43, 27, 46, .78); color: var(--ivory); padding: 5px 12px; border-radius: 999px; pointer-events: none;
}
.ba__label--l { left: 14px; }
.ba__label--r { right: 14px; background: var(--rose); }
.caption { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; text-align: center; margin-top: 20px; font-size: 14px; color: var(--muted); }

/* ---------- Services ---------- */
.services { display: grid; border-top: 1px solid var(--line); }
.service { align-content: start; padding: 28px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 64px 1fr; column-gap: 12px; }
.service__num { grid-row: span 2; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 40px; line-height: 1; color: var(--rose); font-variation-settings: "SOFT" 100, "opsz" 144; }
.service p { color: var(--muted); margin-top: 6px; }
@media (min-width: 760px) {
  .services { grid-template-columns: repeat(2, 1fr); column-gap: 48px; border-top: 0; }
  .service { grid-template-columns: 1fr; border-top: 1px solid var(--line); border-bottom: 0; padding: 32px 0 40px; }
  .service__num { font-size: 56px; margin-bottom: 20px; grid-row: auto; }
}
@media (min-width: 1100px) { .services { grid-template-columns: repeat(3, 1fr); column-gap: 56px; } }

.gallery { margin-top: clamp(56px, 7vw, 96px); }
.gallery__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery__grid img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; background: var(--blush); }
@media (min-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .gallery__grid li:nth-child(even) { transform: translateY(28px); }
}

/* ---------- Timeline ---------- */
.timeline { position: relative; display: grid; gap: 36px; padding-left: 60px; }
.timeline__line { position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline__line span { position: absolute; inset: 0; background: var(--rose); transform-origin: top; transform: scaleY(var(--p)); }
.step { position: relative; }
.step__dot {
  position: absolute; left: -60px; top: -4px; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 18px;
  background: var(--ivory); border: 1px solid var(--line); color: var(--muted);
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.step.is-on .step__dot { background: var(--rose); border-color: var(--rose); color: #fff; }
.step p { color: var(--muted); margin-top: 6px; }
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, 1fr); padding-left: 0; padding-top: 72px; gap: 40px; }
  .timeline__line { left: 20px; right: 20px; top: 19px; bottom: auto; width: auto; height: 2px; }
  .timeline__line span { transform-origin: left; transform: scaleX(var(--p)); }
  .step__dot { left: 0; top: -72px; }
}

/* ---------- Report ---------- */
.report-wrap { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .report-wrap { grid-template-columns: 1fr 1fr; gap: 80px; } }
.report {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 32px 26px 24px; max-width: 520px; width: 100%; justify-self: center;
  box-shadow: 0 2px 0 var(--line), 0 40px 70px -40px rgba(43, 27, 46, .4);
  transform: rotate(-.6deg);
}
.report::before { /* second sheet */
  content: ""; position: absolute; inset: 0; z-index: -1; background: #FDFBF8; border: 1px solid var(--line); border-radius: 8px;
  transform: rotate(2.2deg) translate(8px, 6px);
}
.report__stamp {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose); border: 1.5px solid var(--rose); border-radius: 6px; padding: 4px 8px; transform: rotate(3deg);
}
.report__head { padding-bottom: 18px; border-bottom: 2px solid var(--plum); margin-bottom: 8px; }
.report__brand { font-family: var(--serif); font-size: 15px; margin-bottom: 18px; }
.report__title { font-size: 24px; line-height: 1.2; max-width: 16ch; }
.report__rows > div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.report__rows dt { color: var(--muted); font-size: 15px; }
.report__rows dd { font-family: var(--serif); font-size: 34px; line-height: 1; font-variant-numeric: tabular-nums; font-variation-settings: "opsz" 144; }
.report__rows dd.report__text { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--rose); text-align: right; }
.report__foot { font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* ---------- Packages ---------- */
.packages { display: grid; gap: 20px; align-items: stretch; }
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 32px 26px;
}
.pkg__name { font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -.01em; }
.pkg__price { margin-top: 20px; font-family: var(--serif); font-size: clamp(40px, 34px + 1.5vw, 52px); line-height: 1; letter-spacing: -.02em; font-variation-settings: "opsz" 144; }
.pkg__per { margin-top: 10px; font-size: 14px; color: var(--muted); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.pkg__list { margin: 22px 0 28px; display: grid; gap: 12px; flex: 1; }
.pkg__list li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.45; }
.pkg__list li::before { content: ""; position: absolute; left: 2px; top: 6px; width: 10px; height: 6px; border: solid var(--rose); border-width: 0 0 1.5px 1.5px; transform: rotate(-45deg); }
.pkg .btn { width: 100%; }
.pkg--featured { background: var(--plum); color: var(--ivory); border-color: var(--plum); order: -1; box-shadow: 0 40px 80px -40px rgba(43, 27, 46, .7); }
.pkg--featured .pkg__per { color: var(--muted-light); border-color: var(--line-dark); }
.pkg--featured .pkg__list li::before { border-color: var(--rose-light); }
.pkg__badge {
  position: absolute; top: -13px; left: 26px; background: var(--rose); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.pkg:not(.pkg--featured) .btn { background: transparent; color: var(--plum); box-shadow: inset 0 0 0 1.5px var(--plum); }
.pkg:not(.pkg--featured) .btn:hover { background: var(--plum); color: var(--ivory); }
@media (min-width: 960px) {
  .packages { grid-template-columns: 1fr 1.08fr 1fr; gap: 24px; align-items: center; }
  .pkg--featured { order: 0; padding: 44px 34px; }
  .pkg { min-height: 100%; }
  .pkg--featured { min-height: calc(100% + 40px); }
}
.packages__note { text-align: center; color: var(--muted); font-size: 14.5px; max-width: 62ch; margin: 36px auto 28px; }

/* ---------- Offers ---------- */
.offers { display: grid; gap: 16px; }
.offer { border-radius: 24px; padding: 36px 28px; }
.offer--launch { background: var(--plum); color: var(--ivory); position: relative; overflow: hidden; }
.offer--launch::after { display: none; content: ""; position: absolute; right: -60px; bottom: -80px; width: 220px; height: 280px; border-radius: 999px 999px 0 0; border: 1px solid rgba(228, 138, 168, .35); }
.offer--promise { background: var(--blush); }
.offer__title { font-size: clamp(30px, 24px + 1.6vw, 42px); line-height: 1.1; }
.offer__text { margin-top: 14px; max-width: 42ch; }
.offer--launch .offer__text { color: var(--muted-light); }
.offer--promise .offer__text { color: var(--muted); }
.slots { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; border: 1px solid var(--line-dark); border-radius: 999px; padding: 6px 16px 6px 6px; font-size: 14px; font-weight: 600; }
.slots__num { display: grid; place-items: center; min-width: 32px; height: 32px; border-radius: 999px; background: var(--rose); color: #fff; font-family: var(--serif); font-size: 17px; padding: 0 8px; }
@media (min-width: 900px) { .offer--launch::after { display: block; } .offers { grid-template-columns: 1fr 1fr; gap: 24px; } .offer { padding: 48px 44px; } }

/* ---------- Who ---------- */
.who { text-align: center; }
.who .eyebrow { justify-content: center; }
.who .h2 { margin: 0 auto; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 36px auto 28px; max-width: 760px; }
.chips li { border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-size: 15px; background: #fff; }
.who .lead { margin: 0 auto; }

/* ---------- Roles ---------- */
.roles { display: grid; gap: 16px; }
.role { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.role__num { font-family: var(--serif); font-style: italic; color: var(--rose); font-size: 22px; margin-bottom: 20px; }
.role p:last-child { color: var(--muted); margin-top: 10px; }
@media (min-width: 900px) { .roles { grid-template-columns: repeat(3, 1fr); gap: 24px; } .role { padding: 36px 32px; } }
.join { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 4px 12px; align-items: center; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; gap: 8px; }
@media (min-width: 900px) { .faq-wrap { grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; } }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  min-height: 64px; padding: 16px 0; font-weight: 600; font-size: 17.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line);
  background:
    linear-gradient(var(--rose), var(--rose)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--rose), var(--rose)) center / 1.5px 10px no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 44px 22px 0; color: var(--muted); }

/* ---------- Audit form ---------- */
.audit { display: grid; gap: 40px; }
@media (min-width: 900px) { .audit { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } .audit__copy { position: sticky; top: 120px; } }
.form { background: var(--plum-2); border: 1px solid var(--line-dark); border-radius: 24px; padding: 26px 20px; display: grid; gap: 16px; }
@media (min-width: 560px) { .form { padding: 36px 32px; } }
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ivory); }
.req { color: var(--rose-light); }
.opt { font-weight: 400; color: var(--muted-light); }
.field input, .field select {
  width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 12px; font-size: 16px;
  border: 1px solid rgba(251, 247, 242, .22); background: rgba(251, 247, 242, .06); color: var(--ivory);
  transition: border-color .2s, background-color .2s;
}
.field input::placeholder { color: rgba(205, 191, 200, .7); }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted-light) 50%), linear-gradient(135deg, var(--muted-light) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field select option { color: var(--plum); background: #fff; }
.field input:focus, .field select:focus { outline: none; border-color: var(--rose-light); background-color: rgba(251, 247, 242, .1); box-shadow: 0 0 0 3px rgba(228, 138, 168, .3); }
.field input:user-invalid, .field select:user-invalid { border-color: #F2A0B5; }
.form__req { font-size: 13px; color: var(--muted-light); }
.form__note { font-size: 14px; color: var(--muted-light); text-align: center; }
.form__wa { text-align: center; }
.form__pkg { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: rgba(228, 138, 168, .14); border: 1px solid rgba(228, 138, 168, .4); border-radius: 12px; padding: 6px 6px 6px 14px; font-size: 14.5px; }
.form__pkg strong { color: var(--rose-light); }
.form__pkg-clear { background: transparent; border: 0; color: var(--muted-light); min-height: 40px; padding: 0 12px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { margin-top: 6px; }

/* ---------- Footer ---------- */
.footer { background: #231625; color: var(--muted-light); padding: 56px 0 120px; font-size: 14.5px; }
.footer__inner { display: grid; gap: 14px; }
.wordmark--footer { color: var(--ivory); font-size: 28px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 0 22px; }
.footer__links a { display: inline-flex; min-height: 44px; align-items: center; color: var(--ivory); text-underline-offset: 4px; }
.footer__links a:hover { color: var(--rose-light); }
.footer__copy { font-size: 13px; }
@media (min-width: 900px) { .footer { padding-bottom: 56px; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 247, 242, .95); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.sticky-cta.is-on { transform: none; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---------- Reveal (JS adds .reveal only; content visible without JS) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0s !important; animation-duration: 0s !important; }
  .reveal { opacity: 1; transform: none; }
}
