:root {
  --paper: #fbfaf7;
  --paper-soft: #fffdfa;
  --paper-alt: #f8f4ee;
  --paper-deep: #f3ece4;
  --heading: #5d514a;
  --body: #756b64;
  --muted: #958a82;
  --label: #ad9584;
  --terra: #bd7655;
  --terra-deep: #a96649;
  --line: rgba(103, 84, 72, .16);
  --line-soft: rgba(103, 84, 72, .10);
  --white: #fffdf9;
  --serif: "Bona Nova SC", "Frank Ruhl Libre", serif;
  --sans: "Alef", Arial, sans-serif;
  --label-font: "Assistant", "Alef", sans-serif;
  --brand-font: "IBM Plex Serif", Georgia, serif;
  --display: "Rubik Maze", "Bona Nova SC", serif;
  --shadow: 0 20px 52px rgba(75, 58, 47, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  max-width: 100%;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.74;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
main, footer { display: block; width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
figure, blockquote, p { margin-top: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: clamp(76px, 7vw, 112px) 0; }

.skip-link {
  position: fixed;
  top: -100px;
  right: 20px;
  z-index: 1000;
  background: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { top: 20px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  padding: 22px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 21px; height: 21px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong {
  font-family: var(--brand-font);
  font-size: 17px;
  font-weight: 100;
  letter-spacing: .31em;
  color: rgba(77, 65, 58, .78);
}
.brand small {
  margin-top: 6px;
  color: rgba(123, 109, 100, .74);
  font-family: var(--label-font);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .045em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(82, 70, 63, .84);
  font-family: var(--label-font);
  font-size: 15px;
  font-weight: 300;
}
.main-nav a { position: relative; }
.main-nav a:not(.nav-order)::after {
  content: "";
  position: absolute;
  right: 0;
  left: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--terra);
  transition: left .25s ease;
}
.main-nav a:hover::after { left: 0; }
.nav-order {
  border: 1px solid rgba(130, 104, 88, .28);
  border-radius: 999px;
  padding: 10px 20px;
  background: rgba(255, 253, 249, .38);
  backdrop-filter: blur(8px);
  transition: .25s ease;
}
.nav-order:hover { border-color: rgba(189, 118, 85, .58); color: var(--terra-deep); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px; background: rgba(79, 67, 60, .78); }

/* Shared type */
.eyebrow,
.chapter-label {
  margin: 0 0 18px;
  color: var(--label);
  font-family: var(--label-font);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .035em;
}
.hero h1,
.section h2,
.soft-grid h3,
.steps strong,
.signature strong,
.order-subtitle,
.price,
summary,
blockquote {
  font-family: var(--serif);
  color: var(--heading);
}
.hero h1,
.section h2 {
  font-weight: 400;
  letter-spacing: -.016em;
}

/* Boutique buttons */
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--label-font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .01em;
  overflow: hidden;
  transition: color .28s ease, border-color .28s ease, background .28s ease, transform .28s ease, box-shadow .28s ease;
}
.button::after {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: .48;
  transition: transform .28s ease, opacity .28s ease;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.46) 48%, transparent 58% 100%);
  transform: translateX(115%);
  transition: transform .55s ease;
}
.button:hover { transform: translateY(-1px); }
.button:hover::after { transform: translateX(-3px) scale(1.28); opacity: .8; }
.button:hover::before { transform: translateX(-115%); }
.button-primary {
  border-color: rgba(184, 114, 80, .44);
  background: rgba(255, 253, 249, .76);
  color: #71584a;
  box-shadow: 0 12px 30px rgba(85, 67, 56, .07), inset 0 0 0 1px rgba(255,255,255,.62);
  backdrop-filter: blur(10px);
}
.button-primary:hover { border-color: var(--terra); background: var(--terra); color: var(--white); box-shadow: 0 15px 34px rgba(169, 102, 73, .16); }
.button-outline {
  border-color: rgba(112, 93, 81, .24);
  background: rgba(255,255,255,.25);
  color: rgba(83, 70, 62, .86);
}
.button-outline:hover { border-color: rgba(189,118,85,.58); background: rgba(189,118,85,.07); color: var(--terra-deep); }

/* Hero — one finished image */
.hero {
  position: relative;
  min-height: 850px;
  padding: 0 0 24px;
  background: #f7f3ed;
  overflow: clip;
}
.hero-media { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 43% center; }
.hero-image-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,243,237,.04) 0%, rgba(247,243,237,.12) 38%, rgba(247,243,237,.72) 66%, rgba(247,243,237,.985) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 790px;
  padding-top: 116px;
}
.hero-copy { width: min(51%, 670px); margin-left: auto; text-align: right; }
.hero h1 { margin: 0 0 20px; font-size: clamp(40px, 3.35vw, 56px); line-height: 1.38; }
.hero-subtitle {
  margin: 0 0 18px;
  color: var(--terra-deep);
  font-family: var(--serif);
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 400;
  line-height: 1.56;
}
.hero-lead {
  margin: 0 0 17px;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(17px, 1.22vw, 20px);
  font-weight: 400;
  line-height: 1.8;
}
.hero-intro { max-width: 640px; margin-bottom: 0; font-size: 16.5px; line-height: 1.86; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.book-note {
  position: absolute;
  left: 4.2%;
  bottom: 8.5%;
  z-index: 2;
  margin: 0;
  color: rgba(171, 146, 128, .84);
  font-family: var(--label-font);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .035em;
}
.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(98,80,69,.10);
  color: rgba(132, 117, 107, .72);
  font-family: var(--label-font);
  font-size: 12px;
  font-weight: 300;
}
.hero-foot span { padding-inline: 28px; }
.hero-foot span + span { border-right: 1px solid rgba(98,80,69,.11); }

/* Opening */
.opening { background: #faf7f3; text-align: center; }
.opening-copy {
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(23px, 1.95vw, 31px);
  font-weight: 400;
  line-height: 1.8;
}
.opening-copy p { margin: 0 auto 18px; }
.opening-copy p:last-child { margin-bottom: 0; }

/* Belief */
.belief { background: var(--paper-soft); overflow: clip; }
.belief-mark {
  position: absolute;
  left: 6%;
  top: 50%;
  width: clamp(160px, 16vw, 260px);
  opacity: .038;
  transform: translateY(-50%);
}
.belief-grid { position: relative; display: grid; grid-template-columns: 1.1fr .76fr; gap: 9vw; align-items: center; }
.belief-title h2 { margin: 0; font-size: clamp(38px, 3.55vw, 53px); line-height: 1.44; }
.belief-title em { color: var(--terra-deep); font-style: normal; }
.belief-copy { font-size: clamp(17px, 1.15vw, 20px); line-height: 1.96; }
.belief-copy p { margin-bottom: 0; }

/* Split image sections */
.split { background: var(--paper-alt); }
.book { background: var(--paper-soft); }
.ritual { background: #faf7f2; }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}
.split-grid.reverse { grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); }
.photo { margin: 0; position: relative; overflow: hidden; }
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(89,74,66,.055);
  pointer-events: none;
}
.photo img { width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.photo-window { aspect-ratio: 1.42 / 1; }
.photo-window img { object-position: center; }
.photo-still { aspect-ratio: 1.48 / 1; }
.photo-still img { object-position: center; }
.copy h2 { margin: 0 0 24px; font-size: clamp(35px, 3.05vw, 48px); line-height: 1.46; }
.copy p { margin: 0 0 18px; font-size: clamp(16.5px, 1.08vw, 18.5px); line-height: 1.88; }
.copy blockquote {
  margin: 29px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--terra-deep);
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 400;
  line-height: 1.6;
}

/* Fabric image treatment */
.photo-linen-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #f7f3ee;
}
.photo-linen-stage::before {
  content: "";
  position: absolute;
  inset: -34px;
  background: url("assets/book-linen.webp") center / cover no-repeat;
  filter: blur(18px) saturate(.72) brightness(1.08);
  opacity: .23;
  transform: scale(1.08);
}
.photo-linen-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,253,250,.62), rgba(247,242,235,.35));
  box-shadow: inset 0 0 0 1px rgba(96,78,66,.05);
}
.photo-linen-stage img {
  position: relative;
  z-index: 1;
  width: min(72%, 390px);
  height: auto;
  box-shadow: 0 18px 38px rgba(74,55,44,.10);
}

/* Forty */
.forty {
  overflow: clip;
  background: linear-gradient(145deg, #fffaf5 0%, #f8eee4 100%);
}
.desert-orb { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .28; }
.orb-a { width: 460px; height: 460px; left: -160px; top: -210px; background: radial-gradient(circle, rgba(232,171,137,.50) 0, rgba(232,171,137,.12) 49%, transparent 72%); }
.orb-b { width: 590px; height: 590px; right: -240px; bottom: -360px; background: radial-gradient(circle, rgba(223,198,165,.44) 0, rgba(223,198,165,.08) 54%, transparent 74%); }
.forty-grid { position: relative; display: grid; grid-template-columns: .66fr 1.2fr; gap: 7vw; align-items: center; }
.forty-number {
  color: rgba(189,118,85,.25);
  font-family: var(--display);
  font-size: clamp(150px, 19vw, 300px);
  font-weight: 400;
  line-height: .78;
  text-align: center;
}
.forty-copy h2 { margin: 0 0 24px; font-size: clamp(36px, 3.05vw, 49px); line-height: 1.46; }
.forty-copy p { font-size: clamp(16.5px, 1.08vw, 18.5px); line-height: 1.92; }
.forty-copy p:last-child { margin-bottom: 0; }

/* Method */
.method { background: var(--paper-soft); }
.section-heading { max-width: 830px; margin: 0 0 52px; }
.section-heading.compact { margin: 0 auto 48px; text-align: center; }
.section-heading h2 { margin: 0 0 18px; font-size: clamp(36px, 3.2vw, 50px); line-height: 1.43; }
.section-heading > p:last-child { margin-bottom: 0; font-size: 17px; line-height: 1.88; }
.soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.soft-grid article { min-height: 228px; padding: 30px 24px; }
.soft-grid article + article { border-right: 1px solid var(--line); }
.soft-grid article > span { color: var(--label); font-family: var(--label-font); font-size: 12px; font-weight: 300; }
.soft-grid h3 { margin: 31px 0 10px; font-size: 26px; font-weight: 400; }
.soft-grid p { margin-bottom: 0; font-size: 15.5px; line-height: 1.78; }

/* Ritual */
.ritual-grid { grid-template-columns: minmax(0, 1.07fr) minmax(0, .83fr); }
.steps { list-style: none; margin: 24px 0 0; padding: 0; border-top: 1px solid var(--line); }
.steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 17px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.steps li > span { color: var(--label); font-family: var(--label-font); font-size: 13px; font-weight: 300; }
.steps strong { font-size: 22px; font-weight: 400; }
.steps p { margin: 2px 0 0; font-size: 15.5px; }

/* Molecule topics */
.inside { background: var(--paper-soft); text-align: center; }
.topic-network {
  --network-gap-x: 28px;
  --network-gap-y: 34px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--network-gap-y) var(--network-gap-x);
  max-width: 1040px;
  margin: 36px auto 0;
  padding: 28px 18px;
  direction: ltr;
}
.topic-network::before {
  content: "";
  position: absolute;
  inset: 8% 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,148,116,.08), transparent 65%);
  pointer-events: none;
}
.topic-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 10px 15px;
  border: 1px solid rgba(148,121,104,.23);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  color: var(--heading);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.35;
  direction: rtl;
  box-shadow: 0 8px 24px rgba(78,61,50,.025);
}
.topic-node:nth-child(2n) { transform: translateY(-7px); }
.topic-node:nth-child(4n) { transform: translateY(7px); }
.topic-core { border-color: rgba(189,118,85,.34); background: rgba(250,240,232,.72); }
.topic-empty {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  padding: 0;
  justify-self: center;
  align-self: center;
  border-color: rgba(189,118,85,.28);
  background: rgba(189,118,85,.08);
}
.topic-node.link-r::before,
.topic-node.link-d::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(157,130,112,.18);
  pointer-events: none;
}
.topic-node.link-r::before {
  top: 50%;
  left: 100%;
  width: calc(var(--network-gap-x) + 2px);
  height: 1px;
}
.topic-node.link-d::after {
  top: 100%;
  left: 50%;
  width: 1px;
  height: calc(var(--network-gap-y) + 2px);
}
.topic-network > :nth-child(5n).link-r::before { display: none; }
.inside-note { max-width: 780px; margin: 34px auto 0; color: var(--muted); font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.68; }

/* About */
.about { background: #faf7f3; }
.about-grid { max-width: 1000px; display: grid; grid-template-columns: minmax(0, 1fr) 138px; gap: clamp(38px, 6vw, 76px); align-items: end; }
.about-copy h2 { margin: 0 0 24px; font-size: clamp(34px, 2.95vw, 46px); line-height: 1.45; }
.about-copy > p { margin: 0 0 17px; font-size: 17px; line-height: 1.86; }
.signature { display: flex; flex-direction: column; margin-top: 29px; color: var(--muted); font-size: 14px; }
.signature strong { margin-bottom: 3px; color: var(--terra-deep); font-size: 22px; font-weight: 400; }
.author-photo { width: 132px; margin: 0; justify-self: start; }
.author-photo img { width: 100%; height: auto; border-radius: 2px; box-shadow: 0 13px 31px rgba(89,68,48,.08); }

/* Testimonials */
.testimonials { background: var(--paper-soft); }
.quotes-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-page { display: contents; }
.quotes-track blockquote {
  min-height: 214px;
  margin: 0;
  padding: 34px 24px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
}
.quotes-track blockquote + blockquote { border-right: 1px solid var(--line); }
.quote-page + .quote-page blockquote:first-child { border-right: 1px solid var(--line); }
.quotes-track strong { color: var(--terra-deep); font-weight: 500; }

/* Order */
.order { background: #faf6f0; overflow: clip; }
.order-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: clamp(46px, 7vw, 90px); align-items: center; }
.order-visual {
  margin: 0;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  background: #f5efe8;
  box-shadow: 0 18px 48px rgba(75,58,47,.07);
}
.order-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.order-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 3.45vw, 52px);
  font-weight: 400;
  line-height: 1.3;
}
.order-subtitle { margin: 5px 0 22px; color: var(--terra-deep); font-size: 21px; font-weight: 400; }
.order-copy > p, .order-copy li { font-size: 17px; line-height: 1.78; }
.order-copy ul { list-style: none; margin: 24px 0; padding: 0; border-top: 1px solid var(--line); }
.order-copy li { display: flex; align-items: center; gap: 12px; min-height: 46px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.order-check {
  width: 7px;
  height: 12px;
  flex: 0 0 auto;
  border: solid var(--terra);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg) translateY(-1px);
}
.order-action { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
.price { font-size: 32px; font-weight: 400; }
.button-order {
  border-color: rgba(189,118,85,.34);
  background: linear-gradient(135deg, rgba(239,222,207,.90), rgba(250,245,238,.92));
  color: #705a4d;
  box-shadow: 0 12px 28px rgba(85,67,56,.06), inset 0 0 0 1px rgba(255,255,255,.65);
}
.button-order:hover, .button-order:focus { border-color: var(--terra); background: var(--terra); color: var(--white); }
.fine-print { margin-top: 14px; color: var(--muted); font-size: 12px !important; }

/* FAQ */
.faq { background: var(--paper-soft); }
.faq-grid { display: grid; grid-template-columns: .5fr 1.2fr; gap: 8vw; align-items: start; }
.faq-heading h2 { margin: 0; font-size: clamp(38px, 3.25vw, 51px); line-height: 1.36; }
.faq-list details { padding: 20px 0; border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--terra); font-family: var(--label-font); font-size: 20px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 800px; margin: 14px 0 0; color: var(--muted); font-size: 16px; line-height: 1.82; }

/* Final */
.final { padding: 72px 0; background: #faf7f2; text-align: center; }
.final-mark { width: 23px; margin: 0 auto 15px; opacity: .9; }
.final h2 { margin: 0 0 18px; font-size: clamp(34px, 3.15vw, 46px); line-height: 1.46; }
.final p:not(.chapter-label) { max-width: 720px; margin: 0 auto 28px; color: var(--muted); font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.78; }
.final-button { min-width: 252px; min-height: 52px; }

/* Compact footer */
.site-footer {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  background: #f4efe9;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  color: rgba(111, 98, 89, .76);
  font-family: var(--label-font);
  font-size: 12px;
  font-weight: 300;
}
.footer-inner p { margin: 0; }
.footer-brand img { width: 17px; height: 17px; }
.footer-brand strong { font-size: 13px; letter-spacing: .29em; }
.footer-brand small { margin-top: 4px; font-size: 9px; }
.footer-links { display: flex; gap: 19px; }
.footer-book { justify-self: start; }
.footer-copy { white-space: nowrap; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 980px) {
  .shell { width: min(100% - 42px, 1280px); }
  .site-header { padding: 17px 0; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 100dvh;
    background: rgba(251,250,247,.985);
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .menu-toggle { display: block; position: relative; z-index: 30; }

  .hero { min-height: 780px; }
  .hero-content { min-height: 720px; padding-top: 98px; }
  .hero-copy { width: min(58%, 620px); }
  .hero-media img { object-position: 39% center; }
  .hero-image-wash { background: linear-gradient(90deg, rgba(247,243,237,.03) 0%, rgba(247,243,237,.25) 40%, rgba(247,243,237,.82) 67%, rgba(247,243,237,.99) 100%); }

  .belief-grid,
  .split-grid,
  .split-grid.reverse,
  .forty-grid,
  .ritual-grid,
  .order-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 42px; }

  .belief-title, .belief-copy { text-align: center; }
  .belief-copy { max-width: 730px; margin-inline: auto; }
  .belief-mark { left: 50%; top: 38%; transform: translate(-50%, -50%); }

  .photo, .photo-linen-stage { width: min(100%, 740px); margin-inline: auto; }
  .photo-linen-stage { min-height: 560px; }
  .book .copy { order: 2; }
  .book .photo-linen-stage { order: 1; }
  .ritual .photo { order: 1; }
  .ritual .copy { order: 2; }

  .forty-number { order: -1; font-size: clamp(142px, 29vw, 245px); }
  .forty-copy { max-width: 730px; margin-inline: auto; text-align: center; }

  .soft-grid { grid-template-columns: repeat(2, 1fr); }
  .soft-grid article:nth-child(3), .soft-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .soft-grid article:nth-child(3) { border-right: 0; }

  .about-grid { max-width: 800px; grid-template-columns: 1fr 126px; gap: 34px; }

  .quotes-track {
    display: flex;
    gap: 13px;
    overflow-x: auto;
    padding: 0 0 8px;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .quotes-track::-webkit-scrollbar { display: none; }
  .quote-page {
    display: grid;
    flex: 0 0 calc(92% - 7px);
    gap: 11px;
    scroll-snap-align: start;
  }
  .quotes-track blockquote {
    min-height: 0;
    padding: 24px 22px;
    border: 1px solid var(--line) !important;
    background: rgba(255,255,255,.34);
  }

  .order-copy { max-width: 690px; margin-inline: auto; }
  .faq-heading { text-align: center; }

  .footer-inner { grid-template-columns: auto 1fr auto; gap: 18px; }
  .footer-copy { grid-column: 1 / -1; justify-self: center; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 30px, 1280px); }
  .narrow { width: min(100% - 34px, 820px); }
  .section { padding: 54px 0; }

  .site-header { padding: 14px 0; }
  .brand strong { font-size: 14px; letter-spacing: .28em; }
  .brand small { margin-top: 5px; font-size: 9.5px; }
  .brand img { width: 18px; height: 18px; }

  /* Mobile hero: the single image is shown first, then the text */
  .hero { min-height: 0; padding: 0 0 16px; background: #f8f4ee; }
  .hero-media { position: relative; inset: auto; aspect-ratio: 3 / 2; padding: 0; }
  .hero-media img { object-position: 43% center; }
  .hero-image-wash { background: linear-gradient(180deg, rgba(248,244,238,.02) 0%, rgba(248,244,238,.03) 72%, rgba(248,244,238,.48) 100%); }
  .book-note { left: 16px; bottom: 13px; font-size: 11px; color: rgba(164,140,123,.82); }
  .hero-content { display: block; min-height: 0; padding: 27px 0 10px; }
  .hero-copy { width: 100%; margin: 0; text-align: right; }
  .hero h1 { margin-bottom: 17px; font-size: clamp(31px, 8.3vw, 36px); line-height: 1.43; }
  .hero-subtitle { margin-bottom: 15px; font-size: 19px; line-height: 1.55; }
  .hero-lead { margin-bottom: 14px; font-size: 16px; line-height: 1.76; }
  .hero-intro { font-size: 15px; line-height: 1.78; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 21px; }
  .button { min-height: 44px; padding: 10px 12px; font-size: 13.5px; }
  .hero-foot { justify-content: space-between; padding-top: 13px; font-size: 10px; }
  .hero-foot span { flex: 1; padding-inline: 7px; text-align: center; }

  .eyebrow, .chapter-label { margin-bottom: 15px; font-size: 12px; }
  .opening-copy { font-size: 20px; line-height: 1.72; }
  .belief-title h2,
  .copy h2,
  .forty-copy h2,
  .section-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .final h2 { font-size: 29px; line-height: 1.45; }
  .belief-copy,
  .copy p,
  .forty-copy p { font-size: 16px; }
  .belief-mark { width: 170px; opacity: .03; }

  .split-grid,
  .split-grid.reverse,
  .ritual-grid { gap: 29px; }
  .photo-window { aspect-ratio: 1.34 / 1; }
  .photo-still { aspect-ratio: 1.34 / 1; }
  .photo-linen-stage { min-height: 420px; }
  .photo-linen-stage img { width: min(66%, 285px); }
  .copy blockquote { font-size: 19px; }

  .forty { padding-top: 46px; }
  .forty-grid { gap: 20px; }
  .forty-number { font-size: 120px; }

  .section-heading { margin-bottom: 36px; }
  .section-heading.compact { margin-bottom: 34px; }
  .section-heading > p:last-child { font-size: 16px; }

  .soft-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .soft-grid article {
    min-height: 0;
    padding: 22px 5px;
    border-right: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .soft-grid h3 { margin: 12px 0 6px; font-size: 23px; }
  .soft-grid p { font-size: 15px; }

  .steps li { grid-template-columns: 27px 1fr; padding: 14px 0; }
  .steps strong { font-size: 20px; }
  .steps p { font-size: 14.5px; }

  .topic-network {
    --network-gap-x: 12px;
    --network-gap-y: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--network-gap-y) var(--network-gap-x);
    margin-top: 24px;
    padding: 17px 0;
  }
  .topic-node {
    min-height: 50px;
    padding: 8px 7px;
    font-size: 13.5px;
  }
  .topic-empty { width: 17px; min-width: 17px; height: 17px; min-height: 17px; padding: 0; }
  .topic-node:nth-child(2n) { transform: translateY(-4px); }
  .topic-node:nth-child(4n) { transform: translateY(4px); }
  .topic-network > :nth-child(5n).link-r::before { display: block; }
  .topic-network > :nth-child(3n).link-r::before { display: none; }
  .inside-note { margin-top: 25px; font-size: 17px; }

  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-copy > p { font-size: 15.5px; }
  .author-photo { width: 104px; justify-self: start; }
  .signature { margin-top: 24px; font-size: 13.5px; }
  .signature strong { font-size: 20px; }

  .quote-page { flex-basis: 92%; }
  .quotes-track blockquote { padding: 20px 16px; font-size: 16.5px; line-height: 1.64; }

  .order-grid { gap: 27px; }
  .order-visual { width: 100%; aspect-ratio: 1.42 / 1; }
  .order-visual img { object-position: center; }
  .order-copy { text-align: center; }
  .order-copy h2 { font-size: 35px; }
  .order-subtitle { font-size: 19px; }
  .order-copy ul { text-align: right; }
  .order-copy > p, .order-copy li { font-size: 15.5px; }
  .order-action { flex-direction: column; gap: 10px; }
  .price { font-size: 29px; }

  .faq-grid { gap: 24px; }
  .faq-list details { padding: 16px 0; }
  summary { font-size: 18px; }
  .faq-list p { font-size: 15px; }

  .final { padding: 54px 0; }
  .final-mark { width: 20px; margin-bottom: 12px; }
  .final p:not(.chapter-label) { font-size: 16px; }
  .final-button { width: min(100%, 270px); min-width: 0; }

  .site-footer { padding: 16px 0; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 9px; text-align: center; font-size: 10.5px; }
  .footer-brand { margin-bottom: 2px; }
  .footer-brand strong { font-size: 12px; }
  .footer-brand small { font-size: 8.5px; }
  .footer-book { justify-self: center; }
  .footer-links { justify-self: center; flex-wrap: wrap; justify-content: center; gap: 15px; }
  .footer-copy { grid-column: auto; }
}

/* ===== Final refinement pass ===== */
html { scroll-padding-top: 86px; }
section[id], header[id] { scroll-margin-top: 86px; }
body {
  -webkit-user-select: none;
  user-select: none;
}
img {
  -webkit-user-drag: none;
  user-select: none;
}

/* Floating header on desktop and mobile */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding .28s ease, background .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.site-header.is-scrolled {
  padding: 11px 0;
  background: rgba(251, 250, 247, .86);
  border-bottom: 1px solid rgba(103, 84, 72, .10);
  box-shadow: 0 10px 34px rgba(67, 53, 45, .055);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled .brand img { width: 18px; height: 18px; }
.site-header.is-scrolled .brand strong { font-size: 15px; }
.site-header.is-scrolled .brand small { font-size: 9px; }

/* Desktop hero: more air and a smaller book inside the finished image */
.hero {
  min-height: 790px;
  background: #f8f4ee;
}
.hero-media img {
  object-position: 67% center;
}
.hero-image-wash {
  background: linear-gradient(90deg,
    rgba(248,244,238,.985) 0%,
    rgba(248,244,238,.91) 34%,
    rgba(248,244,238,.48) 53%,
    rgba(248,244,238,.06) 76%,
    rgba(248,244,238,.02) 100%);
}
.hero-content {
  min-height: 730px;
  padding-top: 112px;
}
.hero-copy {
  width: min(48%, 610px);
  margin-left: 0;
  margin-right: auto;
}
.book-note {
  left: 63%;
  bottom: 10.5%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 8px rgba(70, 53, 42, .30);
  font-size: 13px;
  letter-spacing: .045em;
  white-space: nowrap;
}
.hero-foot {
  width: min(860px, calc(100% - 64px));
  margin-inline: auto;
  padding: 13px 18px 0;
  border-top-color: rgba(101, 82, 70, .13);
  font-size: 12px;
  letter-spacing: .025em;
}
.hero-foot span { min-width: 150px; }

/* Refined primary/secondary button hierarchy */
.button-primary {
  border-color: rgba(166, 99, 70, .82);
  background: #ae6d4f;
  color: #fffdf9;
  box-shadow: 0 13px 32px rgba(123, 77, 57, .16);
}
.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgba(169, 102, 73, .48);
  background: rgba(255, 253, 249, .94);
  color: var(--terra-deep);
  box-shadow: 0 14px 32px rgba(87, 67, 55, .08);
}
.button-outline {
  border-color: rgba(112, 93, 81, .42);
  background: transparent;
  color: rgba(83, 70, 62, .92);
}
.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(169, 102, 73, .36);
  background: rgba(255, 253, 249, .92);
  color: var(--terra-deep);
  box-shadow: 0 12px 28px rgba(87, 67, 55, .06);
}
.button-order:hover,
.button-order:focus-visible {
  background: rgba(255, 253, 249, .96);
  color: var(--terra-deep);
  border-color: rgba(169, 102, 73, .48);
}

/* New images */
.photo-linen-stage {
  min-height: 500px;
  background: #f7f3ee;
}
.photo-linen-stage::before,
.photo-linen-stage::after { display: none; }
.photo-linen-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}
.ritual .photo-still { aspect-ratio: 1.34 / 1; }
.ritual .photo-still img { object-position: center; }
.author-photo {
  width: 190px;
  align-self: end;
}
.author-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}
.order-visual { aspect-ratio: 1.58 / 1; }
.order-visual img { object-position: center; }

/* Cleaner 40 rendering while preserving the chosen display font */
.forty-number {
  color: rgba(169, 102, 73, .39);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  text-shadow: 0 0 1px rgba(169, 102, 73, .12);
}

/* Topics: airy tags, no molecule */
.topic-network { display: none !important; }
.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  max-width: 980px;
  margin: 34px auto 0;
}
.topic-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 23px;
  border: 1px solid rgba(148, 121, 104, .24);
  border-radius: 999px;
  background: rgba(255,255,255,.43);
  color: var(--heading);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(78,61,50,.022);
}

/* Slightly larger mark above the closing statement */
.final-mark { width: 31px; margin-bottom: 17px; }

/* Back to top */
.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(133, 105, 89, .25);
  border-radius: 50%;
  background: rgba(255,253,249,.82);
  color: var(--terra-deep);
  font-family: var(--label-font);
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 12px 30px rgba(76, 59, 49, .09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover,
.back-to-top:focus-visible { background: #fffdf9; }

@media (max-width: 980px) {
  .site-header { padding: 15px 0; }
  .site-header.is-scrolled { padding: 10px 0; }
  .main-nav { padding-top: 72px; }

  .hero { min-height: 700px; }
  .hero-content { min-height: 655px; }
  .hero-copy { width: min(52%, 560px); }
  .hero-media img { object-position: 65% center; }
  .hero-image-wash {
    background: linear-gradient(90deg,
      rgba(248,244,238,.985) 0%,
      rgba(248,244,238,.91) 38%,
      rgba(248,244,238,.54) 57%,
      rgba(248,244,238,.08) 82%);
  }
  .book-note { left: 65%; bottom: 9.5%; }

  .author-photo { width: 165px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 68px; }
  section[id], header[id] { scroll-margin-top: 68px; }

  .site-header,
  .site-header.is-scrolled { padding: 10px 0; }
  .site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(248,244,238,.78), rgba(248,244,238,0));
  }

  .hero-media { aspect-ratio: 3 / 2; }
  .hero-media img { object-position: 65% center; }
  .hero-image-wash {
    background: linear-gradient(180deg,
      rgba(248,244,238,.01) 0%,
      rgba(248,244,238,.01) 72%,
      rgba(248,244,238,.40) 100%);
  }
  .book-note {
    left: 62%;
    bottom: 11px;
    font-size: 10.5px;
    color: rgba(255,255,255,.95);
    text-shadow: 0 1px 6px rgba(63,47,38,.35);
  }
  .hero-content { padding-top: 24px; }
  .hero-actions { grid-template-columns: 1fr 1fr; }
  .button-primary { background: #ae6d4f; color: #fffdf9; }
  .button-primary:active { background: #fffdf9; color: var(--terra-deep); }
  .button-outline:active { background: #fffdf9; color: var(--terra-deep); }

  .hero-foot {
    width: min(100% - 30px, 860px);
    padding-inline: 0;
    font-size: 10px;
  }
  .hero-foot span { min-width: 0; }

  .photo-linen-stage { min-height: 0; aspect-ratio: 1.78 / 1; }
  .photo-linen-stage img { object-fit: cover; }
  .ritual .photo-still { aspect-ratio: 1.34 / 1; }

  .forty-number {
    color: rgba(169, 102, 73, .43);
    font-size: 132px;
  }

  .topic-cloud { gap: 9px; margin-top: 23px; }
  .topic-cloud span {
    min-height: 42px;
    padding: 8px 15px;
    font-size: 15px;
  }

  .author-photo { width: min(46%, 170px); justify-self: start; }
  .author-photo img { aspect-ratio: 4 / 5; }

  .order-visual { aspect-ratio: 1.55 / 1; }
  .order-visual img { object-fit: cover; }

  .final-mark { width: 28px; }
  .back-to-top { left: 14px; bottom: 14px; width: 38px; height: 38px; font-size: 18px; }
}


/* Desktop-only hero image scale: keep the finished scene, but reduce the book's visual dominance. */
@media (min-width: 981px) {
  .hero-media {
    background: #f8f4ee;
  }
  .hero-media img {
    width: 82%;
    margin-left: auto;
    margin-right: 0;
  }
  .book-note { left: 69%; }
}

@media (min-width: 701px) and (max-width: 980px) {
  .hero-media img {
    width: 90%;
    margin-left: auto;
    margin-right: 0;
  }
  .book-note { left: 67%; }
}

@media (max-width: 700px) {
  .hero-media img {
    width: 100%;
    margin: 0;
  }
}

/* ===== Focused refinement: desktop composition and final details ===== */

/* Desktop hero: finished image on the left, copy on the right. */
@media (min-width: 981px) {
  .hero {
    min-height: 790px;
    background: #f8f4ee;
  }

  .hero-media {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(59vw, 900px);
    background: #f8f4ee;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: contain;
    object-position: center center;
  }

  .hero-image-wash {
    background:
      linear-gradient(90deg,
        rgba(248,244,238,0) 0%,
        rgba(248,244,238,0) 66%,
        rgba(248,244,238,.56) 84%,
        #f8f4ee 100%),
      linear-gradient(180deg,
        rgba(248,244,238,.08) 0%,
        rgba(248,244,238,0) 24%,
        rgba(248,244,238,0) 82%,
        rgba(248,244,238,.18) 100%);
  }

  .hero-content {
    min-height: 730px;
    justify-content: flex-start;
  }

  .hero-copy {
    width: min(45%, 590px);
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }

  .book-note {
    left: 65%;
    bottom: 17%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.96);
    text-shadow: 0 1px 10px rgba(66,49,39,.34);
    font-size: 13px;
    letter-spacing: .045em;
  }
}

/* Tablet keeps the same left-image/right-copy logic without crowding. */
@media (min-width: 701px) and (max-width: 980px) {
  .hero-media {
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: contain;
    object-position: center;
  }

  .hero-image-wash {
    background: linear-gradient(90deg,
      rgba(248,244,238,0) 0%,
      rgba(248,244,238,.08) 64%,
      rgba(248,244,238,.72) 88%,
      #f8f4ee 100%);
  }

  .hero-content { justify-content: flex-start; }
  .hero-copy {
    width: min(47%, 520px);
    margin-right: 0;
    margin-left: auto;
  }
  .book-note { left: 65%; bottom: 16%; }
}

/* The daily-process image is always on the left in desktop/tablet layouts. */
@media (min-width: 701px) {
  .ritual-grid {
    direction: ltr;
    grid-template-columns: minmax(0, 1.07fr) minmax(0, .83fr);
  }
  .ritual-grid > * { direction: rtl; }
  .ritual-grid .photo-still { grid-column: 1; }
  .ritual-grid .copy { grid-column: 2; }
}

/* Eight topics: balanced rows instead of an uneven flex wrap. */
.topic-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px 15px;
  max-width: 960px;
}
.topic-cloud span {
  width: 100%;
  min-height: 52px;
  padding-inline: 16px;
  text-align: center;
}

/* Smaller, softened author image. */
.about-grid { grid-template-columns: minmax(0, 1fr) 100px; }
.author-photo {
  position: relative;
  width: 96px;
  overflow: hidden;
}
.author-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255,255,255,.24);
  pointer-events: none;
}
.author-photo img {
  filter: saturate(.78) contrast(.94) brightness(1.05);
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: minmax(0, 1fr) 88px; }
  .author-photo { width: 84px; }
}

@media (max-width: 700px) {
  /* Preserve the mobile hero that already works. */
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-position: 65% center;
  }
  .book-note { left: 62%; }

  .ritual-grid { direction: rtl; }
  .ritual-grid .photo-still,
  .ritual-grid .copy { grid-column: auto; }

  .topic-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .topic-cloud span {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 14.5px;
  }

  .about-grid { grid-template-columns: 1fr; }
  .author-photo {
    width: 78px;
    justify-self: start;
  }
}

/* ===== Contact form ===== */
.contact {
  background: var(--paper-soft);
  border-top: 1px solid var(--line-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: start;
}
.contact-copy {
  position: sticky;
  top: 118px;
}
.contact-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 3.1vw, 50px);
  line-height: 1.42;
}
.contact-intro {
  max-width: 420px;
  margin: 0 0 23px;
  font-size: 17px;
  line-height: 1.86;
}
.contact-email {
  display: inline-block;
  color: var(--terra-deep);
  font-family: var(--label-font);
  font-size: 14px;
  font-weight: 300;
  direction: ltr;
  border-bottom: 1px solid rgba(189,118,85,.26);
}
.contact-form {
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--line-soft);
  background: rgba(255,253,249,.78);
  box-shadow: 0 20px 58px rgba(75,58,47,.055);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}
.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--heading);
  font-family: var(--label-font);
  font-size: 13px;
  font-weight: 300;
}
.form-field-wide { grid-column: 1 / -1; }
.form-field > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.form-field small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 300;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(103,84,72,.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--heading);
  font: inherit;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-user-select: text;
  user-select: text;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form input,
.contact-form select { min-height: 48px; padding: 9px 2px; }
.contact-form textarea { min-height: 126px; padding: 12px 2px; resize: vertical; }
.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--terra) 50%), linear-gradient(135deg, var(--terra) 50%, transparent 50%);
  background-position: 11px 52%, 6px 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-left: 25px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 1px 0 rgba(189,118,85,.22);
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) { border-color: rgba(157,72,59,.52); }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}
.contact-submit { min-width: 168px; }
.contact-submit:disabled { cursor: wait; opacity: .62; transform: none; }
.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.form-status.is-success { color: #667a62; }
.form-status.is-error { color: #985d50; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-copy { position: static; max-width: 680px; }
}

@media (max-width: 700px) {
  .contact-grid { gap: 25px; }
  .contact-copy { text-align: center; }
  .contact-copy h2 { font-size: 29px; }
  .contact-intro { margin-inline: auto; font-size: 15.5px; }
  .contact-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 17px; }
  .form-field-wide { grid-column: auto; }
  .form-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .contact-submit { width: 100%; }
  .form-status { text-align: center; }
}

/* ===== Launch polish: legal, contact channels, payment and mobile rhythm ===== */
.contact-channels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
}
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: rgba(81, 105, 82, .88);
  font-family: var(--label-font);
  font-size: 14px;
  font-weight: 300;
  transition: color .22s ease, transform .22s ease;
}
.contact-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }
.contact-whatsapp:hover { color: #517b5b; transform: translateY(-1px); }

.book-note {
  left: clamp(20px, 5vw, 72px) !important;
  bottom: clamp(18px, 4.5vw, 54px) !important;
  transform: none !important;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(74, 61, 52, .18);
  color: rgba(255,255,255,.96) !important;
  text-shadow: 0 1px 10px rgba(50,38,30,.28);
  backdrop-filter: blur(8px);
}

.policy-page { background: var(--paper-soft); }
.policy-page .site-header { position: fixed; }
.policy-back { color: var(--muted); font-family: var(--label-font); font-size: 13px; font-weight: 300; }
.policy-main { padding-top: 72px; }
.policy-hero { padding: clamp(72px, 9vw, 122px) 0 clamp(46px, 6vw, 78px); text-align: center; background: linear-gradient(180deg, #fffdfa, #faf6f0); }
.policy-hero h1 { margin: 0; color: var(--heading); font-family: var(--serif); font-size: clamp(42px, 5vw, 68px); font-weight: 400; line-height: 1.25; }
.policy-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 24px; margin-top: 26px; color: var(--muted); font-family: var(--label-font); font-size: 14px; font-weight: 300; }
.policy-contact a { border-bottom: 1px solid rgba(122,105,93,.24); }
.policy-content { background: var(--paper-soft); }
.policy-stack { display: grid; gap: 24px; }
.policy-card { scroll-margin-top: 104px; padding: clamp(30px, 4.5vw, 52px); border: 1px solid var(--line-soft); background: rgba(255,255,255,.48); }
.policy-card h2 { margin: 0 0 22px; color: var(--heading); font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); font-weight: 400; line-height: 1.35; }
.policy-card p { margin: 0 0 17px; font-size: 16.5px; line-height: 1.92; }
.policy-card p:last-of-type { margin-bottom: 0; }
.policy-cancel { margin-top: 28px; }

@media (max-width: 700px) {
  .shell { width: min(100% - 34px, 1280px); }
  .narrow { width: min(100% - 36px, 820px); }
  .section { padding: 58px 0; }

  .hero-media { aspect-ratio: 4 / 3; }
  .hero-media img { object-position: center; }
  .hero-image-wash { background: linear-gradient(180deg, rgba(248,244,238,.01) 0%, rgba(248,244,238,.02) 74%, rgba(248,244,238,.24) 100%); }
  .book-note {
    left: 16px !important;
    right: auto;
    bottom: 14px !important;
    max-width: calc(100% - 32px);
    padding: 5px 10px;
    font-size: 10.5px;
    white-space: nowrap;
  }
  .hero-content { padding: 30px 0 12px; }
  .hero-copy { max-width: 350px; margin-inline: auto; text-align: center; }
  .hero h1 br, .hero-subtitle br, .hero-lead br { display: none; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(29px, 8vw, 34px); line-height: 1.42; }
  .hero-subtitle { max-width: 330px; margin: 0 auto 16px; font-size: 18px; line-height: 1.58; }
  .hero-lead { max-width: 342px; margin: 0 auto 15px; font-size: 15.5px; line-height: 1.78; }
  .hero-intro { max-width: 350px; margin-inline: auto; font-size: 14.8px; line-height: 1.82; }
  .hero-actions { grid-template-columns: 1fr; width: min(100%, 286px); margin: 23px auto 0; gap: 10px; }
  .hero-actions .button { width: 100%; min-height: 46px; font-size: 13.5px; }
  .hero-foot { width: calc(100% - 34px); margin-inline: auto; padding-top: 14px; }
  .hero-foot span { padding-inline: 5px; font-size: 9.5px; }

  .eyebrow, .chapter-label { margin-bottom: 14px; font-size: 11.5px; }
  .opening-copy { font-size: 19.5px; line-height: 1.72; }
  .belief-title h2, .copy h2, .forty-copy h2, .section-heading h2, .about-copy h2, .faq-heading h2, .contact-copy h2, .final h2 { font-size: 28px; line-height: 1.43; }
  .copy p, .belief-copy, .forty-copy p, .about-copy > p { font-size: 15.5px; line-height: 1.84; }

  .split-grid, .split-grid.reverse, .ritual-grid, .order-grid, .faq-grid, .contact-grid { gap: 30px; }
  .photo-window, .photo-still { aspect-ratio: 1.32 / 1; }
  .photo-linen-stage { min-height: 0; aspect-ratio: 4 / 3; }
  .photo-linen-stage img { width: 100%; height: 100%; object-fit: cover; box-shadow: none; }

  .forty-grid { gap: 18px; }
  .forty-number { font-size: 112px; }
  .section-heading, .section-heading.compact { margin-bottom: 34px; }

  .topic-cloud { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 30px auto 0; }
  .topic-cloud span { display: grid; place-items: center; min-height: 49px; padding: 8px 10px; font-size: 14px; text-align: center; }
  .inside-note { margin-top: 26px; font-size: 16.5px; }

  .about-grid { gap: 24px; }
  .author-photo { width: 92px; }
  .quotes-track { margin-inline: -17px; padding-inline: 17px; }
  .quote-page { flex-basis: 90%; }

  .order-visual { aspect-ratio: 4 / 3; }
  .order-copy { max-width: 350px; }
  .order-copy h2 { font-size: 33px; }
  .order-copy > p, .order-copy li { font-size: 15px; }
  .order-action { margin-top: 24px; }

  .faq-heading, .contact-copy, .order-copy { text-align: center; }
  .contact-copy { max-width: 350px; margin-inline: auto; }
  .contact-channels { align-items: center; margin-top: 18px; }
  .contact-form { padding: 23px 17px; }
  .contact-form input, .contact-form select { min-height: 50px; }
  .contact-form textarea { min-height: 118px; }

  .final { padding: 58px 0; }
  .site-footer { padding: 18px 0; }
  .footer-links { row-gap: 7px; }

  .policy-main { padding-top: 60px; }
  .policy-hero { padding: 68px 0 46px; }
  .policy-hero h1 { font-size: 38px; }
  .policy-content { padding-top: 42px; }
  .policy-card { padding: 26px 20px; }
  .policy-card h2 { font-size: 28px; }
  .policy-card p { font-size: 15.5px; line-height: 1.86; }
}


/* ===== V10 final: static content, balanced mobile layout and quiet legal pages ===== */
.contact-grid { display: block; }
.contact-simple { text-align: center; }
.contact-simple h2 {
  margin: 0 0 20px;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(35px, 3.1vw, 49px);
  font-weight: 400;
  line-height: 1.42;
}
.contact-simple .contact-channels {
  align-items: center;
  justify-content: center;
  margin-top: 0;
  gap: 13px;
}
.contact-simple .contact-email,
.contact-simple .contact-whatsapp { font-size: 14px; }

/* The image caption belongs to the image and stays centered beneath the book. */
.book-note {
  left: 50% !important;
  right: auto !important;
  bottom: 8.5% !important;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.96) !important;
  font-size: 12px;
  letter-spacing: .045em;
  text-align: center;
  text-shadow: 0 1px 8px rgba(58,43,34,.42);
  transform: translateX(-50%) !important;
  backdrop-filter: none !important;
  white-space: nowrap;
}

/* Minimal policy and confirmation pages. */
.simple-page { min-height: 100vh; background: var(--paper-soft); }
.simple-header {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(251,250,247,.92);
}
.simple-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.simple-back {
  display: inline-block;
  color: var(--muted);
  font-family: var(--label-font);
  font-size: 12.5px;
  font-weight: 300;
  border-bottom: 1px solid rgba(122,105,93,.22);
}
.policy-main-compact { padding: 46px 0 58px; }
.policy-text { width: min(760px, calc(100% - 44px)); margin-inline: auto; }
.policy-text h1,
.policy-text h2 {
  margin: 0;
  color: var(--heading);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}
.policy-text h1 { margin-bottom: 8px; }
.policy-text h2 { margin-top: 19px; margin-bottom: 3px; scroll-margin-top: 24px; }
.policy-text p {
  margin: 0 0 6px;
  color: var(--body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.65;
}
.policy-text a { border-bottom: 1px solid rgba(122,105,93,.20); }
.policy-contact-line { margin-bottom: 17px !important; color: var(--muted) !important; font-size: 12.5px !important; }
.policy-updated { margin-top: 18px !important; color: var(--muted) !important; font-size: 12px !important; }
.simple-footer { margin-top: 0; }
.thank-you-page { display: flex; min-height: 100vh; flex-direction: column; }
.thank-you-main { display: grid; flex: 1; place-items: center; padding: 48px 20px; text-align: center; }
.thank-you-content p {
  margin: 0 0 23px;
  color: var(--heading);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

@media (max-width: 700px) {
  .shell { width: calc(100% - 36px); }
  .narrow { width: calc(100% - 40px); }
  .section { padding: 50px 0; }

  .hero { padding-bottom: 14px; }
  .hero-media { aspect-ratio: 4 / 3; }
  .hero-media img { object-position: center center; }
  .book-note {
    left: 50% !important;
    bottom: 7% !important;
    max-width: calc(100% - 24px);
    font-size: 10.5px;
    transform: translateX(-50%) !important;
  }
  .hero-content { padding: 27px 0 9px; }
  .hero-copy { width: 100%; max-width: 360px; margin-inline: auto; text-align: center; }
  .hero h1 br,
  .hero-subtitle br,
  .hero-lead br { display: block; }
  .hero h1 { margin-bottom: 16px; font-size: clamp(28px, 7.9vw, 34px); line-height: 1.42; }
  .hero-subtitle { max-width: 340px; margin: 0 auto 14px; font-size: 18px; line-height: 1.52; }
  .hero-lead { max-width: 348px; margin: 0 auto 14px; font-size: 15.2px; line-height: 1.72; }
  .hero-intro { max-width: 350px; margin-inline: auto; font-size: 14.6px; line-height: 1.78; }
  .hero-actions { width: min(100%, 294px); margin: 21px auto 0; gap: 9px; }
  .hero-actions .button { min-height: 45px; padding-inline: 15px; font-size: 13.5px; }
  .hero-foot { width: calc(100% - 36px); padding-top: 12px; }
  .hero-foot span { padding-inline: 4px; font-size: 9.5px; }

  .eyebrow,
  .chapter-label { margin-bottom: 12px; font-size: 11px; }
  .opening-copy { max-width: 350px; margin-inline: auto; font-size: 18px; line-height: 1.67; }
  .opening-copy p { margin-bottom: 14px; }

  .belief-grid,
  .split-grid,
  .split-grid.reverse,
  .forty-grid,
  .ritual-grid,
  .order-grid,
  .faq-grid { gap: 26px; }
  .belief-title,
  .forty-copy,
  .section-heading,
  .section-heading.compact,
  .faq-heading,
  .order-copy,
  .contact-simple { text-align: center; }
  .belief-copy,
  .copy,
  .forty-copy,
  .about-copy,
  .order-copy,
  .faq-list { max-width: 360px; margin-inline: auto; }
  .belief-title h2,
  .copy h2,
  .forty-copy h2,
  .section-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .contact-simple h2,
  .final h2 { font-size: 27px; line-height: 1.42; }
  .copy p,
  .belief-copy,
  .forty-copy p,
  .about-copy > p { font-size: 15px; line-height: 1.78; }
  .copy p:last-child,
  .forty-copy p:last-child,
  .about-copy > p:last-of-type { margin-bottom: 0; }

  .photo-window,
  .photo-still,
  .photo-linen-stage,
  .order-visual { width: 100%; max-width: 390px; margin-inline: auto; aspect-ratio: 4 / 3; min-height: 0; }
  .photo-linen-stage img,
  .order-visual img { width: 100%; height: 100%; object-fit: cover; box-shadow: none; }
  .copy blockquote { margin-top: 22px; padding-top: 17px; font-size: 18px; line-height: 1.55; text-align: center; }

  .forty { padding-top: 44px; }
  .forty-number { font-size: 104px; line-height: .82; }
  .section-heading,
  .section-heading.compact { margin: 0 auto 28px; }
  .section-heading > p:last-child { font-size: 15px; line-height: 1.76; }
  .soft-grid article { padding: 20px 8px; text-align: center; }
  .soft-grid h3 { margin: 9px 0 5px; font-size: 22px; }
  .soft-grid p { max-width: 320px; margin-inline: auto; font-size: 14.5px; line-height: 1.7; }

  .steps { margin-top: 19px; }
  .steps li { grid-template-columns: 25px 1fr; gap: 12px; padding: 12px 0; text-align: right; }
  .steps strong { font-size: 19px; }
  .steps p { font-size: 14px; line-height: 1.6; }

  .topic-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 24px; }
  .topic-cloud span { min-height: 45px; padding: 7px 8px; font-size: 13.8px; }
  .inside-note { max-width: 350px; margin-top: 22px; font-size: 15.5px; line-height: 1.62; }

  .about-grid { gap: 20px; }
  .about-copy { text-align: right; }
  .about-copy .chapter-label,
  .about-copy h2 { text-align: center; }
  .signature { align-items: center; margin-top: 22px; text-align: center; }
  .author-photo { width: 86px; justify-self: center; }
  .quotes-track { margin-inline: -18px; padding-inline: 18px; }
  .quote-page { flex-basis: 88%; gap: 9px; }
  .quotes-track blockquote { padding: 21px 18px; font-size: 16.5px; line-height: 1.62; text-align: center; }

  .order-copy { max-width: 350px; }
  .order-copy h2 { font-size: 32px; }
  .order-subtitle { margin-bottom: 18px; font-size: 19px; }
  .order-copy > p,
  .order-copy li { font-size: 14.8px; line-height: 1.72; }
  .order-copy ul { margin: 20px 0; text-align: right; }
  .order-copy li { min-height: 42px; padding: 7px 0; }
  .order-action { justify-content: center; margin-top: 21px; }
  .price { font-size: 29px; }

  .faq-list details { padding: 17px 0; }
  summary { font-size: 18px; line-height: 1.45; text-align: right; }
  .faq-list p { margin-top: 11px; font-size: 14.8px; line-height: 1.72; text-align: right; }

  .contact { padding: 46px 0; }
  .contact-simple { max-width: 350px; }
  .contact-simple .contact-channels { gap: 11px; }
  .contact-simple .contact-email,
  .contact-simple .contact-whatsapp { font-size: 13.5px; }
  .final { padding: 52px 0; }
  .final p:not(.chapter-label) { max-width: 345px; font-size: 15.5px; line-height: 1.72; }
  .final-button { width: min(100%, 270px); min-width: 0; }

  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 11px; text-align: center; }
  .footer-book,
  .footer-copy { justify-self: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 8px 17px; }
  .footer-copy { grid-column: auto; }

  .simple-header { padding: 13px 0; }
  .simple-header-inner { gap: 14px; }
  .simple-back { font-size: 11.5px; }
  .policy-main-compact { padding: 32px 0 42px; }
  .policy-text { width: calc(100% - 36px); }
  .policy-text h1,
  .policy-text h2 { font-size: 14px; }
  .policy-text h2 { margin-top: 16px; }
  .policy-text p { margin-bottom: 5px; font-size: 12.8px; line-height: 1.62; }
  .policy-contact-line { font-size: 11.8px !important; }
  .thank-you-content p { font-size: 13.5px; }
}

/* ===== V10 CMS final corrections: hero caption, quote emphasis, compact contact and mobile flow ===== */

/* Keep the image caption inside the photograph, to the lower-left of the book. */
.book-note {
  left: 16.5% !important;
  right: auto !important;
  bottom: 11.5% !important;
  width: 150px;
  max-width: 20vw;
  color: rgba(111, 91, 77, .76) !important;
  font-size: 11.5px;
  line-height: 1.45;
  letter-spacing: .025em;
  text-align: center;
  text-shadow: none;
  transform: none !important;
  white-space: normal;
}

/* Restore the quieter two-tone treatment used in V9 testimonials. */
.quotes-track blockquote { color: rgba(83, 70, 62, .86); }
.quotes-track strong {
  color: var(--terra-deep);
  font-weight: 500;
}

/* Contact remains a small, low-attention closing section. */
.contact-simple h2 {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 700px) {
  /* Mobile hero rhythm: core message, photograph, supporting copy and actions. */
  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding-bottom: 14px;
  }
  .hero-content,
  .hero-copy { display: contents; }
  .hero-copy.reveal { opacity: 1; transform: none; }
  .hero-copy-top,
  .hero-copy-bottom {
    width: calc(100% - 36px);
    max-width: 360px;
    margin-inline: auto;
    text-align: center;
  }
  .hero-copy-top {
    order: 1;
    padding: 88px 0 23px;
  }
  .hero-media {
    order: 2;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .hero-copy-bottom {
    order: 3;
    padding: 22px 0 8px;
  }
  .hero-foot { order: 4; }
  .hero .eyebrow { margin-bottom: 13px; }
  .hero h1 { margin-bottom: 15px; }
  .hero-subtitle { margin-bottom: 0; }
  .hero-lead { margin-bottom: 14px; }
  .hero-media img { object-position: center center; }
  .hero-image-wash {
    background: linear-gradient(180deg, rgba(248,244,238,.01) 0%, rgba(248,244,238,.01) 74%, rgba(248,244,238,.18) 100%);
  }
  .book-note {
    left: 5.5% !important;
    bottom: 8% !important;
    width: 104px;
    max-width: 28vw;
    color: rgba(105, 85, 72, .78) !important;
    font-size: 10px;
    line-height: 1.42;
    letter-spacing: .015em;
    transform: none !important;
  }

  /* On narrow screens, the section message precedes the supporting image. */
  #challenge .copy,
  #book .copy,
  #ritual .copy,
  #order .order-copy { order: 1; }
  #challenge figure,
  #book figure,
  #ritual figure,
  #order .order-visual { order: 2; }

  .contact-simple h2 {
    margin-bottom: 15px;
    font-size: 16.5px;
  }
}

@media (min-width: 981px) {
  .book-note {
    left: 16.5% !important;
    bottom: 24% !important;
  }
}

@media (max-width: 700px) {
  .book-note {
    left: 5% !important;
    width: 92px;
    max-width: 25vw;
  }
}
/* Mobile navigation: prevent menu items from being cut off */
@media (max-width: 980px) {
  .main-nav {
    height: 100vh;
    height: 100dvh;
    max-height: none;
    justify-content: flex-start;
    overflow-y: auto;
    padding:
      calc(92px + env(safe-area-inset-top))
      24px
      calc(32px + env(safe-area-inset-bottom));
    gap: 22px;
    text-align: center;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}
/* Mobile back-to-top button spacing */
@media (max-width: 980px) {
  .back-to-top {
    left: calc(22px + env(safe-area-inset-left));
    bottom: calc(22px + env(safe-area-inset-bottom));
  }
}
