@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500;600&display=swap");

:root {
  --paper: #f7ead2;
  --paper-light: #fffaf0;
  --ink: #26211d;
  --muted: #6f645b;
  --rust: #a9512e;
  --rust-dark: #78371f;
  --line: rgba(38, 33, 29, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(169, 81, 46, 0.08), transparent 24rem),
    var(--paper-light);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  z-index: -1;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; padding: .7rem 1rem; background: white; z-index: 99; }

.site-header {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .78rem; text-decoration: none; font-size: 1.05rem; font-weight: 600; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.quiet-link, .text-link { text-underline-offset: .3em; text-decoration-thickness: 1px; }

.hero {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.eyebrow { margin: 0 0 1.2rem; color: var(--rust); font-size: .84rem; line-height: 1.45; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .97; margin: 0; }
h1 { font-size: clamp(3.6rem, 6.5vw, 6.2rem); letter-spacing: -.045em; max-width: 12.5ch; }
h2 { font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -.035em; }
.hero-lede { max-width: 620px; font-size: clamp(1.05rem, 1.55vw, 1.22rem); margin: 1.5rem 0 0; color: #514941; }
.hero-bridge { max-width: 590px; margin: 1.25rem 0 0; color: var(--muted); font-size: .98rem; }
.hero-bridge em { color: var(--ink); font-family: var(--serif); font-size: 1.15em; }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.4rem; margin: 1.25rem 0 0; }
.story-cue { display: inline-block; margin-top: 2rem; color: var(--muted); font-family: var(--serif); font-size: 1.16rem; font-style: italic; text-underline-offset: .35em; text-decoration-thickness: 1px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .85rem 1.35rem; border-radius: 999px; text-decoration: none; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--rust); color: #fffaf0; box-shadow: 0 12px 32px rgba(120, 55, 31, .18); }
.button-primary:hover { background: var(--rust-dark); }
.small-note { color: var(--muted); font-size: .82rem; margin-top: 1rem; }
.hero-art { position: relative; display: flex; min-height: 540px; align-items: center; justify-content: center; isolation: isolate; }
.hero-art > img { width: min(108%, 640px); aspect-ratio: 1; object-fit: contain; border-radius: 0; }
.thought { position: absolute; z-index: 2; color: var(--rust-dark); font: italic 500 clamp(1rem, 1.6vw, 1.3rem)/1.15 var(--serif); opacity: .82; }
.thought-one { left: 4%; top: 16%; transform: rotate(-7deg); }
.thought-two { right: 0; top: 10%; transform: rotate(5deg); }
.thought-three { left: -2%; bottom: 15%; transform: rotate(4deg); text-align: right; }
.thought-four { right: 4%; bottom: 17%; transform: rotate(-5deg); }

.section-pad { padding: clamp(5rem, 10vw, 10rem) max(1rem, calc((100vw - var(--max)) / 2)); }
.recognition { background: var(--ink); color: var(--paper-light); }
.recognition-line { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,.16); padding: 1.8rem 0; }
.recognition-line p { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; max-width: 25ch; }
.chapter-no { color: #bf8a70; font-size: .74rem; letter-spacing: .14em; padding-top: .45rem; }
.recognition-close { margin: 4rem 0 0 auto; max-width: 620px; color: var(--paper); font-size: clamp(1.3rem, 2.5vw, 2rem); }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 8rem); background: var(--paper); }
.story-heading { position: sticky; top: 2rem; align-self: start; }
.story-body { max-width: 620px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.story-body p { margin: 0 0 1.5rem; }
blockquote { margin: 3rem 0; padding: 0 0 0 1.5rem; border-left: 3px solid var(--rust); font: italic 500 clamp(2rem, 4vw, 3.8rem)/1.08 var(--serif); }

.journal-intro { max-width: 860px; }
.journal-intro > p:last-child { max-width: 680px; font-size: 1.13rem; margin-top: 1.7rem; }
.discovery-story { max-width: 720px; margin-top: 2.8rem; padding-top: 2.2rem; border-top: 1px solid var(--line); font-size: 1.07rem; }
.discovery-story p { margin: 0 0 1.25rem; }
.method { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4.5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.method-card { min-height: 300px; padding: 1.6rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-card span { color: var(--rust); font-size: .76rem; }
.method-card h3 { font-size: 2.3rem; margin-top: 4rem; }
.method-card p { color: var(--muted); margin-top: 1rem; }
.promise { margin: clamp(5rem, 9vw, 9rem) 0 0 auto; max-width: 850px; font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3.4rem); line-height: 1.12; }
.promise p { margin: 0 0 1.1rem; color: #87796d; }
.promise strong { display: block; margin-top: 2rem; color: var(--ink); font-weight: 500; }

.community { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; background: #eee1ca; }
.community-art img { width: min(112%, 570px); margin: 0 auto; mix-blend-mode: multiply; filter: drop-shadow(0 20px 32px rgba(78, 52, 36, .08)); }
.community-copy { max-width: 650px; }
.community-copy p { font-size: 1.07rem; }
.community-rule { margin: 2rem 0 1.4rem; padding: 1.3rem 1.4rem 1.25rem; border-left: 3px solid var(--rust); background: rgba(255, 250, 240, .48); }
.community-rule strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }
.community-rule p { margin: .55rem 0 0; }
.privacy-note { padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 1rem; color: var(--muted); font-size: .88rem !important; }

.offer { background: var(--paper-light); color: var(--ink); }
.offer-letter { max-width: 820px; margin: 0 auto; }
.offer-letter h2 { max-width: 13ch; font-size: clamp(3.1rem, 7vw, 6rem); }
.offer-letter > p:not(.eyebrow):not(.small-note) { max-width: 720px; margin: 1.4rem 0 0; font-size: clamp(1.06rem, 1.6vw, 1.2rem); }
.price-line { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin: 3.2rem 0 2rem; padding: 1.7rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-line div { display: flex; flex-direction: column; }
.price-line span { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.price-line small { color: var(--muted); font: 400 .82rem/1.55 var(--sans); }
.price-line strong { flex: 0 0 auto; font: 500 3.9rem/1 var(--serif); }
.price-line strong small { font-size: .82rem; }
.offer .button { min-height: 50px; box-shadow: none; }

.questions { background: var(--paper-light); }
.question-list { max-width: 880px; margin-top: 2rem; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 1.4rem 2rem 1.4rem 0; font: 500 clamp(1.5rem, 3vw, 2.2rem)/1.15 var(--serif); position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .2rem; top: 1.25rem; color: var(--rust); }
details[open] summary::after { content: "−"; }
details p { max-width: 680px; margin: 0 0 1.5rem; color: var(--muted); }

.closing { text-align: center; background: var(--paper); font: 500 clamp(2rem, 5vw, 4.8rem)/1.08 var(--serif); }
.closing p { margin: .3rem; }
.closing-mark { color: var(--rust-dark); font-style: italic; }
.closing-signature { margin-top: 2.5rem !important; color: var(--muted); font: italic 500 1.25rem/1.45 var(--serif); }
footer { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; padding: 2.5rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
footer div { display: flex; flex-direction: column; }
footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .hero, .story, .community { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { width: min(100%, 620px); margin: 0 auto; }
  .story-heading { position: static; }
  .method { grid-template-columns: repeat(2, 1fr); }
  .community-art { order: 2; }
  footer { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .site-header { padding: 1rem 0; }
  .brand { font-size: .98rem; }
  .brand img { width: 40px; height: 40px; }
  .quiet-link { display: none; }
  .hero-art { min-height: 430px; }
  .hero-art > img { width: min(116%, 540px); aspect-ratio: 1; }
  .thought-one { left: 1%; top: 13%; }
  .thought-two { right: 0; top: 8%; }
  .thought-three { left: 1%; bottom: 1%; text-align: left; }
  .thought-four { right: 1%; bottom: 7%; }
  .recognition-line { grid-template-columns: 2.3rem 1fr; gap: .8rem; }
  .method { grid-template-columns: 1fr; }
  .method-card { min-height: 240px; }
  .price-line { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .price-line strong { font-size: 3.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* A real passage gives readers a feel for the journal before the story continues. */
.excerpt { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); background: var(--ink); color: var(--paper-light); }
.excerpt-heading h2 { font-size: clamp(2.8rem, 4.5vw, 4.5rem); }
.excerpt-heading .eyebrow { color: #d99b7c; }
.excerpt-heading > p:last-child { color: #d1c3b6; font-size: .88rem; max-width: 30ch; }
.journal-excerpt { margin: 0; padding-left: 1.5rem; border-color: #c37a56; font: 500 clamp(1.45rem, 2.2vw, 2rem)/1.4 var(--serif); }
.journal-excerpt p { margin: 0 0 1.3rem; }
.journal-excerpt p:last-child { margin-bottom: 0; }
.offer-letter h2 { max-width: 18ch; font-size: clamp(3rem, 5.5vw, 5.2rem); }
.questions { padding-top: 1rem; }
@media (max-width: 860px) { .excerpt { grid-template-columns: 1fr; } }
