:root {
  --paper: #f7f2ec;
  --paper-light: #fffaf6;
  --paper-deep: #eadfd9;
  --ink: #30272a;
  --ink-soft: #675a5e;
  --vermilion: #9f5b63;
  --vermilion-dark: #6e3543;
  --olive: #5d6659;
  --blue-gray: #4d575d;
  --plum: #3e2934;
  --blush: #ead5d3;
  --gold: #a48965;
  --line: #d8c8c2;
  --line-strong: #ad958d;
  --focus: #005fcc;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  --content: min(1240px, calc(100vw - 64px));
  --reading: min(720px, calc(100vw - 48px));
  --tool: min(880px, calc(100vw - 48px));
  --shadow-soft: 0 28px 80px rgba(74, 46, 55, 0.09);
  --shadow-raised: 0 24px 55px rgba(74, 46, 55, 0.14);
  --space-1: 0.5rem;
  --space-2: 0.85rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3.5rem;
  --space-6: 5.5rem;
  --space-7: 8rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(234, 213, 211, 0.52), transparent 25rem),
    radial-gradient(circle at 94% 24%, rgba(220, 204, 190, 0.28), transparent 30rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.1;
  background-image: url("/assets/paper-noise.svg");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--vermilion-dark); }
::selection { color: var(--ink); background: var(--blush); }
button, input, select, textarea { font: inherit; }
button, select, label, summary { touch-action: manipulation; }
button, a, input, select, textarea, summary { outline-offset: 4px; }
:focus-visible { outline: 3px solid var(--focus); }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: var(--content);
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--line-strong) 62%, transparent);
}
.wordmark {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.wordmark-mark { width: 31px; height: 27px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.wordmark-mark i { display: block; width: 1px; height: 25px; background: var(--vermilion); transform: rotate(8deg); }
.wordmark-mark i:last-child { transform: rotate(-8deg); }
.desktop-nav { display: flex; gap: clamp(1.2rem, 3vw, 2.6rem); align-items: center; }
.desktop-nav a, .mobile-nav a { color: var(--ink-soft); font-size: 0.79rem; font-weight: 700; letter-spacing: 0.1em; text-decoration: none; }
.desktop-nav a::after { content: ""; display: block; width: 0; height: 1px; margin-top: 0.3rem; background: var(--vermilion); transition: width 240ms cubic-bezier(.2,.7,.2,1); }
.desktop-nav a:hover, .desktop-nav a.is-current { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.is-current::after { width: 100%; }
.mobile-nav { display: none; position: relative; }

main { min-height: 65vh; }
.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--vermilion-dark);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.35; letter-spacing: 0.01em; text-wrap: pretty; }
h1 { font-size: clamp(2.6rem, 7vw, 6.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { margin: 0 0 1.25em; }

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.55rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.035em;
  box-shadow: 0 10px 24px rgba(74, 46, 55, 0.08);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.button:hover { box-shadow: 0 16px 30px rgba(74, 46, 55, 0.14); transform: translateY(-2px); }
.button:active { box-shadow: 0 6px 16px rgba(74, 46, 55, 0.12); transform: translateY(1px); }
.button-primary { color: #fffaf6; background: var(--plum); border-color: var(--plum); }
.button-primary:hover { color: #fff; background: var(--vermilion-dark); border-color: var(--vermilion-dark); }
.button-quiet { color: var(--ink); background: rgba(255, 250, 246, 0.45); border-color: var(--line-strong); }
.button-quiet:hover { background: var(--paper-light); border-color: var(--vermilion); }
.button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.text-link { display: inline-flex; gap: 1.4rem; align-items: center; font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; transition: gap 220ms ease, color 220ms ease; }
.text-link:hover { gap: 1.8rem; }
.text-link span { color: var(--vermilion); }
.text-button { min-height: 44px; padding: 0.5rem 0; color: var(--ink-soft); background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); cursor: pointer; }
.cta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.home-hero {
  position: relative;
  width: var(--content);
  min-height: min(860px, calc(100dvh - 96px));
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0 clamp(5rem, 8vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: center;
}
.home-hero::after { content: "FURETE II  /  A CONVERSATION FOR TWO"; position: absolute; right: 0; bottom: 1.5rem; color: var(--line-strong); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 0.6rem; letter-spacing: 0.18em; }
.hero-copy { position: relative; z-index: 2; max-width: 820px; animation: rise-in 800ms cubic-bezier(.2,.72,.25,1) both; }
.home-hero h1 { margin-left: -0.06em; font-size: clamp(5.2rem, 8vw, 8rem); line-height: 0.9; letter-spacing: -0.09em; white-space: nowrap; word-break: keep-all; text-shadow: 0 12px 38px rgba(86, 51, 62, 0.08); }
.hero-subtitle { margin: 1.6rem 0 2.5rem; display: flex; align-items: center; gap: 1rem; font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.48rem); letter-spacing: 0.1em; }
.hero-subtitle::before { content: ""; width: clamp(2rem, 5vw, 4.5rem); height: 1px; background: var(--gold); }
.hero-lead { max-width: 680px; color: var(--ink-soft); font-size: clamp(1.02rem, 1.5vw, 1.16rem); line-height: 2.15; text-wrap: pretty; }
.home-hero .cta-row { margin-top: 2.8rem; }
.privacy-note { max-width: 650px; margin-top: 1.8rem; color: var(--ink-soft); font-size: 0.83rem; }
.privacy-note span { margin-right: 0.5rem; color: var(--vermilion); }
.hero-object {
  position: relative;
  min-height: 620px;
  margin: 0;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(159, 91, 99, 0.3);
  border-radius: 47% 53% 42% 58% / 55% 43% 57% 45%;
  background: var(--paper-deep);
  box-shadow: var(--shadow-raised), inset 0 0 0 10px rgba(255, 250, 246, 0.3);
  animation: appear 950ms 180ms ease both;
}
.hero-object::before { content: ""; position: absolute; z-index: 2; inset: 5%; border: 1px solid rgba(255, 250, 246, 0.58); border-radius: inherit; transform: rotate(-5deg); pointer-events: none; }
.hero-object::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(48, 39, 42, 0.03), transparent 42%, rgba(62, 41, 52, 0.44)); pointer-events: none; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(0.82) contrast(0.95); transform: scale(1.025); }
.hero-photo-wash { position: absolute; z-index: 1; inset: 0; background: radial-gradient(circle at 18% 16%, rgba(255, 250, 246, 0.32), transparent 34%), linear-gradient(120deg, rgba(234, 213, 211, 0.16), transparent 52%); mix-blend-mode: screen; }
.soft-orbit { position: absolute; display: block; border: 1px solid rgba(159, 91, 99, 0.22); border-radius: 50%; }
.soft-orbit-a { z-index: 2; width: 15rem; height: 23rem; left: 10%; top: 8%; border-color: rgba(255, 250, 246, 0.42); transform: rotate(27deg); }
.soft-orbit-b { z-index: 2; width: 11rem; height: 19rem; right: 6%; bottom: 3%; border-color: rgba(255, 250, 246, 0.32); transform: rotate(-31deg); }
.hero-index { position: absolute; z-index: 3; top: 3rem; left: 2.7rem; color: #fffaf6; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 0.62rem; letter-spacing: 0.16em; text-shadow: 0 1px 10px rgba(48, 39, 42, 0.36); }
.touch-line { position: absolute; z-index: 3; top: 115px; display: block; width: 1px; height: 320px; background: linear-gradient(to bottom, transparent, rgba(255, 250, 246, 0.8) 18%, rgba(255, 250, 246, 0.8) 84%, transparent); transform-origin: bottom; animation: line-enter 1.2s 260ms cubic-bezier(.22,.8,.28,1) both; }
.touch-line-a { --line-angle: 7deg; left: 43%; transform: rotate(var(--line-angle)); }
.touch-line-b { --line-angle: -7deg; left: 58%; transform: rotate(var(--line-angle)); }
.almost-dot { position: absolute; z-index: 3; top: 96px; left: 50%; width: 7px; height: 7px; border: 1px solid #fffaf6; border-radius: 50%; box-shadow: 0 0 0 7px rgba(255, 250, 246, 0.14); }
.hero-object p { position: absolute; z-index: 3; right: 2.7rem; bottom: 3.2rem; margin: 0; color: #fffaf6; font-family: var(--serif); font-size: 1.08rem; line-height: 1.85; writing-mode: vertical-rl; letter-spacing: 0.18em; text-shadow: 0 2px 14px rgba(48, 39, 42, 0.5); }
.hero-whisper { position: absolute; z-index: 3; left: 4.2rem; bottom: 4.2rem; color: #fffaf6; font-family: var(--serif); font-size: 0.8rem; line-height: 2.1; letter-spacing: 0.12em; text-shadow: 0 2px 14px rgba(48, 39, 42, 0.5); }
.hero-caption { position: absolute; z-index: 3; left: 50%; bottom: 1.7rem; color: rgba(255, 250, 246, 0.82); font-size: 0.54rem; letter-spacing: 0.15em; transform: translateX(-50%); }

.intro-spread {
  position: relative;
  width: var(--content);
  margin: 0 auto var(--space-7);
  padding: clamp(3rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: 90px minmax(300px, 1fr) minmax(280px, 0.78fr);
  gap: clamp(2rem, 6vw, 6rem);
  border: 1px solid rgba(173, 149, 141, 0.42);
  background: rgba(255, 250, 246, 0.56);
  box-shadow: var(--shadow-soft);
  align-items: start;
}
.intro-spread::before { content: ""; position: absolute; top: -1px; left: clamp(3rem, 9vw, 9rem); width: 7rem; height: 2px; background: var(--vermilion); }
.section-number { font-family: var(--serif); font-size: 3rem; color: var(--vermilion); font-style: italic; }
.intro-spread h2 { max-width: 620px; }
.narrow-copy { max-width: 480px; padding-top: 0.4rem; color: var(--ink-soft); }

.tools-index { width: var(--content); margin: 0 auto var(--space-7); }
.section-heading { max-width: 800px; margin: 0 0 var(--space-5) 14%; }
.tool-row {
  min-height: 190px;
  display: grid;
  grid-template-columns: 70px minmax(280px, 1fr) minmax(180px, 0.35fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  padding: 2.7rem clamp(1rem, 2.2vw, 2rem);
  border-top: 1px solid var(--line-strong);
  transition: background 260ms ease, padding-left 260ms ease;
}
.tool-row:hover { padding-left: clamp(1.6rem, 3.4vw, 3rem); background: rgba(255, 250, 246, 0.58); }
.tool-row:last-of-type { border-bottom: 1px solid var(--line-strong); }
.tool-row-main { margin-left: 7%; background: linear-gradient(90deg, rgba(234, 213, 211, 0.38), transparent 72%); }
.tool-no { color: var(--vermilion); font-family: var(--serif); font-size: 1.3rem; }
.tool-row h3 { margin-bottom: 0.6rem; font-size: clamp(1.5rem, 2.8vw, 2.4rem); }
.tool-row p { max-width: 660px; margin: 0; color: var(--ink-soft); }
.tool-row > a { justify-self: end; display: flex; gap: 1rem; font-size: 0.84rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 220ms ease, gap 220ms ease; }
.tool-row > a:hover { gap: 1.4rem; border-color: currentColor; }
.tool-row > a span { color: var(--vermilion); }
.cards-callout { width: 82%; margin: 3.5rem 0 0 auto; }
.cards-callout a { display: grid; grid-template-columns: 0.45fr 1fr auto; gap: 2rem; align-items: center; padding: 1.6rem 2rem; border: 1px solid rgba(159, 91, 99, 0.28); background: rgba(234, 213, 211, 0.25); text-decoration: none; transition: background 220ms ease, transform 220ms ease; }
.cards-callout a:hover { background: rgba(234, 213, 211, 0.48); transform: translateX(-0.35rem); }
.cards-callout strong { font-family: var(--serif); font-size: 1.4rem; }
.cards-callout i { color: var(--vermilion); font-style: normal; }

.principle-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) max(24px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: 0.34fr 1fr 0.7fr;
  gap: clamp(2rem, 6vw, 6rem);
  color: #fff8f2;
  background:
    radial-gradient(circle at 8% 18%, rgba(159, 91, 99, 0.32), transparent 23rem),
    radial-gradient(circle at 90% 82%, rgba(164, 137, 101, 0.2), transparent 28rem),
    var(--plum);
  align-items: start;
}
.principle-band::after { content: ""; position: absolute; width: 32rem; height: 32rem; right: -18rem; top: -18rem; border: 1px solid rgba(255, 248, 242, 0.12); border-radius: 50%; }
.principle-band .eyebrow { color: #e7b9b7; }
.principle-band > div:last-child { max-width: 430px; color: #e8dcda; }
.line-distance { position: relative; height: 260px; }
.line-distance i { position: absolute; top: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, #dca7aa 18%, #dca7aa 84%, transparent); }
.line-distance i:first-child { left: 25%; transform: rotate(3deg); }
.line-distance i:last-child { right: 25%; transform: rotate(-3deg); }

.feeling-spread {
  width: var(--content);
  margin: var(--space-7) auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(340px, 1fr);
  gap: clamp(3.5rem, 9vw, 10rem);
  align-items: center;
}
.feeling-spread figure { position: relative; width: min(100%, 520px); margin: 0 0 0 5%; }
.feeling-spread figure::before { content: ""; position: absolute; z-index: -1; width: 52%; aspect-ratio: 1; left: -16%; bottom: -12%; border-radius: 50%; background: rgba(234, 213, 211, 0.72); filter: blur(1px); }
.feeling-spread img { width: 100%; aspect-ratio: 4 / 5; display: block; object-fit: cover; border-radius: 48% 48% 5px 5px / 28% 28% 5px 5px; box-shadow: var(--shadow-raised); filter: saturate(0.86); }
.feeling-spread figcaption { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; }
.feeling-spread > div { max-width: 650px; padding-right: clamp(0rem, 5vw, 4rem); }
.feeling-spread h2 { font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: 1.28; letter-spacing: -0.045em; }
.feeling-spread > div > p:not(.eyebrow) { max-width: 530px; margin: 2rem 0; color: var(--ink-soft); line-height: 2.1; }

.fresh-stories { width: var(--content); margin: calc(var(--space-7) + 2rem) auto var(--space-7); }
.fresh-stories > header { max-width: 770px; margin: 0 0 var(--space-5) 7%; }
.fresh-stories > header > p:last-child { max-width: 630px; margin-top: 1.5rem; color: var(--ink-soft); }
.story-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.story-card { position: relative; }
.story-card-1 { grid-column: 1 / span 7; }
.story-card-2 { grid-column: 8 / -1; margin-top: 8rem; }
.story-card-3 { grid-column: 2 / span 4; margin-top: -2rem; }
.story-card-4 { grid-column: 6 / -1; margin-top: 2rem; }
.story-card a { display: grid; grid-template-columns: minmax(170px, 0.84fr) minmax(220px, 1fr); gap: clamp(1.3rem, 3vw, 3rem); align-items: end; text-decoration: none; }
.story-card-2 a, .story-card-3 a { grid-template-columns: 1fr; }
.story-card figure { position: relative; margin: 0; overflow: hidden; background: var(--paper-deep); }
.story-card figure::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 250, 246, 0.52); box-shadow: inset 0 0 0 8px rgba(255, 250, 246, 0.12); pointer-events: none; }
.story-card img { width: 100%; aspect-ratio: 4 / 5; display: block; object-fit: cover; filter: saturate(0.82); transition: transform 700ms cubic-bezier(.2,.75,.25,1), filter 350ms ease; }
.story-card-1 img, .story-card-4 img { aspect-ratio: 16 / 10; }
.story-card a:hover img { filter: saturate(0.95); transform: scale(1.035); }
.story-card span { color: var(--vermilion-dark); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.story-card h3 { margin: 0.7rem 0 1rem; font-size: clamp(1.45rem, 2.8vw, 2.35rem); line-height: 1.45; }
.story-card p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.9; }
.story-card i { color: var(--vermilion-dark); font-size: 0.75rem; font-style: normal; font-weight: 700; letter-spacing: 0.08em; }

.guide-index { width: var(--content); margin: var(--space-7) auto; display: grid; grid-template-columns: 0.5fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.guide-index-heading { position: sticky; top: 2rem; align-self: start; padding-left: clamp(1rem, 3vw, 3rem); border-left: 1px solid var(--vermilion); }
.guide-index-heading p:last-child { margin-top: 1.4rem; color: var(--ink-soft); }
.guide-index ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.guide-index li a { min-height: 126px; display: grid; grid-template-columns: 46px 1fr; gap: 1rem; padding: 1.55rem 0.75rem; border-bottom: 1px solid var(--line); text-decoration: none; transition: background 220ms ease, padding-left 220ms ease; }
.guide-index li a:hover { padding-left: 1.25rem; background: rgba(255, 250, 246, 0.6); }
.guide-index li span { color: var(--vermilion); font-family: var(--serif); }
.guide-index li strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; line-height: 1.55; }
.guide-index li small { grid-column: 2; color: var(--ink-soft); }
.guide-all { grid-column: 2; justify-self: end; }

.closing-call { position: relative; width: var(--content); margin: var(--space-7) auto; padding: var(--space-6) clamp(1rem, 5vw, 5rem) var(--space-6) 27%; overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); background: linear-gradient(120deg, transparent, rgba(234, 213, 211, 0.34)); }
.closing-call::before { content: ""; position: absolute; width: clamp(12rem, 26vw, 24rem); aspect-ratio: 1; left: -8%; top: 50%; border: 1px solid rgba(159, 91, 99, 0.3); border-radius: 50%; transform: translateY(-50%); }
.closing-call h2 { position: relative; font-size: clamp(3rem, 7vw, 6.4rem); letter-spacing: -0.045em; }
.closing-call > p:not(.eyebrow) { max-width: 540px; margin: 2rem 0; color: var(--ink-soft); }

.site-footer { width: var(--content); margin: 0 auto; padding: 4.5rem 0 2.5rem; border-top: 0; }
.footer-statement { display: flex; gap: 2rem; align-items: center; font-family: var(--serif); font-size: 1.3rem; }
.footer-statement p { margin: 0; }
.line-pair { width: 42px; height: 32px; display: flex; justify-content: center; gap: 11px; }
.line-pair i { width: 1px; height: 100%; background: var(--vermilion); transform: rotate(7deg); }
.line-pair i:last-child { transform: rotate(-7deg); }
.footer-index { margin: 3rem 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.footer-index a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 0.78rem; text-decoration: none; transition: color 200ms ease, border-color 200ms ease; }
.footer-index a:hover { border-color: var(--vermilion); }
.footer-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft); font-size: 0.78rem; }
.footer-meta p { margin: 0; }

.breadcrumb { width: var(--content); margin: 1.4rem auto 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; list-style: none; font-size: 0.75rem; color: var(--ink-soft); }
.breadcrumb li { display: flex; gap: 0.5rem; }
.breadcrumb a { min-height: 44px; display: inline-flex; align-items: center; }
.editorial-hero { position: relative; width: min(980px, calc(100vw - 48px)); margin: 0 auto; padding: clamp(5.5rem, 10vw, 9rem) 0 clamp(3.5rem, 6vw, 5.5rem); }
.editorial-hero::after { content: ""; position: absolute; left: 0; bottom: 1.7rem; width: clamp(4rem, 11vw, 9rem); height: 1px; background: linear-gradient(90deg, var(--vermilion), transparent); }
.editorial-hero h1 { max-width: 920px; font-size: clamp(2.9rem, 6.6vw, 6rem); letter-spacing: -0.04em; text-shadow: 0 12px 38px rgba(86, 51, 62, 0.06); }
.editorial-hero .hero-lead { max-width: 750px; margin-top: 2rem; }
.tool-intro { margin-left: max(24px, calc((100vw - 1160px) / 2 + 9%)); }
.tool-intro .privacy-note { margin-top: 2rem; }

.tool-shell { position: relative; width: var(--tool); margin: 0 auto var(--space-7); padding: clamp(2.5rem, 5vw, 4.8rem); background: linear-gradient(145deg, rgba(255, 250, 246, 0.98), rgba(250, 242, 238, 0.92)); border: 1px solid rgba(173, 149, 141, 0.55); border-top: 2px solid var(--vermilion-dark); box-shadow: var(--shadow-soft); }
.tool-shell::after { content: ""; position: absolute; width: 4.5rem; height: 1px; right: -1.5rem; bottom: 2.5rem; background: var(--gold); }
.tool-kicker { color: var(--ink-soft); font-size: 0.8rem; letter-spacing: 0.08em; }
.tool-start h2 { margin: 0.5rem 0 1.5rem; }
.plain-checks { margin: 0 0 2rem; padding: 0; list-style: none; }
.plain-checks li { padding: 0.7rem 0 0.7rem 1.8rem; border-bottom: 1px solid var(--line); position: relative; }
.plain-checks li::before { content: "◇"; position: absolute; left: 0; color: var(--vermilion); font-size: 0.72rem; }
.progress-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.8rem; font-weight: 700; }
progress { width: 100%; height: 6px; margin: 0.6rem 0 2.5rem; appearance: none; border: 0; background: var(--paper-deep); }
progress::-webkit-progress-bar { background: var(--paper-deep); }
progress::-webkit-progress-value { background: var(--vermilion); }
progress::-moz-progress-bar { background: var(--vermilion); }
.question-sheet { margin: 0; padding: 0; border: 0; animation: question-in 300ms ease both; }
.question-sheet legend { width: 100%; min-height: 140px; font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.6; }
.question-sheet legend span { display: block; margin-bottom: 0.4rem; color: var(--vermilion); font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.12em; }
.answer-scale { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-strong); }
.answer-scale label { min-width: 0; cursor: pointer; }
.answer-scale label:last-child { grid-column: 1 / -1; }
.answer-scale input { position: absolute; opacity: 0.0001; }
.answer-scale label span { min-height: 112px; display: flex; flex-direction: column; justify-content: center; gap: 0.35rem; padding: 0.8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 0.78rem; text-align: center; transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.answer-scale label:hover span { background: rgba(234, 213, 211, 0.36); box-shadow: inset 0 -2px var(--vermilion); }
.answer-scale label:nth-child(5) span { border-right: 0; }
.answer-scale label:last-child span { min-height: 56px; border-right: 0; flex-direction: row; align-items: center; }
.answer-scale label i { color: var(--vermilion); font-family: var(--serif); font-size: 1.25rem; font-style: normal; }
.answer-scale input:checked + span { color: #fff; background: var(--plum); box-shadow: inset 0 -3px var(--gold); }
.answer-scale input:checked + span i { color: #fff; }
.answer-scale input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: -3px; }
.question-help { margin-top: 1.3rem; color: var(--ink-soft); font-size: 0.78rem; }
.tool-actions, .inline-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 2rem; }
.form-error { min-height: 1.8rem; margin-top: 1rem; color: #8b1e15; font-weight: 700; }
.diagnosis-result { outline: none; }
.diagnosis-result > h2, .compare-results > h2, .phrase-result > h2 { max-width: 720px; margin-bottom: 1.5rem; }
.result-caution, .limited-note, .code-warning { padding-left: 1rem; color: var(--ink-soft); border-left: 2px solid var(--vermilion); font-size: 0.84rem; }
.axis-results { margin: 3rem 0; border-top: 1px solid var(--ink); }
.axis-result { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.axis-result-heading { display: grid; grid-template-columns: 0.42fr 1fr; gap: 1rem; align-items: baseline; }
.axis-result-heading h3 { font-family: var(--sans); font-size: 0.95rem; font-weight: 700; }
.axis-result-heading span { color: var(--ink-soft); font-family: var(--serif); }
.axis-meter { width: 100%; height: 22px; margin: 1rem 0 0.4rem; appearance: none; border: 0; background: transparent; }
.axis-meter::-webkit-meter-bar { height: 2px; background: var(--line); border: 0; border-radius: 0; }
.axis-meter::-webkit-meter-optimum-value { height: 6px; background: var(--vermilion); border-radius: 0; }
.axis-meter::-moz-meter-bar { background: var(--vermilion); }
.axis-scale { display: flex; justify-content: space-between; gap: 2rem; color: var(--ink-soft); font-size: 0.68rem; }
.axis-scale span:last-child { text-align: right; }
.result-columns { display: grid; grid-template-columns: 1fr 0.55fr; gap: 3rem; align-items: start; }
.result-columns h3, .share-code-box h3 { margin-bottom: 1rem; font-family: var(--sans); font-size: 1rem; font-weight: 700; }
.important-result { padding: 1.4rem 0; border-top: 1px solid var(--line); }
.important-result h4 { margin-bottom: 0.6rem; }
blockquote { margin: 1.2rem 0; padding-left: 1.2rem; border-left: 2px solid var(--olive); color: var(--ink-soft); }
.today-action { padding: 2rem; color: #fff7f2; background: linear-gradient(145deg, var(--plum), #57404a); box-shadow: 0 20px 42px rgba(62, 41, 52, 0.16); }
.today-action h3 { color: #ead5d3; }
.result-guide-link { margin-top: 1.8rem; padding-top: 1.2rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: end; color: inherit; border-top: 1px solid rgba(255, 247, 242, 0.26); text-decoration: none; }
.result-guide-link span { display: grid; gap: 0.35rem; }
.result-guide-link small { color: #ead5d3; font-size: 0.68rem; letter-spacing: 0.08em; }
.result-guide-link strong { font-family: var(--serif); font-size: 1rem; font-weight: 400; line-height: 1.55; }
.result-guide-link i { color: #e2b4aa; font-family: var(--serif); font-size: 1.4rem; font-style: normal; transition: transform 180ms ease; }
.result-guide-link:hover i { transform: translateX(0.3rem); }
.share-code-box { margin-top: 3rem; padding: 2rem 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.share-code-box output { display: block; padding: 1rem; background: var(--paper-deep); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 0.9rem; letter-spacing: 0.06em; overflow-wrap: anywhere; user-select: all; }
.live-note { min-height: 1.6rem; color: var(--olive); font-size: 0.8rem; }
.result-limit { margin: 2rem 0; }
.result-limit summary, .favorites-panel summary { min-height: 44px; display: flex; align-items: center; cursor: pointer; font-weight: 700; }
.noscript-note { padding: 1rem; color: #fff; background: var(--vermilion-dark); }

.after-tool-links { width: var(--content); margin: 0 auto var(--space-7); display: grid; grid-template-columns: 1fr repeat(3, 0.5fr); gap: 1rem; align-items: end; padding: 0 clamp(1rem, 3vw, 2.5rem); border-top: 1px solid var(--ink); background: rgba(255, 250, 246, 0.28); }
.after-tool-links h2 { padding-top: 2rem; font-size: 1.6rem; }
.after-tool-links a { min-height: 72px; display: flex; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 0.84rem; font-weight: 700; text-decoration: none; }

.code-inputs { display: grid; grid-template-columns: 1fr 50px 1fr; gap: 1.5rem; align-items: end; }
.code-inputs label span, .maker-fields label span, .card-controls label span { display: block; margin-bottom: 0.6rem; font-size: 0.82rem; font-weight: 700; }
textarea, select { width: 100%; min-height: 52px; padding: 0.95rem; color: var(--ink); background: rgba(247, 242, 236, 0.74); border: 1px solid var(--line-strong); border-radius: 2px; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
textarea:hover, select:hover { border-color: var(--vermilion); }
textarea:focus, select:focus { background: var(--paper-light); box-shadow: 0 0 0 4px rgba(159, 91, 99, 0.1); }
textarea { resize: vertical; }
.between-mark { height: 82px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.between-mark i { width: 1px; height: 46px; background: var(--vermilion); transform: rotate(7deg); }
.between-mark i:last-child { transform: rotate(-7deg); }
.compare-results { margin-top: 4rem; outline: none; }
.comparison-row { padding: 2rem 0; border-top: 1px solid var(--line-strong); }
.comparison-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.comparison-heading strong { padding: 0.25rem 0.6rem; color: var(--vermilion-dark); border: 1px solid var(--vermilion); font-size: 0.75rem; }
.comparison-values { display: flex; gap: 1rem; margin: 1rem 0; color: var(--ink-soft); font-size: 0.78rem; }
.comparison-row blockquote { font-family: var(--serif); font-size: 1.25rem; }
.explain-grid { width: var(--content); margin: var(--space-7) auto; display: grid; grid-template-columns: 1fr 0.7fr; gap: clamp(2rem, 8vw, 8rem); padding-top: 3rem; border-top: 1px solid var(--ink); }

.maker-fields { display: grid; grid-template-columns: 1fr 0.42fr 0.42fr; gap: 1rem; }
.phrase-result { margin-top: 4rem; outline: none; }
.phrase-result textarea { min-height: 190px; font-family: var(--serif); font-size: 1.12rem; line-height: 1.9; }

.card-controls { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.card-controls label { width: min(320px, 100%); }
.card-controls p { margin: 0; color: var(--ink-soft); font-size: 0.8rem; }
.conversation-card { position: relative; min-height: 420px; margin: 2.5rem 0; padding: clamp(2rem, 6vw, 5rem); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: #fff8f2; background: radial-gradient(circle at 84% 16%, rgba(234, 213, 211, 0.18), transparent 17rem), linear-gradient(145deg, var(--vermilion-dark), var(--plum)); border: 1px solid rgba(164, 137, 101, 0.42); box-shadow: var(--shadow-raised); outline-offset: 6px; transform-origin: center left; animation: card-turn 300ms ease both; }
.conversation-card::after { content: ""; position: absolute; width: 18rem; height: 18rem; right: -8rem; bottom: -10rem; border: 1px solid rgba(255, 248, 242, 0.16); border-radius: 50%; }
.conversation-card > p { display: flex; justify-content: space-between; font-size: 0.75rem; letter-spacing: 0.12em; }
.conversation-card h2 { max-width: 650px; font-size: clamp(2rem, 5vw, 4.2rem); }
.favorite-button { min-height: 44px; align-self: flex-start; padding: 0.4rem 0; color: #fff; background: transparent; border: 0; border-bottom: 1px solid #e2b4aa; cursor: pointer; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.card-reading { margin-top: 1.5rem; padding: 1.25rem 0; display: grid; grid-template-columns: minmax(150px, 0.32fr) 1fr; gap: 2rem; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.card-reading > p { margin: 0; color: var(--vermilion); font-size: 0.66rem; letter-spacing: 0.11em; text-transform: uppercase; }
.card-reading a { min-height: 54px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 1rem; align-content: center; color: inherit; text-decoration: none; }
.card-reading a span { color: var(--ink-soft); font-size: 0.72rem; }
.card-reading a strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.card-reading a i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--vermilion); font-family: var(--serif); font-size: 1.35rem; font-style: normal; transition: transform 180ms ease; }
.card-reading a:hover i { transform: translateX(0.3rem); }
.favorites-panel { margin-top: 2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.favorites-panel ol { padding-left: 1.4rem; }
.favorites-panel li { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.card-principles { width: var(--content); margin: 0 auto var(--space-7); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.card-principles > div { padding-top: 2rem; border-top: 1px solid var(--ink); }
.card-principles span { color: var(--vermilion); }
.card-principles h2 { margin: 1rem 0; font-size: 2rem; }

.reading-room-hero {
  width: var(--content);
  margin: 0 auto var(--space-7);
  padding: clamp(4.5rem, 9vw, 8.5rem) 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.reading-room-hero h1 { max-width: 760px; font-size: clamp(3.4rem, 7vw, 7rem); line-height: 1.1; letter-spacing: -0.055em; }
.reading-room-hero .hero-lead { margin-top: 2rem; }
.reading-room-note { width: max-content; max-width: 100%; margin-top: 2.5rem; padding: 0.9rem 1.1rem; color: var(--vermilion-dark); border-left: 1px solid var(--vermilion); background: rgba(255, 250, 246, 0.5); font-family: var(--serif); }
.reading-room-hero figure { position: relative; margin: 0; }
.reading-room-hero figure::before { content: ""; position: absolute; z-index: -1; inset: 12% -12% -8% 14%; border-radius: 50% 50% 6px 6px / 24% 24% 6px 6px; background: rgba(234, 213, 211, 0.68); }
.reading-room-hero img { width: 100%; max-height: 690px; display: block; object-fit: cover; border-radius: 50% 50% 4px 4px / 23% 23% 4px 4px; box-shadow: var(--shadow-raised); filter: saturate(0.84); }
.reading-room-hero figcaption { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }

.guide-paths { width: var(--content); margin: 0 auto var(--space-7); padding: clamp(2.4rem, 5vw, 4.5rem) 0; display: grid; grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr); gap: clamp(2.5rem, 7vw, 7rem); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line-strong); }
.guide-paths > div { max-width: 380px; }
.guide-paths h2 { margin: 0.7rem 0 1.2rem; font-size: clamp(2.15rem, 4vw, 3.8rem); }
.guide-paths > div > p:last-child { color: var(--ink-soft); }
.guide-paths ol { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); list-style: none; }
.guide-paths li { min-width: 0; border-bottom: 1px solid var(--line); }
.guide-paths li:nth-child(odd) { border-right: 1px solid var(--line); }
.guide-paths a { min-height: 172px; display: grid; grid-template-columns: 34px 1fr; align-content: start; gap: 0.45rem 1rem; padding: 1.5rem; text-decoration: none; transition: background 220ms ease, transform 220ms ease; }
.guide-paths a:hover { color: var(--ink); background: rgba(255, 250, 246, 0.62); transform: translateY(-2px); }
.guide-paths a > span { grid-row: 1 / span 2; color: var(--vermilion); font-family: var(--serif); font-size: 1.15rem; }
.guide-paths strong { font-family: var(--serif); font-size: 1.2rem; line-height: 1.55; }
.guide-paths small { color: var(--ink-soft); font-size: 0.76rem; line-height: 1.75; }
.guide-cluster { width: var(--content); margin: var(--space-7) auto; display: grid; grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr); gap: clamp(2.5rem, 7vw, 7rem); scroll-margin-top: 2rem; }
.guide-cluster > header { position: sticky; top: 7rem; align-self: start; }
.guide-cluster > header h2 { margin: 0.7rem 0 1.2rem; font-size: clamp(2.1rem, 4vw, 3.7rem); }
.guide-cluster > header > p:last-child { color: var(--ink-soft); }
.guide-cluster-body { min-width: 0; }
.guide-hero { margin-left: max(24px, calc((100vw - 1160px) / 2)); }
.guide-list { width: var(--content); margin: 0 auto var(--space-7); border-top: 1px solid var(--ink); }
.guide-cluster .guide-list { width: 100%; margin: 0; }
.guide-entry a { min-height: 230px; display: grid; grid-template-columns: 54px 1fr 32px; gap: clamp(1rem, 3vw, 2.6rem); align-items: start; padding: 2.4rem 0; border-bottom: 1px solid var(--line-strong); text-decoration: none; }
.guide-entry a { transition: padding 240ms ease, background 240ms ease; }
.guide-entry a:hover { padding-left: clamp(0.8rem, 2vw, 1.8rem); padding-right: clamp(0.8rem, 2vw, 1.8rem); background: rgba(255, 250, 246, 0.48); }
.guide-entry-no { color: var(--vermilion); font-family: var(--serif); font-size: 1.3rem; }
.guide-entry h3 { max-width: 800px; font-size: clamp(1.45rem, 2.5vw, 2.25rem); }
.guide-entry p { max-width: 740px; margin: 1rem 0; color: var(--ink-soft); }
.guide-entry ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin: 0; padding: 0; list-style: none; font-size: 0.75rem; color: var(--olive); }
.guide-entry i { color: var(--vermilion); font-style: normal; font-size: 1.4rem; }
.cluster-tool { margin-top: 2rem; padding: 1.7rem 0 1.7rem 1.8rem; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem 2rem; align-items: center; border-left: 1px solid var(--vermilion); background: linear-gradient(90deg, rgba(234, 213, 211, 0.38), transparent 72%); }
.cluster-tool p { margin: 0; color: var(--ink-soft); font-size: 0.88rem; }
.cluster-tool p span { display: block; margin-bottom: 0.35rem; color: var(--vermilion-dark); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.cluster-tool > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.65rem 1.2rem; }
.cluster-tool a { min-height: 44px; display: inline-flex; align-items: center; gap: 0.8rem; color: var(--vermilion-dark); font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.source-note { width: var(--reading); margin: var(--space-6) auto; padding: 2rem 0; border-top: 1px solid var(--ink); }

.longform { width: min(980px, calc(100vw - 48px)); margin: 0 auto var(--space-7); }
.article-header { position: relative; max-width: 920px; padding: clamp(4.5rem, 9vw, 8.5rem) 0 3.5rem; }
.article-header::after { content: ""; display: block; width: clamp(5rem, 12vw, 10rem); height: 1px; margin-top: 2.5rem; background: linear-gradient(90deg, var(--vermilion), transparent); }
.article-header h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); letter-spacing: -0.025em; }
.article-lead { max-width: 760px; margin: 2rem 0; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 2; }
.article-dates { display: flex; gap: 2rem; margin: 0; }
.article-dates div { display: flex; gap: 0.6rem; }
.article-dates dt { color: var(--ink-soft); font-size: 0.72rem; }
.article-dates dd { margin: 0; font-size: 0.75rem; }
.article-cover { position: relative; width: 88%; margin: 0 0 4.5rem auto; }
.article-cover::before { content: ""; position: absolute; z-index: -1; width: 42%; aspect-ratio: 1; right: -7%; bottom: -16%; border-radius: 50%; background: rgba(234, 213, 211, 0.65); }
.article-cover img { width: 100%; max-height: 520px; display: block; object-fit: cover; object-position: center 48%; box-shadow: var(--shadow-raised); filter: saturate(0.84); }
.article-cover figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: 0.8rem; color: var(--ink-soft); font-family: var(--serif); font-size: 0.76rem; }
.article-cover figcaption small { font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; }
.article-summary { width: 78%; margin: 2rem 0 5.5rem auto; padding: 2.4rem 2.8rem; color: #fff8f2; background: radial-gradient(circle at 92% 16%, rgba(234, 213, 211, 0.15), transparent 14rem), var(--plum); box-shadow: var(--shadow-raised); }
.article-summary > p { font-family: var(--serif); font-size: 1.25rem; }
.article-summary ul { margin: 0; padding-left: 1.25rem; }
.article-body { width: var(--reading); margin: 0 auto; }
.article-body section { margin: 0 0 var(--space-6); }
.article-body h2, .trust-body h2 { margin-bottom: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--ink); font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.article-body p, .trust-body p { line-height: 2.08; text-wrap: pretty; }
.article-body ul, .trust-body ul { padding-left: 1.4rem; }
.article-body li, .trust-body li { margin: 0.6rem 0; }
.table-wrap { width: calc(100vw - 48px); max-width: 900px; margin: 2rem 50% 2rem; transform: translateX(-50%); overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: rgba(255, 250, 246, 0.82); font-size: 0.84rem; box-shadow: 0 16px 35px rgba(74, 46, 55, 0.07); }
th, td { padding: 0.9rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { color: #fff; background: var(--plum); }
tbody th { min-width: 120px; font-weight: 700; }
.article-tool-call { width: 85%; margin: var(--space-7) 0 var(--space-7) auto; padding: clamp(2.5rem, 5vw, 4.5rem); background: linear-gradient(135deg, rgba(255, 250, 246, 0.96), rgba(234, 213, 211, 0.28)); border: 1px solid rgba(173, 149, 141, 0.42); border-top: 2px solid var(--vermilion); box-shadow: var(--shadow-soft); }
.article-tool-call h2 { max-width: 650px; }
.article-tool-call p:not(.eyebrow) { max-width: 620px; margin: 1.5rem 0; }
.faq-section, .references { width: var(--reading); margin: var(--space-7) auto; }
.faq-section h2, .references h2 { margin-bottom: 2rem; }
.faq-section details { border-top: 1px solid var(--line-strong); }
.faq-section details:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-section summary { min-height: 68px; padding: 1rem 0; cursor: pointer; font-family: var(--serif); font-size: 1.1rem; font-weight: 600; transition: color 180ms ease, padding-left 180ms ease; }
.faq-section summary:hover { padding-left: 0.45rem; color: var(--vermilion-dark); }
.faq-section details p { padding: 0 1rem 1rem; color: var(--ink-soft); }
.references > p { color: var(--ink-soft); font-size: 0.84rem; }
.references ol { margin: 2rem 0 0; padding: 0; list-style: none; }
.references li { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; padding: 1.3rem 0; border-top: 1px solid var(--line); }
.references li > span { color: var(--vermilion); font-family: var(--serif); }
.references li p { margin: 0.3rem 0; font-size: 0.78rem; }
.references li small { display: block; color: var(--ink-soft); line-height: 1.6; }
.related-guides { margin-top: var(--space-7); padding-top: 2rem; border-top: 1px solid var(--ink); }
.related-guides h2 { margin-bottom: 2rem; font-size: 1.5rem; }
.related-guides > a { min-height: 100px; display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.related-guides span { color: var(--vermilion); font-size: 0.72rem; }
.related-guides strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }

.trust-page { width: min(940px, calc(100vw - 48px)); margin: 0 auto var(--space-7); }
.trust-page .editorial-hero { width: 100%; }
.trust-body { width: var(--reading); margin: 0 auto; }
.trust-body section { margin-bottom: var(--space-6); }
.trust-body .table-wrap { max-width: 900px; }
.source-links { padding: 0 !important; list-style: none; }
.source-links li { border-bottom: 1px solid var(--line); }
.source-links a { min-height: 52px; display: flex; align-items: center; }

.not-found { width: var(--content); min-height: 70vh; margin: 0 auto; padding: var(--space-7) 0; display: grid; grid-template-columns: 0.65fr 1fr; gap: 3rem; align-items: center; }
.not-found-lines { grid-row: 1 / span 4; position: relative; min-height: 420px; border-right: 1px solid var(--line); }
.not-found-lines i { position: absolute; top: 30px; left: 38%; width: 1px; height: 320px; background: var(--vermilion); transform: rotate(6deg); }
.not-found-lines i:nth-child(2) { left: 56%; transform: rotate(-6deg); }
.not-found-lines span { position: absolute; right: 2rem; bottom: 0; font-family: var(--serif); font-size: 4rem; color: var(--line-strong); }
.not-found h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.not-found > p:not(.eyebrow) { max-width: 620px; color: var(--ink-soft); }

@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes appear { from { opacity: 0; } to { opacity: 1; } }
@keyframes line-enter { from { opacity: 0; transform: scaleY(0) rotate(0deg); } to { opacity: 1; transform: scaleY(1) rotate(var(--line-angle)); } }
@keyframes question-in { from { opacity: 0.82; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
@keyframes card-turn { from { opacity: 0.6; transform: rotateY(-4deg) translateX(8px); } to { opacity: 1; transform: rotateY(0) translateX(0); } }

@media (max-width: 900px) {
  :root { --content: min(100% - 40px, 800px); --reading: min(100% - 40px, 680px); --tool: min(100% - 36px, 760px); }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav summary { min-height: 44px; display: flex; align-items: center; cursor: pointer; color: var(--ink-soft); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; }
  .mobile-nav nav { position: absolute; z-index: 20; top: 48px; right: 0; width: min(290px, calc(100vw - 36px)); padding: 0.7rem 1.1rem; background: rgba(255, 250, 246, 0.98); border: 1px solid var(--line-strong); box-shadow: var(--shadow-raised); }
  .mobile-nav nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .mobile-nav nav a.is-current { color: var(--vermilion-dark); }
  .home-hero { min-height: auto; grid-template-columns: 1fr 210px; gap: 2.5rem; }
  .home-hero h1 { font-size: clamp(4.2rem, 10vw, 6.2rem); }
  .hero-object { min-height: 470px; }
  .hero-whisper, .hero-caption { display: none; }
  .intro-spread { grid-template-columns: 60px 1fr; }
  .intro-spread .narrow-copy { grid-column: 2; }
  .tool-row { grid-template-columns: 50px 1fr; }
  .tool-row > a { grid-column: 2; justify-self: start; }
  .principle-band { grid-template-columns: 120px 1fr; }
  .principle-band > div:last-child { grid-column: 2; }
  .feeling-spread { grid-template-columns: minmax(240px, 0.7fr) minmax(300px, 1fr); gap: 3rem; }
  .story-card-1 { grid-column: 1 / span 7; }
  .story-card-2 { grid-column: 8 / -1; margin-top: 5rem; }
  .story-card-3 { grid-column: 1 / span 5; }
  .story-card-4 { grid-column: 6 / -1; }
  .story-card a { grid-template-columns: 1fr; }
  .guide-index { grid-template-columns: 1fr; }
  .guide-index-heading { position: static; }
  .guide-all { grid-column: 1; }
  .footer-index { grid-template-columns: repeat(3, 1fr); }
  .after-tool-links { grid-template-columns: 1fr 1fr; }
  .after-tool-links h2 { grid-column: 1 / -1; }
  .maker-fields { grid-template-columns: 1fr 1fr; }
  .maker-fields label:first-child { grid-column: 1 / -1; }
  .reading-room-hero { grid-template-columns: minmax(0, 1fr) 280px; gap: 3rem; }
  .guide-paths, .guide-cluster { grid-template-columns: 1fr; gap: 2.5rem; }
  .guide-paths > div { max-width: 620px; }
  .guide-cluster > header { position: static; max-width: 680px; }
  .article-summary { width: 88%; }
  .result-columns { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --content: calc(100% - 32px); --reading: calc(100% - 32px); --tool: calc(100% - 20px); --space-6: 4.2rem; --space-7: 5.8rem; }
  body { line-height: 1.75; }
  .site-header { min-height: 76px; }
  .wordmark { font-size: 1.02rem; }
  .home-hero { min-height: auto; padding: 4.6rem 0 5.5rem; grid-template-columns: 1fr; gap: 3.5rem; }
  .home-hero::after { display: none; }
  .home-hero h1 { font-size: clamp(3.25rem, 16vw, 5.5rem); line-height: 0.96; letter-spacing: -0.075em; }
  .hero-subtitle { margin-top: 1.4rem; display: block; font-size: 0.95rem; letter-spacing: 0.05em; }
  .hero-subtitle::before { display: block; margin-bottom: 1rem; }
  .hero-lead { line-height: 2; }
  .home-hero .cta-row { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .hero-object { min-height: 330px; width: 100%; margin-left: auto; border-radius: 46% 54% 49% 51% / 58% 47% 53% 42%; }
  .hero-object::before { inset: 7%; }
  .soft-orbit-a { width: 10rem; height: 15rem; }
  .soft-orbit-b { width: 8rem; height: 13rem; }
  .touch-line { top: 68px; height: 185px; }
  .almost-dot { top: 52px; }
  .hero-object p { right: 1.6rem; bottom: 2.3rem; writing-mode: horizontal-tb; font-size: 0.92rem; letter-spacing: 0.12em; }
  .hero-whisper { left: 2.7rem; bottom: 3.1rem; display: block; font-size: 0.7rem; }
  .hero-caption { display: none; }
  .hero-index { top: 2rem; left: 1.7rem; }
  .intro-spread { grid-template-columns: 35px 1fr; gap: 1rem; margin-top: 0; padding: 2.6rem 1.7rem 3rem; }
  .section-number { font-size: 2rem; }
  .section-heading { margin-left: 0; }
  .tool-row, .tool-row-main { min-height: auto; grid-template-columns: 34px 1fr; gap: 1rem; padding: 2rem 0; }
  .tool-row:hover { padding-left: 0; }
  .tool-row-main { margin-left: 0; padding-left: 0; }
  .tool-row > a { grid-column: 2; }
  .cards-callout { width: 100%; }
  .cards-callout a { grid-template-columns: 1fr auto; gap: 0.8rem; padding: 1.5rem; }
  .cards-callout span { grid-column: 1 / -1; }
  .principle-band { padding-left: 20px; padding-right: 20px; grid-template-columns: 44px 1fr; gap: 1.4rem; }
  .line-distance { height: 220px; }
  .feeling-spread { grid-template-columns: 1fr; gap: 3.5rem; }
  .feeling-spread figure { width: 82%; margin-left: 0; }
  .feeling-spread > div { padding-right: 0; }
  .feeling-spread h2 { font-size: clamp(2.6rem, 13vw, 4.5rem); }
  .fresh-stories > header { margin-left: 0; }
  .story-grid { display: block; }
  .story-card, .story-card-2, .story-card-3, .story-card-4 { margin: 0 0 4rem; }
  .story-card a { grid-template-columns: 1fr; }
  .story-card figure { width: 88%; }
  .story-card:nth-child(even) figure { margin-left: auto; }
  .story-card img, .story-card-1 img, .story-card-4 img { aspect-ratio: 4 / 3; }
  .guide-index li a { grid-template-columns: 34px 1fr; }
  .closing-call { padding: 4rem 1rem 4.5rem; }
  .closing-call::before { left: auto; right: -35%; opacity: 0.7; }
  .footer-index { grid-template-columns: 1fr 1fr; }
  .footer-meta { flex-direction: column; }
  .tool-intro, .guide-hero { width: var(--content); margin-left: auto; margin-right: auto; }
  .tool-shell { padding: 2rem 18px; }
  .tool-shell::after { right: 0; width: 3rem; }
  .question-sheet legend { min-height: 170px; }
  .answer-scale { grid-template-columns: 1fr; border-top: 0; }
  .answer-scale label:last-child { grid-column: 1; }
  .answer-scale label span, .answer-scale label:last-child span { min-height: 54px; flex-direction: row; justify-content: flex-start; align-items: center; gap: 1rem; padding: 0.7rem 0.9rem; border: 1px solid var(--line); border-bottom: 0; text-align: left; }
  .answer-scale label:last-child span { border-bottom: 1px solid var(--line); }
  .axis-result-heading { grid-template-columns: 1fr; gap: 0.2rem; }
  .axis-scale { gap: 0.5rem; }
  .today-action { padding: 1.4rem; }
  .after-tool-links { grid-template-columns: 1fr; }
  .code-inputs { grid-template-columns: 1fr; }
  .between-mark { height: 28px; transform: rotate(90deg); }
  .comparison-heading { align-items: flex-start; flex-direction: column; }
  .maker-fields { grid-template-columns: 1fr; }
  .maker-fields label:first-child { grid-column: auto; }
  .card-controls { align-items: start; flex-direction: column; gap: 0.5rem; }
  .conversation-card { min-height: 370px; margin-left: 0; margin-right: 0; padding: 2.2rem 1.6rem; }
  .card-actions { grid-template-columns: 1fr; }
  .card-reading { grid-template-columns: 1fr; gap: 0.35rem; }
  .card-principles { grid-template-columns: 1fr; gap: 2rem; }
  .reading-room-hero { padding-top: 4rem; grid-template-columns: 1fr; gap: 3rem; }
  .reading-room-hero h1 { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .reading-room-hero figure { width: 82%; margin-left: auto; }
  .guide-paths { padding: 2.8rem 0; }
  .guide-paths ol { grid-template-columns: 1fr; }
  .guide-paths li:nth-child(odd) { border-right: 0; }
  .guide-paths a { min-height: 0; padding: 1.25rem 0.4rem; }
  .guide-cluster { scroll-margin-top: 1rem; }
  .guide-entry a { grid-template-columns: 36px 1fr 20px; gap: 0.8rem; padding: 2rem 0; }
  .guide-entry ul { display: block; }
  .guide-entry li { margin-bottom: 0.4rem; }
  .cluster-tool { grid-template-columns: 1fr; padding: 1.5rem 1.2rem; }
  .cluster-tool > div { justify-content: flex-start; }
  .article-dates { flex-wrap: wrap; gap: 0.4rem 1.2rem; }
  .article-summary { width: 100%; padding: 1.6rem; }
  .article-cover { width: 100%; margin-bottom: 3rem; }
  .article-cover img { min-height: 260px; }
  .article-cover figcaption { align-items: flex-start; flex-direction: column; gap: 0.25rem; }
  .article-tool-call { width: 100%; padding: 2rem 1.4rem; }
  .related-guides > a { grid-template-columns: 1fr; gap: 0.3rem; }
  .not-found { grid-template-columns: 1fr; }
  .not-found-lines { grid-row: auto; min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .not-found-lines i { height: 150px; }
  .not-found-lines span { font-size: 2.5rem; }
}

@media (max-width: 360px) {
  .home-hero h1 { font-size: 3rem; }
  .home-hero .button { width: 100%; }
  .intro-spread { padding-left: 1.25rem; padding-right: 1.25rem; }
  .principle-band { padding-left: 16px; padding-right: 16px; }
  .footer-index { grid-template-columns: 1fr; }
}

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

@media print {
  body::before, .site-header, .site-footer, .button, .mobile-nav { display: none !important; }
  body { background: #fff; color: #000; }
  .longform, .trust-page, .article-body { width: 100%; max-width: none; }
  a { color: #000; }
}
