@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@0;1&family=Source+Sans+3:wght@300;400;500;600&display=swap");

:root {
  --ink: #0b1014;
  --navy: #08141e;
  --charcoal: #171b1d;
  --charcoal-soft: #22282b;
  --warm-gray: #a5a199;
  --silver: #c9cac7;
  --paper: #efede7;
  --blue-gray: #72808a;
  --line: rgba(239, 237, 231, .18);
  --display: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --content-max: 100rem;
  --reading-max: 43.75rem;
  --wide-text-max: 56.25rem;
  --section-gap: clamp(6rem, 10vw, 12rem);
  --content: 84rem;
  --chapter-space: clamp(7rem, 14vw, 13rem);
  --ease: 650ms cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: var(--sans); font-size: 1.08rem; font-weight: 300; line-height: 1.68; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 100; padding: .65rem 1rem; background: var(--paper); color: var(--ink); transform: translateY(-160%); transition: transform 180ms ease; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--paper); outline-offset: 5px; }

/* Masthead */
.site-header { position: fixed; inset: 0 0 auto; z-index: 20; display: flex; align-items: center; justify-content: space-between; min-height: 5.25rem; padding: .7rem var(--gutter); background: rgba(8, 20, 30, .84); border-bottom: 1px solid transparent; transition: background var(--ease), border-color var(--ease); }
.site-header.is-scrolled { background: rgba(8, 20, 30, .96); border-color: var(--line); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: .9rem; font-family: var(--display); font-size: 1rem; letter-spacing: .09em; }
.compass { display: block; object-fit: contain; image-rendering: auto; }
.compass-header { width: 2.9rem; height: 2.9rem; }
.primary-nav { display: flex; gap: clamp(1.25rem, 2.6vw, 2.75rem); align-items: center; font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.primary-nav a, .quiet-link { position: relative; }
.primary-nav a::after, .quiet-link::after { content: ""; position: absolute; inset: auto 0 -.4rem; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 300ms ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after, .quiet-link:hover::after, .quiet-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.primary-nav a[aria-current="page"] { color: var(--paper); }
.primary-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -.8rem;
  width: .3rem;
  height: .3rem;
  border: 1px solid var(--silver);
  border-radius: 50% 50% 50% 0;
  opacity: .82;
  transform: translateY(-58%) rotate(-45deg);
}
.menu-toggle { display: none; }

/* Shared editorial language */
.chapter { position: relative; }
.chapter-copy { position: relative; z-index: 2; max-width: 39rem; }
.chapter-label { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.4rem; color: var(--silver); font-size: .7rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.chapter-label span { color: var(--blue-gray); }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.16; letter-spacing: -.03em; text-wrap: balance; }
h2 { font-size: clamp(2.6rem, 5vw, 5.25rem); }
.chapter-copy > p:not(.chapter-label), .expression-copy > p:not(.chapter-label) { margin: 2rem 0; color: var(--silver); }
.aside-copy { padding-left: 1.25rem; border-left: 1px solid var(--blue-gray); font-family: var(--display); font-size: .95rem; font-style: italic; line-height: 1.7; }
.quiet-link { display: inline-flex; gap: .85rem; align-items: center; color: var(--paper); font-size: .74rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

/* 01 — Curiosity */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; padding: 9rem var(--gutter) 5rem; }
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image { background: #27323a url("../assets/images/Hero_Home.png") center 58% / cover no-repeat; transform: scale(1.03); animation: hero-drift 18s ease-out both; }
.hero-shade { background: linear-gradient(90deg, rgba(5, 14, 22, .9), rgba(5, 14, 22, .55) 55%, rgba(5, 14, 22, .2)), linear-gradient(0deg, rgba(5, 14, 22, .5), transparent 55%); }
.hero-content { position: relative; z-index: 2; max-width: 57rem; }
.hero h1 { max-width: 23ch; font-size: clamp(2.7rem, 4.5vw, 4.8rem); line-height: 1.26; }
.hero h1 span { display: block; }
.hero-rule { display: block; width: 4rem; height: 1px; margin: 1.8rem 0; background: var(--silver); }
.hero-content > p:last-child { max-width: 34rem; margin: 0; color: var(--silver); }
.scroll-cue { position: absolute; right: var(--gutter); bottom: 2.75rem; z-index: 2; display: flex; gap: 1rem; color: var(--silver); font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }

/* 02 — Experience */
.chapter-experience { min-height: 92svh; display: flex; align-items: end; overflow: hidden; padding: var(--chapter-space) var(--gutter) clamp(5rem, 10vw, 9rem); }
.experience-image, .image-wash { position: absolute; inset: 0; }
.experience-image { background: #31393d url("../assets/images/Hero_Experience.png") center / cover no-repeat; transition: transform 1.2s ease; }
.chapter-experience.is-visible .experience-image { transform: scale(1.025); }
.image-wash { background: linear-gradient(0deg, rgba(8, 14, 18, .78), rgba(8, 14, 18, .06) 72%), linear-gradient(90deg, rgba(8, 14, 18, .34), transparent 62%); }
.chapter-copy-over-image { max-width: 48rem; }
.chapter-copy-over-image h2 { max-width: 15ch; }
.chapter-copy-over-image > p:not(.chapter-label) { max-width: 34rem; color: var(--paper); }
.chapter-copy-over-image .experience-observation { margin-top: 1.2rem; font-family: var(--display); font-size: clamp(1rem, 1.5vw, 1.25rem); font-style: italic; }

/* 03 — Ideas */
.chapter-ideas { max-width: var(--content); margin-inline: auto; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(3rem, 9vw, 10rem); padding: var(--chapter-space) var(--gutter); }
.ideas-image { min-height: clamp(38rem, 62vw, 58rem); background: #293137 url("../assets/images/Hero_Ideas.png") center / cover no-repeat; }

/* 04 — Expression */
.chapter-expression { min-height: 90svh; display: grid; align-items: center; overflow: hidden; padding: var(--chapter-space) var(--gutter); }
.expression-image { position: absolute; inset: 0; background: #20272c url("../assets/images/Hero_Expressions.png") center / cover no-repeat; }
.expression-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 12, 17, .25), rgba(6, 12, 17, .88) 65%); }
.expression-copy { position: relative; z-index: 2; width: min(42rem, 50vw); margin-left: auto; padding: clamp(2rem, 5vw, 5rem); background: rgba(10, 16, 20, .88); }

/* 05 — Impact */
.chapter-impact { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(22rem, .8fr); align-items: center; gap: clamp(3rem, 8vw, 9rem); padding: 0 var(--gutter) 0 0; background: var(--paper); color: var(--ink); }
.impact-image { min-height: 58rem; background: #737875 url("../assets/images/Hero_WorkWith.png") center / cover no-repeat; }
.chapter-impact .chapter-label, .chapter-impact .chapter-copy > p:not(.chapter-label) { color: #4f5758; }
.chapter-impact .quiet-link { color: var(--ink); }
.chapter-impact .aside-copy { border-color: #77858b; }

/* 06 — Still exploring */
.chapter-still { max-width: var(--content); min-height: 85svh; margin-inline: auto; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 10vw, 11rem); padding: var(--chapter-space) var(--gutter); }
.still-mark { display: grid; place-items: center; }
.compass-still { width: min(100%, 27rem); height: auto; opacity: .72; }
.chapter-still h2 { max-width: 15ch; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; padding: 3rem var(--gutter); border-top: 1px solid var(--line); color: var(--warm-gray); font-size: .78rem; letter-spacing: .06em; }
.footer-brand { color: var(--paper); }

/* Motion */
.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity var(--ease), transform var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes hero-drift { from { transform: scale(1.08); } to { transform: scale(1.03); } }

/* Secondary-page placeholders */
.placeholder-page { min-height: 100svh; display: grid; align-content: center; justify-items: start; gap: 1rem; max-width: 60rem; padding: var(--gutter); margin-inline: auto; }
.placeholder-page h1 { font-size: clamp(3.5rem, 10vw, 8rem); }
.placeholder-page p:not(.chapter-label) { color: var(--silver); }
.placeholder-page .eyebrow { color: var(--silver); font-size: .72rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.text-link { display: inline-flex; gap: .75rem; font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

@media (max-width: 900px) {
  .primary-nav { gap: 1.25rem; }
  .chapter-ideas { grid-template-columns: .95fr 1.05fr; gap: 3rem; }
  .chapter-impact { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
}

@media (max-width: 760px) {
  :root { --chapter-space: 7rem; }
  .site-header { min-height: 4.75rem; }
  .menu-toggle { display: grid; place-items: center; width: 3rem; height: 3rem; padding: 0; border: 0; background: transparent; color: var(--paper); cursor: pointer; }
  .menu-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-lines, .menu-lines::before { display: block; width: 1.45rem; height: 1px; background: currentColor; transition: transform 250ms ease; }
  .menu-lines::before { content: ""; transform: translateY(-.45rem); }
  .menu-toggle[aria-expanded="true"] .menu-lines { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines::before { transform: rotate(-90deg); }
  .primary-nav { position: fixed; inset: 0; z-index: -1; flex-direction: column; justify-content: center; gap: 1.7rem; background: var(--navy); font-family: var(--display); font-size: clamp(1.55rem, 7vw, 2.7rem); font-weight: 400; letter-spacing: 0; text-transform: none; opacity: 0; visibility: hidden; transition: opacity 250ms ease, visibility 250ms; }
  .primary-nav.is-open { opacity: 1; visibility: visible; }
  .hero { min-height: 95svh; align-items: end; padding: 8rem var(--gutter) 7rem; }
  .hero h1 { font-size: clamp(2.25rem, 8vw, 3.9rem); line-height: 1.3; }
  .hero-shade { background: linear-gradient(0deg, rgba(5, 14, 22, .88), rgba(5, 14, 22, .25) 78%); }
  .scroll-cue { left: var(--gutter); right: auto; bottom: 2rem; }
  .chapter-experience { min-height: 78svh; }
  .chapter-ideas { grid-template-columns: 1fr; }
  .ideas-image { min-height: 80vw; order: -1; }
  .chapter-expression { min-height: 48rem; align-items: end; padding: 0; }
  .expression-image::after { background: linear-gradient(0deg, rgba(6, 12, 17, .9), rgba(6, 12, 17, .15) 75%); }
  .expression-copy { width: calc(100% - 2 * var(--gutter)); margin: 0 var(--gutter) var(--gutter); padding: 2rem; }
  .chapter-impact { grid-template-columns: 1fr; padding: 0 0 var(--chapter-space); }
  .impact-image { min-height: 86vw; }
  .chapter-impact .chapter-copy { padding-inline: var(--gutter); }
  .chapter-still { grid-template-columns: 1fr; min-height: auto; }
  .still-mark { justify-content: start; }
  .compass-still { width: 12rem; }
  .site-footer { grid-template-columns: 1fr; gap: .5rem; }
  .site-footer p { margin: 0; }
}

/* Finished Experience branch */
.opening-prose { padding-top: clamp(5rem, 9vw, 8rem); }
.opening-prose > p:first-child, .story-opening > p:first-child { font-family: var(--display); font-size: clamp(1.45rem, 2.5vw, 2rem); color: var(--paper); }
.pull-quote--contained { margin-left: 0; margin-right: 0; padding-inline: 0; text-align: left; }
.experience-stories { max-width: none; padding-inline: 0; }
.story-preview--immersive { max-width: var(--content); margin-inline: auto; padding-inline: var(--gutter); }
.story-preview--immersive .story-preview__image { display: block; aspect-ratio: 4 / 3; min-height: 0; background-position: center; }
.story-preview--immersive .story-preview__content { padding-block: 2rem; }
.story-preview--immersive .prose p { margin-bottom: .65rem; }
.story-preview--immersive h2 { margin-bottom: 1.75rem; }
.story-enter { display: inline-block; min-height: 2.75rem; margin-top: 1rem; }
.experience-closing { padding-top: 4rem; }

.story-hero { min-height: min(88svh, 60rem); }
.story-page--trees .story-hero .page-hero__image { background-position: center 58%; }
.story-page--storm .story-hero .page-hero__image { background-position: center; }
.story-page--hotel .story-hero .page-hero__image { background-position: center 55%; }
.story-body { max-width: 48rem; margin-inline: auto; padding: clamp(5rem, 10vw, 9rem) var(--gutter); }
.story-opening { margin-bottom: clamp(6rem, 12vw, 11rem); }
.story-section { margin-block: clamp(6rem, 12vw, 11rem); }
.story-section h2 { max-width: 18ch; margin-bottom: 2.5rem; font-size: clamp(2.1rem, 4.2vw, 4.25rem); }
.story-section p, .story-opening p { margin-bottom: 1.25rem; }
.story-section p + p, .story-opening p + p { margin-top: 0; }
.emphasis-line { margin-block: 2rem !important; color: var(--paper) !important; font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.standalone-line { margin-block: clamp(4rem, 9vw, 7rem) !important; color: var(--paper) !important; font-family: var(--display); font-size: clamp(2.4rem, 6vw, 5.7rem); line-height: 1.15; }
.dialogue { margin-block: 1.75rem !important; padding-left: 1.25rem; border-left: 1px solid var(--blue-gray); color: var(--paper) !important; font-family: var(--display); font-size: clamp(1.25rem, 2.4vw, 1.8rem); }
.story-figure { margin: clamp(4rem, 9vw, 8rem) 0; overflow: hidden; background: var(--charcoal-soft); }
.story-figure img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); }
.story-figure--wide { width: min(90vw, 76rem); aspect-ratio: 16 / 9; margin-left: 50%; transform: translateX(-50%); }
.story-figure--backyard { width: min(100%, 36rem); aspect-ratio: 4 / 3; margin-left: 0; }
.story-figure--backyard img { object-fit: contain; filter: saturate(.78) contrast(1.02); }
.story-closing { padding-top: clamp(4rem, 8vw, 7rem); border-top: 1px solid var(--line); }
.story-page--hotel .story-section { margin-block: clamp(4.5rem, 8vw, 7rem); }
.story-page--hotel .story-section p { margin-bottom: .9rem; }
.story-page .reflection { margin-top: clamp(7rem, 13vw, 12rem); }

@media (max-width: 760px) {
  .story-hero { min-height: 72svh; }
  .story-hero .page-hero__image { background-position: center; }
  .story-preview--immersive { gap: 2rem; }
  .story-preview--immersive .story-preview__image { aspect-ratio: 4 / 3; min-height: 0; }
  .story-body { padding-top: 5rem; }
  .story-section { margin-block: 6rem; }
  .story-section h2 { font-size: clamp(2rem, 9vw, 3.1rem); }
  .story-figure--wide { width: calc(100vw - 2 * var(--gutter)); aspect-ratio: 4 / 3; }
  .standalone-line { font-size: clamp(2.3rem, 12vw, 4rem); }
}

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

/* Experience: wide editorial canvas above the mobile breakpoint */
@media (min-width: 761px) {
  .experience-stories { padding-block: clamp(6rem, 10vw, 10rem); }
  .story-preview--immersive { grid-template-columns: minmax(0, 1.35fr) minmax(20rem, .65fr); max-width: 87.5rem; gap: clamp(3.5rem, 7vw, 8rem); padding-block: clamp(3rem, 6vw, 6rem); }
  .story-preview--immersive:nth-child(even) { grid-template-columns: minmax(20rem, .65fr) minmax(0, 1.35fr); }
  .story-preview--immersive .story-preview__image { aspect-ratio: 16 / 11; }
  .story-preview--immersive .story-preview__content { max-width: 38rem; }

  .story-body { max-width: 87.5rem; padding-inline: var(--gutter); }
  .story-opening { width: min(100%, 45rem); }
  .story-page--trees .story-opening, .story-page--hotel .story-opening { margin-left: clamp(0rem, 7vw, 6rem); }
  .story-page--storm .story-opening { margin-left: auto; margin-right: clamp(0rem, 6vw, 5rem); }

  .story-section { display: grid; grid-template-columns: minmax(16rem, .68fr) minmax(0, 1.32fr); column-gap: clamp(3.5rem, 8vw, 9rem); align-items: start; max-width: 100%; padding-block: clamp(2.5rem, 5vw, 5rem); }
  .story-section > h2 { grid-column: 1; grid-row: 1 / span 100; margin: 0; }
  .story-section > p { grid-column: 2; width: min(100%, 45rem); }
  .story-section:nth-of-type(even) { grid-template-columns: minmax(0, 1.32fr) minmax(16rem, .68fr); }
  .story-section:nth-of-type(even) > h2 { grid-column: 2; }
  .story-section:nth-of-type(even) > p { grid-column: 1; justify-self: end; }
  .story-section:nth-of-type(3n + 2) { background: rgba(114, 128, 138, .055); box-shadow: 0 0 0 100vmax rgba(114, 128, 138, .055); clip-path: inset(0 -100vmax); }
  .story-section > .pull-quote, .story-section > .story-figure, .story-section > .standalone-line { grid-column: 1 / -1; width: min(100%, 68rem); justify-self: center; }
  .story-section > .pull-quote { margin-block: clamp(4rem, 7vw, 7rem); text-align: center; }
  .story-section > .standalone-line { max-width: 75rem; width: 100%; }
  .story-section > .story-figure--backyard { width: min(100%, 48rem); justify-self: start; }
  .story-figure--wide { width: min(94vw, 86rem); }
  .story-page .reflection { max-width: 62rem; }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .story-preview--immersive, .story-preview--immersive:nth-child(even) { grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr); gap: 3rem; }
  .story-preview--immersive:nth-child(even) { grid-template-columns: minmax(18rem, .85fr) minmax(0, 1.15fr); }
  .story-section, .story-section:nth-of-type(even) { grid-template-columns: minmax(13rem, .62fr) minmax(0, 1.38fr); column-gap: 3.5rem; }
  .story-section:nth-of-type(even) { grid-template-columns: minmax(0, 1.38fr) minmax(13rem, .62fr); }
}

/* Shared V1 editorial pages */
.editorial-page { background: var(--ink); }
.editorial-shell { width: min(90vw, var(--content-max)); margin-inline: auto; }
.editorial-reading { width: min(100%, var(--reading-max)); }
.editorial-wide { width: min(90vw, var(--content-max)); margin-inline: auto; }
.editorial-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .75fr); gap: clamp(3rem, 6vw, 7rem); align-items: center; }
.editorial-split--reverse { grid-template-columns: minmax(20rem, .75fr) minmax(0, 1.05fr); }
.editorial-statement { width: min(100%, 62.5rem); max-width: none; font-size: clamp(3.5rem, 5.2vw, 6rem); line-height: 1.16; }
.editorial-image { width: 100%; background-position: center; background-size: cover; }
.editorial-image--wide { min-height: clamp(32rem, 42vw, 48rem); }
.page-hero { position: relative; min-height: min(78svh, 54rem); display: grid; align-items: end; overflow: hidden; padding: 9rem var(--gutter) clamp(4rem, 9vw, 7rem); background: var(--charcoal-soft); }
.page-hero--compact { min-height: 58svh; }
.page-hero__image, .page-hero__wash { position: absolute; inset: 0; }
.page-hero__image { background-position: center; background-size: cover; }
.page-hero__wash { background: linear-gradient(0deg, rgba(7, 13, 17, .92), rgba(7, 13, 17, .18) 72%), linear-gradient(90deg, rgba(7, 13, 17, .48), transparent 65%); }
.page-hero__content { position: relative; z-index: 1; max-width: 53rem; }
.page-eyebrow { margin: 0 0 1.25rem; color: var(--silver); font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.page-hero h1 { max-width: 18ch; font-size: clamp(3rem, 6.5vw, 6.6rem); }
.page-opening { max-width: 42rem; margin: 2rem 0 0; color: var(--silver); font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.editorial-section { max-width: var(--content); margin-inline: auto; padding: clamp(5.5rem, 11vw, 10rem) var(--gutter); }
.editorial-section--narrow { max-width: 58rem; }
.editorial-section--light { max-width: none; background: var(--paper); color: var(--ink); }
.section-inner { max-width: var(--content); margin-inline: auto; }
.section-heading { max-width: 17ch; font-size: clamp(2.35rem, 4.5vw, 4.8rem); }
.prose { max-width: 45rem; }
.prose p { margin: 0 0 1.6rem; color: var(--silver); }
.editorial-section--light .prose p { color: #4f5758; }
.editorial-placeholder { padding-left: 1.15rem; border-left: 1px solid var(--blue-gray); color: var(--warm-gray); font-style: italic; }
.pull-quote { max-width: 55rem; margin: clamp(4rem, 8vw, 8rem) auto; padding: 0 var(--gutter); font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3.8rem); line-height: 1.38; text-align: center; }
.observation { max-width: 32rem; margin: 4rem 0 4rem auto; padding: 1.5rem 0 1.5rem 1.5rem; border-left: 1px solid var(--blue-gray); color: var(--silver); }
.reflection { max-width: 48rem; margin: 5rem auto 0; padding-top: 2.5rem; border-top: 1px solid var(--line); text-align: center; }
.reflection p:last-child { font-family: var(--display); font-size: clamp(1.35rem, 2.6vw, 2.2rem); }

.story-list, .idea-sequence, .form-sequence { display: grid; gap: clamp(5rem, 10vw, 9rem); margin-top: clamp(4rem, 8vw, 7rem); }
.story-preview { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.story-preview:nth-child(even) .story-preview__image { order: 2; }
.story-preview__image { min-height: clamp(22rem, 45vw, 38rem); background: var(--charcoal-soft); background-position: center; background-size: cover; }
.story-preview__content { max-width: 34rem; }
.story-preview h2, .idea-section h2, .form-section h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
.story-note { color: var(--blue-gray); font-size: .8rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.idea-section, .form-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 8vw, 8rem); padding-bottom: clamp(4rem, 8vw, 7rem); border-bottom: 1px solid var(--line); }
.idea-section:last-child, .form-section:last-child { border-bottom: 0; }
.idea-question { margin: 0 0 1.75rem; font-family: var(--display); font-size: clamp(1.35rem, 2.5vw, 2.2rem); line-height: 1.45; }

.principle-trigger { display: inline-flex; align-items: center; gap: .35rem; padding: .15rem 0; border: 0; background: transparent; color: inherit; font: inherit; font-weight: 600; cursor: pointer; }
.principle-trigger::after { content: ""; width: .9rem; height: .9rem; flex: 0 0 auto; background: url("../assets/images/Logo.png") center / contain no-repeat; }
.principle-trigger:hover { color: var(--paper); }
.principle-trigger:focus-visible, .principle-close:focus-visible, .principle-actions a:focus-visible { outline: 2px solid var(--paper); outline-offset: .3rem; }
.internal-link { font-weight: 600; text-decoration: underline; text-decoration-color: rgba(201, 202, 199, .42); text-decoration-thickness: 1px; text-underline-offset: .28em; }
.quiet-link.internal-link { text-decoration: none; }
.external-link { font-weight: 600; }
.principle-popup { position: fixed; z-index: 80; width: clamp(21.25rem, 28vw, 26.25rem); max-height: calc(100svh - 2.5rem); overflow: auto; padding: 2rem; background: #151c21; border: 1px solid rgba(201, 202, 199, .2); border-radius: .25rem; box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, .42); }
.principle-popup[hidden] { display: none; }
.principle-close { position: absolute; top: .65rem; right: .75rem; display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--paper); font-size: 1.65rem; line-height: 1; cursor: pointer; }
.principle-close:hover { border-color: var(--line); background: rgba(255, 255, 255, .04); }
.principle-icon { display: block; width: 3.5rem; height: 3.5rem; margin: 0 0 1rem; object-fit: contain; }
.principle-kicker { margin: 0 0 .65rem; color: var(--blue-gray); font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.principle-popup h2 { margin-bottom: 1rem; padding-right: 2rem; font-family: var(--display); font-size: 1.65rem; }
.principle-short { color: var(--paper); font-family: var(--sans); font-size: 1.05rem; font-weight: 500; line-height: 1.55; }
.principle-expanded { color: var(--silver); font-size: .95rem; }
.principle-actions { display: grid; gap: .85rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-family: var(--sans); }
.principle-actions a { width: fit-content; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.principle-field-guide { color: var(--blue-gray); text-decoration: none; }
.principle-field-guide:hover { color: var(--paper); }

.contextual-exits { border-top: 1px solid var(--line); }
.contextual-exits__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.5rem; background: var(--line); }
.contextual-exit { min-height: 11rem; padding: 2rem; background: var(--ink); transition: background 250ms ease; }
.contextual-exit:hover, .contextual-exit:focus-visible { background: var(--charcoal-soft); }
.contextual-exit span { display: block; margin-bottom: 1rem; color: var(--blue-gray); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.contextual-exit strong { font-family: var(--display); font-size: 1.35rem; font-weight: 400; }

.site-footer--full { grid-template-columns: 1fr auto; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem 1.7rem; }
.footer-nav a { min-height: 2.75rem; display: inline-flex; align-items: center; }
.footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid var(--line); }

.speaking-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.talk-title { font-family: var(--display); font-size: clamp(2rem, 4vw, 4rem); line-height: 1.25; }
.talk-subtitle { color: var(--silver); font-size: 1.25rem; }
.credential-block { max-width: 48rem; }
.qr-forward { min-height: 100svh; display: grid; place-items: center; padding: 2rem; background: var(--navy); color: var(--paper); text-align: center; }

@media (max-width: 760px) {
  .page-hero { min-height: 70svh; padding-top: 8rem; }
  .page-hero--compact { min-height: 55svh; }
  .story-preview, .idea-section, .form-section, .speaking-feature { grid-template-columns: 1fr; }
  .story-preview:nth-child(even) .story-preview__image { order: 0; }
  .story-preview__image { min-height: 72vw; }
  .principle-trigger { min-height: 2.75rem; }
  .principle-popup { inset: auto .5rem .5rem !important; width: calc(100% - 1rem); max-height: min(78svh, 42rem); padding: 1.75rem var(--gutter) calc(1.75rem + env(safe-area-inset-bottom)); border-width: 1px; border-radius: 1rem; }
  .principle-icon { width: 3rem; height: 3rem; }
  body.principle-open::before { content: ""; position: fixed; inset: 0; z-index: 79; background: rgba(0, 0, 0, .52); }
  .contextual-exits__links { grid-template-columns: 1fr; }
  .contextual-exit { min-height: auto; }
  .site-footer--full { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .footer-meta { flex-direction: column; gap: .35rem; }
  .site-header > .brand + .primary-nav { position: static; z-index: auto; flex-direction: row; justify-content: flex-start; max-width: 62vw; margin-left: auto; overflow-x: auto; background: transparent; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; opacity: 1; visibility: visible; scrollbar-width: none; }
  .site-header > .brand + .primary-nav::-webkit-scrollbar { display: none; }
}

@media (min-width: 761px) {
  .story-page .story-section { max-width: 100%; }
}

/* Reusable cinematic editorial canvas, established on Experience */
.experience-landing .opening-prose,
.experience-landing .experience-closing {
  width: min(90vw, var(--content-max));
  max-width: none;
  padding-inline: 0;
}

.experience-landing .opening-prose > p,
.experience-landing .experience-closing > p {
  width: min(100%, var(--reading-max));
}

.experience-landing .opening-prose > p:first-child {
  width: min(100%, var(--wide-text-max));
}

.experience-landing .pull-quote--contained {
  width: min(100%, 62.5rem);
  max-width: none;
  margin-block: var(--section-gap);
  font-size: clamp(3rem, 5.2vw, 6rem);
  line-height: 1.16;
}

.experience-landing .experience-stories {
  display: grid;
  width: min(90vw, var(--content-max));
  max-width: none;
  gap: var(--section-gap);
  padding-inline: 0;
}

.experience-landing .story-preview--immersive {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.experience-landing .story-preview--immersive .story-preview__content {
  max-width: var(--reading-max);
}

.experience-landing .story-preview--immersive .prose {
  max-width: var(--reading-max);
}

.experience-landing .story-preview--immersive h2 {
  font-size: clamp(2.65rem, 3.5vw, 4.5rem);
  line-height: 1.14;
}

.experience-landing .contextual-exits {
  width: min(90vw, var(--content-max));
  max-width: none;
  padding-inline: 0;
}

@media (min-width: 1024px) {
  .experience-landing { font-size: 1.18rem; line-height: 1.68; }
  .experience-landing .opening-prose > p,
  .experience-landing .experience-closing > p { margin-left: clamp(2rem, 8vw, 8rem); }
  .experience-landing .opening-prose > p:first-child { margin-left: 0; font-size: clamp(2rem, 2.7vw, 3rem); }
  .experience-landing .experience-closing { padding-top: var(--section-gap); }
  .experience-landing .experience-closing .section-heading { max-width: 15ch; font-size: clamp(3.5rem, 5vw, 6rem); }
  .experience-landing .experience-closing > p { margin-left: auto; margin-right: clamp(2rem, 7vw, 7rem); }
  .experience-landing .experience-stories { gap: clamp(5rem, 7vw, 8rem); }
  .experience-landing .story-preview--immersive,
  .experience-landing .story-preview--immersive:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(23rem, 1fr); gap: clamp(3rem, 4.5vw, 5.5rem); align-items: center; }
  .experience-landing .story-preview--immersive .story-preview__content { padding-block: clamp(.5rem, 1.5vh, 1.25rem); }
  .experience-landing .story-preview--immersive .prose p { margin-bottom: .45rem; }
  .experience-landing .story-preview--immersive h2 { margin-bottom: 1.25rem; font-size: clamp(2.6rem, 3.25vw, 4.25rem); }
  .experience-landing .story-preview--immersive .story-preview__image { height: clamp(32rem, 80svh, 46rem); min-height: 0; aspect-ratio: auto; }
  .experience-landing .story-preview--immersive:nth-child(1) .story-preview__image { height: clamp(30rem, 75svh, 42.5rem); }
  .experience-landing .story-preview--immersive:nth-child(1) .story-preview__content { padding-block: 0; }
  .experience-landing .story-preview--immersive:nth-child(1) .prose p { margin-bottom: .3rem; }
  .experience-landing .story-preview--immersive:nth-child(1) h2 { margin-bottom: 1rem; }
  .experience-landing .story-preview--immersive:nth-child(1) .story-enter { margin-top: .5rem; }
  .experience-landing .story-preview--immersive:nth-child(2) .story-preview__image { height: clamp(32rem, 82svh, 47rem); min-height: 0; aspect-ratio: auto; }
  .experience-landing .story-preview--immersive:nth-child(3) { grid-template-columns: minmax(0, .96fr) minmax(23rem, 1.04fr); align-items: center; }
  .experience-landing .story-preview--immersive:nth-child(3) .story-preview__image { height: clamp(28rem, 70svh, 40rem); aspect-ratio: auto; }
  .experience-landing .story-preview--immersive:nth-child(3) .story-preview__content { padding-top: 0; }
  .experience-landing .contextual-exits > .page-eyebrow { font-size: .84rem; }
  .experience-landing .contextual-exits__links { gap: clamp(2rem, 5vw, 6rem); background: transparent; }
  .experience-landing .contextual-exit { min-height: 13rem; padding: 2.75rem 0; border-top: 1px solid var(--line); }
  .experience-landing .contextual-exit strong { font-size: clamp(1.5rem, 2vw, 2rem); }
}

@media (min-width: 1440px) {
  .experience-landing .experience-stories { width: min(88vw, var(--content-max)); }
  .experience-landing .story-preview--immersive,
  .experience-landing .story-preview--immersive:nth-child(even) { grid-template-columns: minmax(0, 43fr) minmax(25rem, 43fr); gap: clamp(4rem, 5vw, 6rem); }
  .experience-landing .story-preview--immersive:nth-child(3) { grid-template-columns: minmax(0, 42fr) minmax(25rem, 44fr); }
  .experience-landing .story-preview--immersive:nth-child(2) h2 { font-size: clamp(3.1rem, 3.8vw, 4.8rem); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .experience-landing .experience-stories { width: min(90vw, 54rem); gap: 8rem; }
  .experience-landing .story-preview--immersive,
  .experience-landing .story-preview--immersive:nth-child(even) { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-landing .story-preview--immersive:nth-child(even) .story-preview__image { order: 0; }
  .experience-landing .story-preview--immersive .story-preview__image { aspect-ratio: 16 / 10; }
  .experience-landing .story-preview--immersive .story-preview__content { width: min(88%, var(--reading-max)); padding: 0; }
  .experience-landing .story-preview--immersive:nth-child(even) .story-preview__content { margin-left: auto; }
}

@media (max-width: 767px) {
  .editorial-shell,
  .editorial-wide { width: auto; }
  .editorial-split,
  .editorial-split--reverse { grid-template-columns: 1fr; }
  .editorial-statement { font-size: clamp(2.3rem, 10vw, 3.5rem); }
  .experience-landing .opening-prose,
  .experience-landing .experience-closing,
  .experience-landing .experience-stories,
  .experience-landing .contextual-exits { width: auto; padding-inline: var(--gutter); }
  .experience-landing .pull-quote--contained { font-size: clamp(2.3rem, 10vw, 3.5rem); }
}

/* Experience scene index: a quiet orientation instrument for wider screens */
.experience-landing .page-hero { min-height: 100svh; }
.experience-landing [id^="experience-"] { scroll-margin-top: 7rem; }
.scene-index { display: none; }

.home-explore {
  width: min(90vw, var(--content));
  margin-inline: auto;
  padding: clamp(4.4rem, 7.75vw, 7rem) 0;
  border-top: 1px solid var(--line);
}
.home-explore__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(2rem, 5vw, 6rem); }
.home-explore__links a {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(239, 237, 231, .12);
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  transition: color 180ms ease, border-color 180ms ease;
}
.home-explore__links a:hover,
.home-explore__links a:focus-visible { color: var(--silver); border-color: var(--silver); }

@media (min-width: 1024px) {
  .home-page { --home-stage-height: calc(100svh - 5.25rem); }
  .home-page .chapter-experience,
  .home-page .chapter-ideas,
  .home-page .chapter-expression,
  .home-page .chapter-impact,
  .home-page .chapter-still { height: var(--home-stage-height); min-height: 40rem; scroll-margin-top: 5.25rem; }
  .home-page .chapter-ideas { align-items: stretch; padding-block: clamp(2.75rem, 5vh, 4.5rem); }
  .home-page .chapter-ideas .chapter-copy { align-self: center; }
  .home-page .ideas-image { min-height: 0; height: auto; }
  .home-page .chapter-expression .expression-copy { transform: translateY(-3.5vh); }
  .home-page .impact-image { min-height: 0; height: 100%; }
  .home-page .chapter-impact .chapter-copy { transform: translateY(-2vh); }
  .home-page .chapter-still { padding-block: clamp(3rem, 6vh, 5rem) clamp(4.5rem, 9vh, 7rem); }
  .home-page .chapter-still > * { transform: translateY(-2.5vh); }
}

@media (min-width: 1180px) {
  .scene-index {
    --marker-y: .8rem;
    position: fixed;
    top: 50%;
    right: clamp(.875rem, 2vw, 1.75rem);
    z-index: 18;
    display: block;
    width: min(9rem, 11vw);
    font-family: var(--sans);
    opacity: .74;
    transform: translateY(-50%);
    transition: opacity 220ms ease;
  }
  .scene-index ol { display: grid; gap: clamp(.55rem, 1.05vh, .85rem); margin: 0; padding: 0; list-style: none; }
  .scene-index li { margin: 0; padding: 0; }
  .scene-index a {
    display: block;
    min-height: 1.2rem;
    padding: .18rem 0 .18rem 1.15rem;
    color: rgba(201, 202, 199, .48);
    font-size: clamp(.58rem, .54vw, .68rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color 180ms ease, opacity 180ms ease;
  }
  .scene-index a[aria-current="location"] { color: var(--paper); }
  .scene-index a:focus-visible { outline: 1px solid var(--paper); outline-offset: .2rem; }
  .scene-index__marker {
    position: absolute;
    top: var(--marker-y);
    left: .05rem;
    width: .5rem;
    height: .5rem;
    border: 1px solid var(--silver);
    border-radius: 50% 50% 50% 0;
    transform: translateY(-50%) rotate(-45deg);
    transition: top 260ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease, border-color 180ms ease;
  }
  .scene-index__marker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: .125rem;
    height: .125rem;
    border-radius: 50%;
    background: var(--silver);
    transform: translate(-50%, -50%);
    transition: background 180ms ease;
  }
  .scene-index[data-scene-theme="light"] a { color: rgba(23, 27, 29, .5); }
  .scene-index[data-scene-theme="light"] a[aria-current="location"] { color: var(--charcoal); }
  .scene-index[data-scene-theme="light"] .scene-index__marker { border-color: var(--charcoal); }
  .scene-index[data-scene-theme="light"] .scene-index__marker::after { background: var(--charcoal); }
  .scene-index--placing .scene-index__marker { transition: none; }
  body.principle-open .scene-index { opacity: 0; pointer-events: none; }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1180px) {
  .scene-index a:hover { color: rgba(239, 237, 231, .82); }
}

@media (min-width: 1180px) and (max-width: 1439px) {
  .scene-index { right: .75rem; width: 7.75rem; }
  .scene-index ol { gap: .45rem; }
  .scene-index a { font-size: .57rem; letter-spacing: .1em; }
}

@media (max-width: 767px) {
  .home-explore { width: auto; margin-inline: var(--gutter); padding-block: 5rem; }
  .home-explore__links { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Reusable long-form story movements: editorial pacing without a page rail. */
.story-system {
  --story-article-max: 72rem;
  --story-prose-max: 45rem;
  --story-section-space: clamp(1.5rem, 2vw, 2rem);
  max-width: none;
  padding: 0;
}

.story-movement {
  width: min(calc(100% - (2 * var(--gutter))), var(--story-article-max));
  margin-inline: auto;
  padding-block: var(--story-section-space) 0;
}

.story-movement__copy {
  width: min(100%, var(--story-prose-max));
  max-width: none;
  margin-inline: auto;
}

.story-movement h2 {
  max-width: 18ch;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  font-size: clamp(2.15rem, 3.25vw, 3.4rem);
}

.story-movement p {
  margin-bottom: .85em;
  font-size: 1.2rem;
  line-height: 1.6;
}

.story-movement .narrative-beat {
  margin-block: 1.75em !important;
}

/* Long-form narratives use a denser magazine rhythm while preserving deliberate pauses. */
.story-page--storm .story-movement p,
.story-page--trees .story-movement p,
.story-page--hotel .story-movement p {
  margin-bottom: .6em;
  line-height: 1.5;
}

.story-page [data-story-nav] {
  scroll-margin-top: 6rem;
}

.story-page--trees #story-opening,
.story-page--trees #story-listening,
.story-page--trees #carry-forward {
  scroll-margin-top: 5rem;
}

.story-page--hotel #hotel-opening {
  scroll-margin-top: 5rem;
}

/* Keep the Trees' landmark moments inside the continuous article flow. */
.story-page--trees .story-movement--statement,
.story-page--trees .story-movement--memory,
.story-page--trees .story-movement--question {
  padding-block: var(--story-section-space) 0;
}

.story-page--trees .story-movement--closing {
  padding-block: clamp(3rem, 4vw, 4rem);
}

.story-kicker {
  margin-bottom: 1.4rem !important;
  color: var(--blue-gray) !important;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story-movement--opening {
  padding-top: clamp(4rem, 5.5vw, 5.5rem);
}

.story-movement--opening .story-movement__copy {
  margin-inline: auto;
}

.story-movement--split {
  display: grid;
  grid-template-columns: minmax(18rem, .82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}

.story-movement--split .story-movement__copy {
  justify-self: end;
}

.story-media {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal-soft);
}

.story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.story-media--detail {
  aspect-ratio: 1.28 / 1;
}

.story-movement--split.is-visible .story-media img {
  transform: scale(1.018);
}

.story-movement--quiet {
  padding-block: var(--story-section-space) 0;
}

.story-movement--quiet .story-movement__copy {
  width: min(100%, var(--story-prose-max));
  margin-inline: auto;
}

.story-movement--expansive {
  padding-block: var(--story-section-space) 0;
}

.story-movement--expansive .story-movement__copy {
  width: min(100%, var(--story-prose-max));
  margin-inline: auto;
}

.story-movement--expansive .emphasis-line {
  width: min(100%, 54rem);
  margin: clamp(3rem, 4.5vw, 4.5rem) auto !important;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 1.15;
  text-align: center;
}

.story-movement--statement {
  padding-block: clamp(4.5rem, 5.5vw, 6rem) 0;
}

.story-movement--statement .story-movement__copy {
  margin-inline: auto;
}

.story-movement--statement h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 5vw, 5rem);
}

.story-movement--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, .88fr);
}

.story-movement--reverse .story-movement__copy {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
}

.story-movement--reverse .story-media {
  grid-column: 1;
  grid-row: 1;
}

.story-movement--intimate {
  width: min(calc(100% - (2 * var(--gutter))), var(--story-article-max));
  padding-inline: 0;
  background: transparent;
}

.story-media--backyard {
  aspect-ratio: 1.35 / 1;
}

.story-media--backyard img {
  object-position: center;
}

.story-image--wide {
  width: min(100%, 62rem);
  aspect-ratio: 16 / 7;
  margin: clamp(2.75rem, 4vw, 4rem) auto 0;
}

.story-page--storm .page-opening span {
  display: block;
}

.story-page--storm .story-movement--warm .story-prose {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(196, 166, 115, .3);
}

.story-page--hotel .story-movement--warm .story-prose {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(196, 166, 115, .3);
}

.story-pull--major {
  display: block;
  margin: clamp(3rem, 5vw, 5rem) 0 !important;
  padding: 0;
  color: var(--paper) !important;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.2vw, 4.25rem) !important;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25 !important;
  text-align: left;
}

.story-emphasis {
  margin-block: clamp(2rem, 3vw, 3rem) !important;
  color: var(--paper) !important;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem) !important;
  line-height: 1.45 !important;
}

.story-question-sequence {
  margin-block: clamp(2.5rem, 4vw, 4rem);
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
  border-left: 1px solid var(--blue-gray);
}

.story-question-sequence .emphasis-line {
  margin-block: 1rem 1.5rem !important;
}

.story-balanced-questions {
  display: grid;
  gap: 2rem;
  margin-block: clamp(2.75rem, 4vw, 4rem);
  padding-block: clamp(2rem, 3vw, 3rem);
  border-block: 1px solid var(--line);
}

.story-balanced-questions p {
  margin: 0;
}

.story-balanced-questions span,
.story-balanced-questions strong {
  display: block;
}

.story-balanced-questions span {
  margin-bottom: .55rem;
  color: var(--blue-gray);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.story-balanced-questions strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.35;
}

.story-movement--resolution {
  padding-bottom: clamp(1.5rem, 2vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.story-movement--memory {
  padding-block: clamp(3.75rem, 4.5vw, 4.5rem) 0;
}

.story-movement--memory .story-movement__copy {
  width: min(100%, 43rem);
  max-width: none;
  margin-inline: auto;
}

.story-movement--question {
  padding-block: clamp(4.5rem, 5.5vw, 6rem) 0;
}

.story-movement--question .story-movement__copy {
  width: min(100%, 43rem);
  max-width: none;
  margin-inline: auto;
}

.story-movement--question .pull-quote {
  max-width: 42rem;
  margin: 0 0 clamp(2.75rem, 4vw, 4rem);
  padding: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  text-align: left;
}

.story-movement--closing {
  width: 100%;
  padding: clamp(4rem, 5vw, 5.5rem) var(--gutter) clamp(3rem, 4vw, 4rem);
  background: var(--paper);
  color: var(--ink);
}

.story-movement--closing .story-movement__copy {
  width: min(100%, 48rem);
  max-width: none;
  margin-inline: auto;
}

.story-movement--closing p {
  color: #4f5758;
}

.story-system .reflection {
  width: min(calc(100% - (2 * var(--gutter))), 60rem);
  margin: 0 auto;
  padding-block: clamp(3.5rem, 4.5vw, 4.5rem) clamp(5.5rem, 7vw, 7rem);
}

.contextual-exits--story {
  padding-top: clamp(5rem, 8vw, 8rem);
}

@media (max-width: 900px) {
  .story-movement--split,
  .story-movement--reverse {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-movement--reverse .story-movement__copy,
  .story-movement--reverse .story-media {
    grid-column: 1;
  }

  .story-movement--reverse .story-movement__copy { grid-row: 1; }
  .story-movement--reverse .story-media { grid-row: 2; }

  .story-movement--split .story-movement__copy {
    justify-self: start;
  }

  .story-media--detail,
  .story-media--backyard {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .story-page .page-opening {
    max-width: 29ch;
  }

  .story-movement {
    width: auto;
    margin-inline: var(--gutter);
    padding-block: clamp(2.25rem, 7vw, 3rem) 0;
  }

  .story-movement--opening,
  .story-movement--quiet,
  .story-movement--statement {
    min-height: 0;
  }

  .story-movement--opening .story-movement__copy,
  .story-movement--quiet .story-movement__copy,
  .story-movement--statement .story-movement__copy {
    margin-inline: 0;
  }

  .story-movement h2 {
    max-width: 13ch;
  }

  .story-movement p {
    font-size: 1.15rem;
    line-height: 1.62;
  }

  .story-movement .story-kicker {
    font-size: .7rem;
    line-height: 1.5;
  }

  .story-movement--expansive,
  .story-movement--intimate,
  .story-movement--closing {
    width: 100%;
    margin-inline: 0;
    padding-inline: var(--gutter);
  }

  .story-movement--expansive .emphasis-line {
    margin-block: 3.5rem !important;
    text-align: left;
  }

  .story-media--detail,
  .story-media--backyard {
    width: calc(100% + (2 * var(--gutter)));
    margin-left: calc(-1 * var(--gutter));
    aspect-ratio: 16 / 10;
  }

  .story-movement--question .pull-quote {
    margin-bottom: 3.5rem;
    text-align: left;
  }

  .story-image--wide {
    width: calc(100% + (2 * var(--gutter)));
    margin-left: calc(-1 * var(--gutter));
    aspect-ratio: 16 / 10;
  }

  .story-page--storm .story-movement--warm .story-prose,
  .story-page--hotel .story-movement--warm .story-prose {
    padding-left: 1.25rem;
  }

  .story-pull--major {
    margin-block: 2.75rem !important;
  }

  .contextual-exits--story .contextual-exits__links {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1180px) {
  .story-index {
    width: min(9.5rem, 12vw);
    padding-left: .35rem;
    border-left: 1px solid rgba(201, 202, 199, .18);
  }

  .story-index ol {
    gap: clamp(.6rem, 1.2vh, .95rem);
  }

  .story-index a {
    padding-left: 1.25rem;
    font-size: clamp(.68rem, .62vw, .76rem);
    font-weight: 500;
    letter-spacing: .055em;
    text-transform: none;
  }

  .story-index .scene-index__marker {
    left: -.27rem;
  }

  .story-index[data-scene-theme="light"] {
    border-color: rgba(23, 27, 29, .22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-media img { transition: none; }
  .story-movement--split.is-visible .story-media img { transform: none; }
}
