/* ─────────────────────────────────────────────────────────────
   The Pause — shared stylesheet
   All typography is EB Garamond; hierarchy is created through
   weight, size, italic, and letter-spacing.
   ───────────────────────────────────────────────────────────── */

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

:root {
  --cream:         #EEE9DF;
  --cream-soft:    #E5DFD1;
  --cream-warm:    #DBD3BF;
  --linen:         #F3EEE3;
  --forest-deep:   #1F2A1E;
  --forest:        #324032;
  --forest-mid:    #5C6C57;
  --forest-lt:     #8A9A80;
  --ink:           #22271F;
  --ink-soft:      #4F554C;
  --ink-faint:     #7A7F74;
  --wood:          #8D5F3C;
  --wood-deep:     #6B4729;
  --rule:          rgba(34,39,31,0.15);
  --rule-on-dark:  rgba(238,233,223,0.18);
  --serif:         'EB Garamond', Garamond, Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  font-size: 20px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 10px 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
  z-index: 200;
}
.skip-link:focus { left: 12px; }

/* Visible focus for keyboard nav */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--wood);
  outline-offset: 3px;
}

/* ─── Page fade-in on load, fade-out on internal navigation ─── */
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageFadeIn 300ms ease-out both; }
body.leaving { opacity: 0; transition: opacity 200ms ease-in; }

/* ─── Scroll-reveal animations ─── */
.lift { opacity: 0; transform: translateY(36px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.lift.in { opacity: 1; transform: translateY(0); }
.soft { opacity: 0; transition: opacity 1.1s ease-out; }
.soft.in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lift, .soft { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ─── Nav ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s ease, padding 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
nav.site-nav.settled {
  background: rgba(238,233,223,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 64px;
  border-bottom-color: var(--rule);
}
nav.site-nav.solid {
  background: var(--cream);
  border-bottom-color: var(--rule);
  padding: 18px 64px;
}

.nav-word {
  font-family: var(--serif);
  font-size: 48px; font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1;
  color: rgba(240,236,226,1);
  text-decoration: none;
  transition: color 0.4s;
}
nav.site-nav.settled .nav-word,
nav.site-nav.solid .nav-word { color: var(--forest-deep); }

.nav-links {
  display: flex; gap: 44px; list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--serif);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(240,236,226,0.95);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-bottom-color 0.3s;
}
nav.site-nav.settled .nav-links a,
nav.site-nav.solid .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--wood); }
.nav-links a[aria-current="page"] { border-bottom-color: currentColor; }

/* Mobile nav toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none; border: 0;
  padding: 8px; margin: -8px;
  cursor: pointer;
  color: inherit;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ─── Numeral marker + section eyebrow ─── */
.num-rule {
  display: inline-flex; align-items: baseline; gap: 16px;
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; font-weight: 500;
  color: var(--forest-mid);
}
.num-rule::after {
  content: ''; display: block;
  width: 52px; height: 1px;
  background: var(--forest-lt);
  align-self: center;
  transform: translateY(3px);
}
.num-rule.on-dark { color: rgba(238,233,223,0.7); }
.num-rule.on-dark::after { background: rgba(238,233,223,0.35); }

.section-label {
  display: inline-block;
  font-family: var(--serif);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--wood);
  margin-top: 22px;
}

/* ─── Hero ─── */
.hero {
  position: relative; height: 100vh; min-height: 720px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.page-banner .hero-bg img { object-position: center 50%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(31,42,30,0.3) 0%,
      rgba(31,42,30,0.2) 40%,
      rgba(31,42,30,0.65) 100%),
    linear-gradient(to right,
      rgba(31,42,30,0.35) 0%,
      transparent 100%);
}
.hero-content {
  position: absolute;
  bottom: 100px;
  left: 80px;
  right: 80px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}
.hero-left { max-width: 760px; }
.hero-num {
  display: inline-flex; align-items: baseline; gap: 16px;
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; font-weight: 500;
  color: rgba(238,233,223,0.75);
  margin-bottom: 36px;
}
.hero-num::after {
  content: ''; width: 52px; height: 1px;
  background: rgba(238,233,223,0.55);
  align-self: center;
  transform: translateY(-2px);
}
.hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: rgba(240,236,226,0.98);
  letter-spacing: -0.005em;
  margin-bottom: 32px;
}
.hero-left p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  font-weight: 400; font-style: italic;
  color: rgba(240,236,226,0.82);
  line-height: 1.55;
  max-width: 640px;
}
.hero-meta {
  font-family: var(--serif); font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  color: rgba(238,233,223,0.82);
  text-align: right;
  line-height: 1.9;
}

/* ─── Section base ─── */
.sec { padding: 170px 64px; }

/* ─── Recognition ─── */
.recognition { background: var(--cream); }
.rec-inner { max-width: 1100px; margin: 0 auto; }
.rec-head {
  margin-bottom: 64px;
}
.rec-text { max-width: 780px; margin-left: 0; }
.rec-text p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.3em;
}
.rec-text p:last-child { margin-bottom: 0; }
.rec-text em {
  font-style: italic; font-weight: 500;
  color: var(--forest-deep);
}

/* A barely-there transition rule the eye treats as breath */
.quiet-rule {
  background: var(--cream);
  padding: 0 64px;
}
.quiet-rule hr {
  max-width: 1100px; margin: 0 auto;
  border: 0; border-top: 1px solid var(--rule);
  opacity: 0.6;
}

/* ─── Invitation ─── */
.invitation { background: var(--linen); }
.inv-inner { max-width: 1100px; margin: 0 auto; }
.inv-head { margin-bottom: 56px; max-width: 820px; }
.inv-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--forest-deep);
  letter-spacing: -0.005em;
  margin-top: 32px;
}
.inv-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.inv-body-text p {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.3em;
}
.experience-facts {
  display: flex; flex-direction: column;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fact-row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  gap: 24px;
}
.fact-row:not(:last-child) {
  border-bottom: 1px dashed rgba(34,39,31,0.09);
}
.fact-k {
  font-family: var(--serif);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint);
}
.fact-v {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; font-weight: 500;
  color: var(--forest-deep);
}

/* ─── Place ─── */
.place { background: var(--cream); padding: 170px 64px 140px; }
.place-inner { max-width: 1300px; margin: 0 auto; }
.place-head-wrap { max-width: 1100px; margin: 0 auto 64px; }
.place-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--forest-deep);
  letter-spacing: -0.015em;
  margin-top: 24px;
}
.place-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px; margin: 80px auto 0;
  align-items: start;
}
.place-columns p {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.3em;
}
.place-hero-img {
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}
.place-hero-img img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  object-position: center 45%;
}
.place-gallery {
  max-width: 1300px; margin: 12px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.place-gallery picture { display: block; }
.place-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ─── Arc ─── */
.arc { background: var(--forest-deep); padding: 200px 64px 180px; color: var(--cream); }
.arc-inner { max-width: 1100px; margin: 0 auto; }
.arc-head { max-width: 820px; margin-bottom: 120px; }
.arc-head .section-label { color: var(--forest-lt); }
.arc-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: rgba(238,233,223,0.94);
  letter-spacing: -0.005em;
  margin-top: 32px;
}
.arc-day { margin-bottom: 140px; }
.arc-day:last-of-type { margin-bottom: 0; }
.arc-day-img { overflow: hidden; margin-bottom: 56px; }
.arc-day-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.arc-day-body { max-width: 820px; }
.arc-day-label {
  display: inline-block;
  font-family: var(--serif);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--forest-lt);
  margin-top: 20px;
  margin-bottom: 20px;
}
.arc-day h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: rgba(238,233,223,0.96);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.arc-day p {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: rgba(238,233,223,0.72);
  max-width: 760px;
}
.arc-coda {
  margin-top: 140px;
  padding-top: 56px;
  border-top: 1px solid var(--rule-on-dark);
  max-width: 780px;
}
.arc-coda p {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(238,233,223,0.8);
}

/* ─── Guides (preview) ─── */
.guides { background: var(--cream-soft); padding: 180px 64px 160px; overflow-x: clip; }
.guides-inner { max-width: 1100px; margin: 0 auto; }
.guides-head { max-width: 820px; margin-bottom: 80px; }
.guides-photo {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 96px;
}
.guides-photo img {
  width: 100%;
  height: 62vh; min-height: 468px;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
.guides-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 400;
  line-height: 1.16;
  color: var(--forest-deep);
  letter-spacing: -0.005em;
  margin-top: 32px;
}
.guides-intro {
  max-width: 720px;
  margin: 0 auto 96px;
}
.guides-intro p {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.guides-detail .guides-intro { max-width: none; margin: 0 0 80px; }
.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 80px;
}
.bio h3 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--forest-deep);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.bio-role {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem;
  color: var(--wood);
  margin-bottom: 28px;
}
.bio p {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.bio p + p { margin-top: 1em; }
.guides-coda {
  padding: 64px 80px 56px;
  background: var(--cream);
  border: 1px solid var(--rule);
}
.guides-coda-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--forest-deep);
  text-align: center;
  margin-bottom: 32px;
}
.arrow-link {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--wood);
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}
.arrow-link:hover { gap: 22px; color: var(--wood-deep); }

/* ─── Insight (blockquote) ─── */
.insight { background: var(--ink); padding: 220px 64px; }
.insight-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}
.insight .section-label { color: var(--forest-lt); }
.insight blockquote {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.28;
  color: rgba(238,233,223,0.94);
  margin-bottom: 56px;
  letter-spacing: -0.005em;
}
.insight blockquote em {
  font-style: italic;
  color: rgba(238,233,223,1);
}
.insight p {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: rgba(238,233,223,0.62);
  margin-bottom: 1.3em;
  max-width: 740px;
}

/* ─── Door threshold ─── */
.threshold {
  background: var(--cream);
  padding: 140px 64px 0;
}
.threshold-inner {
  max-width: 1300px; margin: 0 auto;
  position: relative;
}
.threshold-img { overflow: hidden; aspect-ratio: 16/9; }
.threshold-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.threshold-text {
  position: absolute;
  left: 80px;
  bottom: 56px;
  max-width: 440px;
  z-index: 2;
}
.threshold-text p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.4rem;
  color: rgba(238,233,223,0.96);
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin-top: 20px;
}

/* ─── CTA — An Invitation ─── */
.cta {
  background: var(--cream);
  padding: 100px 64px 180px;
}
.cta-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.cta-label {
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: 1.35rem; font-weight: 500;
  color: var(--wood);
  margin-bottom: 40px;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--forest-deep);
  letter-spacing: -0.015em;
  margin-bottom: 56px;
}
.cta-meta {
  font-family: var(--serif);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--forest);
  line-height: 2.5;
  margin-bottom: 64px;
}
.cta-btn {
  display: inline-block;
  padding: 20px 60px;
  background: var(--forest-deep);
  color: rgba(238,233,223,0.96);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  transition: background 0.3s;
  border: 0; cursor: pointer;
}
.cta-btn:hover { background: var(--wood-deep); }

/* ─── Footer ─── */
footer.site-footer {
  background: var(--forest-deep);
  padding: 90px 64px 56px;
  color: rgba(238,233,223,0.55);
  text-align: center;
}
.footer-word {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: rgba(238,233,223,0.9);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 30px;
}
footer.site-footer p {
  font-size: 14px; line-height: 2;
  letter-spacing: 0.02em;
}
footer.site-footer a { color: rgba(238,233,223,0.72); text-decoration: none; }
footer.site-footer a:hover { color: var(--wood); }

/* ═════════════════════════════════════════════════════════════
   INTERIOR PAGES
   ═════════════════════════════════════════════════════════════ */

/* Shared banner (shorter than hero) */
.page-banner {
  position: relative;
  height: 48vh;
  min-height: 360px;
  overflow: hidden;
}
.page-banner .hero-bg { background-position: center 50%; }
.page-banner .hero-overlay {
  background: linear-gradient(180deg, rgba(31,42,30,0.35) 0%, rgba(31,42,30,0.55) 100%);
}
.page-banner--guides {
  height: 62vh;
  min-height: 468px;
}
.page-banner--guides .hero-overlay {
  background: linear-gradient(180deg, rgba(31,42,30,0.245) 0%, rgba(31,42,30,0.385) 100%);
}
.page-banner-text {
  position: absolute;
  bottom: 56px;
  left: 80px;
  right: 80px;
  z-index: 2;
  max-width: 820px;
}
.page-banner-text .num-rule { color: rgba(238,233,223,0.7); }
.page-banner-text .num-rule::after { background: rgba(238,233,223,0.4); }
.page-banner-text .section-label { color: rgba(221,195,165,0.95); }
.page-banner-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: rgba(240,236,226,0.98);
  letter-spacing: -0.005em;
  margin-top: 28px;
}
.page-banner-text p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  color: rgba(240,236,226,0.82);
  line-height: 1.55;
  margin-top: 20px;
  max-width: 640px;
}

/* Long-form content (experience, guides detail) */
.page-body {
  background: var(--cream);
  padding: 140px 64px 160px;
}
.page-body-inner {
  max-width: 760px; margin: 0 auto;
}
.page-body-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 400;
  color: var(--forest-deep);
  letter-spacing: -0.005em;
  margin-top: 3em;
  margin-bottom: 0.6em;
}
.page-body-inner h2:first-of-type { margin-top: 0; }
.page-body-inner p {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.2em;
}
.page-body-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
}
.page-body-inner ul li {
  position: relative;
  padding-left: 26px;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0.5em;
}
.page-body-inner ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.82em;
  width: 14px; height: 1px;
  background: var(--forest-lt);
}
.page-body-inner em { font-style: italic; color: var(--forest-deep); }

/* Inline figure inside page-body */
.page-figure {
  margin: 64px -32px;
  overflow: hidden;
}
.page-figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.page-figure figcaption {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
  margin-top: 10px;
}

/* Guides detail — wider body for two bios */
.guides-detail { padding: 140px 64px 160px; background: var(--cream); }
.guides-detail-inner { max-width: 880px; margin: 0 auto; }
.guides-detail .bio-block { margin-bottom: 100px; }
.guides-detail .bio-block:last-child { margin-bottom: 0; }
.guides-detail .bio-block h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 400;
  color: var(--forest-deep);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.guides-detail .bio-block .bio-role {
  margin-bottom: 28px;
}
.guides-detail .bio-block p {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.2em;
}
.guides-detail .together {
  margin-top: 120px;
  padding: 48px 64px;
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  text-align: center;
}
.guides-detail .together p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-style: italic;
  color: var(--forest-deep);
  line-height: 1.4;
}

/* ─── Book / form ─── */
.form-intro { margin-bottom: 56px; }
.form-intro p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1em;
}
.inquiry-form { display: flex; flex-direction: column; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--serif);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint);
}
.field input,
.field textarea {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  line-height: 1.5;
  transition: border-color 0.3s;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.65;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--forest-deep);
}
.field-check label {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  cursor: pointer;
}
.field-check input[type="checkbox"] {
  margin-top: 5px;
  width: 18px; height: 18px;
  accent-color: var(--forest-deep);
  flex-shrink: 0;
  cursor: pointer;
}
.field-radio-group { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.field .field-radio {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.55;
  color: var(--ink);
  cursor: pointer;
}
.field .field-radio input[type="radio"] {
  margin-top: 5px;
  width: 18px; height: 18px;
  accent-color: var(--forest-deep);
  flex-shrink: 0;
  cursor: pointer;
}

/* honeypot — invisible to users, not to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-submit { margin-top: 20px; align-self: flex-start; }
.form-submit[disabled] { opacity: 0.6; cursor: wait; }

/* Inline error — kept quiet, not an alert banner */
.form-error {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--wood-deep);
  margin-top: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--wood);
}
.form-error a { color: inherit; text-decoration: underline; text-decoration-color: var(--rule); }

/* Inline confirmation — reads as natural prose, not a success banner */
.form-confirm {
  padding: 56px 0 24px;
  outline: none;
}
.form-confirm h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--forest-deep);
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}
.form-confirm p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.2em;
  max-width: 620px;
}
.form-confirm .form-confirm-meta {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 2em;
}

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem;
  color: var(--wood);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-answer {
  padding: 0 0 26px;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
}
.faq-item .faq-answer p + p { margin-top: 0.9em; }

/* ═════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  body { font-size: 18.5px; }
  nav.site-nav, nav.site-nav.settled, nav.site-nav.solid { padding: 20px 24px; }
  .nav-word { font-size: 42px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 13px; letter-spacing: 0.22em; }

  .sec, .place, .arc, .guides, .insight, .cta, .threshold, .quiet-rule {
    padding-left: 24px; padding-right: 24px;
  }
  .sec { padding-top: 110px; padding-bottom: 110px; }
  .place, .arc, .guides, .insight { padding-top: 120px; padding-bottom: 120px; }
  .arc-day { margin-bottom: 96px; }
  .arc-head { margin-bottom: 72px; }
  .arc-coda { margin-top: 96px; }

  .hero { min-height: 620px; }
  .hero-content { left: 24px; right: 24px; bottom: 60px; grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { text-align: left; }

  .inv-body, .place-columns, .guides-grid, .insight-inner {
    grid-template-columns: 1fr; gap: 40px;
  }
  .place-gallery { grid-template-columns: 1fr 1fr; }
  .guides-photo { margin-bottom: 64px; }
  .guides-photo img { height: 55vh; min-height: 416px; }
  .threshold-text {
    position: static; padding: 32px 0 0; max-width: 100%;
  }
  .threshold-text p { color: var(--forest-deep); }
  .guides-coda { padding: 40px 28px; }

  .page-banner { min-height: 320px; height: 42vh; }
  .page-banner--guides { min-height: 416px; height: 55vh; }
  .page-banner-text { left: 24px; right: 24px; bottom: 36px; }
  .page-body, .guides-detail { padding: 90px 24px 110px; }
  .page-figure { margin-left: -24px; margin-right: -24px; }
  .guides-detail .together { padding: 40px 24px; }
  .guides-detail .bio-block { margin-bottom: 72px; }

  footer.site-footer { padding: 64px 24px 44px; }

  /* Mobile nav toggle */
  .nav-toggle { display: inline-flex; color: rgba(238,233,223,0.95); }
  nav.site-nav.settled .nav-toggle,
  nav.site-nav.solid .nav-toggle { color: var(--forest-deep); }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 360px); height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 96px 32px 32px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  }
  .nav-links a { color: var(--ink); font-size: 15px; }
  nav.site-nav[data-menu="open"] .nav-links { transform: translateX(0); }
  /* While the drawer is open, force the nav bar into its settled look
     so the toggle icon stays visible against the cream drawer. */
  nav.site-nav[data-menu="open"] {
    background: rgba(238,233,223,0.95);
    border-bottom-color: var(--rule);
  }
  nav.site-nav[data-menu="open"] .nav-word,
  nav.site-nav[data-menu="open"] .nav-toggle { color: var(--forest-deep); }
  body[data-menu-open="true"] { overflow: hidden; }
}

@media (max-width: 560px) {
  body { font-size: 17.5px; }
  .hero-left h1 { font-size: 2.3rem; }
  .place-gallery { grid-template-columns: 1fr; }
  .insight blockquote { font-size: 1.7rem; }
  .cta h2 { font-size: 2.2rem; }
  .footer-word { font-size: 2rem; }
  .page-banner-text h1 { font-size: 2rem; }
  .faq-item summary { font-size: 1.12rem; }
}
