/* ==========================================================================
   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-light: #f0d5a3;   /* high-luminance gold for type over photography */
  --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); }

/* Mobile ≤600px (§2 revised, David's QA mandate 2026-08-29): NO sideways
   scrolling — rows collapse to stacked blocks, label above its value, one
   thin rule between row-pairs. CSS-only; .table-scroll stays as a safety
   net and must never be the visible behavior on phones. */
@media (max-width: 600px) {
  .spec-table,
  .spec-table thead,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td { display: block; width: 100%; }
  .spec-table tr {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(35, 42, 51, 0.12);
  }
  .spec-table tr:first-child { border-top: 1px solid rgba(35, 42, 51, 0.12); }
  .spec-table th,
  .spec-table td,
  .spec-table tr:first-child th,
  .spec-table tr:first-child td {
    border: 0;
    padding: 0;
    min-width: 0;
  }
  .spec-table th[scope="row"],
  .spec-table .spec-label { width: 100%; margin-bottom: 0.2rem; }
}

/* --------------------------------------------------------------------------
   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 — bottom-anchored composition: vista breathes above, text block sits
   lower-left, a glassy fact strip closes the frame at the very bottom. */
.hero {
  position: relative;
  min-height: max(85vh, 36rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Very slow settle-in on the vista; runs once. Reduced-motion users never see it. */
@media (prefers-reduced-motion: no-preference) {
  .hero-media img { animation: hero-drift 18s ease-out both; }
}
@keyframes hero-drift {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}
/* Local reinforcing scrim — heavy scrim is baked into the hero files.
   Authority in the lower-left, clear air in the upper-right. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to top,
      rgba(35, 42, 51, 0.60) 0%,
      rgba(35, 42, 51, 0.30) 32%,
      rgba(35, 42, 51, 0) 60%),
    linear-gradient(105deg,
      rgba(35, 42, 51, 0.52) 0%,
      rgba(35, 42, 51, 0.20) 48%,
      rgba(35, 42, 51, 0) 72%);
}
.hero-body { position: relative; z-index: 1; width: 100%; }
.hero-text {
  max-width: 44rem;
  padding-top: clamp(7rem, 20vh, 12rem);
  padding-bottom: clamp(2.25rem, 5vh, 4rem);
}
.hero-kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  /* Light gold on a dark shadow, both breakpoints (David, 2026-08-30): mid-tone
     gold sat too close in luminance to sunlit foliage and disappeared. */
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(20, 25, 20, 0.95),
               0 0 14px rgba(20, 25, 20, 0.9),
               0 0 28px rgba(20, 25, 20, 0.75);
}
/* Kicker span pair: full line on desktop, short place-line on phones (§4.1
   mobile QA 2026-08-29). Copy for both lives in the HTML. */
.kicker-short { display: none; }
.hero-rule {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
  margin-bottom: 1.35rem;
}
.hero h1 {
  font-weight: 300;
  font-size: clamp(2.1rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: var(--paper);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(20, 25, 20, 0.35);
}
.hero h1 .em { display: block; font-weight: 600; }
.hero-sub {
  color: var(--paper);
  font-size: 1.125rem;
  max-width: 30rem;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.btn--hero { padding: 0.9rem 1.9rem; font-size: 1rem; }
.hero .btn--outline-paper { border-color: rgba(247, 245, 240, 0.65); }
.hero .btn--outline-paper:hover { border-color: var(--paper); }

/* Fact strip — slim, glassy, closes the hero at the very bottom */
.hero-strip {
  position: relative;
  z-index: 1;
  background: rgba(35, 42, 51, 0.55);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  border-top: 1px solid rgba(247, 245, 240, 0.14);
}
.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-block: 0.95rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
}
.hero-facts li { display: flex; align-items: center; }
.hero-facts li + li::before {
  content: "";
  width: 1px;
  height: 1rem;
  background: rgba(247, 245, 240, 0.35);
  margin-inline: 1.6rem;
}

/* Compact one-line strip for phones (desktop strip untouched). Hidden ≥721px.
   Left-aligned to the hero's text rhythm; padding-right reserves the fixed
   music toggle's lane (44px circle, js/main.js sibling js/music.js) so the
   two can never overlap wherever that button sits. */
.hero-facts-compact {
  display: none;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--paper);
  padding-block: 1rem;
  padding-right: 4rem;
  white-space: nowrap;
}
@media (max-width: 374px) {
  .hero-facts-compact { font-size: 0.66rem; letter-spacing: 0.1em; }
}

@media (max-width: 720px) {
  /* Mobile hero = the whole first viewport under the sticky header: bottom-
     anchored text over an aggressive scrim, compact fact strip at the fold. */
  .hero { min-height: calc(100vh - 72px); min-height: calc(100svh - 72px); }
  /* The photo is the ground here, the text is the hero — darken hard from the
     bottom so paper/gold type always sits on near-solid ink. */
  .hero::after {
    background:
      linear-gradient(to top,
        rgba(35, 42, 51, 0.90) 0%,
        rgba(35, 42, 51, 0.78) 34%,
        rgba(35, 42, 51, 0.58) 64%,
        rgba(35, 42, 51, 0.34) 82%,
        rgba(35, 42, 51, 0.10) 100%);
  }
  /* padding-bottom 5.5rem keeps the CTAs clear of the fixed music toggle
     (44px circle at right 1.25rem / bottom 5.5rem on ≤600px — js/music.js). */
  .hero-text { padding-top: 6rem; padding-bottom: 5.5rem; }
  /* Short single-line kicker on phones; full line returns ≥721px */
  .kicker-full { display: none; }
  .kicker-short { display: inline; }
  /* Colour + shadow now come from the base rule; phones only resize. */
  .hero-kicker { font-size: 0.72rem; letter-spacing: 0.2em; margin-bottom: 0.85rem; }
  .hero-rule { width: 3rem; margin-bottom: 1.1rem; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 2.8rem); line-height: 1.06; margin-bottom: 1rem; }
  .hero-sub { font-size: 1rem; line-height: 1.6; max-width: 22rem; margin-bottom: 1.6rem; }
  .hero-ctas { gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; }
  .btn--hero { padding: 0.85rem 1.5rem; font-size: 0.9375rem; }
  .hero-facts { display: none; }
  .hero-facts-compact { display: block; }
}

/* 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 animation (shared with products.html full version) —
   revised §6, David's QA 2026-08-29: ONE continuous bottom-up reveal of the
   whole silhouette (clip-path inset wipe on .alt-mountain, 1.2s ease-out,
   once), with each label + leader line fading in as the wipe passes its
   elevation. No more zone-by-zone popping. */
html.js .altitude-diagram .alt-mountain {
  clip-path: inset(101% 0 0 0);
  transition: clip-path 1.2s ease-out;
}
html.js .altitude-diagram.is-active .alt-mountain { clip-path: inset(0 0 0 0); }
html.js .altitude-diagram .alt-label {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
html.js .altitude-diagram.is-active .alt-label { opacity: 1; }
html.js .altitude-diagram.is-active .alt-label--1 { transition-delay: 0.25s; } /* lowland 0–200 */
html.js .altitude-diagram.is-active .alt-label--2 { transition-delay: 0.4s; }  /* midland 200–500 */
html.js .altitude-diagram.is-active .alt-label--3 { transition-delay: 0.7s; }  /* highland 400–900 */
html.js .altitude-diagram.is-active .alt-label--4 { transition-delay: 1.0s; }  /* super-highland */
@media (prefers-reduced-motion: reduce) {
  html.js .altitude-diagram .alt-mountain { clip-path: none; transition: none; }
  html.js .altitude-diagram .alt-label { opacity: 1; transition: none; }
}

/* Wide vs narrow diagram variants — the diagram must FIT ≤600px viewports,
   never pan sideways (David's QA mandate 2026-08-29). .altitude-scroll stays
   as an overflow safety net only; it must never be the visible behavior. */
.altitude-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.altitude-figure svg.altitude-diagram--narrow { display: none; }
@media (max-width: 600px) {
  .altitude-figure svg.altitude-diagram--wide { display: none; }
  .altitude-figure svg.altitude-diagram--narrow { display: block; max-width: 26rem; }
}

/* 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; } }
