:root {
  --ivory: #f3eddf;
  --paper: #fbf8ef;
  --forest: #1f392a;
  --forest-deep: #15281e;
  --ink: #26302a;
  --muted: #687069;
  --gold: #b88c45;
  --gold-soft: #d7bd86;
  --line: rgba(38, 48, 42, 0.2);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --page: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--forest);
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 max(28px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 250ms ease, height 250ms ease, box-shadow 250ms ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(243, 237, 223, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.wordmark {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 0.76;
  letter-spacing: -0.04em;
}
.wordmark::after {
  position: absolute;
  left: calc(100% + 8px);
  top: 3px;
  width: 26px;
  height: 26px;
  content: "";
  border: 1px solid var(--gold);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.site-nav a:not(.nav-journal)::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}
.site-nav a:hover::after { width: 100%; }
.nav-journal { padding: 10px 15px; border: 1px solid var(--forest); }
.menu-toggle { display: none; }

.book-hero {
  position: relative;
  min-height: 900px;
  padding: 155px max(28px, calc((100vw - 1180px) / 2)) 100px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  isolation: isolate;
  overflow: hidden;
}
.hero-paper-grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 77% 44%, rgba(184, 140, 69, 0.13), transparent 25%),
    linear-gradient(100deg, transparent 0 50%, rgba(255,255,255,.25) 50% 100%);
}
.hero-ornament { position: absolute; left: 4%; top: 48%; color: var(--gold); font-size: 36px; }
.hero-copy h1,
.section-intro h2,
.practice-intro h2,
.toolbox-heading h2,
.journey-copy h2,
.journal-invitation-copy h2,
.pay-forward h2,
.journal-hero h1 {
  margin: 20px 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.045em;
}
.hero-copy h1 { max-width: 650px; font-size: clamp(62px, 6.7vw, 104px); }
em { color: var(--gold); font-weight: 400; }
.hero-lead { max-width: 575px; font-family: var(--serif); font-size: 20px; line-height: 1.62; }

.chapter-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.chapter-label span { width: 32px; height: 1px; background: currentColor; }
.chapter-label.light { color: var(--gold-soft); }

.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 30px; }
.button {
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid currentColor;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-forest { color: var(--paper); background: var(--forest); border-color: var(--forest); }
.button-forest:hover { background: var(--forest-deep); }
.button-paper { color: var(--forest); background: var(--paper); border-color: var(--paper); }
.ink-link {
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 15px;
}
.hero-signature { margin-top: 55px; display: flex; align-items: center; gap: 18px; }
.signature-rule { width: 44px; height: 1px; background: var(--gold); }
.hero-signature p { margin: 0; font-family: var(--serif); font-size: 14px; line-height: 1.35; }

.book-stage { position: relative; min-height: 610px; display: grid; place-items: center; }
.book-stage img {
  position: relative;
  z-index: 3;
  width: min(365px, 75%);
  box-shadow: -15px 21px 42px rgba(21, 40, 30, 0.24), -5px 6px 0 #ddd3bd;
  transform: rotate(2.2deg);
}
.book-shadow { position: absolute; width: 420px; height: 80px; bottom: 7%; border-radius: 50%; background: rgba(21,40,30,.24); filter: blur(28px); }
.enso { position: absolute; border: 1px solid var(--gold); border-radius: 50%; opacity: 0.5; }
.enso-one { width: 540px; height: 540px; border-right-color: transparent; transform: rotate(-28deg); }
.enso-two { width: 470px; height: 470px; border-left-color: transparent; transform: rotate(14deg); }
.book-note {
  position: absolute;
  z-index: 4;
  right: -40px;
  bottom: 7%;
  width: 215px;
  padding: 18px 22px;
  color: var(--paper);
  background: var(--forest);
  box-shadow: 0 18px 30px rgba(20,35,27,.15);
}
.book-note span { color: var(--gold-soft); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.book-note p { margin: 8px 0 0; font-family: var(--serif); font-size: 15px; line-height: 1.4; }
.hero-scroll { position: absolute; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 12px; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll span { width: 1px; height: 32px; background: var(--gold); }

.welcome-band { padding: 105px 24px; color: var(--paper); text-align: center; background: var(--forest); }
.welcome-mark { margin-bottom: 35px; display: flex; align-items: center; justify-content: center; gap: 15px; color: var(--gold-soft); }
.welcome-mark span { width: 58px; height: 1px; background: currentColor; }
.welcome-mark strong { font-family: var(--serif); font-size: 30px; font-weight: 400; }
.welcome-band > p:first-of-type { color: var(--gold-soft); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.welcome-band h2 { margin: 12px auto 24px; max-width: 800px; font-family: var(--serif); font-size: clamp(42px, 5vw, 70px); font-weight: 400; line-height: 1.06; }
.welcome-copy { max-width: 670px; margin: auto; color: rgba(251,248,239,.72); font-family: var(--serif); font-size: 18px; }

.reader-gifts { padding: 130px max(28px, calc((100vw - 1180px) / 2)); }
.section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; align-items: end; }
.section-intro .chapter-label { grid-column: 1 / -1; }
.section-intro h2 { font-size: clamp(52px, 6vw, 82px); }
.section-intro > p:last-child { max-width: 430px; padding-bottom: 12px; color: var(--muted); font-family: var(--serif); font-size: 18px; }
.gift-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.gift-card { position: relative; min-height: 480px; padding: 42px 36px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 250ms ease, transform 250ms ease; }
.gift-card:hover { z-index: 2; background: var(--paper); transform: translateY(-8px); }
.gift-featured { color: var(--paper); background: var(--forest); }
.gift-featured:hover { color: var(--paper); background: var(--forest-deep); }
.gift-number { align-self: flex-end; color: var(--gold); font-family: var(--serif); font-size: 13px; }
.gift-icon { min-height: 150px; display: grid; place-items: center; color: var(--gold); }
.meditation-figure { width: 95px; height: 95px; display: grid; place-items: center; border: 1px solid currentColor; border-right-color: transparent; border-radius: 50%; font-size: 48px; transform: rotate(-20deg); }
.journal-icon { display: flex; flex-direction: column; gap: 18px; }
.journal-icon span { width: 105px; height: 1px; background: currentColor; }
.journal-icon span:nth-child(2) { width: 78px; }
.toolbox-icon { display: flex; gap: 12px; }
.toolbox-icon i { width: 32px; height: 68px; border: 1px solid currentColor; border-radius: 50%; transform: rotate(20deg); }
.toolbox-icon i:nth-child(2) { transform: translateY(-15px); }
.toolbox-icon i:nth-child(3) { transform: rotate(-20deg); }
.gift-kicker { margin: 0 0 8px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gift-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.1; }
.gift-card > p:not(.gift-kicker) { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 16px; }
.gift-featured > p:not(.gift-kicker) { color: rgba(251,248,239,.67); }
.gift-action { margin-top: auto; padding-top: 30px; border-top: 1px solid currentColor; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gift-action b { float: right; font-size: 16px; }

.present-practice { position: relative; padding: 135px max(28px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; color: var(--paper); background: var(--forest-deep); overflow: hidden; }
.practice-landscape { position: absolute; left: 0; right: 0; bottom: -14px; opacity: .12; filter: invert(1); }
.practice-landscape img { width: 100%; height: 270px; object-fit: cover; }
.practice-intro, .practice-card { position: relative; z-index: 1; }
.practice-intro h2 { font-size: clamp(62px, 7vw, 94px); }
.practice-intro blockquote { margin: 36px 0 25px; padding-left: 24px; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 20px; font-style: italic; }
.practice-intro > p:last-child { color: rgba(251,248,239,.62); }
.practice-card { min-height: 575px; display: grid; place-items: center; border: 1px solid rgba(215,189,134,.35); background: rgba(255,255,255,.035); }
.practice-halo { position: absolute; top: 58px; width: 240px; height: 240px; display: grid; place-items: center; }
.halo-ring { position: absolute; border: 1px solid rgba(215,189,134,.42); border-radius: 50%; transition: transform 1s ease; }
.ring-one { width: 100%; height: 100%; border-right-color: transparent; transform: rotate(-25deg); }
.ring-two { width: 78%; height: 78%; border-left-color: transparent; transform: rotate(25deg); }
.practice-dot { width: 70px; height: 70px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 50px rgba(184,140,69,.35); transition: transform 12s ease-in-out, opacity 600ms ease; }
.practice-card.running .practice-dot { animation: breathe 15s ease-in-out infinite; }
.practice-card.running .ring-one { animation: drift 15s linear infinite; }
.practice-card.running .ring-two { animation: drift-reverse 18s linear infinite; }
@keyframes breathe { 0%,100% { transform: scale(.7); opacity: .65; } 50% { transform: scale(1.18); opacity: 1; } }
@keyframes drift { to { transform: rotate(335deg); } }
@keyframes drift-reverse { to { transform: rotate(-335deg); } }
.practice-content { width: min(430px, calc(100% - 54px)); margin-top: 245px; text-align: center; }
.practice-step { margin: 0; color: var(--gold-soft); font-size: 9px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.practice-guidance { min-height: 58px; margin: 10px 0 22px; font-family: var(--serif); font-size: 20px; }
.practice-timeline { margin: 0 auto 24px; display: flex; gap: 8px; }
.practice-timeline span { flex: 1; height: 1px; background: rgba(255,255,255,.18); }
.practice-timeline span.active { background: var(--gold); }
.practice-controls { display: flex; align-items: center; justify-content: center; gap: 18px; }
.practice-controls time { width: 38px; color: rgba(255,255,255,.6); font-family: var(--serif); font-size: 15px; }
.practice-progress { height: 2px; margin-top: 26px; background: rgba(255,255,255,.14); }
.practice-progress span { display: block; width: 0; height: 100%; background: var(--gold); transition: width .8s linear; }

.toolbox-section { padding: 135px max(28px, calc((100vw - 1180px) / 2)); }
.toolbox-heading { max-width: 770px; }
.toolbox-heading h2 { font-size: clamp(58px, 6.4vw, 88px); }
.toolbox-heading > p:last-child { max-width: 610px; color: var(--muted); font-family: var(--serif); font-size: 18px; }
.state-finder { margin: 65px 0; padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.26); }
.state-finder > p:first-child { margin: 0 0 18px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.state-options { display: flex; flex-wrap: wrap; gap: 10px; }
.state-options button { padding: 10px 15px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-family: var(--serif); font-size: 15px; transition: color 150ms ease, background 150ms ease; }
.state-options button:hover, .state-options button.active { color: var(--paper); background: var(--forest); }
.state-result { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.tool-card { order: 20; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; transition: background 200ms ease, box-shadow 200ms ease; }
.tool-card.recommended { order: 1; background: var(--paper); box-shadow: inset 3px 0 0 var(--gold); }
.tool-card.recommended .tool-number::after { margin-left: 8px; content: "suggested"; font-family: var(--sans); font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.tool-toggle { width: 100%; min-height: 225px; padding: 28px 30px; display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto 1fr auto; gap: 18px 20px; border: 0; background: transparent; cursor: pointer; text-align: left; }
.tool-number { color: var(--gold); font-family: var(--serif); font-size: 13px; }
.tool-symbol { justify-self: end; color: var(--gold); font-size: 30px; }
.tool-title { grid-column: 1 / -1; align-self: end; font-family: var(--serif); font-size: 30px; line-height: 1.05; }
.tool-question { max-width: 420px; color: var(--muted); font-family: var(--serif); font-size: 15px; font-style: italic; }
.tool-open { justify-self: end; font-family: var(--serif); font-size: 24px; transition: transform 180ms ease; }
.tool-toggle[aria-expanded="true"] .tool-open { transform: rotate(45deg); }
.tool-panel { padding: 0 30px 32px; color: var(--muted); font-family: var(--serif); font-size: 16px; }
.tool-panel[hidden] { display: none; }
.tool-panel ol { padding-left: 20px; }
.tool-mantra { padding: 15px 18px; border-left: 2px solid var(--gold); color: var(--ink); background: rgba(184,140,69,.09); font-style: italic; }
.tool-practice-link { color: var(--forest); border-bottom: 1px solid var(--gold); }

.journey-section { padding: 130px max(28px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; background: var(--paper); }
.journey-art { position: relative; min-height: 650px; display: grid; place-items: center; }
.journey-enso { width: min(500px, 90%); aspect-ratio: 1; overflow: hidden; border: 2px solid var(--forest); border-right-color: var(--gold); border-radius: 50%; box-shadow: 0 0 0 16px var(--paper), 0 0 0 17px var(--gold); transform: rotate(-8deg); }
.journey-enso img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 90%; transform: scale(1.3) rotate(8deg); filter: sepia(.12) contrast(1.05); }
.journey-birds { position: absolute; right: 0; top: 15%; color: var(--gold); letter-spacing: 12px; }
.journey-copy h2 { font-size: clamp(54px, 5.8vw, 80px); }
.journey-lead { color: var(--muted); font-family: var(--serif); font-size: 19px; }
.journey-steps { margin: 45px 0; border-top: 1px solid var(--line); }
.journey-steps article { padding: 22px 0; display: grid; grid-template-columns: 48px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.journey-steps article > span { color: var(--gold); font-family: var(--serif); }
.journey-steps h3 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.journey-steps p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.journey-copy blockquote { margin: 0; padding-left: 25px; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 20px; font-style: italic; }

.journal-invitation { padding: 115px max(28px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; color: var(--paper); background: var(--forest); }
.journal-paper { padding: 36px 42px; color: var(--ink); background: var(--paper); box-shadow: 18px 20px 0 rgba(10,23,17,.24); transform: rotate(-1.5deg); }
.journal-paper-top { display: flex; justify-content: space-between; align-items: center; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.journal-question { margin: 40px 0 48px; font-family: var(--serif); font-size: clamp(30px, 3.4vw, 44px); line-height: 1.15; }
.writing-line { height: 36px; display: block; border-bottom: 1px solid var(--line); }
.journal-paper-footer { margin-top: 30px; display: flex; justify-content: space-between; color: var(--muted); font-family: var(--serif); font-size: 12px; font-style: italic; }
.journal-invitation-copy h2 { font-size: clamp(54px, 6vw, 80px); }
.journal-invitation-copy > p:not(.chapter-label) { margin-bottom: 34px; color: rgba(251,248,239,.68); font-family: var(--serif); font-size: 18px; }

.pay-forward { position: relative; min-height: 740px; padding: 145px max(28px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; overflow: hidden; }
.pay-forward-inner { position: relative; z-index: 2; width: min(590px, 58%); }
.pay-forward h2 { font-size: clamp(66px, 7vw, 100px); }
.pay-forward-inner > p:not(.chapter-label):not(.share-status) { max-width: 540px; color: var(--muted); font-family: var(--serif); font-size: 18px; }
.pay-forward .button { margin-top: 22px; }
.share-status { min-height: 24px; font-size: 12px; color: var(--muted); }
.pay-forward-tree { position: absolute; right: 4%; bottom: 0; width: 43%; height: 650px; }
.tree-trunk { position: absolute; left: 52%; bottom: 55px; width: 13px; height: 360px; background: var(--forest); transform: rotate(5deg); clip-path: polygon(35% 0, 70% 0, 100% 100%, 0 100%); }
.tree-trunk::before, .tree-trunk::after { position: absolute; bottom: 170px; width: 7px; height: 180px; content: ""; background: var(--forest); transform-origin: bottom; }
.tree-trunk::before { transform: rotate(-53deg); }
.tree-trunk::after { transform: rotate(48deg); }
.tree-crown { position: absolute; left: 7%; top: 30px; width: 88%; aspect-ratio: 1.2; border-radius: 47% 53% 48% 52%; background: radial-gradient(circle, transparent 0 2px, rgba(31,57,42,.92) 3px 5px, transparent 6px) 0 0/17px 17px; filter: drop-shadow(0 15px 0 rgba(184,140,69,.08)); }
.tree-ground { position: absolute; left: 0; right: 0; bottom: 50px; height: 2px; background: var(--forest); }

.site-footer { padding: 55px max(28px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 45px; color: rgba(251,248,239,.65); background: var(--forest-deep); font-size: 11px; }
.footer-wordmark { color: var(--paper); }
.footer-links { display: flex; gap: 24px; text-transform: uppercase; letter-spacing: .12em; }
.footer-credit { text-align: right; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms ease, transform 800ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Journal */
.journal-page { background: var(--paper); }
.journal-header { width: var(--page); height: 100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.back-link { font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.journal-hero { width: min(820px, calc(100vw - 48px)); margin: 0 auto; padding: 100px 0 80px; text-align: center; }
.journal-hero .chapter-label { justify-content: center; }
.journal-hero h1 { font-size: clamp(60px, 8vw, 100px); }
.journal-hero > p:not(.chapter-label) { max-width: 600px; margin: 0 auto; color: var(--muted); font-family: var(--serif); font-size: 18px; }
.journal-privacy { margin: 32px auto 0; display: inline-flex; gap: 10px; align-items: center; color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.reflection-form { width: min(900px, calc(100vw - 48px)); margin: 0 auto 100px; }
.reflection-meta { margin-bottom: 24px; padding: 24px; display: grid; grid-template-columns: 1fr 2fr; gap: 24px; border: 1px solid var(--line); }
.reflection-meta label { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.reflection-meta input { width: 100%; margin-top: 8px; padding: 8px 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; color: var(--ink); background: transparent; font-family: var(--serif); font-size: 17px; }
.reflection-prompt { position: relative; margin-top: -1px; padding: 44px; display: grid; grid-template-columns: 55px 1fr; gap: 15px 25px; border: 1px solid var(--line); }
.prompt-number { color: var(--gold); font-family: var(--serif); }
.reflection-prompt div > p { margin: 0 0 6px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.reflection-prompt h2 { margin: 0; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.15; }
.reflection-prompt small { color: var(--muted); font-family: var(--serif); font-size: 14px; font-style: italic; }
.reflection-prompt textarea { grid-column: 2; width: 100%; margin-top: 16px; padding: 12px 4px; resize: vertical; border: 0; outline: 0; color: var(--ink); background: repeating-linear-gradient(to bottom, transparent 0 33px, var(--line) 34px); font-family: var(--serif); font-size: 17px; line-height: 34px; }
.reflection-prompt:focus-within { z-index: 2; border-color: var(--gold); }
.journal-actions { padding: 34px 0; display: flex; align-items: center; gap: 28px; }
.journal-actions p { margin-left: auto; color: var(--muted); font-size: 12px; }
.clear-journal { color: #7b4439; }
.journal-closing { padding: 100px 24px; color: var(--paper); text-align: center; background: var(--forest); }
.journal-closing p { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(32px, 4vw, 50px); font-style: italic; line-height: 1.2; }
.journal-closing a { color: var(--gold-soft); border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 900px) {
  :root { --page: calc(100vw - 36px); }
  .site-header { height: 76px; padding: 0 20px; }
  .menu-toggle { width: 40px; height: 40px; padding: 11px 7px; display: flex; flex-direction: column; justify-content: center; gap: 7px; border: 0; background: transparent; }
  .menu-toggle span { width: 100%; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 76px 0 auto; padding: 30px 24px; display: none; flex-direction: column; align-items: flex-start; gap: 24px; background: var(--ivory); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(20,35,27,.12); }
  .site-nav.open { display: flex; }
  .nav-journal { width: 100%; }
  .book-hero { min-height: auto; padding: 125px 24px 90px; grid-template-columns: 1fr; gap: 50px; }
  .hero-copy h1 { font-size: clamp(58px, 14vw, 84px); }
  .book-stage { min-height: 550px; }
  .book-note { right: 0; }
  .enso-one { width: min(520px, 100vw); height: min(520px, 100vw); }
  .enso-two { width: min(440px, 84vw); height: min(440px, 84vw); }
  .hero-scroll { display: none; }
  .section-intro { grid-template-columns: 1fr; }
  .gift-grid { grid-template-columns: 1fr; }
  .gift-card { min-height: 420px; }
  .present-practice { grid-template-columns: 1fr; gap: 60px; }
  .tool-grid { grid-template-columns: 1fr; }
  .journey-section { grid-template-columns: 1fr; gap: 45px; }
  .journey-art { min-height: 540px; }
  .journal-invitation { grid-template-columns: 1fr; gap: 65px; }
  .pay-forward-inner { width: 100%; }
  .pay-forward-tree { right: -20%; width: 75%; opacity: .14; }
  .site-footer { grid-template-columns: 1fr; gap: 25px; }
  .footer-credit { text-align: left; }
  .reflection-prompt { padding: 34px 28px; }
  .journal-actions { align-items: flex-start; flex-wrap: wrap; }
  .journal-actions p { width: 100%; margin-left: 0; }
}

@media (max-width: 560px) {
  .book-hero { padding-inline: 20px; }
  .hero-copy h1 { font-size: 58px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .book-stage { min-height: 465px; }
  .book-stage img { width: 68%; }
  .book-note { width: 180px; bottom: 2%; }
  .welcome-band, .reader-gifts, .present-practice, .toolbox-section, .journey-section, .journal-invitation, .pay-forward { padding: 90px 20px; }
  .section-intro h2, .practice-intro h2, .toolbox-heading h2, .journey-copy h2, .journal-invitation-copy h2 { font-size: 52px; }
  .gift-card { padding: 32px 26px; }
  .practice-card { min-height: 560px; }
  .practice-content { width: calc(100% - 34px); }
  .practice-controls { flex-direction: column; }
  .practice-controls time { width: auto; }
  .state-finder { padding: 22px; }
  .state-options { flex-direction: column; }
  .state-options button { text-align: left; }
  .tool-toggle { padding: 24px 20px; }
  .tool-panel { padding: 0 20px 28px; }
  .journey-art { min-height: 380px; }
  .journal-paper { padding: 28px 24px; }
  .journal-paper-footer { flex-wrap: wrap; gap: 12px; }
  .pay-forward { min-height: 680px; }
  .pay-forward h2 { font-size: 65px; }
  .journal-header { height: 88px; }
  .journal-header .back-link { max-width: 130px; text-align: right; }
  .journal-hero { padding: 75px 0 60px; }
  .journal-hero h1 { font-size: 54px; }
  .reflection-meta { grid-template-columns: 1fr; }
  .reflection-prompt { padding: 30px 20px; grid-template-columns: 36px 1fr; gap: 12px; }
  .reflection-prompt h2 { font-size: 26px; }
  .reflection-prompt textarea { grid-column: 1 / -1; }
}

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

@media print {
  @page { size: A4; margin: 14mm; }
  body { color: #111; background: #fff; }
  body::before, .journal-header, .journal-actions, .journal-closing, .journal-privacy { display: none !important; }
  .journal-hero { padding: 5mm 0 10mm; }
  .journal-hero h1 { margin: 5mm 0; font-size: 42pt; }
  .reflection-form { width: 100%; margin: 0; }
  .reflection-meta { break-inside: avoid; }
  .reflection-prompt { min-height: 118mm; padding: 10mm; break-inside: avoid; page-break-inside: avoid; border-color: #bbb; }
  .reflection-prompt textarea { min-height: 65mm; resize: none; background: repeating-linear-gradient(to bottom, transparent 0 8mm, #bbb 8.2mm); line-height: 8.2mm; }
  .reflection-prompt h2 { font-size: 21pt; }
}
