/* ===================================================================
   Massage by Bee. Refined.
   Source Serif 4 (display) x Inter (body). Near-neutral palette,
   one accent used sparingly.
   =================================================================== */

:root {
  --canvas: #d5ac9b;        /* dusty clay rose, logo-matched */
  --canvas-alt: #cfa595;    /* slightly deeper band */
  --paper: #e8cdbf;         /* cream-rose for cards, inputs */
  --paper-soft: #f1d9cb;
  --cream: #f5efe3;         /* cream used for text on dark sections */
  --ink: #1b1814;           /* warm near-black */
  --ink-soft: #473a30;      /* warmer brown for body copy on rose */
  --ink-mute: #7d5d4d;      /* warm brown for labels */
  --green: #273029;         /* studio wall green, dark section */
  --green-soft: #333e35;
  --accent: #8d4a33;        /* deep burnt terracotta accent */
  --accent-soft: #c49080;
  --rule: rgba(27, 24, 20, 0.16);
  --rule-strong: rgba(27, 24, 20, 0.26);
  --rule-cream: rgba(232, 205, 191, 0.18);

  --display: "Source Serif 4", "Source Serif Pro", "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  --shell-x: clamp(22px, 5vw, 88px);
  --shell-max: 1360px;
}

/* ----- reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--canvas);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 12px 18px; z-index: 999;
}
.skip:focus { left: 12px; top: 12px; }

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding-left: var(--shell-x);
  padding-right: var(--shell-x);
}

/* ----- primitives -------------------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 62px);
}
.display--hero {
  font-size: clamp(48px, 7.2vw, 108px);
  letter-spacing: -0.035em;
  line-height: 1.0;
  font-variation-settings: "opsz" 60;
}
.display--sm { font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; }
.display--light { color: var(--cream); }

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.eyebrow--light { color: rgba(245, 239, 227, 0.72); }

.section__head {
  max-width: 760px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.section__head--between {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.section__lede {
  margin-top: 4px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}
.studio__lede { margin-top: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .3s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.btn__icon { display: inline-flex; width: 18px; height: 18px; }
.btn__icon svg { width: 100%; height: 100%; }
.btn--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--dark:hover { transform: translateY(-1px); background: #000; }
.btn--full { width: 100%; justify-content: center; padding: 16px 22px; }

.link-inline {
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rule-strong);
  transition: color .2s, text-decoration-color .2s;
}
.link-inline:hover { color: var(--ink); text-decoration-color: var(--accent); }

/* ----- top bar ---------------------------------------------------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(213, 172, 155, 0.90);
  backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.topbar__inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}
.mark {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.mark__dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}
.mark__word {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1;
}
.mark__name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mark__tag {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.topbar__nav {
  display: flex;
  gap: clamp(20px, 3vw, 38px);
  justify-content: center;
}
.topbar__nav a {
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.topbar__nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--accent);
  transition: right .3s ease;
}
.topbar__nav a:hover { color: var(--ink); }
.topbar__nav a:hover::after { right: 0; }
.topbar__cta { padding: 10px 18px; font-size: 14px; }

@media (max-width: 860px) {
  .topbar__nav { display: none; }
  .topbar__inner { grid-template-columns: 1fr auto; }
  .mark__tag { display: none; }
}

/* ----- hero ------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: clamp(620px, 86vh, 900px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero__copy {
  padding: clamp(56px, 8vw, 110px) clamp(36px, 5vw, 80px) clamp(48px, 6vw, 80px) clamp(var(--shell-x, 24px), 7vw, 110px);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 3vw, 36px);
  max-width: 780px;
}
.hero__lede {
  font-size: clamp(17px, 1.2vw, 19.5px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}
.hero__ctas {
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
}
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(213, 172, 155, 0.28) 0%, transparent 22%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { padding: 56px var(--shell-x) 48px; gap: 22px; order: 2; max-width: none; }
  .hero__media { height: 56vh; min-height: 420px; order: 1; }
}

/* ----- menu ------------------------------------------------------- */
.menu {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 140px) var(--shell-x);
}
.menu__list {
  margin-top: clamp(44px, 5vw, 72px);
  border-top: 1px solid var(--rule-strong);
}
.menu__row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: clamp(18px, 3vw, 52px);
  align-items: baseline;
  padding: clamp(26px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--rule);
  transition: padding .25s ease;
}
.menu__row:hover { padding-left: 6px; }
.menu__meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 10px;
  font-weight: 500;
}
.menu__body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.menu__body p {
  max-width: 64ch;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.menu__body .tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  background: rgba(184, 114, 91, 0.08);
  font-weight: 500;
}
.menu__price {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
  line-height: 1;
}
.menu__price .c {
  font-size: 0.5em;
  vertical-align: 0.55em;
  color: var(--ink-mute);
  margin-right: 2px;
}
.menu__row--feature .menu__body h3 { color: var(--ink); }
@media (max-width: 680px) {
  .menu__row { grid-template-columns: 1fr; gap: 8px; }
  .menu__meta { padding-top: 0; }
  .menu__price { font-size: 40px; }
}

/* add-ons */
.addons {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
  background: var(--canvas-alt);
  border: 1px solid var(--rule);
  border-radius: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.addons__head p {
  margin-top: 8px; color: var(--ink-soft); font-size: 15px;
}
.addons__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.addons__list li {
  padding: 14px 18px;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.addons__list li span {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 500;
}
.addons__list li em {
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
@media (max-width: 740px) {
  .addons { grid-template-columns: 1fr; }
}

/* ----- first session steps --------------------------------------- */
.steps {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--shell-x);
  border-top: 1px solid var(--rule);
}
.steps__list {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.5vw, 40px);
}
.steps__list li {
  padding: 28px 26px 32px;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  border-radius: 14px;
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
}
.steps__num {
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0;
  font-weight: 400;
}
.steps__list h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}
.steps__list p:last-child {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 960px) {
  .steps__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps__list { grid-template-columns: 1fr; }
}

/* ----- about (dark band) ----------------------------------------- */
.about {
  background: var(--green);
  color: var(--canvas);
  padding: clamp(84px, 10vw, 140px) var(--shell-x);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about__portrait {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
}
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}
.about__copy p {
  margin-top: 20px;
  font-size: clamp(16px, 1.15vw, 18.5px);
  color: rgba(245, 239, 227, 0.88);
  max-width: 60ch;
  line-height: 1.75;
}
.about__copy .display--light {
  margin-top: 10px;
  max-width: 24ch;
}
@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; }
  .about__portrait { max-width: 420px; }
}

/* ----- studio / gallery ------------------------------------------ */
.studio {
  padding: clamp(84px, 10vw, 140px) var(--shell-x);
}
/* --- Auto-scrolling marquee gallery ------------------------------ */
.studio__marquee {
  margin-top: clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  /* bleed to the right viewport edge */
  margin-right: calc(-1 * var(--shell-x));
  margin-left: calc(-1 * var(--shell-x));
  padding: 8px 0 8px;
  /* soft fade at both edges so cells ease in/out of view */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.studio__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: studioScroll 52s linear infinite;
  will-change: transform;
}
.studio__marquee:hover .studio__track,
.studio__marquee:focus-within .studio__track {
  animation-play-state: paused;
}
@keyframes studioScroll {
  from { transform: translate3d(0, 0, 0); }
  /* translate half the width (one full set of cells) plus one gap */
  to   { transform: translate3d(calc(-50% - 7px), 0, 0); }
}

.studio__cell {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 260px);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  background: var(--ink);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.studio__cell:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}
.studio__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .35s ease;
  will-change: transform;
}
.studio__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,24,20,0) 55%, rgba(27,24,20,0.4));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 1;
}
.studio__cell:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -18px rgba(27, 24, 20, 0.4); }
.studio__cell:hover img { transform: scale(1.04); filter: saturate(1.03); }
.studio__cell:hover::before { opacity: 1; }

.studio__expand {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(27, 24, 20, 0.78);
  color: var(--cream);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  z-index: 2;
}
.studio__expand svg { width: 14px; height: 14px; }
.studio__cell:hover .studio__expand,
.studio__cell:focus-visible .studio__expand {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .studio__track { animation: none; }
}

/* --- Lightbox ---------------------------------------------------- */
.lightbox {
  padding: 0;
  margin: 0;
  border: none;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: transparent;
  color: var(--cream);
  overflow: hidden;
}
.lightbox::backdrop {
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(6px);
}
.lightbox[open] { display: flex; }
.lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vh, 100px) clamp(70px, 10vw, 140px);
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  display: block;
  border-radius: 4px;
  animation: lightboxIn .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox__btn {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(245, 239, 227, 0.12);
  color: var(--cream);
  border: 1px solid rgba(245, 239, 227, 0.18);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__btn:hover { background: rgba(245, 239, 227, 0.2); transform: scale(1.04); }
.lightbox__btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}
.lightbox__btn--close { top: 24px; right: 24px; }
.lightbox__btn--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__btn--prev:hover,
.lightbox__btn--next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: rgba(245, 239, 227, 0.8);
  max-width: min(80vw, 640px);
  text-align: center;
  line-height: 1.4;
}
.lightbox__count {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.55);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 620px) {
  .lightbox__btn--prev { left: 12px; }
  .lightbox__btn--next { right: 12px; }
  .lightbox__btn--close { top: 12px; right: 12px; }
  .lightbox__stage { padding: 70px 16px 70px; }
}

/* ----- words / reviews ------------------------------------------- */
.words {
  background: var(--green-soft);
  color: var(--canvas);
  padding: clamp(84px, 10vw, 140px) var(--shell-x);
}
.words .section__head { max-width: 720px; }
.words__grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(22px, 2.5vw, 36px);
}
.words__grid blockquote {
  padding: 30px 28px 28px;
  border: 1px solid var(--rule-cream);
  border-radius: 12px;
  background: rgba(245, 239, 227, 0.03);
}
.words__grid p {
  font-family: var(--display);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
  color: var(--canvas);
  font-weight: 400;
}
.words__grid cite {
  display: block;
  margin-top: 18px;
  font-family: var(--body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.6);
}

/* ----- book ------------------------------------------------------- */
.book {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 140px) var(--shell-x);
}
.book__head { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.book__lede {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 19px);
  max-width: 58ch;
}

.book__grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.cta-card {
  padding: clamp(28px, 3.5vw, 40px);
  border-radius: 16px;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  justify-content: space-between;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .2s;
}
.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 50px -28px rgba(27, 24, 20, 0.22);
  border-color: var(--rule-strong);
}
.cta-card--primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.cta-card--primary:hover { border-color: var(--ink); }
.cta-card__icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--canvas-alt);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.cta-card--primary .cta-card__icon {
  background: rgba(245, 239, 227, 0.14);
  color: var(--cream);
}
.cta-card__icon svg { width: 22px; height: 22px; }
.cta-card__kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.cta-card--primary .cta-card__kicker { color: rgba(245, 239, 227, 0.55); }
.cta-card__body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.cta-card__sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 10px;
  max-width: 36ch;
}
.cta-card--primary .cta-card__sub { color: rgba(245, 239, 227, 0.78); }
@media (max-width: 780px) {
  .book__grid { grid-template-columns: 1fr; }
}

.book__form {
  margin-top: 40px;
  padding: clamp(28px, 3vw, 40px);
  background: var(--paper-soft);
  border-radius: 18px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.book__form-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.book__form-sub { font-size: 14.5px; color: var(--ink-soft); margin-top: -10px; }
.book__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) { .book__form-row { grid-template-columns: 1fr; } }
.book__form label {
  display: flex; flex-direction: column; gap: 6px;
}
.book__form label > span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.book__form input,
.book__form textarea,
.book__form select {
  background: #fbf1e9;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  padding: 14px 14px;
  font-size: 16px;
  color: var(--ink);
  font-family: var(--body);
  transition: border-color .2s, box-shadow .2s;
}
.book__form input:focus-visible,
.book__form textarea:focus-visible,
.book__form select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 114, 91, 0.16);
}
.book__form textarea { resize: vertical; min-height: 110px; }
.book__reassure {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 2px;
}

.book__band {
  margin-top: clamp(48px, 6vw, 72px);
  padding: 26px 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px 44px;
}
.book__band > div { display: flex; flex-direction: column; gap: 4px; }
.book__band strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* ----- faq -------------------------------------------------------- */
.faq {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 140px) var(--shell-x);
}
.faq__list {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--rule-strong);
}
.faq__list > div {
  padding: clamp(24px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(20px, 3vw, 64px);
}
.faq__list dt {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__list dd {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 64ch;
}
@media (max-width: 740px) {
  .faq__list > div { grid-template-columns: 1fr; gap: 8px; }
}

/* ----- footer ---------------------------------------------------- */
.foot {
  background: var(--green);
  color: var(--canvas);
  padding: clamp(60px, 7vw, 92px) 0 36px;
}
.foot__top {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--rule-cream);
}
.foot__mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--canvas);
}
.foot__wordmark {
  display: flex; flex-direction: column; gap: 4px;
}
.foot__wordmark .mark__name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--canvas);
  letter-spacing: -0.01em;
}
.foot__wordmark small {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.6);
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 50px);
}
.foot__cols > div {
  display: flex; flex-direction: column; gap: 8px;
}
.foot__cols a {
  color: rgba(245, 239, 227, 0.82);
  font-size: 15px;
  transition: color .2s;
}
.foot__cols a:hover { color: var(--canvas); }
.foot__cols .eyebrow { margin-bottom: 8px; }
.foot__bottom {
  padding-top: 22px;
  display: flex; flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.5);
}
@media (max-width: 780px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ----- sticky cta (mobile) --------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 500;
  font-size: 14.5px;
  box-shadow: 0 18px 34px -14px rgba(27, 24, 20, 0.5);
}
.sticky-cta svg { width: 20px; height: 20px; }
@media (max-width: 760px) {
  .sticky-cta { display: inline-flex; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
