@font-face {
  font-family: "Vietlinker Sans";
  src: url("/demos/realtor/fonts/vietlinker-sans-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Sans";
  src: url("/demos/realtor/fonts/vietlinker-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("/demos/realtor/fonts/vietlinker-serif-normal-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("/demos/realtor/fonts/vietlinker-serif-normal-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("/demos/realtor/fonts/vietlinker-serif-italic-vietnamese.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("/demos/realtor/fonts/vietlinker-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #18221f;
  --ink-soft: #44504c;
  --emerald: #12392f;
  --emerald-deep: #08251f;
  --emerald-muted: #31584d;
  --stone: #ded8ca;
  --stone-light: #eee9de;
  --paper: #f7f3ea;
  --white: #fffdf8;
  --copper: #b66f43;
  --copper-bright: #d29061;
  --line: rgba(24, 34, 31, 0.2);
  --line-light: rgba(255, 253, 248, 0.19);
  --gutter: clamp(24px, 5vw, 84px);
  --sans: "Vietlinker Sans", "Segoe UI", Arial, sans-serif;
  --serif: "Vietlinker Serif", Georgia, "Times New Roman", serif;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-synthesis: none;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  color: var(--white);
  background: var(--emerald-muted);
}

:focus-visible {
  outline: 2px solid var(--copper-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--emerald-deep);
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.demo-ribbon {
  position: relative;
  z-index: 101;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px var(--gutter);
  color: var(--emerald-deep);
  background: var(--copper-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
}

.demo-ribbon a {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(330px, 1fr);
  align-items: center;
  gap: 30px;
  padding: 0 var(--gutter);
  color: var(--white);
  background: var(--emerald-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 37, 31, 0.97);
  box-shadow: 0 12px 36px rgba(5, 20, 17, 0.16);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: -0.06em;
}

.brand-copy,
.footer-brand div {
  display: grid;
  gap: 1px;
}

.brand strong,
.footer-brand strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.brand small,
.footer-brand small {
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.25em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: 12px;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.language-switch button {
  padding: 0;
  color: rgba(255, 255, 255, 0.52);
  background: transparent;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
  font-weight: 800;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--emerald-deep);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 200ms ease, background-color 200ms ease;
}

.header-cta:hover {
  color: var(--white);
  background: var(--copper);
}

.editorial-hero {
  --hero-copy-y: 0px;
  --hero-photo-y: 0px;
  --hero-photo-scale: 1.025;
  position: relative;
  min-height: max(590px, calc(100svh - var(--header-height) - 34px));
  display: grid;
  grid-template-columns: clamp(52px, 4.5vw, 76px) minmax(390px, 0.85fr) minmax(520px, 1.2fr) clamp(62px, 5.5vw, 94px);
  overflow: hidden;
  background: var(--stone-light);
}

.hero-folio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid var(--line);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.hero-folio i {
  width: 1px;
  height: 76px;
  background: var(--copper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 110px) clamp(34px, 4.2vw, 78px);
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: transform;
}

.eyebrow {
  color: var(--emerald-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.eyebrow-light {
  color: var(--copper-bright);
}

.hero-copy h1 {
  max-width: 720px;
  display: grid;
  gap: 3px;
  margin: 28px 0 30px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-copy h1 em {
  color: var(--copper);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 23px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.button-copper {
  color: var(--white);
  background: var(--copper);
}

.button-copper:hover {
  color: var(--emerald-deep);
  background: var(--copper-bright);
  transform: translateY(-2px);
}

.play-icon {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 7px;
  text-indent: 1px;
}

.text-link,
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0 8px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.hero-note {
  max-width: 520px;
  margin-top: 26px;
  padding-top: 18px;
  color: #68716e;
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.7;
}

.hero-portrait {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--emerald);
}

.hero-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 30, 25, 0.1), transparent 35%), linear-gradient(0deg, rgba(4, 25, 20, 0.66), transparent 28%);
}

.hero-portrait img {
  width: 100%;
  height: calc(100% + 72px);
  margin-top: -36px;
  object-fit: cover;
  object-position: 58% center;
  transform: translate3d(0, var(--hero-photo-y), 0) scale(var(--hero-photo-scale));
  transform-origin: center;
  transition: filter 700ms ease;
  will-change: transform;
}

body.is-ready .hero-portrait img {
  filter: saturate(1.02) contrast(1.015);
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 3vw, 52px);
  bottom: 30px;
  left: clamp(24px, 3vw, 52px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.hero-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 30px;
  color: var(--white);
  background: var(--emerald);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-index span {
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.17em;
  writing-mode: vertical-rl;
}

.hero-index b {
  color: var(--copper-bright);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.journal-strip {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 72px);
  padding: 18px var(--gutter);
  color: var(--white);
  background: var(--copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
}

.journal-strip span {
  font-size: 7px;
  opacity: 0.62;
}

.section {
  padding: clamp(92px, 11vw, 168px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.6fr);
  gap: clamp(46px, 9vw, 140px);
  align-items: end;
  padding: 0 var(--gutter);
}

.section-intro h2,
.method-heading h2,
.feedback-heading h2,
.journal-heading h2,
.private-copy > h2 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(43px, 5.6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-intro > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.88;
}

.stories-section {
  padding-bottom: 0;
  overflow: clip;
  background: var(--paper);
}

.stories-intro {
  margin-bottom: 46px;
}

.story-chapter {
  --chapter-progress: 0;
  --story-x: 0px;
  position: relative;
  height: 210vh;
  min-height: 1380px;
}

.story-stage {
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.story-stage-bar {
  position: relative;
  z-index: 4;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 13px var(--gutter);
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.story-controls {
  display: grid;
  grid-template-columns: 44px auto 44px;
  align-items: center;
  justify-content: start;
  gap: 14px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.story-controls button {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.story-controls button:hover {
  color: var(--white);
  background: var(--emerald);
}

.chapter-meter {
  min-width: min(350px, 31vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 13px;
}

.chapter-meter i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(24, 34, 31, 0.2);
}

.chapter-meter b {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--copper);
  transform: scaleX(var(--chapter-progress));
  transform-origin: left;
  will-change: transform;
}

.story-viewport {
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.story-track {
  width: max-content;
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(1060px, 82vw);
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  overflow: visible;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--copper) rgba(24, 34, 31, 0.08);
  scrollbar-width: thin;
  transform: translate3d(var(--story-x), 0, 0);
  will-change: transform;
}

.story-track::-webkit-scrollbar {
  height: 4px;
}

.story-track::-webkit-scrollbar-track {
  background: rgba(24, 34, 31, 0.08);
}

.story-track::-webkit-scrollbar-thumb {
  background: var(--copper);
}

.story-card {
  min-width: 0;
  height: min(650px, calc(100svh - var(--header-height) - 108px));
  min-height: min(520px, calc(100svh - var(--header-height) - 108px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 25px 70px rgba(9, 34, 28, 0.12);
  opacity: 0.52;
  scroll-snap-align: start;
  transform: translate3d(0, 12px, 0) scale(0.985);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.story-card figure {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.story-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 27, 22, 0.72), transparent 42%);
}

.story-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 650ms ease;
}

.story-card:hover figure img {
  transform: scale(1.018);
}

.story-card figure figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 60px);
  border-left: 1px solid var(--line-light);
}

.illustrative-label {
  color: var(--copper-bright);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.6;
}

.story-copy h3 {
  margin: 24px 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.story-copy > p:not(.illustrative-label) {
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  line-height: 1.85;
}

.story-copy dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
}

.story-copy dl div {
  display: grid;
  gap: 4px;
}

.story-copy dt {
  color: rgba(255, 253, 248, 0.46);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.story-copy dd {
  font-family: var(--serif);
  font-size: 18px;
}

.feedback-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.4fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(94px, 11vw, 170px) var(--gutter);
  color: var(--white);
  background: var(--emerald-deep);
}

.feedback-heading h2 {
  max-width: 650px;
}

.feedback-heading > p:last-child {
  max-width: 580px;
  margin-top: 34px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  line-height: 1.85;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.quote-grid blockquote {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 28px 32px;
  border-left: 1px solid var(--line-light);
}

.quote-grid blockquote:first-child {
  border-left: 0;
}

.quote-grid blockquote > p:nth-child(2) {
  padding: 54px 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
}

.quote-grid footer {
  color: rgba(255, 253, 248, 0.54);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.essays-section {
  background: var(--stone-light);
}

.essays-intro {
  margin-bottom: clamp(54px, 7vw, 96px);
}

.essay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: start;
  padding: 0 var(--gutter);
}

.video-essay:not(.video-essay-large) {
  margin-top: clamp(80px, 9vw, 150px);
}

.video-poster {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--emerald);
  cursor: pointer;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4, 24, 19, 0.74), transparent 48%);
  transition: background-color 220ms ease;
}

.video-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.video-poster:hover img {
  transform: scale(1.025);
}

.poster-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(64px, 7vw, 96px);
  height: clamp(64px, 7vw, 96px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-size: 13px;
  text-indent: 3px;
  transform: translate(-50%, -50%);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.video-poster:hover .poster-play {
  color: var(--emerald-deep);
  background: var(--copper-bright);
  transform: translate(-50%, -50%) scale(1.05);
}

.poster-meta {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: left;
}

.essay-copy {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 25px;
  padding: 28px 0 0;
}

.essay-copy > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 30px;
}

.essay-copy h3 {
  margin: 11px 0 13px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.essay-copy div > p:last-child {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.journal-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.45fr);
  min-height: 860px;
  color: var(--white);
  background: var(--emerald);
}

.journal-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) var(--gutter);
  background: var(--copper);
}

.journal-heading .eyebrow {
  color: var(--emerald-deep);
}

.journal-heading h2 {
  max-width: 500px;
}

.journal-heading > p:last-child {
  max-width: 480px;
  margin-top: 34px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 13px;
  line-height: 1.82;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.journal-grid article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 4vw, 62px);
  border-left: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background-color 240ms ease;
}

.journal-grid article:hover {
  background: var(--emerald-muted);
}

.article-number {
  color: var(--copper-bright);
  font-family: var(--serif);
  font-size: 26px;
}

.article-type {
  margin-top: 40px;
  color: rgba(255, 253, 248, 0.52);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.journal-grid h3 {
  max-width: 500px;
  margin: 19px 0 44px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.article-link {
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
  padding-right: 0;
  padding-left: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 130px);
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  background: var(--paper);
}

.method-heading h2 {
  max-width: 670px;
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 24px;
}

.method-list h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
}

.method-list p {
  max-width: 640px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.78;
}

.scope-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 42px;
  padding: 28px 34px;
  color: var(--white);
  background: var(--copper);
}

.scope-note p:first-child {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.scope-note p:last-child {
  max-width: 900px;
  font-size: 12px;
  line-height: 1.8;
}

.private-room {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 0.72fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: start;
  padding: clamp(90px, 11vw, 170px) var(--gutter);
  color: var(--white);
  background: var(--emerald-deep);
}

.private-copy > h2 {
  max-width: 780px;
}

.private-copy > p:nth-of-type(2) {
  max-width: 680px;
  margin-top: 30px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
  line-height: 1.85;
}

.privacy-card {
  max-width: 680px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.privacy-monogram {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--copper-bright);
  border: 1px solid var(--copper-bright);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 23px;
}

.privacy-card h3 {
  color: var(--copper-bright);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.privacy-card p {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  line-height: 1.8;
}

.orientation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  padding: clamp(30px, 4vw, 56px);
  color: var(--ink);
  background: var(--stone-light);
}

.form-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.form-heading > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0;
}

.orientation-form label {
  min-width: 0;
  display: grid;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.orientation-form label:nth-of-type(1),
.orientation-form label:nth-of-type(2) {
  grid-column: span 1;
}

.orientation-form label:nth-of-type(n + 3) {
  grid-column: 1 / -1;
}

.orientation-form input,
.orientation-form select {
  width: 100%;
  min-height: 49px;
  padding: 0 1px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(24, 34, 31, 0.38);
  border-radius: 0;
  outline: none;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0;
}

.orientation-form input:focus,
.orientation-form select:focus {
  border-bottom-color: var(--copper);
  box-shadow: 0 1px 0 var(--copper);
}

.orientation-form input::placeholder {
  color: rgba(24, 34, 31, 0.4);
}

.form-submit {
  grid-column: 1 / -1;
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
}

.form-fineprint {
  grid-column: 1 / -1;
  color: #6b716f;
  font-size: 9px;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(400px, 1.35fr) minmax(170px, 0.45fr);
  gap: 50px;
  align-items: start;
  padding: 55px var(--gutter);
  color: var(--white);
  background: #061a16;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclosure {
  display: grid;
  gap: 10px;
  color: rgba(255, 253, 248, 0.56);
  font-size: 9px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 13px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.video-dialog {
  width: min(1100px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  overflow: visible;
}

.video-dialog::backdrop {
  background: rgba(4, 18, 15, 0.88);
  backdrop-filter: blur(10px);
}

.dialog-shell {
  max-height: calc(100dvh - 40px);
  padding: clamp(18px, 3vw, 38px);
  overflow-y: auto;
  background: var(--emerald-deep);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.dialog-header h2 {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.dialog-close {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.video-dialog video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.dialog-note {
  margin-top: 15px;
  color: rgba(255, 253, 248, 0.55);
  font-size: 10px;
  line-height: 1.7;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 22px;
  bottom: 22px;
  max-width: min(410px, calc(100vw - 44px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 16px 42px rgba(5, 25, 20, 0.25);
  font-size: 11px;
  line-height: 1.6;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  :root {
    --gutter: clamp(24px, 4vw, 58px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .editorial-hero {
    grid-template-columns: 54px minmax(360px, 0.86fr) minmax(470px, 1.14fr) 66px;
  }

  .hero-copy {
    padding-right: clamp(30px, 3.5vw, 56px);
    padding-left: clamp(30px, 3.5vw, 56px);
  }

  .feedback-section {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    gap: 52px;
  }

  .quote-grid blockquote {
    min-height: 440px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 1020px) {
  .editorial-hero {
    grid-template-columns: 46px minmax(330px, 0.9fr) minmax(370px, 1.1fr);
  }

  .hero-index {
    position: absolute;
    z-index: 4;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    background: rgba(8, 37, 31, 0.82);
  }

  .hero-copy h1 {
    font-size: clamp(46px, 6.2vw, 64px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .story-card {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .feedback-section {
    grid-template-columns: 1fr;
  }

  .feedback-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 40px;
    align-items: end;
  }

  .feedback-heading .eyebrow,
  .feedback-heading h2 {
    grid-column: 1;
  }

  .feedback-heading > p:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }

  .journal-section {
    grid-template-columns: minmax(290px, 0.66fr) minmax(0, 1.34fr);
  }

  .journal-grid article {
    min-height: 390px;
    padding: 34px;
  }

  .method-section,
  .private-room {
    gap: 58px;
  }

  .orientation-form {
    grid-template-columns: 1fr;
  }

  .orientation-form label:nth-of-type(1),
  .orientation-form label:nth-of-type(2),
  .orientation-form label:nth-of-type(n + 3) {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr 1.4fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .demo-ribbon {
    min-height: 32px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .demo-ribbon p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    gap: 15px;
  }

  .header-cta {
    display: none;
  }

  .editorial-hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-folio {
    display: none;
  }

  .hero-copy {
    min-height: 600px;
    padding: 65px var(--gutter) 58px;
  }

  .hero-copy h1 {
    max-width: 650px;
    font-size: clamp(46px, 10vw, 68px);
  }

  .hero-lead {
    max-width: 650px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }

  .hero-portrait {
    min-height: 58svh;
  }

  .hero-portrait img {
    position: absolute;
    top: -36px;
    right: 0;
    bottom: auto;
    left: 0;
    margin-top: 0;
  }

  .hero-index {
    display: none;
  }

  .journal-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .journal-strip p,
  .journal-strip span {
    flex: 0 0 auto;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro > p {
    max-width: 680px;
  }

  .story-chapter {
    height: auto;
    min-height: 0;
  }

  .story-stage {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    overflow: visible;
  }

  .story-stage-bar {
    min-height: 68px;
  }

  .chapter-meter {
    min-width: 190px;
  }

  .story-viewport {
    display: block;
    overflow: visible;
  }

  .story-track {
    width: auto;
    height: auto;
    grid-auto-columns: min(680px, 88vw);
    align-items: stretch;
    padding-top: 24px;
    padding-bottom: 28px;
    overflow-x: auto;
    transform: none;
    will-change: auto;
  }

  .story-card {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    opacity: 1;
    transform: none;
  }

  .story-card figure {
    min-height: 430px;
  }

  .story-copy {
    min-height: 480px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid blockquote {
    min-height: 310px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .quote-grid blockquote:first-child {
    border-top: 0;
  }

  .essay-grid {
    grid-template-columns: 1fr;
  }

  .video-essay:not(.video-essay-large) {
    width: 78%;
    margin-top: 20px;
    margin-left: auto;
  }

  .journal-section {
    grid-template-columns: 1fr;
  }

  .journal-heading {
    min-height: 580px;
  }

  .method-section,
  .private-room {
    grid-template-columns: 1fr;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .orientation-form {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 20px;
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .demo-ribbon {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .demo-ribbon p {
    display: none;
  }

  .demo-ribbon a {
    margin-left: auto;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    font-size: 14px;
  }

  .brand strong {
    font-size: 10px;
  }

  .brand small {
    font-size: 7px;
  }

  .language-switch {
    padding: 6px 7px;
    font-size: 9px;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 46px;
  }

  .hero-copy h1 {
    margin: 23px 0;
    font-size: clamp(43px, 13.2vw, 58px);
    line-height: 1.01;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: space-between;
  }

  .hero-note {
    margin-top: 20px;
  }

  .hero-portrait {
    min-height: 52svh;
  }

  .hero-portrait figcaption {
    right: 70px;
    left: 18px;
    display: grid;
    gap: 3px;
  }

  .hero-index {
    width: 48px;
  }

  .journal-strip {
    gap: 22px;
    min-height: 60px;
    font-size: 8px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-intro h2,
  .method-heading h2,
  .feedback-heading h2,
  .journal-heading h2,
  .private-copy > h2 {
    font-size: clamp(39px, 11.4vw, 52px);
  }

  .stories-intro {
    margin-bottom: 35px;
  }

  .story-stage-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .story-controls {
    grid-template-columns: 40px 1fr 40px;
    justify-content: stretch;
    width: 100%;
    margin-bottom: 0;
  }

  .story-controls button {
    width: 40px;
    height: 40px;
  }

  .story-controls span {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chapter-meter {
    width: 100%;
    min-width: 0;
  }

  .story-track {
    grid-auto-columns: 88vw;
    gap: 14px;
  }

  .story-card figure {
    min-height: 290px;
  }

  .story-copy {
    min-height: 0;
    padding: 34px 26px;
  }

  .story-copy h3 {
    margin: 19px 0;
    font-size: 31px;
  }

  .story-copy dl {
    gap: 12px;
    margin-top: 26px;
    padding-top: 20px;
  }

  .story-copy dd {
    font-size: 15px;
  }

  .feedback-section {
    gap: 44px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .feedback-heading {
    display: block;
  }

  .feedback-heading > p:last-child {
    margin-top: 26px;
  }

  .quote-grid blockquote {
    min-height: 300px;
    padding: 28px 4px;
  }

  .quote-grid blockquote > p:nth-child(2) {
    padding: 38px 0;
    font-size: 25px;
  }

  .essays-intro {
    margin-bottom: 45px;
  }

  .video-essay:not(.video-essay-large) {
    width: 100%;
    margin-top: 10px;
  }

  .video-poster img {
    aspect-ratio: 4 / 3;
  }

  .essay-copy {
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .essay-copy h3 {
    font-size: 31px;
  }

  .journal-heading {
    min-height: 520px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-grid article {
    min-height: 340px;
    border-left: 0;
  }

  .journal-grid h3 {
    font-size: 31px;
  }

  .method-section {
    gap: 48px;
  }

  .method-list li {
    grid-template-columns: 45px 1fr;
    gap: 13px;
  }

  .scope-note {
    padding: 25px 22px;
  }

  .private-room {
    gap: 48px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .privacy-card {
    grid-template-columns: 45px 1fr;
    gap: 16px;
  }

  .privacy-monogram {
    width: 44px;
    height: 44px;
  }

  .orientation-form {
    padding: 30px 23px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .footer-links {
    grid-column: 1;
    grid-auto-flow: row;
  }

  .video-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .dialog-shell {
    max-height: calc(100dvh - 20px);
    padding: 18px;
  }

  .dialog-header {
    gap: 15px;
  }

  .dialog-close {
    width: 40px;
    height: 40px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }
}

@media (min-width: 821px) and (max-height: 680px) {
  .story-chapter {
    height: auto;
    min-height: 0;
  }

  .story-stage {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    overflow: visible;
  }

  .story-viewport {
    display: block;
    overflow: visible;
  }

  .story-track {
    width: auto;
    height: auto;
    align-items: stretch;
    overflow-x: auto;
    transform: none;
    will-change: auto;
  }

  .story-card {
    height: auto;
    min-height: 560px;
    opacity: 1;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.is-ready .hero-portrait img,
  .hero-copy,
  .story-card:hover figure img,
  .video-poster:hover img,
  .video-poster:hover .poster-play,
  .button-copper:hover {
    transform: none !important;
  }

  .story-chapter {
    height: auto;
    min-height: 0;
  }

  .story-stage {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    overflow: visible;
  }

  .story-viewport {
    display: block;
    overflow: visible;
  }

  .story-track {
    width: auto;
    height: auto;
    align-items: stretch;
    overflow-x: auto;
    transform: none !important;
    will-change: auto;
  }

  .story-card {
    height: auto;
    opacity: 1;
    transform: none !important;
  }
}
