/* ==========================================================================
   Tendy 田地故事 — Editorial Landing Page
   A hand-authored layer over the Tendy design tokens. The intent is a
   printed-magazine sensibility: hard-edged photography, hairline rules,
   an editorial kicker → serif headline → sans dek hierarchy, generous and
   deliberately asymmetric whitespace. No pills, no floating cards, no
   drop shadows, no gradient blobs. The produce photography is the loudest
   thing on the page; the type and layout stay quiet and confident.
   ========================================================================== */

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* clip (not hidden) so it doesn't become a scroll container and break position:sticky */
}
html { overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; } /* height:auto so width/height attrs set aspect ratio, never stretch */
a { color: inherit; }
h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--leaf-bright); color: var(--pine); }

/* Keyboard focus — visible ring on light and dark surfaces */
:focus-visible { outline: 3px solid var(--forest); outline-offset: 3px; border-radius: 1px; }
.section--forest :focus-visible, .section--soil :focus-visible,
.letter :focus-visible, .final :focus-visible, .footer :focus-visible,
.ticker :focus-visible { outline-color: var(--ivory); }

/* Skip link — hidden until focused */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 12px 18px;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* A whisper of printed-paper grain for tactility — kept far below the
   threshold of "noticeable", just enough to take the digital sheen off. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* -------------------------------------------------------------- Structure */
:root {
  --wrap: 1240px;
  --wrap-wide: 1400px;
  --wrap-read: 820px;
  --gutter: clamp(20px, 5vw, 72px);
  --rule-ink: rgba(31, 61, 43, .22);
}
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: var(--wrap-wide); }
.wrap--read { max-width: var(--wrap-read); }
section { position: relative; }

/* -------------------------------------------------------------- Type kit */
.kicker {
  font-family: var(--font-body);
  font-size: var(--fs-fine);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
  color: var(--olive-text);
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin: 0;
}
.kicker--light { color: var(--on-forest-soft); }
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.kicker--plain::before { display: none; }

.display, .h1, .h2, .h3, .serif {
  font-family: var(--font-display);
  color: var(--forest);
  font-weight: 400;
  font-variation-settings: "opsz" 120, "SOFT" 40, "wght" 420;
  letter-spacing: 0;
}
.display {
  font-size: var(--fs-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h1 { font-size: var(--fs-h1); line-height: var(--lh-display); }
.h2 { font-size: var(--fs-h2); line-height: 1.14; }
.h3 { font-size: var(--fs-h3); line-height: var(--lh-tight); }

/* CJK display: Source Han / Noto Serif TC needs breathing room and a
   slightly tighter leading than Latin body copy. */
:lang(zh), .zh { }
.display .zh, .h1 .zh, .h2 .zh, .h3 .zh,
.display, .h1, .h2, .h3 {
  word-break: keep-all;
  line-break: strict;
}
.cjk-track { letter-spacing: .04em; }

.lede {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: var(--ink);
}
.muted { color: var(--ink-soft); }
.body-narrow { max-width: 46ch; }
.measure { max-width: 62ch; }

/* Hairline rules */
.rule { height: 1px; background: var(--rule-ink); border: 0; width: 100%; }
.rule--soft { background: var(--line); }
.rule--light { background: var(--on-forest-line); }

/* --------------------------------------------------------------- Buttons */
.btn {
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--track-label);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 15px 26px;
  border: 1.5px solid var(--forest);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.btn svg { width: 1em; height: 1em; }
.btn--primary { background: var(--forest); color: var(--ivory); }
.btn--primary:hover { background: var(--pine); border-color: var(--pine); }
.btn--line { background: var(--forest); color: var(--ivory); border-color: var(--forest); }
.btn--line:hover { background: var(--pine); }
.btn--ghost { background: transparent; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--ivory); }
.btn--on-dark { background: var(--ivory); color: var(--pine); border-color: var(--ivory); }
.btn--on-dark:hover { background: var(--leaf-bright); border-color: var(--leaf-bright); color: var(--pine); }

/* Text link with a moving underline + arrow — the editorial "read more". */
.link-arrow {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-ui);
  letter-spacing: var(--track-label);
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--forest);
  transition: gap .18s ease, color .18s ease;
}
.link-arrow:hover { gap: .9em; }
.link-arrow--light { color: var(--ivory); border-color: rgba(246,242,232,.5); }

/* --------------------------------------------------------------- Media */
figure { position: relative; }
.media { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.caption {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--ink-soft);
  letter-spacing: .01em;
  margin-top: 10px;
  display: flex;
  gap: .6em;
  align-items: baseline;
}
.caption::before {
  content: "";
  flex: 0 0 18px;
  height: 1px;
  background: var(--line-strong);
  transform: translateY(-4px);
}
.caption--light { color: var(--on-forest-soft); }
.caption--light::before { background: var(--on-forest-line); }

/* AI-generated imagery disclosure chip — sits quietly in a photo corner. */
.ai-flag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(19, 43, 35, .58);
  color: rgba(246, 242, 232, .88);
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: .08em;
  font-weight: var(--fw-medium);
  padding: 5px 10px;
  pointer-events: none;
}

/* ==========================================================================
   MASTHEAD
   ========================================================================== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 232, .88);
  backdrop-filter: saturate(130%) blur(8px);
  -webkit-backdrop-filter: saturate(130%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.masthead__in {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}
.masthead__mark { display: inline-flex; align-items: center; flex-shrink: 0; }
.masthead__mark img { height: 34px; width: auto; }
.masthead__nav {
  display: flex;
  gap: 30px;
  margin-inline: auto;
}
.masthead__nav a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .18s ease, color .18s ease;
}
.masthead__nav a:hover { color: var(--forest); border-color: var(--forest); }
.masthead__cta { flex-shrink: 0; }
.masthead__cta .btn { padding: 10px 18px; font-size: var(--fs-sm); }
@media (max-width: 860px) {
  .masthead__nav { display: none; }
}

/* Mobile menu — JS-free <details> disclosure, shown only below 860px */
.mnav { display: none; position: relative; flex-shrink: 0; }
@media (max-width: 860px) {
  .mnav { display: block; }
}
.mnav summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--forest);
  border-radius: 2px;
}
.mnav summary::-webkit-details-marker { display: none; }
.mnav__icon,
.mnav__icon::before,
.mnav__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  position: relative;
  transition: transform .18s ease, opacity .18s ease;
}
.mnav__icon::before, .mnav__icon::after { content: ""; position: absolute; left: 0; }
.mnav__icon::before { top: -6px; }
.mnav__icon::after { top: 6px; }
.mnav[open] .mnav__icon { background: transparent; }
.mnav[open] .mnav__icon::before { transform: translateY(6px) rotate(45deg); }
.mnav[open] .mnav__icon::after { transform: translateY(-6px) rotate(-45deg); }
.mnav__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 230px;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 40px rgba(19, 43, 35, .14);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}
.mnav__panel a {
  font-size: var(--fs-ui);
  font-weight: var(--fw-medium);
  color: var(--ink);
  text-decoration: none;
  padding: 13px 22px;
  border-bottom: 1px solid var(--line);
}
.mnav__panel a:last-child { border-bottom: 0; }
.mnav__panel a:hover { color: var(--forest); background: var(--paper); }

/* ==========================================================================
   HERO — the magazine cover
   ========================================================================== */
.hero { background: var(--ivory); border-bottom: 1px solid var(--line); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
  min-height: min(76vh, 720px);
}
.hero__copy {
  padding: clamp(40px, 6vw, 80px) 0 clamp(36px, 5vw, 64px);
  padding-right: clamp(0px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.hero__issue {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero__issue .kicker::before { width: 28px; }
.hero__mark { height: 46px; width: auto; flex-shrink: 0; }
.hero__mark + .kicker::before { display: none; }
.hero h1 {
  font-family: var(--font-display);
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 430;
  font-size: clamp(28px, 3.3vw, 54px);
  line-height: 1.24;
  letter-spacing: .01em;
  word-break: keep-all;
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: normal;
  color: var(--kraft-deep); /* ≥3:1 on ivory for large display text */
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 500;
}
.hero__sub {
  font-size: var(--fs-lg);
  line-height: 1.85;
  color: var(--ink);
  max-width: 34ch;
  margin-bottom: 34px;
}
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__micro { font-size: var(--fs-sm); color: var(--ink-soft); max-width: 30ch; line-height: 1.55; margin-top: 20px; }

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 380px;
  /* bleeds to the right edge of the viewport */
  margin-right: calc(-1 * var(--gutter));
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__stamp {
  position: absolute;
  left: -46px;
  bottom: 42px;
  width: 108px;
  height: 108px;
}
.hero__stamp img { width: 100%; height: 100%; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { margin-right: calc(-1 * var(--gutter)); margin-left: calc(-1 * var(--gutter)); min-height: 50vh; order: -1; }
  .hero__stamp { left: auto; right: 20px; bottom: -30px; width: 84px; height: 84px; }
  .hero__copy { padding-top: 44px; }
}

/* Impact / trust ticker */
.ticker {
  background: var(--forest);
  color: var(--on-forest);
  overflow: hidden;
  border-bottom: 1px solid var(--pine);
}
.ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker__track span {
  font-size: var(--fs-sm);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  padding: 15px 34px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
}
.ticker__track span::after { content: "✦"; color: var(--leaf-bright); font-size: .7em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ==========================================================================
   Generic editorial section scaffolding
   ========================================================================== */
.section { padding-block: clamp(72px, 10vw, 132px); }
.section--tight { padding-block: clamp(52px, 7vw, 92px); }
.section--beige { background: var(--beige); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--on-forest); }
.section--soil  { background: var(--forest-deep); color: var(--on-forest); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--snug { margin-bottom: 28px; }
.section-head .kicker { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: var(--fs-lg); line-height: 1.75; color: var(--ink); }
.section--forest .section-head p,
.section--soil  .section-head p { color: var(--on-forest-soft); }
.section--forest .h2, .section--soil .h2,
.section--forest .h3, .section--soil .h3 { color: var(--on-forest); }
.section--forest .rule, .section--soil .rule { background: var(--on-forest-line); }

/* ------- Editorial pull statement (Problem) ------- */
.statement { padding-block: clamp(72px, 9vw, 116px); }
.statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.statement__lead {
  font-family: var(--font-display);
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 40, "wght" 440;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.28;
  letter-spacing: .01em;
  word-break: keep-all;
}
.statement__body p { font-size: var(--fs-lg); line-height: 1.95; color: var(--ink); }
.statement__body p + p { margin-top: 1.4em; }
@media (max-width: 820px) { .statement__grid { grid-template-columns: 1fr; } }

/* ------- Split feature (Solution / Letter-style) ------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}
.split__media { position: relative; min-height: 440px; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 104px) clamp(24px, 6vw, 92px);
}
.split__body .kicker { margin-bottom: 22px; }
.split__body h2 { margin-bottom: 24px; }
.split__body p { font-size: var(--fs-lg); line-height: 1.85; color: var(--ink); }
.split__body p + p { margin-top: 1.1em; }
.split__body .btn, .split__body .link-arrow { margin-top: 34px; align-self: flex-start; }
.split--flip .split__media { order: 2; }
@media (max-width: 860px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .split__media { min-height: 58vh; }
}

/* ------- How it works: horizontal steps ------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 40px); }
.step { border-top: 2px solid var(--forest); padding-top: 20px; }
.step__no {
  font-family: var(--font-body);
  font-size: var(--fs-fine);
  letter-spacing: var(--track-overline);
  font-weight: var(--fw-semibold);
  color: var(--soil); /* AA on ivory/beige at label size */
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.step h3 { font-size: var(--fs-h4); margin-bottom: 10px; }
.step p { font-size: var(--fs-sm); color: var(--ink); line-height: 1.65; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ------- What's in the box: big flatlay spread + list ------- */
.box-spread__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.box-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.box-list > div:first-child { border-top: 1px solid var(--rule-ink); }
.box-list dt {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--forest);
  font-variation-settings: "opsz" 80, "SOFT" 30, "wght" 460;
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.box-list dd { grid-column: 1 / -1; color: var(--ink-soft); font-size: var(--fs-sm); line-height: 1.6; }
.box-note {
  margin-top: 30px;
  padding: 24px 26px;
  background: var(--beige);
  border-left: 3px solid var(--kraft);
}
.box-note strong { color: var(--forest); font-weight: var(--fw-semibold); }
.box-spread__media { position: relative; }
.box-spread__media img { width: 100%; height: auto; }
.box-outro {
  margin-top: clamp(40px, 5vw, 72px);
  font-size: var(--fs-lg);
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 60ch;
}
@media (max-width: 860px) { .box-spread__grid { grid-template-columns: 1fr; } .box-spread__media { order: -1; } }

/* ------- This week's box: the dispatch / conversion module ------- */
.dispatch {
  background: var(--ivory);
  border: 1px solid var(--rule-ink);
}
.dispatch__grid { display: grid; grid-template-columns: 1.05fr 1fr; }
.dispatch__media { position: relative; min-height: 420px; }
.dispatch__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dispatch__flag {
  position: absolute; top: 20px; left: 20px;
  background: var(--forest); color: var(--ivory);
  font-size: var(--fs-fine); letter-spacing: var(--track-overline); text-transform: uppercase;
  font-weight: var(--fw-semibold); padding: 8px 14px;
}
.dispatch__body { padding: clamp(32px, 4vw, 56px); }
.dispatch__masthead { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--forest); padding-bottom: 14px; margin-bottom: 24px; }
.dispatch__masthead .k { font-family: var(--font-body); font-size: var(--fs-fine); letter-spacing: var(--track-overline); text-transform: uppercase; color: var(--olive-text); font-weight: var(--fw-semibold); }
.dispatch__masthead .wk { font-family: var(--font-display); font-size: var(--fs-sm); color: var(--soil); }
.dispatch__theme { font-family: var(--font-display); font-size: var(--fs-h3); color: var(--forest); line-height: 1.3; margin-bottom: 8px; font-variation-settings: "opsz" 80, "SOFT" 40, "wght" 460; }
.dispatch__line { color: var(--ink-soft); font-size: var(--fs-sm); line-height: 1.6; margin-bottom: 24px; }
.dispatch__items { margin-bottom: 26px; }
.dispatch__items li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dotted var(--line-strong); font-size: var(--fs-sm); }
.dispatch__items .n { font-family: var(--font-display); color: var(--soil); font-size: var(--fs-sm); min-width: 22px; }
.dispatch__items .nm { color: var(--forest); font-weight: var(--fw-semibold); }
.dispatch__items .rz { color: var(--ink-soft); }
.dispatch__meta { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-bottom: 26px; font-size: var(--fs-sm); }
.dispatch__meta div span { display: block; font-size: var(--fs-fine); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px; }
.dispatch__meta div b { font-family: var(--font-display); font-weight: 500; color: var(--forest); font-size: var(--fs-lg); }
@media (max-width: 860px) { .dispatch__grid { grid-template-columns: 1fr; } .dispatch__media { min-height: 52vh; } }

/* ------- Differentiation: editorial comparison rows ------- */
.compare { border-top: 1px solid var(--on-forest-line); }
.compare__row {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-bottom: 1px solid var(--on-forest-line);
  align-items: baseline;
}
.compare__vs { font-family: var(--font-display); color: var(--leaf-bright); font-size: var(--fs-h3); line-height: 1.2; font-variation-settings: "opsz" 80, "SOFT" 40, "wght" 440; }
.compare__row p { color: var(--on-forest); font-size: var(--fs-lg); line-height: 1.7; }
.compare__row p b { color: var(--leaf-bright); font-weight: 500; }
@media (max-width: 720px) { .compare__row { grid-template-columns: 1fr; gap: 10px; } }

/* ------- Letter from the land: the dark emotional spread ------- */
.letter {
  position: relative;
  background: var(--forest-deep);
  color: var(--on-forest);
  overflow: hidden;
}
.letter__bg { position: absolute; inset: 0; z-index: 0; }
.letter__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .30; }
.letter__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,43,35,.72), rgba(19,43,35,.86)); }
.letter__in { position: relative; z-index: 1; padding-block: clamp(96px, 14vw, 200px); }
.letter__in .kicker { margin-bottom: 34px; }
.letter__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.letter__figure img { width: 100%; height: auto; }
.letter__figure .caption { margin-top: 14px; }
@media (max-width: 860px) { .letter__grid { grid-template-columns: 1fr; gap: 44px; } }
.letter blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.32;
  color: var(--ivory);
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 420;
  max-width: 20ch;
  letter-spacing: .01em;
  word-break: keep-all;
  margin-bottom: 40px;
}
.letter__body { max-width: 52ch; color: var(--on-forest-soft); font-size: var(--fs-lg); line-height: 1.9; }
.letter__body p + p { margin-top: 1.2em; }
.letter__sign { margin-top: 42px; font-family: var(--font-display); color: var(--leaf-bright); font-size: var(--fs-h4); }

/* ------- Trust: the honest promises ------- */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.promise { background: var(--ivory); padding: clamp(24px, 2.6vw, 36px); }
.promise__k { font-family: var(--font-display); color: var(--soil); font-size: var(--fs-fine); letter-spacing: .08em; margin-bottom: 14px; display: block; }
.promise h3 { font-size: var(--fs-h5); color: var(--forest); margin-bottom: 8px; font-family: var(--font-display); font-variation-settings: "opsz" 40,"SOFT" 20,"wght" 520; }
.promise p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 860px) { .promises { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .promises { grid-template-columns: 1fr; } }

/* ------- Who it's for: two honest columns ------- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); }
.audience__col h3 { font-size: var(--fs-h3); margin-bottom: 24px; display: flex; align-items: baseline; gap: 12px; }
.audience__col--no h3 { color: var(--ink-soft); }
.audience__col ul li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: var(--fs-lg); color: var(--ink); display: flex; gap: 14px; align-items: baseline; }
.audience__col ul li::before { content: "＋"; color: var(--leaf); font-weight: 600; }
.audience__col--no ul li { color: var(--ink-soft); }
.audience__col--no ul li::before { content: "－"; color: var(--sage); }
.audience__foot { margin-top: 30px; font-size: var(--fs-lg); color: var(--forest); font-family: var(--font-display); line-height: 1.6; font-variation-settings: "opsz" 60,"SOFT" 40,"wght" 440; }
@media (max-width: 720px) { .audience { grid-template-columns: 1fr; gap: 36px; } }

/* ------- Brand story: centred typographic interlude ------- */
.story { text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story__in { max-width: 780px; margin-inline: auto; }
.story__mark { height: 92px; width: auto; display: block; margin: 0 auto 30px; }
.story .kicker { color: var(--soil); margin-bottom: 28px; }
.story .kicker::before { display: none; }
.story__head {
  font-family: var(--font-display);
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 40, "wght" 440;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.28;
  letter-spacing: .01em;
  word-break: keep-all;
  margin-bottom: 30px;
}
.story__en { font-style: italic; color: var(--kraft-deep); font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 460; }
.story__body { font-size: var(--fs-lg); line-height: 2; color: var(--ink); max-width: 60ch; margin-inline: auto; }
.story__body b { color: var(--forest); font-weight: 500; }

/* ------- FAQ ------- */
.faq { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(24px, 5vw, 72px); }
.faq__head .h2 { margin-top: 18px; }
.faq__media { margin-top: clamp(28px, 3vw, 44px); }
.faq__media img { width: 100%; height: auto; }
.faq__media .caption { margin-top: 12px; }
@media (max-width: 720px) { .faq__media { display: none; } }
.faq__list { border-top: 1px solid var(--rule-ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: var(--fs-h5);
  color: var(--forest);
  font-variation-settings: "opsz" 40, "SOFT" 30, "wght" 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__plus { flex: 0 0 auto; width: 18px; height: 18px; position: relative; transition: transform .22s ease; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--kraft); }
.faq__plus::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq__plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq details[open] .faq__plus { transform: rotate(135deg); }
.faq__a { padding: 0 40px 28px 0; color: var(--ink); font-size: var(--fs-body); line-height: 1.8; max-width: 62ch; }
.faq__a b { color: var(--forest); font-weight: 500; }
@media (max-width: 720px) { .faq { grid-template-columns: 1fr; gap: 20px; } }

/* ------- Final CTA ------- */
.final { position: relative; background: var(--forest); color: var(--on-forest); overflow: hidden; }
.final__bg { position: absolute; inset: 0; z-index: 0; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.final__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 20% 30%, rgba(31,61,43,.55), rgba(19,43,35,.9)); }
.final__in { position: relative; z-index: 1; padding-block: clamp(90px, 12vw, 168px); }
.final__in .kicker { margin-bottom: 30px; }
.final h2 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.18;
  font-variation-settings: "opsz" 144, "SOFT" 40, "wght" 440;
  max-width: 18ch;
  letter-spacing: .01em;
  word-break: keep-all;
  margin-bottom: 28px;
}
.final__body { max-width: 48ch; color: var(--on-forest-soft); font-size: var(--fs-lg); line-height: 1.8; margin-bottom: 38px; }
.final__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.final__micro { margin-top: 22px; color: var(--on-forest-soft); font-size: var(--fs-sm); max-width: 40ch; line-height: 1.6; }

/* ------- Footer ------- */
.footer { background: var(--pine); color: var(--on-forest-soft); padding-block: clamp(48px, 6vw, 80px) 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--on-forest-line); }
.footer__mark img { height: 52px; width: auto; margin-bottom: 22px; }
.footer__mark p { max-width: 34ch; font-size: var(--fs-sm); line-height: 1.7; color: var(--on-forest-soft); }
.footer h4 { font-size: var(--fs-fine); letter-spacing: var(--track-overline); text-transform: uppercase; color: var(--on-forest-soft); margin-bottom: 18px; font-weight: var(--fw-semibold); }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { font-size: var(--fs-sm); color: var(--on-forest); text-decoration: none; border-bottom: 1px solid transparent; }
.footer ul li a:hover { border-color: var(--on-forest-line); }
.footer__legal { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: var(--fs-xs); color: var(--on-forest-soft); }
@media (max-width: 720px) { .footer__top { grid-template-columns: 1fr; gap: 30px; } }

/* Utility */
.stack-sm > * + * { margin-top: 12px; }
.center { text-align: center; }

/* On narrow screens, let CJK headings wrap freely so a long art-directed
   line never runs off the edge. The <br>s still act as preferred breaks. */
@media (max-width: 720px) {
  .hero h1, .h1, .h2, .h3,
  .statement__lead, .letter blockquote, .final h2,
  .story__head, .split__body h2, .dispatch__theme,
  .compare__vs, .audience__foot { word-break: normal; }
}
