/* ═══════════════════════════════════════════════════════════════════════════
   SOULFORCE ARTS — THE BOOK PAGE
   Extends styles.css. Reuses brand tokens, buttons, kickers, enso, award seals.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── 01 HERO — award-led, book cover is the subject ─── */
.hero.v-book {
  min-height: clamp(620px, 90vh, 880px);
  padding-top: clamp(130px, 15vw, 172px);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background: var(--green-deeper);
  display: flex;
  align-items: center;
}
/* Atmospheric golden-hour backdrop — sun kept in the open gap; left graded deep
   for type, center opened so the rays read. Swap url() for a different scene. */
.hero.v-book .hero-photo {
  position: absolute;
  inset: 0;
  background: #0c1d1b url("assets/hero-book-sunset.jpg") 43% 34% / cover no-repeat;
  z-index: 0;
}
.hero.v-book .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(15,36,34,0.9) 0%,
      rgba(15,36,34,0.66) 22%,
      rgba(15,36,34,0.3) 42%,
      rgba(15,36,34,0.1) 55%,
      rgba(15,36,34,0.28) 76%,
      rgba(15,36,34,0.46) 100%),
    linear-gradient(180deg,
      rgba(15,36,34,0.36) 0%,
      transparent 32%,
      transparent 60%,
      rgba(15,36,34,0.64) 100%);
}
.hero.v-book .kicker { margin-bottom: 0; }
.hero.v-book .hero-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero.v-book .hero-wrap { grid-template-columns: 1fr; gap: clamp(2.5rem, 8vw, 4rem); text-align: center; }
  .hero.v-book .hero-cover { order: -1; }
}
.hero.v-book .hero-copy { max-width: 560px; }
@media (max-width: 900px) { .hero.v-book .hero-copy { max-width: 600px; margin: 0 auto; } }


.hero.v-book .h-display {
  color: var(--gold);
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.0;
  margin: 0 0 12px;
}
.hero.v-book .book-subtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 30ch;
}
@media (max-width: 900px) { .hero.v-book .book-subtitle { margin-inline: auto; } }
.hero.v-book .lead { color: rgba(255,255,255,0.84); max-width: 46ch; margin: 0 0 26px; }
@media (max-width: 900px) { .hero.v-book .lead { margin-inline: auto; } }
.hero.v-book .lead .for-readers { color: rgba(255,255,255,0.62); font-style: italic; }

.hero-blurb {
  border-left: 1px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 0 0 34px;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 44ch;
}
@media (max-width: 900px) { .hero-blurb { text-align: left; margin-inline: auto; } }
.hero-blurb .attrib {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.hero.v-book .hero-cta-row { justify-content: flex-start; }
@media (max-width: 900px) { .hero.v-book .hero-cta-row { justify-content: center; } }
.hero-avail {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 22px 0 0;
  max-width: 42ch;
}
@media (max-width: 900px) { .hero-avail { margin-inline: auto; } }

/* The 3-D book cover */
.hero-cover { position: relative; perspective: 1500px; display: flex; justify-content: center; }
.hero-cover img {
  width: 100%;
  max-width: 410px;
  filter: drop-shadow(24px 34px 64px rgba(0,0,0,0.6));
  transform: rotateY(-7deg) rotateX(2deg);
  transition: transform 1s var(--ease-out);
}
.hero-cover:hover img { transform: rotateY(-11deg) translateY(-8px); }
.hero.v-book .enso-hero {
  left: auto; right: -16%; top: auto; bottom: -22%;
  width: min(64vh, 620px); height: min(64vh, 620px);
  opacity: 0.5;
}

/* ─── 02 AWARDS — quiet seal strip ─── */
.s-awards {
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
}
.s-awards .wrap { max-width: 1080px; }
.awards-strip {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.25rem);
}
@media (max-width: 820px) { .awards-strip { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 560px) { .awards-strip { grid-template-columns: 1fr; gap: 1.75rem; } }
.awards-lead {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 9ch;
}
@media (max-width: 820px) { .awards-lead { grid-column: 1 / -1; max-width: none; } }
.award-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}
.award-item .seal { height: 58px; width: auto; flex-shrink: 0; opacity: 0.95; }
.award-item .meta { display: flex; flex-direction: column; gap: 5px; }
.award-rank {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-warm);
}
.award-name {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.award-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  transition: color .25s ease;
}
.award-link:hover { color: var(--gold-warm); }
.award-link .arr { transition: transform .3s var(--ease-out); }
.award-link:hover .arr { transform: translateX(3px); }

/* ─── 03 WHAT'S OURS TO DO — immersive narrative ─── */
.s-whatsours { background: var(--green-deeper); }
.s-whatsours .wrap { max-width: 880px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.s-whatsours .kicker { justify-content: center; }
.s-whatsours .kicker::after {
  content: ""; width: 36px; height: 1px; background: currentColor; display: inline-block;
}
.s-whatsours .h-section { color: #fff; margin: 26px auto 8px; max-width: 22ch; }
.whatsours-body {
  margin: clamp(2.25rem, 4.5vw, 3.25rem) 0 0;
  width: min(62ch, 100%);
  text-align: left;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.3vw, 1.16rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
}
.whatsours-body p { margin: 0 0 1.3em; }
.whatsours-body .turn {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}
.whatsours-body .soulforce-def {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: clamp(2rem, 4vw, 2.75rem) 0;
  color: rgba(255,255,255,0.9);
}
.whatsours-body .soulforce-def em { font-style: italic; color: var(--gold); font-weight: 400; }
.whatsours-body em.gold { font-style: normal; color: var(--gold); font-weight: 500; }
.s-whatsours .enso-bg { left: -15%; bottom: -270px; width: 540px; height: 540px; }

/* ─── 04 WHAT READERS SAY — quote trio ─── */
.s-readers .readers-head { text-align: center; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.s-readers .readers-head .kicker { justify-content: center; }
.s-readers .readers-head .kicker::after {
  content: ""; width: 36px; height: 1px; background: currentColor; display: inline-block;
}
.s-readers .readers-head .h-section { margin: 20px auto 0; max-width: 20ch; }
.readers-grid {
  columns: 2;
  column-gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 760px) { .readers-grid { columns: 1; max-width: 560px; } }
.reader-card {
  break-inside: avoid;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--gold);
  padding: 34px 32px 30px;
  display: flex;
  flex-direction: column;
}
.reader-card blockquote {
  margin: 0 0 24px;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}
.reader-card blockquote::before { content: "\201C"; color: var(--gold-warm); }
.reader-card blockquote::after { content: "\201D"; color: var(--gold-warm); }
.reader-cite {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.reader-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1.5px var(--gold-warm), 0 0 0 4px rgba(255,255,255,0.7);
}
.reader-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-warm);
}
.reader-role { color: var(--ink-mute); font-weight: 500; letter-spacing: 0.14em; }
.s-readers .enso-bg { left: -15%; top: -270px; width: 540px; height: 540px; }

/* ─── 05 DISCOVER A NEW ARTISTIC HORIZON — benefits ─── */
.s-horizon { background: var(--green-deep); }
.s-horizon .horizon-head { max-width: 760px; }
.s-horizon .h-section { color: #fff; margin: 22px 0 0; }
.s-horizon .h-section .hl { color: var(--gold); }
.horizon-list {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 4.5rem);
}
@media (max-width: 760px) { .horizon-list { grid-template-columns: 1fr; } }
.horizon-item {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.horizon-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.005em;
  color: #fff;
  margin-bottom: 9px;
}
.horizon-label::before {
  content: "";
  flex: 0 0 auto;
  width: 18px; height: 2px;
  background: var(--gold);
  transform: translateY(-5px);
}
.horizon-item p {
  font-family: var(--sans);
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
  padding-left: 32px;
}
.s-horizon .enso-bg { right: -12%; bottom: -260px; left: auto; width: 520px; height: 520px; }

/* ─── 06 INSIDE THE BOOK — spreads + sections ─── */
.s-inside .inside-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.s-inside .inside-head .kicker { justify-content: center; }
.s-inside .inside-head .kicker::after {
  content: ""; width: 36px; height: 1px; background: currentColor; display: inline-block;
}
.s-inside .inside-head .h-section { margin: 20px auto 16px; }
.s-inside .inside-head .body { max-width: 56ch; margin: 0 auto; }
.inside-rows { display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 6rem); }
.inside-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.inside-row.flip .inside-figure { order: 2; }
@media (max-width: 860px) {
  .inside-row { grid-template-columns: 1fr; gap: 1.75rem; }
  .inside-row.flip .inside-figure { order: -1; }
  .inside-figure { order: -1; }
}
.inside-figure {
  position: relative;
  background: linear-gradient(160deg, #fcfbf7 0%, #f1ede1 100%);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -34px rgba(24,30,27,0.5);
  padding: clamp(18px, 3vw, 30px);
}
.inside-figure img { width: 100%; height: auto; display: block; }
.inside-figure::after {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold-warm);
  opacity: 0.4;
  z-index: -1;
}
.inside-section-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 14px;
}
.inside-copy h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.inside-copy p {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
  max-width: 46ch;
}
/* Mind-Body Interludes callout */
.interludes {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(32px, 4vw, 46px) clamp(28px, 4vw, 50px);
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .interludes { grid-template-columns: 1fr; gap: 16px; } }
.interludes-flag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 720px) { .interludes-flag { writing-mode: horizontal-tb; transform: none; } }
.interludes-main h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.012em;
  margin: 0 0 12px;
}
.interludes-main p {
  font-family: var(--sans);
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 62ch;
}
.interludes-main em { color: var(--gold); font-style: italic; }
.s-inside .enso-top { right: -12%; left: auto; top: -260px; bottom: auto; width: 520px; height: 520px; }
.s-inside .enso-bot { right: -12%; left: auto; bottom: -260px; top: auto; width: 520px; height: 520px; }

/* ─── 07 JOSEPH'S JOURNEY ─── */
.s-journey { background: var(--green-deeper); }
.s-journey .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) { .s-journey .wrap { grid-template-columns: 1fr; } }
.journey-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  width: 100%;
  background: #0c1d1b url("assets/joseph-book.jpg") center 26% / cover no-repeat;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
@media (max-width: 880px) { .journey-portrait { margin: 0 auto; } }
.journey-portrait::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  z-index: -1;
}
.s-journey .h-section { color: #fff; margin: 22px 0 26px; max-width: 16ch; white-space: nowrap; }
.s-journey .body { color: rgba(255,255,255,0.84); font-size: 1.05rem; }
.s-journey .body p { margin: 0 0 1.2em; max-width: 56ch; }
.s-journey .body em.title-italic { font-style: italic; color: #fff; }
.s-journey .signature {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 28px 0 0;
  letter-spacing: 0.02em;
}
.s-journey .signature::before { content: "— "; }
.s-journey .enso-bg { right: -12%; top: -260px; width: 520px; height: 520px; }

/* ─── 08 THIS BOOK IS FOR YOU IF ─── */
.s-foryou .foryou-head { text-align: center; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.s-foryou .foryou-head .kicker { justify-content: center; }
.s-foryou .foryou-head .kicker::after {
  content: ""; width: 36px; height: 1px; background: currentColor; display: inline-block;
}
.s-foryou .foryou-head .h-section { margin: 20px auto 0; max-width: 18ch; }
.foryou-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: grid;
  gap: 0;
}
.foryou-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 4px;
  border-top: 1px solid var(--rule);
}
.foryou-item:last-child { border-bottom: 1px solid var(--rule); }
.foryou-item .mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-warm);
  display: grid; place-items: center;
  margin-top: 2px;
}
.foryou-item .mark::after {
  content: "";
  width: 9px; height: 5px;
  border-left: 1.5px solid var(--gold-warm);
  border-bottom: 1.5px solid var(--gold-warm);
  transform: rotate(-45deg) translate(1px, -1px);
}
.foryou-item p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.foryou-item p .want { color: var(--ink); font-weight: 600; }
.s-foryou .enso-bg { left: -14%; bottom: -260px; width: 520px; height: 520px; }

/* ─── 09 GET THE BOOK — closing purchase ─── */
.s-getbook { background: var(--green-deeper); }
.s-getbook .wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}
/* Text on the left, book cover on the right (copy is DOM-second, so pull it first) */
.s-getbook .getbook-copy { order: -1; }
@media (max-width: 880px) {
  .s-getbook .wrap { grid-template-columns: 1fr; text-align: center; }
  .s-getbook .getbook-cover { order: -1; }
}
.getbook-cover { position: relative; perspective: 1400px; display: flex; justify-content: center; }
.getbook-cover img {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(20px 30px 60px rgba(0,0,0,0.6));
  transform: rotateY(7deg);
  transition: transform .9s var(--ease-out);
}
.getbook-cover:hover img { transform: rotateY(11deg) translateY(-6px); }
.s-getbook .blurb-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.s-getbook .h-section { color: #fff; margin: 18px 0 18px; max-width: 18ch; }
.s-getbook .getbook-sub {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0 0 26px;
  max-width: 46ch;
}
@media (max-width: 880px) { .s-getbook .getbook-sub { margin-inline: auto; } }
.s-getbook .getbook-sub strong { color: #fff; font-weight: 600; }
.s-getbook .pull-quote {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(255,255,255,0.8);
  border-left: 1px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 0 0 30px;
  max-width: 46ch;
}
@media (max-width: 880px) { .s-getbook .pull-quote { text-align: left; margin-inline: auto; } }
.s-getbook .pull-quote .attrib {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.s-getbook .hero-cta-row { justify-content: flex-start; }
@media (max-width: 880px) { .s-getbook .hero-cta-row { justify-content: center; } }
.s-getbook .enso-bg { left: -14%; top: -260px; width: 520px; height: 520px; }

/* ─── 10 ONE QUIET DOOR — understated bridge ─── */
.s-door {
  background: var(--paper);
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}
.s-door .wrap { max-width: 640px; text-align: center; }
.s-door .door-mark {
  width: 34px; height: 1.5px;
  background: var(--gold-warm);
  margin: 0 auto 28px;
}
.s-door p {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.s-door p em { font-style: italic; color: var(--ink); }
.s-door .door-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-warm);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(187,131,38,0.45);
  transition: color .25s ease, border-color .25s ease;
}
.s-door .door-link:hover { color: var(--ink); border-color: var(--ink); }
.s-door .door-link .arr { transition: transform .3s var(--ease-out); }
.s-door .door-link:hover .arr { transform: translateX(4px); }

/* ─── 11 CONTACT THE AUTHOR ─── */
.s-contact {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(222,190,81,0.07) 0%, transparent 55%),
    var(--paper-warm);
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}
.s-contact .wrap { max-width: 620px; text-align: center; }
.s-contact .kicker { justify-content: center; }
.s-contact .kicker::after {
  content: ""; width: 36px; height: 1px; background: currentColor; display: inline-block;
}
.s-contact .h-section { margin: 20px auto 18px; max-width: 16ch; }
.s-contact p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 auto 30px;
  max-width: 44ch;
}
.s-contact .ctas { display: flex; justify-content: center; }

/* ─── Footer enso (reuse studio pattern) ─── */
.footer { position: relative; }
.footer .cta-enso {
  position: absolute;
  top: clamp(-300px, -21vw, -210px);
  right: 3%;
  width: min(60vw, 600px);
  height: min(60vw, 600px);
  background: url("assets/enso.png") center / contain no-repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}
.footer .wrap { position: relative; z-index: 1; }
body.enso-off .footer .cta-enso { display: none; }
body.enso-prominent .footer .cta-enso { opacity: 0.22; }

/* Uniform eyebrow → header spacing */
/* Eyebrow (kicker) sits 38px above its respective header — see design/principles.md */
.kicker + h1,
.kicker + h2 { margin-top: 38px !important; }

/* Outline buttons inside modals (paper ground) — dark treatment so secondary 'Close' reads on the light modal background. */
.modal .btn.outline { border-color: rgba(24, 30, 27, 0.4); color: var(--ink); }
.modal .btn.outline:hover { background: rgba(24, 30, 27, 0.05); border-color: var(--ink); }

/* ── 08.5 Five Stars on Amazon (compact, light ground) ── */
/* Tighten the gap above the reviews (For You bottom + reviews top) */
.s-foryou { padding-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.s-amazon { padding-top: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.s-amazon .amazon-head { text-align: center; margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.s-amazon .amazon-head .kicker { justify-content: center; }
.s-amazon .amazon-head .kicker::after {
  content: ""; width: 36px; height: 1px; background: currentColor; display: inline-block;
}
.amazon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 820px) { .amazon-grid { grid-template-columns: 1fr; max-width: 600px; gap: 1.75rem; } }
.amazon-card { border-top: 2px solid var(--gold-warm); padding-top: 16px; }
.amazon-stars { color: var(--gold-warm); font-size: 13px; letter-spacing: 4px; line-height: 1; margin-bottom: 12px; }
.amazon-card blockquote {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--ink-soft);
}
.amazon-cite {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--ink-mute);
}

/* Get the Book: let its enso bleed up as a whole circle into the reviews above */
.s-getbook { overflow: visible; }


/* ── 02.5 Praise (authority strip) ── */
.s-praise { background: var(--paper-warm); color: var(--ink); padding-top: clamp(2.75rem, 5vw, 4rem); padding-bottom: clamp(2.75rem, 5vw, 4rem); }
.s-praise .praise-head { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.s-praise .praise-head .kicker { justify-content: center; }
.s-praise .praise-head .kicker::after {
  content: ""; width: 36px; height: 1px; background: currentColor; display: inline-block;
}
.praise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 820px) { .praise-grid { grid-template-columns: 1fr; max-width: 600px; gap: 2rem; } }
.praise-card { display: flex; flex-direction: column; border-top: 2px solid var(--gold-warm); padding-top: 16px; }
.praise-card blockquote {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.62;
  color: var(--ink-soft);
}
.praise-card blockquote em { font-style: normal; }
.praise-name { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.praise-cred { display: block; font-family: var(--sans); font-size: 0.8rem; line-height: 1.45; color: var(--ink-mute); margin-top: 3px; }
.praise-cred em { font-style: italic; }
