/* ============================================================
   TWO WINDS — a rapé ceremony guide, held with Western hands
   Palette travel: forest dusk → warm sand → firelit dusk
   ============================================================ */

:root {
  --forest: #1e2b20;
  --tobacco: #4a3524;
  --sand: #efe6d4;
  --clay: #b26a3a;
  --ash: #9a9187;

  /* live theme vars (JS swaps body[data-theme]) */
  --bg: #1e2b20;
  --ink: #efe6d4;
  --muted: rgba(239, 230, 212, 0.62);
  --hairline: rgba(239, 230, 212, 0.16);
  --accent: #c98a55;
  --smoke-o: 0.55;

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

body[data-theme="dusk"] {
  --bg: #1e2b20;
  --ink: #efe6d4;
  --muted: rgba(239, 230, 212, 0.6);
  --hairline: rgba(239, 230, 212, 0.16);
  --accent: #cf9058;
  --smoke-o: 0.55;
}

body[data-theme="sand"] {
  --bg: #efe6d4;
  --ink: #2b2118;
  --muted: rgba(74, 53, 36, 0.78);
  --hairline: rgba(74, 53, 36, 0.22);
  --accent: #96521f;
  --smoke-o: 0.05;
}

body[data-theme="fire"] {
  --bg: #271a10;
  --ink: #f0e3cd;
  --muted: rgba(240, 227, 205, 0.6);
  --hairline: rgba(240, 227, 205, 0.15);
  --accent: #d2854a;
  --smoke-o: 0.45;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  transition: background-color 1.8s cubic-bezier(0.4, 0, 0.2, 1), color 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--clay); color: var(--sand); }

a { color: inherit; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--accent); }
a:hover { color: var(--accent); }

strong { font-weight: 600; }

/* ---------- atmosphere layers ---------- */

#smoke {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: var(--smoke-o);
  transition: opacity 2.4s ease;
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 40;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.5 0 0 0 0 0.45 0 0 0 0 0.4 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

section { position: relative; z-index: 1; }

/* ---------- reading progress ---------- */

.read-line {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 31;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.8;
  pointer-events: none;
  transition: background-color 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- masthead ---------- */

.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  pointer-events: none;
  mix-blend-mode: normal;
}

.wordmark {
  font-weight: 600;
  letter-spacing: 0.42em;
  text-decoration: none;
  pointer-events: auto;
  transition: color 0.6s ease;
}
a.wordmark:hover { color: var(--accent); }
.masthead-note { color: var(--muted); letter-spacing: 0.22em; font-size: 0.62rem; }
@media (max-width: 700px) { .masthead-note { display: none; } }

/* ---------- shared section furniture ---------- */

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: clamp(4rem, 9vh, 7rem) clamp(1.25rem, 6vw, 6rem) 0;
  max-width: 1180px;
  margin: 0 auto;
}

.sec-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.sec-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
}

.sec-label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.9rem;
}

.lede {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.5;
  font-weight: 400;
  max-width: 34ch;
}

.honest-note {
  border-left: 1px solid var(--accent);
  padding: 0.35rem 0 0.35rem 1.75rem;
  max-width: 58ch;
}

.honest-note .note-mark,
.stage-note span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.honest-note p { font-style: italic; color: var(--muted); font-size: 1.06rem; }

/* ---------- reveals ---------- */

body.js .reveal { opacity: 0; transform: translateY(26px); }
body.js.no-motion .reveal { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(90% 75% at 50% 46%, transparent 40%, rgba(12, 19, 13, 0.45) 100%);
}

.hero-inner, .scroll-cue { position: relative; }

.hero-inner { max-width: 760px; }

.hero-mark {
  display: inline-block;
  color: var(--accent);
  margin-bottom: clamp(1.4rem, 3vh, 2.2rem);
}

.hero-mark path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
}

body.js:not(.no-motion) .hero-mark path {
  stroke-dashoffset: 90;
  animation: mark-draw 2.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
body.js:not(.no-motion) .hero-mark path:last-child { animation-delay: 0.7s; }

@keyframes mark-draw { to { stroke-dashoffset: 0; } }

.kicker {
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: clamp(2.25rem, 5vh, 3.5rem);
}

.hero-title .line { display: inline-block; overflow: hidden; vertical-align: bottom; }
body.js .hero-title .line span { transform: translateY(110%); }
.hero-title .line span { display: inline-block; }
body.js.no-motion .hero-title .line span { transform: none; }

.hero-quiet { margin-bottom: clamp(2rem, 4.5vh, 3rem); }

.quiet-serif {
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--muted);
}
.quiet-serif em { color: var(--ink); font-weight: 500; }

.pronounce {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.pron-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.pron-word {
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
}

.hero-ack p {
  font-style: italic;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.85;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

body.js .scroll-cue { opacity: 0; animation: cue-arrive 2.2s ease 2s forwards; }
body.js.no-motion .scroll-cue { opacity: 1; animation: none; }

@keyframes cue-arrive { to { opacity: 1; } }

.cue-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--accent), transparent);
  display: block;
  transform-origin: top;
}

body.js:not(.no-motion) .cue-line { animation: cue-breathe 7s cubic-bezier(0.4, 0, 0.2, 1) 2.4s infinite; }

@keyframes cue-breathe {
  0%, 100% { transform: scaleY(0.55); opacity: 0.5; }
  45% { transform: scaleY(1); opacity: 1; }
  70% { transform: scaleY(1); opacity: 0.85; }
}

.cue-text {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   LINEAGE
   ============================================================ */

.lineage-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.25rem, 6vw, 6rem) clamp(5rem, 10vh, 8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 7vh, 5.5rem);
}

.lineage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem);
}

.lin-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.lin-item p { font-size: 1.12rem; line-height: 1.75; color: var(--ink); max-width: 52ch; }
.lin-item strong { color: var(--accent); font-weight: 500; }

/* ============================================================
   TOOLS
   ============================================================ */

.tools-lede, .arc-lede, .recip-lede, .safety-lede, .still-lede {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vh, 4rem) clamp(1.25rem, 6vw, 6rem) 0;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  line-height: 1.55;
}
.tools-lede { max-width: 1180px; }
.tools-lede, .arc-lede { font-style: italic; color: var(--muted); }
.tools-lede em, .arc-lede em { color: var(--ink); }

.tools-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 6rem) clamp(1.25rem, 6vw, 6rem) clamp(5rem, 10vh, 8rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(3rem, 6vw, 6rem);
}

.tool-art {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--accent);
  background: linear-gradient(180deg, transparent, rgba(178, 106, 58, 0.05));
  transition: border-color 1.8s ease;
}

.fig-label {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.tool-svg { width: 100%; height: auto; display: block; }
.tool-svg .draw { opacity: 1; }
.tool-svg .thin { opacity: 0.4; }

.tool-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.tool-mean {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.tool-mean em { font-family: var(--serif); text-transform: none; letter-spacing: 0.02em; font-size: 0.95rem; color: var(--muted); }

.tool-body { font-size: 1.08rem; line-height: 1.75; color: var(--muted); max-width: 48ch; }

/* ============================================================
   CEREMONY ARC
   ============================================================ */

.arc-track { position: relative; max-width: 1180px; margin: 0 auto; padding-bottom: clamp(4rem, 8vh, 6rem); }

.arc-rail {
  position: absolute;
  top: 0; bottom: 0;
  left: clamp(1.25rem, 6vw, 6rem);
  width: 1px;
  background: var(--hairline);
}

.arc-rail-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform-origin: top;
  transform: scaleY(0);
}

.stage {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 4rem clamp(1.25rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}

.stage-ghost {
  position: absolute;
  top: 0; bottom: 0;
  right: clamp(1rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14rem, 26vw, 24rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 980px) { .stage-ghost { display: none; } }

.stage-inner { max-width: 620px; margin-left: clamp(2rem, 6vw, 5.5rem); position: relative; }

.stage-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.stage-name {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.stage-instruction {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 2.25rem;
}
.stage-instruction em { color: var(--accent); }

.stage-note { font-style: italic; color: var(--muted); font-size: 1.05rem; max-width: 52ch; border-left: 1px solid var(--accent); padding-left: 1.5rem; }
.stage-note span { font-style: normal; }

/* ============================================================
   STILL MOMENT — breath pacer
   ============================================================ */

.still-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 6vw, 4rem) clamp(5rem, 10vh, 8rem);
  text-align: center;
}

.still-lede { text-align: left; padding-left: 0; padding-right: 0; color: var(--muted); font-style: italic; max-width: 60ch; margin: 0 auto; }

.pacer { margin: clamp(3rem, 7vh, 5rem) auto 0; max-width: 460px; }

.pacer-ring-wrap { position: relative; width: min(72vw, 380px); margin: 0 auto; }

.pacer-svg { width: 100%; height: auto; display: block; transform: rotate(-90deg); }

.pacer-track { fill: none; stroke: var(--hairline); stroke-width: 1.5; }

.pacer-arc {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 879.65;
  stroke-dashoffset: 879.65;
}

.pacer-core { fill: var(--accent); opacity: 0.14; transform-origin: 160px 160px; }

.pacer-cue {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  pointer-events: none;
}

.cue-phase { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2rem); }

.cue-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2rem;
  line-height: 2;
}

.pacer-controls { margin-top: 1.9rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.pacer-btn {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 0.95rem 2.4rem;
  cursor: pointer;
  transition: background-color 0.6s ease, color 0.6s ease;
}
.pacer-btn:hover { background: var(--accent); color: var(--bg); }
.pacer-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.pacer-rounds { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); min-height: 1.2em; }

.still-close { margin-top: clamp(2.5rem, 5vh, 4rem); font-style: italic; color: var(--muted); font-size: 1.05rem; }

/* ============================================================
   ESSAY — with western eyes
   ============================================================ */

.essay-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 6vh, 5rem) clamp(1.25rem, 6vw, 3rem) clamp(5rem, 10vh, 8rem);
}

.essay-open {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.5;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.essay-cols p { font-size: 1.14rem; line-height: 1.85; margin-bottom: 1.75rem; }

.dropcap {
  float: left;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 4.4rem;
  line-height: 0.82;
  padding: 0.08em 0.12em 0 0;
  color: var(--accent);
}

.essay-pull {
  margin: clamp(3rem, 6vh, 4.5rem) 0 0;
  padding: clamp(2rem, 4vh, 3rem) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}

.essay-pull p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.5;
  color: var(--accent);
}

/* ============================================================
   RECIPROCITY
   ============================================================ */

.recip-lede, .safety-lede { color: var(--muted); font-style: italic; }

@media (min-width: 720px) {
  .recip-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

.recip-grid, .safety-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.25rem, 6vw, 6rem) clamp(5rem, 10vh, 8rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: transparent;
}

.recip-item, .safety-item {
  border: 1px solid var(--hairline);
  margin: -0.5px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  transition: border-color 1.2s ease, background-color 1.2s ease;
}

.recip-item:hover, .safety-item:hover {
  border-color: var(--accent);
  background: rgba(178, 106, 58, 0.05);
}

.recip-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  line-height: 1;
}

.recip-item h3, .safety-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.42rem;
  margin-bottom: 0.9rem;
}

.recip-item p, .safety-item p { font-size: 1.02rem; line-height: 1.75; color: var(--muted); }
.recip-item em { color: var(--ink); }

/* ============================================================
   SAFETY
   ============================================================ */

.safety-item h3 { display: flex; align-items: baseline; gap: 0.6rem; }
.safety-item h3::before { content: "·"; color: var(--accent); font-size: 1.6em; line-height: 0; }

/* ============================================================
   CLOSING
   ============================================================ */

.closing {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(6rem, 14vh, 10rem);
}

.closing-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 5vh, 3rem);
}

.closing-mark { color: var(--accent); display: inline-block; }

.blessing p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  line-height: 2.05;
  color: var(--ink);
}

body.js:not(.no-motion) .blessing p { opacity: 0; transform: translateY(18px); }

.closing-sign {
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- footer ---------- */

.footer {
  margin-top: clamp(5rem, 10vh, 8rem);
  border-top: 1px solid var(--hairline);
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem) 3rem;
  transition: border-color 1.8s ease;
}

.footer-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.6rem 0;
}

.footer-brand { font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.42em; }

.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
.footer-links a:hover { color: var(--accent); }

.footer-meta p { font-style: italic; font-size: 0.85rem; color: var(--muted); max-width: 72ch; }

.footer-credit { border-top: 1px solid var(--hairline); margin-top: 1rem; padding-top: 1.6rem; }
.footer-credit p { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.05em; color: var(--muted); }
.footer-credit a { color: var(--muted); }
.footer-credit a:hover { color: var(--accent); }

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {
  body { font-size: 16px; }
  .stage-inner { margin-left: 1.6rem; }
  .arc-rail { left: 1.25rem; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .hero-ack p br { display: none; }
  .pronounce { flex-direction: column; gap: 0.7rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

/* ============================================================
   PRINT — nothing stays hidden on paper
   ============================================================ */

@media print {
  #smoke, .grain, .read-line, .scroll-cue { display: none !important; }
  body.js .reveal,
  body.js .hero-title .line span,
  body.js .blessing p {
    opacity: 1 !important;
    transform: none !important;
  }
  .tool-svg .draw { stroke-dashoffset: 0 !important; stroke-dasharray: none !important; }
  .stage { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  #smoke { display: none; }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(120% 90% at 50% 110%, rgba(178, 106, 58, 0.12), transparent 60%),
                radial-gradient(100% 70% at 50% -10%, rgba(239, 230, 212, 0.06), transparent 55%);
  }
  .tool-svg .draw { stroke-dashoffset: 0 !important; stroke-dasharray: none !important; }
}
