/* ───────────────────────── Brand tokens ─────────────────────────
   Pulled straight from the marketing render template (panel.html):
   cold blue, storm navy, heat amber, paper cream. Type: Fraunces +
   Hanken Grotesk. */
:root {
  --cool-1: #eaf2f9;
  --cool-2: #cadcec;
  --cool-3: #a9c8e3;
  --cool-ink: #21384d;

  --navy-1: #10172a;
  --navy-2: #1b2740;
  --navy-3: #28395c;
  --navy-ink: #eaf1fb;

  --paper-1: #f7f3ec;
  --paper-2: #efe7da;
  --paper-ink: #2a2723;

  --heat-1: #f8b65f;
  --heat-2: #ef7a2f;
  --heat-3: #e2481c;

  --ink: #1c2530;
  --ink-soft: #54606e;
  --line: rgba(33, 56, 77, 0.12);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --r-lg: 28px;
  --shadow-phone: 0 40px 80px -30px rgba(16, 23, 42, 0.55),
    0 12px 30px -12px rgba(16, 23, 42, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* The hidden attribute must win over component display rules (.form is grid). */
[hidden] { display: none !important; }

/* Per-glyph fallback: Latin stays in Fraunces/Hanken, CJK picks up Noto.
   Set when i18n switches document.documentElement.lang. */
html[lang="ja"] {
  --sans: "Hanken Grotesk", "Noto Sans JP", system-ui, sans-serif;
  --serif: "Fraunces", "Noto Sans JP", Georgia, serif;
}
html[lang="zh-TW"] {
  --sans: "Hanken Grotesk", "Noto Sans TC", system-ui, sans-serif;
  --serif: "Fraunces", "Noto Sans TC", Georgia, serif;
}
/* CJK has no true italic; keep emphasis upright and just weight it. */
html[lang="ja"] .display em,
html[lang="ja"] .head em,
html[lang="ja"] .pullquote,
html[lang="ja"] .qline,
html[lang="zh-TW"] .display em,
html[lang="zh-TW"] .head em,
html[lang="zh-TW"] .pullquote,
html[lang="zh-TW"] .qline { font-style: normal; }

/* ───────────────────────── Type primitives ───────────────────────── */
.eyebrow {
  font-weight: 600;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.eyebrow-cool { color: #9db8d8; }
.eyebrow-paper { color: #9a8c76; }

.display {
  font-family: var(--serif);
  font-weight: 340;
  font-optical-sizing: auto;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
.display em { font-style: italic; font-weight: 380; }

.head {
  font-family: var(--serif);
  font-weight: 340;
  font-optical-sizing: auto;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0;
}
.head em { font-style: italic; font-weight: 380; }
.head.ink { color: var(--ink); }
.paper-ink { color: var(--paper-ink); }

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  font-weight: 450;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 26px 0 0;
}
.body {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.6;
  margin: 22px 0 0;
}

/* ───────────────────────── Buttons ───────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  padding: 13px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    opacity 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(16, 23, 42, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(16, 23, 42, 0.55); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-ghost { color: var(--ink); opacity: 0.78; padding-left: 6px; }
.btn-ghost:hover { opacity: 1; }
.btn-ghost-light { color: var(--navy-ink); border: 1px solid rgba(234, 241, 251, 0.25); }
.btn-ghost-light:hover { background: rgba(234, 241, 251, 0.08); }
.btn-pill {
  background: rgba(33, 56, 77, 0.06);
  color: var(--ink);
  padding: 10px 18px;
  font-size: 14px;
}
.btn-pill:hover { background: rgba(33, 56, 77, 0.12); }

.cta-row { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.cta-center { justify-content: center; }
.microcopy { margin: 18px 0 0; font-size: 13px; color: var(--ink-soft); opacity: 0.85; }

/* ───────────────────────── Nav ───────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 40px);
  backdrop-filter: saturate(140%) blur(10px);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
  z-index: -1;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 420;
  font-size: 21px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.wordmark em { font-style: italic; opacity: 0.62; font-weight: 360; }
.wordmark .dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: linear-gradient(140deg, var(--cool-3), var(--cool-ink));
  box-shadow: 0 0 0 4px rgba(169, 200, 227, 0.25);
}
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--ink-soft); transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.nav .btn-pill { margin-left: 4px; }

/* Off-canvas trigger button */
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 56, 77, 0.06);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.menu-btn:hover { background: rgba(33, 56, 77, 0.12); color: var(--ink); }
.menu-ic { flex: none; opacity: 0.85; }
.menu-lang { letter-spacing: 0.02em; }

/* ───────────────────────── Off-canvas menu ───────────────────────── */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  transition: visibility 0.34s;
}
html.drawer-open { overflow: hidden; }
html.drawer-open .drawer { visibility: visible; transition: visibility 0s; }

.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 20, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.34s ease;
}
html.drawer-open .drawer-scrim { opacity: 1; }

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 86vw);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px clamp(22px, 4vw, 32px) 32px;
  background: var(--paper-1);
  color: var(--paper-ink);
  box-shadow: -30px 0 80px -40px rgba(16, 23, 42, 0.6);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
html.drawer-open .drawer-panel { transform: none; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.drawer-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 420;
  letter-spacing: -0.01em;
}
.drawer-close {
  display: inline-flex;
  padding: 6px;
  margin: -6px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 10px;
  opacity: 0.7;
  transition: opacity 0.15s, background 0.15s;
}
.drawer-close:hover { opacity: 1; background: rgba(42, 39, 35, 0.08); }

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0 16px;
  border-bottom: 1px solid rgba(42, 39, 35, 0.12);
}
.drawer-links a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 380;
  padding: 11px 0;
  transition: opacity 0.15s;
  opacity: 0.85;
}
.drawer-links a:hover { opacity: 1; }

.drawer-lang { padding-top: 18px; }
.drawer-label {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.55;
}
.lang-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.lang-opt {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.lang-opt:hover { background: rgba(42, 39, 35, 0.07); }
.lang-opt.is-active {
  background: rgba(42, 39, 35, 0.1);
  font-weight: 700;
}
.lang-opt.is-active::after { content: " ✓"; opacity: 0.6; }

/* ───────────────────────── Phone frame ───────────────────────── */
.phone {
  position: relative;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(155deg, #2b2f38, #0c0e13);
  box-shadow: var(--shadow-phone);
  width: 300px;
  max-width: 78vw;
}
.phone::after {
  content: "";
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 22px; border-radius: 0 0 14px 14px;
  background: #0c0e13; z-index: 3;
}
.phone img { border-radius: 33px; }
.phone-dark { background: linear-gradient(155deg, #1d2230, #060810); }
.phone-sm { width: 230px; border-radius: 36px; padding: 8px; }
.phone-sm::after { width: 36%; height: 16px; }
.phone-sm img { border-radius: 28px; }

/* ───────────────────────── Hero ───────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cool-1) 0%, var(--cool-2) 58%, var(--cool-3) 100%);
  color: var(--cool-ink);
}
.hero-glow {
  position: absolute;
  width: 720px; height: 720px;
  right: -140px; top: -220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(143, 185, 222, 0) 62%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 96px) clamp(20px, 4vw, 40px) clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.hero-copy .eyebrow { color: #5e7894; }
.hero-copy .lede { color: #41597280; color: rgba(33, 56, 77, 0.72); }
.hero-device { display: flex; justify-content: center; }
.hero-device .phone { transform: rotate(2.5deg); }

/* ───────────────────────── Dark band ───────────────────────── */
.band-dark {
  background: linear-gradient(180deg, var(--navy-1) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: var(--navy-ink);
}
.band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}
.band-device { display: flex; justify-content: center; }
.band-device .phone { transform: rotate(-3deg); }
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 3px solid rgba(157, 184, 216, 0.5);
  color: #cdd9ec;
}

/* ───────────────────────── Features ───────────────────────── */
.features {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 40px);
}
.features-head { text-align: center; margin-bottom: clamp(34px, 5vw, 60px); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: linear-gradient(180deg, #fbfcfe, #f3f6fb);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(16, 23, 42, 0.4); }
.feature-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 14px;
  font-size: 22px; line-height: 1;
  background: linear-gradient(150deg, var(--cool-2), var(--cool-3));
  color: var(--cool-ink);
  margin-bottom: 20px;
}
.feature h3 { font-family: var(--serif); font-weight: 420; font-size: 23px; margin: 0 0 10px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--ink-soft); line-height: 1.58; font-size: 16px; }
.feature em { font-style: italic; color: var(--ink); }

/* ───────────────────────── The figure ───────────────────────── */
.figure {
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
  border-top: 1px solid var(--line);
}
.figure-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}
.figure-legend { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.figure-legend li { font-size: 16px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.figure-legend li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(140deg, var(--heat-1), var(--heat-3));
}
.figure-legend b { color: var(--ink); font-weight: 600; }
.figure-rail {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(10px, 1.6vw, 20px);
}
.rail-phone { margin: 0; text-align: center; }
.rail-phone.rail-up { margin-bottom: 34px; }
.rail-phone figcaption {
  margin-top: 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft); opacity: 0.8;
}

/* ───────────────────────── The voice ───────────────────────── */
.voice {
  background: linear-gradient(180deg, var(--paper-1) 0%, var(--paper-2) 100%);
  color: var(--paper-ink);
}
.voice-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 40px);
}
.voice-head { text-align: center; margin-bottom: clamp(34px, 5vw, 56px); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.qline {
  position: relative;
  margin: 0;
  padding: 4px 0 4px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.34;
  letter-spacing: -0.01em;
}
.qline::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 4px; border-radius: 4px; background: currentColor; opacity: 0.28;
}
.qline cite {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.5; margin-top: 18px; font-weight: 600;
}

/* ───────────────────────── Gallery strip ───────────────────────── */
.gallery {
  overflow: hidden;
  background: #0d1322;
  padding: clamp(40px, 5vw, 72px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.gallery-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 22px;
  animation: marquee 44s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-track img {
  height: clamp(280px, 36vw, 440px);
  width: auto;
  border-radius: 22px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

/* ───────────────────────── CTA ───────────────────────── */
.get {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-1) 100%);
  color: var(--navy-ink);
  text-align: center;
}
.get-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) clamp(20px, 4vw, 40px);
}
.get-head { color: var(--navy-ink); }
.get-lede { color: rgba(234, 241, 251, 0.72); margin-left: auto; margin-right: auto; }
.get .btn-primary { background: #fff; color: var(--navy-1); }

/* ───────────────────────── Footer ───────────────────────── */
.footer { background: #080b14; color: #aab6c8; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 4vw, 40px);
  display: grid;
  gap: 14px;
  text-align: center;
  justify-items: center;
}
.wordmark-sm { font-size: 19px; color: #eaf1fb; }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 17px; opacity: 0.7; margin: 0; }
.footer-links { display: flex; gap: 24px; font-size: 14px; margin-top: 4px; }
.footer-links a { opacity: 0.75; transition: opacity 0.15s; }
.footer-links a:hover { opacity: 1; }
.footer-fine { font-size: 12.5px; opacity: 0.5; margin: 8px 0 0; }

/* ───────────────────────── Reveal animation ─────────────────────────
   Text is visible by default. The hide-then-reveal only kicks in once app.js
   adds `.js` — so if the script is blocked or 404s, nothing stays invisible. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.js .reveal[data-delay="1"] { transition-delay: 0.1s; }
.js .reveal[data-delay="2"] { transition-delay: 0.2s; }
.js .reveal.in { opacity: 1; transform: none; }

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { margin-left: auto; }
  .hero-inner,
  .band-inner,
  .figure-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lede,
  .lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .band-inner .band-device { order: 2; }
  .pullquote { text-align: left; }
  .feature-grid,
  .quote-grid { grid-template-columns: 1fr; }
  .figure-legend { justify-items: center; display: inline-grid; text-align: left; }
  .figure-rail { flex-wrap: wrap; }
  .rail-phone.rail-up { margin-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .gallery-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ───────────────────────── Legal & form pages ───────────────────────── */
.legal {
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
  min-height: 72vh;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) clamp(20px, 4vw, 40px) clamp(64px, 9vw, 110px);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 26px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--ink); }
.legal h1 { margin: 0 0 6px; }
.legal-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 10px 0 30px;
  max-width: 42em;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 420;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 34px 0 8px;
}
.legal p { line-height: 1.62; margin: 0 0 14px; color: var(--ink); max-width: 42em; }
.legal-inner a[href^="mailto"] { color: var(--heat-3); font-weight: 600; }
.legal-address { font-style: normal; line-height: 1.7; font-size: 17px; margin: 4px 0 8px; }
.legal-updated { font-size: 13px; color: var(--ink-soft); opacity: 0.8; margin-top: 34px; }
.age-badge { margin: 14px 0 24px; }
.age-badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--heat-1), var(--heat-3));
  box-shadow: 0 8px 22px rgba(226, 72, 28, 0.28);
}

/* Support form */
.form { display: grid; gap: 18px; margin-top: 8px; max-width: 520px; }
.field { display: grid; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cool-3);
  box-shadow: 0 0 0 3px rgba(169, 200, 227, 0.4);
}
.form-error { color: var(--heat-3); font-size: 14px; font-weight: 600; margin: 2px 0 0; }
.review, .done { max-width: 560px; }
.review-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  margin: 10px 0 26px;
}
.review-list dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  padding-top: 4px;
}
.review-list dd { margin: 0; font-size: 16px; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }
