/* ==========================================================================
   Banexco Traders Inc. — main.css
   Pattern-setter file: tokens (§1) + shared chrome (§2) + shared components
   + home (index.html) page styles (§5).
   Page agents: link css/<page>.css AFTER this file; tokens only, no literals.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens (§1 — verbatim)
   -------------------------------------------------------------------------- */
:root {
  /* color */
  --ink: #232a33;          /* deep blue-gray: body text, dark grounds */
  --ink-soft: #4a545f;     /* secondary text */
  --pine: #2f4a3c;         /* primary brand: buttons, links, h accents */
  --pine-deep: #24382e;    /* hover, dark bands */
  --sage: #9db4a0;         /* borders, tints, Highland tier */
  --sage-tint: #eef2ee;    /* section tint backgrounds */
  --paper: #f7f5f0;        /* page ground — NEVER pure white page bg */
  --white: #ffffff;        /* cards only */
  --gold: #b3893f;         /* Super-Highland tier ONLY + premium marks */
  --gold-tint: #f6efe2;    /* Super-Highland card tint */

  /* type */
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;

  /* scale */
  --text-body: 1.0625rem;      /* 17px */
  --text-small: 0.9375rem;     /* 15px */
  --lh-body: 1.65;
  --h1: clamp(2.2rem, 5vw, 3.4rem);
  --h2: clamp(1.6rem, 3.2vw, 2.2rem);
  --h3: 1.25rem;

  /* rhythm */
  --space-section: clamp(4rem, 9vw, 7.5rem);
  --container: 72rem;          /* 1152px max content width */
  --radius: 4px;
  --shadow-lift: 0 10px 30px rgba(35, 42, 51, 0.10);

  /* motion */
  --t-fast: 0.2s;
  --t-base: 0.3s;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 1rem;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--pine); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--pine-deep); }

ul, ol { margin: 0; padding: 0; }

blockquote { margin: 0; }

/* Focus — 2px solid gold outline, offset 2px, everywhere (§2) */
:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3.5rem;
  z-index: 200;
  background: var(--pine);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* Layout helpers */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: var(--space-section); }
.section--tint { background: var(--sage-tint); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h2, .section--dark h3 { color: var(--paper); }

/* Small caps section labels (§1) */
.section-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.9rem;
}
.section--dark .section-label { color: var(--sage); }

.lede, .text-soft { color: var(--ink-soft); }

.footnote {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 2rem;
}
.section--dark .footnote { color: var(--sage); }

/* Numbers in tables/stats */
.spec-table, .stat-band { font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   Buttons (§2)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn--primary { background: var(--pine); color: var(--white); }
.btn--primary:hover { background: var(--pine-deep); color: var(--white); }

.btn--secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--secondary:hover { color: var(--pine-deep); border-color: var(--pine-deep); }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold); color: var(--ink); filter: brightness(1.06); }

.btn--outline-paper { background: transparent; color: var(--paper); border: 1px solid var(--paper); }
.btn--outline-paper:hover { background: rgba(247, 245, 240, 0.12); color: var(--white); }

.btn--pill { border-radius: 999px; } /* WhatsApp CTA only */

/* Arrow text links */
.arrow-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  text-decoration: none;
}
.arrow-link:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   CHROME — Header (§2)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid rgba(35, 42, 51, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}
.header-logo { display: inline-flex; align-items: center; }
.header-logo img { height: 40px; width: auto; }

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.5rem);
}
.site-nav a {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
}
.site-nav a:hover { color: var(--pine); }
.site-nav a[aria-current="page"] {
  color: var(--pine);
  text-decoration: underline;
  text-decoration-color: var(--pine);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-jp { border-left: 1px solid var(--sage); padding-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(35, 42, 51, 0.08);
    box-shadow: var(--shadow-lift);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem) 1.25rem;
  }
  .site-nav a {
    display: block;
    padding: 0.7rem 0.25rem;
    min-height: 44px;
  }
  .site-nav a[aria-current="page"] { text-underline-offset: 4px; }
  .nav-jp {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--sage);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   CHROME — Contact band (§2)
   -------------------------------------------------------------------------- */
.contact-band {
  background: var(--pine);
  color: var(--paper);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.contact-band h2 { color: var(--paper); margin-bottom: 0.6rem; }
.contact-band p { color: var(--paper); max-width: 38rem; }
.contact-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.75rem;
}
.contact-band-tel {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  text-decoration: underline;
  text-decoration-color: var(--paper);
  text-underline-offset: 4px;
  padding: 0.5rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.contact-band-tel:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   CHROME — Footer (§2)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.75rem;
  font-size: var(--text-small);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--paper);
}
.footer-brand p { color: var(--sage); }
.footer-brand .footer-name { color: var(--paper); }

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.9rem;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.35rem; }
.site-footer a { color: var(--paper); text-decoration-color: rgba(247, 245, 240, 0.4); }
.site-footer a:hover { color: var(--white); text-decoration-color: var(--white); }

.footer-contact address { font-style: normal; }
.footer-contact p { margin-bottom: 0.45rem; color: var(--paper); }

.footer-bottom {
  border-top: 1px solid rgba(247, 245, 240, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 2rem;
  color: var(--sage);
  font-size: 0.8125rem;
}
.footer-bottom p { margin: 0; }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --------------------------------------------------------------------------
   Cards + tier variants (§2)
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid rgba(157, 180, 160, 0.45);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.card--highland { border-top: 3px solid var(--sage); }
.card--super-highland { border-top: 3px solid var(--gold); background: var(--gold-tint); }

.tier-chip {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.tier-chip--highland { background: rgba(157, 180, 160, 0.28); color: var(--pine); }
.tier-chip--super-highland { background: rgba(179, 137, 63, 0.12); color: var(--gold); }

/* --------------------------------------------------------------------------
   Data tables (§2)
   -------------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table th,
.spec-table td {
  border: 0;
  border-bottom: 1px solid rgba(35, 42, 51, 0.12);
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
}
.spec-table tr:first-child th,
.spec-table tr:first-child td { border-top: 1px solid rgba(35, 42, 51, 0.12); }
.spec-table th[scope="row"],
.spec-table .spec-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  width: 32%;
  min-width: 10rem;
}
.spec-table td { font-family: var(--font-body); color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Stat band (§2)
   -------------------------------------------------------------------------- */
.stat-band {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem clamp(2rem, 6vw, 5rem);
}
.stat-band .stat { flex: 1 1 12rem; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--pine);
}
.section--dark .stat-number,
.stat-band--dark .stat-number { color: var(--gold); }
.stat-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 0.5rem;
}
.section--dark .stat-label { color: var(--paper); }
.stat-footnote { display: block; font-size: 0.8125rem; color: var(--ink-soft); margin-top: 0.35rem; }
.section--dark .stat-footnote { color: var(--sage); }

/* --------------------------------------------------------------------------
   Motion — .fade-in system (§2)
   Only active when JS is present (html.js); reduced-motion renders final state.
   -------------------------------------------------------------------------- */
html.js .fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-base) ease-out, transform var(--t-base) ease-out;
  transition-delay: var(--fade-delay, 0s);
}
html.js .fade-in.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .fade-in { opacity: 1; transform: none; transition: none; }
  .card, .card:hover { transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

/* --------------------------------------------------------------------------
   Video component (§8)
   -------------------------------------------------------------------------- */
.video-slot { position: relative; border-radius: var(--radius); overflow: hidden; }
.video-slot video { display: block; width: 100%; height: auto; }
.video-slot--vertical { max-width: 360px; margin-inline: auto; }

.video-slot--pending img { display: block; width: 100%; height: auto; }
.video-pending-chip {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(35, 42, 51, 0.85);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
}
.video-slot-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--ink);
  margin-top: 0.75rem;
}

/* ==========================================================================
   INDEX.HTML — home page styles (§4.1; live here per §5)
   ========================================================================== */

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Light reinforcing scrim — the heavy scrim is baked into the hero files */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(35, 42, 51, 0.45), rgba(35, 42, 51, 0) 60%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero::after {
    background: linear-gradient(to top,
      rgba(35, 42, 51, 0.6) 0%,
      rgba(35, 42, 51, 0.48) 55%,
      rgba(35, 42, 51, 0.22) 80%,
      rgba(35, 42, 51, 0) 100%);
  }
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-text { max-width: 34rem; padding-block: clamp(3rem, 8vh, 5rem); }
.hero-kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 14px rgba(20, 25, 20, 0.65), 0 0 2px rgba(20, 25, 20, 0.5);
}
.hero h1 {
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 1.1rem;
}
.hero h1 .em { font-weight: 600; }
.hero-sub {
  color: var(--paper);
  font-size: 1.125rem;
  max-width: 30rem;
  margin-bottom: 1.9rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 720px) {
  .hero { align-items: flex-end; } /* mobile scrim is bottom-up — text sits over the bottom half */
  .hero-text { padding-block: 2.5rem; }
}

/* QUICK HIGHLIGHTS */
.highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.highlights-list li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--ink);
  padding-top: 0.9rem;
  border-top: 2px solid var(--gold);
}
@media (max-width: 960px) { .highlights-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .highlights-list { grid-template-columns: 1fr; gap: 1.25rem; } }

/* INTRO — photo right */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro-media img { border-radius: var(--radius); }
@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { order: 2; }
}

/* WHY BUYERS CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-grid h3 { margin-bottom: 0.6rem; }
.why-grid p { color: var(--ink-soft); font-size: var(--text-small); }
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ALTITUDE TEASER (dark band) */
.altitude-teaser-head { max-width: 40rem; margin-bottom: 2.5rem; }
.altitude-teaser-head p { color: var(--paper); }
.altitude-figure { margin: 0; }
.altitude-figure svg { display: block; width: 100%; height: auto; max-width: 46rem; }
.altitude-teaser .arrow-link { color: var(--sage); display: inline-block; margin-top: 2rem; }
.altitude-teaser .arrow-link:hover { color: var(--paper); }

/* Altitude diagram zone animation (shared with products.html full version) */
html.js .altitude-diagram .alt-zone {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-base) ease-out, transform var(--t-base) ease-out;
}
html.js .altitude-diagram.is-active .alt-zone { opacity: 1; transform: none; }
html.js .altitude-diagram.is-active .alt-zone:nth-of-type(2) { transition-delay: 0.3s; }
html.js .altitude-diagram.is-active .alt-zone:nth-of-type(3) { transition-delay: 0.6s; }
@media (prefers-reduced-motion: reduce) {
  html.js .altitude-diagram .alt-zone { opacity: 1; transform: none; transition: none; }
}

/* FEATURED PHOTOS */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.photo-grid figure { margin: 0; }
.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 820px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

/* PRODUCTS PREVIEW */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.tier-grid .card p { color: var(--ink-soft); }
.tier-grid .arrow-link { display: inline-block; margin-top: 0.75rem; }
@media (max-width: 720px) { .tier-grid { grid-template-columns: 1fr; } }

/* FROM FARM TO EXPORT */
.steps-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.steps-row li {
  counter-increment: step;
  border-top: 1px solid rgba(35, 42, 51, 0.2);
  padding-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--ink);
}
.steps-row li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--pine);
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.steps-caption { margin-top: 2.25rem; color: var(--ink-soft); }
@media (max-width: 960px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .steps-row { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }

/* MARKETS PREVIEW */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.markets-grid .card p { color: var(--ink-soft); font-size: var(--text-small); }
.markets-more { margin-top: 2.25rem; }
@media (max-width: 820px) { .markets-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS PREVIEW */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.quote-card {
  margin: 0; /* figure default side margins otherwise misalign the card grid */
  background: var(--white);
  border: 1px solid rgba(157, 180, 160, 0.45);
  border-radius: var(--radius);
  padding: 2rem;
}
.quote-card blockquote { margin: 0 0 1rem; }
.quote-card blockquote p {
  font-size: var(--text-body);
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.quote-card figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
@media (max-width: 720px) { .quote-grid { grid-template-columns: 1fr; } }
