/* ==========================================================================
   Sunkano — 30-Day Healing Journey
   Mobile-first. Editorial cream / forest-green palette.
   Inspired by yangmuns.com/healing.
   ========================================================================== */

:root {
  --bg:           #ece8d8;   /* desaturated sage cream */
  --bg-2:         #e2dcc8;
  --bg-3:         #d6cfb8;
  --ink:          #241f1a;
  --ink-soft:     #423b2f;
  --ink-faint:    #6b6354;
  --accent:       #6b5236;
  --accent-deep:  #3a2d1c;

  --deep:         #1e2d1a;   /* deep forest green for sections */
  --deep-2:       #273a22;
  --deep-text:    #eef0e2;
  --deep-text-soft: #bcc1a8;
  --deep-line:    rgba(238, 240, 226, 0.18);

  --warm:         #b87a3d;   /* terracotta gold — primary CTA */
  --warm-deep:    #9a6230;
  --warm-soft:    rgba(184, 122, 61, 0.4);

  --line:         #c8c0a8;
  --line-soft:    #d8d1bd;
  --accent-tint:  #dde3cd;   /* soft sage tile behind icons */

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(42, 37, 32, 0.06);
  --shadow-md: 0 14px 36px -14px rgba(42, 37, 32, 0.18);
  --shadow-lg: 0 36px 64px -28px rgba(42, 37, 32, 0.3);

  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --content:      720px;
  --content-wide: 1080px;

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

  --sticky-h: 76px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
@media (min-width: 720px) { body { font-size: 18px; } }
img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; }
em { font-style: italic; font-family: var(--font-serif); font-weight: inherit; }
::selection { background: var(--accent); color: var(--bg); }

/* Typography ----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
em { font-optical-sizing: auto; }
h1 {
  font-size: clamp(2.1rem, 8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
}
h1 em { font-style: italic; font-weight: 500; }
h2 {
  font-size: clamp(1.85rem, 5.6vw, 2.7rem);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -0.02em;
}
h2 em { font-style: italic; font-weight: 500; }
h3 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.35; font-weight: 600; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

/* Header --------------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  max-width: var(--content-wide);
  margin: 0 auto;
}
.site-header--over {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  margin: 0 auto;
}
.site-header--over .brand {
  color: var(--deep-text) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.site-header.site-header--over nav a {
  color: #f4f1e7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 2px 14px rgba(0, 0, 0, 0.55);
  font-weight: 600;
}
.site-header.site-header--over nav a:not(.nav-cta):hover { color: #fff; }
.site-header--over .nav-cta {
  background: rgba(20, 16, 12, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--deep-text) !important;
  text-shadow: none;
}
.site-header--over .nav-cta:hover { background: rgba(20, 16, 12, 0.6); }
.brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink) !important;
  letter-spacing: 0.01em;
}
.brand:hover { color: inherit !important; }
.site-header nav { display: flex; gap: 18px; align-items: center; }
.site-header nav a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-cta {
  background: var(--deep);
  color: var(--deep-text) !important;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
  font-size: 0.82rem !important;
}
.nav-cta:hover { background: var(--deep-2); color: var(--deep-text) !important; transform: translateY(-1px); }

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .site-header nav { gap: 10px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .brand { font-size: 1.1rem; }
}

/* Sticky desktop top bar — slides in once the hero is scrolled past --- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(237, 232, 218, 0.82);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid rgba(40, 52, 38, 0.09);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.topbar.is-visible { transform: translateY(0); opacity: 1; }
.topbar-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 28px;
}
.topbar .brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink) !important;
  letter-spacing: 0.01em;
}
.topbar-nav { display: flex; align-items: center; gap: 26px; }
.topbar-nav > a {
  font-size: 0.94rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.topbar-nav > a:hover { color: var(--ink); }
.topbar-cta {
  padding: 11px 26px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}
@media (max-width: 720px) {
  .topbar { display: none; }   /* mobile keeps the bottom sticky CTA */
}

/* Sections base -------------------------------------------------------- */
main { display: block; }
.section {
  padding: 64px 20px;
  max-width: var(--content);
  margin: 0 auto;
}
@media (min-width: 720px) {
  .section { padding: 92px 28px; }
}
.section h2 { text-align: center; }
.section .lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.5vw, 1.18rem);
  line-height: 1.62;
}

/* HERO ================================================================= */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: center;
  color: var(--deep-text);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url('assets/bg.jpg') center/cover no-repeat;
}
.hero-bg-tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(18, 13, 8, 0.46) 0%,
      rgba(30, 20, 13, 0.12) 16%,
      rgba(30, 20, 13, 0.08) 46%,
      rgba(18, 13, 8, 0.56) 100%);
}
.hero-inner {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.7vh, 18px);
  padding: clamp(50px, 6.5vh, 80px) 18px clamp(24px, 3.5vh, 44px);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--deep-text);
  font-weight: 600;
  margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.avatars { display: inline-flex; }
.avatars img {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(236, 232, 216, 0.92);
  object-fit: cover;
}
.avatars img + img { margin-left: -9px; }

.hero h1 {
  margin: 0 auto;
  max-width: 600px;
  color: var(--deep-text);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 9.2vw, 3.5rem);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--deep-text); font-weight: 500; }

.hero-photo {
  margin: 0 auto 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 22px 44px -14px rgba(0, 0, 0, 0.5);
  max-width: 300px;
  border: 4px solid rgba(255, 255, 255, 0.08);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media (min-width: 720px) {
  .hero-photo { max-width: 420px; }
}

/* Portrait book-cover variant (full cover art with baked-in text).
   Sized by HEIGHT (svh) so the whole hero fits one screen with no scroll;
   width follows the native aspect ratio, so it never stretches or crops. */
.hero-photo--cover {
  width: fit-content;
  max-width: 262px;
  margin: 0 auto;
  border-radius: 18px;
  border-width: 5px;
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.62);
}
.hero-photo--cover img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(255px, 67vw);
  max-height: 37svh;
  aspect-ratio: auto;
  object-fit: fill;
}
@media (min-width: 720px) {
  .hero-photo--cover { max-width: 300px; }
  .hero-photo--cover img { max-width: 300px; max-height: 40vh; }
}

.hero-lead {
  max-width: 520px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  color: var(--deep-text);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

.hero-pills {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  font-size: 1.02rem;
  color: var(--deep-text);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-pills li {
  position: relative;
  padding-left: 28px;
}
.hero-pills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23b9c98a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4 10l4 4 8-8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  margin-top: 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--deep-text);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.price-pill .price-now {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep-text);
}
.price-pill .price-divider { color: var(--deep-text-soft); }
.price-pill .price-label { color: var(--deep-text-soft); font-size: 0.85rem; }
.price-pill .price-was {
  text-decoration: line-through;
  color: #d59a82;
  font-weight: 500;
}

.hero .price-note {
  color: var(--deep-text-soft);
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll cue at the foot of the hero ---------------------------------- */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 2.4vh, 26px);
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  z-index: 3;
  opacity: 0.85;
}
.hero-scroll span {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--deep-text);
  border-bottom: 2px solid var(--deep-text);
  transform: rotate(45deg);
  animation: scrollBob 2.4s var(--ease) infinite;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5));
}
@keyframes scrollBob {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50%      { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll span { animation: none; }
}

/* Intro band (moved out of hero) ------------------------------------- */
.intro-band {
  background: var(--bg);
  padding: clamp(32px, 6vw, 52px) 20px clamp(28px, 5vw, 44px);
  text-align: center;
}
.intro-lead {
  max-width: 600px;
  margin: 0 auto clamp(20px, 3.5vw, 30px);
  font-size: clamp(1.08rem, 2.7vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 450;
}
.intro-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  font-weight: 600;
  color: var(--ink);
}
.intro-pills li {
  position: relative;
  padding-left: 30px;
}
.intro-pills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23597a3a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 10l4 4 8-8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 760px) {
  .intro-pills {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
  }
}

/* CTA buttons ========================================================== */
.cta-block {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vh, 16px);
}
.cta-button {
  --pulse-color: rgba(40, 52, 38, 0.5);
  appearance: none;
  background: var(--deep);
  color: var(--deep-text);
  border: none;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 30px -12px rgba(40, 52, 38, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s var(--ease), background 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.cta-button:hover {
  background: var(--deep-2);
  transform: translateY(-2px);
  box-shadow:
    0 22px 40px -14px rgba(40, 52, 38, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.cta-button:active { transform: translateY(0); transition-duration: 0.1s; }

.cta-button--dark {
  --pulse-color: rgba(40, 52, 38, 0.5);
  background: var(--deep);
  color: var(--deep-text);
}
.cta-button--dark:hover { background: var(--deep-2); }

.cta-button--light {
  --pulse-color: rgba(252, 250, 245, 0.7);
  background: #fbf9f3;
  color: var(--accent-deep);
  padding: 19px 46px;
  font-size: clamp(1.05rem, 2.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.012em;
  box-shadow:
    0 18px 40px -14px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    inset 0 -2px 0 rgba(58, 45, 28, 0.12);
}
.cta-button--light:hover {
  background: #ffffff;
  color: var(--accent-deep);
  box-shadow:
    0 24px 48px -14px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    inset 0 -2px 0 rgba(58, 45, 28, 0.12);
}

.cta-button--warm {
  --pulse-color: rgba(184, 122, 61, 0.6);
  background: var(--warm);
  color: #fff;
  padding: 20px 44px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  box-shadow:
    0 22px 44px -12px rgba(184, 122, 61, 0.6),
    0 6px 16px -4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.14);
}
.cta-button--warm:hover {
  background: var(--warm-deep);
  box-shadow:
    0 26px 48px -12px rgba(184, 122, 61, 0.65),
    0 6px 18px -4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

/* Calm breathing halo — two soft rings, very gentle ------------------- */
.cta-pulse { position: relative; }
.cta-pulse::before,
.cta-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--pulse-color);
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  animation: calmBreathe 6.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}
.cta-pulse::after {
  animation-delay: 3.3s;
}
@keyframes calmBreathe {
  0%   { transform: scale(0.98); opacity: 0;    }
  18%  { transform: scale(1.0);  opacity: 0.22; }
  100% { transform: scale(1.34); opacity: 0;    }
}
@media (prefers-reduced-motion: reduce) {
  .cta-pulse::before,
  .cta-pulse::after { animation: none; opacity: 0; }
}

.price {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: baseline;
  margin-top: 18px;
}
.price-now {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.price-was {
  text-decoration: line-through;
  font-size: 0.95rem;
  color: var(--ink-faint);
}
.price-note {
  font-size: 0.82rem;
  margin-top: 8px;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

.cta-inline {
  text-align: center;
  margin-top: 36px;
}

/* RESULT card ========================================================== */
.result-card {
  background: var(--deep);
  color: var(--deep-text);
  padding: 28px 24px 24px;
  border-radius: var(--r-md);
  margin-top: 28px;
  text-align: center;
}
.result-card h3 {
  color: var(--deep-text);
  font-size: 1.15rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.result-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.96rem;
  color: var(--deep-text-soft);
  line-height: 1.85;
}
.result-card ul li::before {
  content: "·";
  margin-right: 8px;
  color: var(--deep-text);
}
.result-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--deep-text-soft);
  font-style: italic;
  font-family: var(--font-serif);
}

/* 4-WEEK CAROUSEL ====================================================== */
.weeks-section { max-width: var(--content-wide); padding-bottom: 56px; }
.weeks-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 20px 24px;
  margin: 28px -20px 0;
}
.weeks-carousel::-webkit-scrollbar { display: none; }
.week-card {
  flex: 0 0 80%;
  max-width: 320px;
  scroll-snap-align: center;
  background: var(--bg-2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.week-card .week-label {
  display: block;
  padding: 14px 18px 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.week-card .photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 10px 14px 0;
  border-radius: calc(var(--r-md) - 6px);
}
.week-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.week-card .body { padding: 18px 18px 22px; }
.week-card h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  gap: 8px;
}
.week-card .week-ico { font-size: 1.15em; color: var(--accent); line-height: 1; }
.week-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 8px;
  line-height: 1.55;
}
.week-card .result {
  font-size: 0.88rem;
  color: var(--ink);
  font-style: italic;
  font-family: var(--font-serif);
  margin: 0;
}
.week-card .result strong { font-style: normal; color: var(--accent-deep); font-family: var(--font-sans); font-weight: 600; }

@media (min-width: 720px) {
  .weeks-carousel {
    overflow-x: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px 28px;
    margin: 28px 0 0;
  }
  .week-card { max-width: none; flex: initial; }
}
@media (min-width: 1080px) {
  .weeks-carousel { grid-template-columns: repeat(4, 1fr); }
}

/* ABOUT THE PRACTICE =================================================== */
.about-practice { max-width: var(--content); }
.about-photo {
  margin: 24px 0 28px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.about-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: center;
}
.about-text p:last-child { margin-bottom: 0; }

/* INCLUSIONS WITH VALUES =============================================== */
.includes-section { max-width: var(--content); }
.includes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 36px;
  text-align: center;
}
@media (min-width: 720px) {
  .includes { grid-template-columns: 1fr 1fr; gap: 44px 36px; text-align: center; }
}
.include { padding: 0 8px; }
.include-icon {
  display: inline-flex;
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  background: var(--accent-tint);
  border: 1px solid rgba(40, 52, 38, 0.10);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.include:hover .include-icon { transform: translateY(-3px); }
.include-icon i { font-size: 31px; line-height: 1; }
.include h4 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
}
.include .value {
  display: inline-block;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-faint);
  font-family: var(--font-serif);
  margin-bottom: 10px;
}
.include p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Value stack -------------------------------------------------------- */
.value-stack {
  margin: 48px auto 0;
  max-width: 460px;
  padding: 22px 28px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.value-stack-row {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.value-stack .strike { text-decoration: line-through; color: var(--ink-faint); }
.value-stack .today {
  font-weight: 600;
  font-size: 1.15rem;
  padding-top: 6px;
  border-top: 1px solid var(--line-soft);
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.value-stack .today-price { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: var(--accent-deep); }

/* Risk-free guarantee ------------------------------------------------ */
.guarantee {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 36px auto 0;
  padding: 18px 20px;
  background: var(--bg-2);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  max-width: 600px;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--deep);
  color: var(--deep-text);
  border-radius: 10px;
}
.guarantee-icon i { font-size: 22px; line-height: 1; }
.guarantee strong { font-size: 0.96rem; color: var(--ink); }
.guarantee p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* TESTIMONIALS (alternating) ========================================== */
.testimonials { max-width: var(--content); }
.testi-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.quote {
  margin: 0;
  padding: 24px 22px 22px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  position: relative;
}
.quote--light {
  background: var(--bg-2);
  border-color: var(--line-soft);
}
.quote--dark {
  background: var(--deep);
  color: var(--deep-text);
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}
.quote--light blockquote { color: var(--ink); }
.quote--dark blockquote { color: var(--deep-text); }
.quote figcaption {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
}
.quote--light figcaption { color: var(--accent-deep); }
.quote--dark figcaption { color: var(--deep-text-soft); }
.quote figcaption img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.quote figcaption em { font-style: italic; }

@media (min-width: 720px) {
  .testi-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* "What to expect" cards (honest reframe) */
.quote-ico {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1;
}
.quote--dark .quote-ico { background: rgba(238, 240, 226, 0.10); color: #d7e0bf; }
.quote--light .quote-ico { background: var(--accent-tint); color: var(--deep); }
.quote-title {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.2;
}
.quote--dark .quote-title { color: var(--deep-text); }
.quote--light .quote-title { color: var(--ink); }
.quote p { margin: 0; font-size: 1.02rem; line-height: 1.58; }
.quote--dark p { color: var(--deep-text-soft); }
.quote--light p { color: var(--ink-soft); }

/* A note from Sunkano */
.founder-note {
  max-width: var(--content);
  margin: 0 auto;
  padding: 4px 20px 64px;
}
@media (min-width: 720px) { .founder-note { padding: 8px 28px 84px; } }
.founder-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 56px) clamp(24px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}
.founder-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 18px;
}
.founder-body {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-size: clamp(1.22rem, 2.9vw, 1.52rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 auto 16px;
  font-weight: 400;
  max-width: 54ch;
}
.founder-sign {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-deep);
  margin: 22px 0 0;
}

/* MID CTA PANEL ======================================================= */
.cta-panel {
  padding: 0 16px;
  margin: 16px auto 32px;
  max-width: var(--content);
}
.cta-panel-inner {
  background: var(--deep);
  color: var(--deep-text);
  border-radius: var(--r-md);
  padding: 56px 24px;
  text-align: center;
}
.cta-panel-inner h2 {
  color: var(--deep-text);
  font-weight: 500;
  margin-bottom: 12px;
}
.cta-panel-inner p {
  color: var(--deep-text-soft);
  margin: 0 auto 28px;
  max-width: 360px;
  font-size: 1rem;
}

/* FAQ section (dark) ================================================== */
.faq-section {
  background: var(--deep);
  color: var(--deep-text);
}
.faq {
  padding: 64px 20px;
  max-width: var(--content);
  margin: 0 auto;
}
@media (min-width: 720px) { .faq { padding: 88px 28px; } }
.faq h2 {
  color: var(--deep-text);
  text-align: left;
  font-weight: 500;
  margin-bottom: 8px;
}
.faq h2 em { color: #d9d99b; }
.faq .lead {
  color: var(--deep-text-soft);
  text-align: left;
  margin: 0 0 28px;
  font-size: 0.95rem;
}
.faq details {
  border-bottom: 1px solid var(--deep-line);
  padding: 18px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--deep-line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary:hover { opacity: 0.85; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "\25BE";
  font-size: 0.85rem;
  color: var(--deep-text-soft);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.faq details[open] summary::after {
  transform: rotate(-180deg);
  color: var(--deep-text);
}
.faq details p {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--deep-text-soft);
  line-height: 1.6;
}

/* FINAL CTA ============================================================ */
.final-cta {
  padding: 64px 20px 96px;
  max-width: var(--content);
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 720px) { .final-cta { padding: 96px 28px 120px; } }
.book-cover {
  margin: 0 auto 36px;
  max-width: 280px;
}
.book-cover-inner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.book-cover-inner img {
  width: 100%;
  height: auto;
  display: block;
}
.book-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%);
  padding: 24px;
}
.book-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.book-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  line-height: 1.05;
  font-weight: 500;
  text-align: center;
}
.book-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  opacity: 0.92;
}
.final-cta h2 { text-align: center; margin-bottom: 18px; }
.final-cta-text {
  max-width: 580px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 0.98rem;
}

/* Footer ============================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 20px 120px; /* bottom padding for mobile sticky cta */
  max-width: var(--content-wide);
  margin: 0 auto;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-faint);
}
@media (min-width: 720px) { .site-footer { padding-bottom: 56px; } }
.site-footer .follow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.site-footer .follow > span { color: var(--ink); font-weight: 600; }
.site-footer .follow a { color: var(--accent-deep); }
.site-footer .disclaimer {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-faint);
  opacity: 0.85;
}
.site-footer .copyright { margin: 0 0 12px; }
.site-footer nav { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: var(--ink-faint); transition: color 0.2s; }
.site-footer a:hover { color: var(--ink); }

/* STICKY BOTTOM CTA (mobile only) ===================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: transparent;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.sticky-cta .cta-button {
  width: auto;
  min-width: 240px;
  max-width: 320px;
  pointer-events: auto;
  padding: 14px 30px;
  font-size: 0.98rem;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 720px) {
  .sticky-cta { display: none; }
}

/* LEGAL pages (terms / privacy / refund) ============================== */
.legal h1 {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 8px;
}
.legal h2 {
  text-align: left;
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 10px;
  font-weight: 600;
}
.legal p, .legal li {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal ul {
  margin: 0 0 1em;
  padding-left: 22px;
}
.legal ul li { margin-bottom: 8px; }
.legal a { text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.legal a:hover { text-decoration-color: var(--accent); }
.legal code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--bg-2);
  padding: 1px 6px;
  border-radius: 4px;
}
.legal-page .site-header { background: var(--bg); }
.legal-page body { padding-bottom: 60px; }

/* Reduce motion ======================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
