/* ============================================================
   Usukh Gurvan Togtokh — Өсөх Гурван Тогтох
   Crate-label design system (Aug 2026): a market-stamp aesthetic —
   thick rules, hard offset shadows, condensed uppercase display type
   over a warm cream/forest-green/burnt-orange palette. Structured to
   port to Blade: each CSS section maps to a Blade partial (@component).
   ============================================================ */

:root {
  /* Palette */
  --cream:   #fdf6e8;  /* page background */
  --deep:    #12301f;  /* primary text, dark bands, borders */
  --accent:  #e0491f;  /* decorative only: shadows, borders, icons, dark-bg accents — 3.8:1 on cream, fails AA for text */
  --accent-cta: #b33a19; /* text-safe on cream: buttons, links, labels, errors — 5.5:1 */
  --tan:     #f0d9a8;  /* decorative rings, one band background */
  --sage-1:  #8fb39a;  /* muted text on dark bg */
  --sage-2:  #c3d6c8;  /* lighter muted text on dark bg */
  --sage-3:  #2c5138;  /* dividers/borders on dark bg */
  --taupe:   #b9ae90;  /* dashed dividers on light bg */
  --ink-muted: #3d4a3f; /* secondary body text on light bg */
  --ink-faint: #606e62; /* labels/eyebrows on light bg — 5.0:1 on cream, was 4.22 and failed AA */
  --copyright: #0d2417;
  --hairline: rgba(18, 48, 31, .16);

  /* Type — Oswald (display/labels, condensed uppercase) + PT Serif (body) */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "PT Serif", Georgia, serif;

  /* Rhythm */
  --maxw: 1320px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --rule: 3px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--deep);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, .95rem + .25vw, 1.0625rem);
  line-height: 1.72;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
[id] { scroll-margin-top: 90px; } /* sticky header clearance for anchor links */
a { color: var(--accent-cta); text-decoration: none; }
a:hover { color: var(--deep); }
.on-dark a { color: var(--sage-1); }
.on-dark a:hover { color: var(--cream); }
p { margin: 0 0 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1.06;
  margin: 0;
  color: inherit;
}

/* Visible keyboard focus everywhere */
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; }
.on-dark :focus-visible { outline-color: var(--cream); }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -70px;
  background: var(--deep); color: var(--cream);
  padding: .6rem 1.2rem; z-index: 200;
  font: 500 .85rem/1 var(--font-display); letter-spacing: .08em;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- small type utilities ---------- */
.eyebrow {
  display: block;
  font: 400 .78rem/1 var(--font-display);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-cta); margin: 0 0 .85rem;
}
.on-dark .eyebrow { color: var(--sage-1); }

/* ============================================================
   @component  buttons — sharp corners, hard offset-shadow on hover
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 500; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
  padding: 1.05rem 2rem; border: var(--rule) solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--accent-cta); color: var(--cream); border-color: var(--accent-cta); }
.btn--primary:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--deep); color: var(--cream); }
.on-dark .btn--primary:hover { box-shadow: 6px 6px 0 var(--cream); }
.btn--outline { border-color: var(--deep); color: var(--deep); background: transparent; }
.btn--outline:hover { background: var(--deep); color: var(--cream); }
.on-dark .btn--outline { border-color: var(--cream); color: var(--cream); }
.on-dark .btn--outline:hover { background: var(--cream); color: var(--deep); }

.link-underline {
  display: inline-block;
  font-family: var(--font-display); font-weight: 500; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--deep);
  padding-bottom: .2rem;
  border-bottom: 2px solid var(--deep);
  transition: color .18s ease, border-color .18s ease;
}
.link-underline:hover { color: var(--accent-cta); border-bottom-color: var(--accent-cta); }
.on-dark .link-underline { color: var(--cream); border-bottom-color: var(--cream); }
.on-dark .link-underline:hover { color: var(--sage-1); border-bottom-color: var(--sage-1); }

/* ============================================================
   @component  announcement bar
   ============================================================ */
.announce {
  background: var(--cream);
  color: var(--ink-faint);
  text-align: center;
  font: 400 .82rem/1 var(--font-display);
  letter-spacing: .06em;
  padding: .6rem var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.announce__sep { margin-inline: .6rem; opacity: .5; }

/* ============================================================
   @component  header / nav — two-tone: accent brand block + dark bar
   ============================================================ */
.site-header {
  background: var(--deep);
  border-bottom: var(--rule) solid var(--deep);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(0, 0, 0, .18); }
.site-header .container {
  display: flex; align-items: stretch; gap: 0;
  flex-wrap: wrap;
  padding-inline: 0;
  max-width: none;
}
.site-header .container > * { padding-inline: var(--gutter); }
.site-header .container > .site-nav,
.site-header .container > .lang-switch { padding-inline: 0; margin-inline: var(--gutter); }

.site-header__brand {
  background: var(--accent-cta); flex: none;
  display: flex; align-items: center;
  padding-block: 1rem;
  transition: padding-block .25s ease;
}
.site-header.is-scrolled .site-header__brand { padding-block: .7rem; }

.lockup { display: inline-flex; align-items: center; gap: .65rem; flex: none; }
.lockup__mark { width: 42px; height: auto; flex: none; }
.wordmark {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: .06em;
  color: var(--cream); line-height: 1;
}

.site-nav { margin-left: 0; flex: 1; display: flex; align-items: center; padding-block: 0 !important; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: clamp(1.3rem, 2.6vw, 2.4rem); margin: 0; padding: 0; }
.site-nav a {
  font-family: var(--font-display); font-weight: 400; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem 0;
  color: var(--sage-2);
  border-bottom: 2px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--cream); border-bottom-color: var(--accent); }

.header-phone {
  display: flex; align-items: center;
  border-left: 2px solid var(--sage-3);
  font: 500 .82rem/1 var(--font-display); color: var(--cream); letter-spacing: .1em;
}
.header-phone a { color: inherit; }
.header-phone a:hover { color: var(--sage-1); }

.lang-switch {
  display: inline-flex; align-items: center; gap: .05rem;
  border-left: 2px solid var(--sage-3);
  font: 500 .82rem/1 var(--font-display); letter-spacing: .1em;
  align-self: stretch;
}
.lang-switch a, .lang-switch button {
  font: inherit; background: none; border: 0; cursor: pointer;
  color: var(--sage-1); padding: .3rem .4rem;
}
.lang-switch a.is-active, .lang-switch button[aria-pressed="true"] { color: var(--cream); }
.lang-switch a:hover, .lang-switch button:hover { color: var(--cream); }

.header-cta { display: none; }
@media (min-width: 921px) {
  .header-cta {
    display: inline-flex; align-self: stretch; align-items: center;
    border-radius: 0; border: 0; border-left: 2px solid var(--sage-3);
    padding-inline: 1.6rem; margin: 0; white-space: nowrap;
  }
}

.nav-toggle { display: none; }

@media (max-width: 920px) {
  .site-header .container { padding-block: 0; }
  .site-header__brand { padding-block: .8rem; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    order: 3; margin-left: auto;
    width: 42px; height: 42px;
    background: none; border: 1.5px solid var(--sage-1); border-radius: 999px;
    color: var(--cream); cursor: pointer;
  }
  .nav-toggle svg { width: 18px; height: 18px; }
  .header-phone { display: none; }
  .lang-switch { order: 2; border-left: 0; margin-inline: .5rem; }
  .site-nav {
    order: 4; flex-basis: 100%; margin-inline: 0 !important;
    display: none; padding-block: .5rem 1rem !important;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; padding-inline: var(--gutter); }
  .site-nav li { border-top: 1px solid var(--sage-3); }
  .site-nav a { display: block; padding: .9rem 0; border-bottom: 0; }
  .site-nav .nav-contact { display: block; margin-block: .8rem; text-align: center; }
}
@media (min-width: 921px) { .site-nav .nav-contact-li { display: none; } }

/* ============================================================
   @component  hero — graphic (no photo): big display type,
   decorative drifting rings, merged "quick facts" card
   ============================================================ */
@keyframes crate-drift {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.04); }
  100% { transform: rotate(0deg) scale(1); }
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
}
.hero__decor {
  position: absolute;
  border: 14px solid var(--tan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__decor--a { right: -100px; top: -110px; width: 340px; height: 340px; animation: crate-drift 30s ease-in-out infinite; }
.hero__decor--b { right: 90px; bottom: -130px; width: 210px; height: 210px; opacity: .7; border-width: 10px; }
@media (max-width: 640px) { .hero__decor { display: none; } }

.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.35fr .65fr;
  gap: clamp(2rem, 4vw, 2.75rem);
  align-items: end;
}
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; } }

.hero__kicker {
  display: inline-block;
  background: var(--deep); color: var(--cream);
  padding: .5rem 1rem;
  font: 500 .78rem/1 var(--font-display); letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.hero__title {
  font-size: clamp(2.5rem, 1.9rem + 3.4vw, 4.4rem);
  max-width: 15ch;
  margin: 0 0 1.6rem;
}
.hero__lead {
  font-family: var(--font-body); font-size: 1.05rem; line-height: 1.72;
  color: var(--ink-muted); max-width: 50ch; margin: 0 0 1.9rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Quick-facts card — replaces a separate stats band; sits inside the hero grid */
.hero-card { border: var(--rule) solid var(--deep); background: var(--cream); }
.hero-card__head {
  background: var(--deep); color: var(--cream);
  padding: .8rem 1rem; text-align: center;
  font: 500 .74rem/1 var(--font-display); letter-spacing: .16em; text-transform: uppercase;
}
.hero-card__body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .8rem; }
.hero-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px dashed var(--taupe); padding-bottom: .65rem;
}
.hero-card__row:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card__row--badge { align-items: center; gap: .7rem; }
.hero-card__label {
  font: 400 .76rem/1.3 var(--font-display); letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint); max-width: 16ch;
}
.hero-card__badge-icon { width: 26px; height: 26px; color: var(--accent); flex: none; }
.hero-card__foot {
  border-top: var(--rule) solid var(--deep);
  padding: .95rem 1.1rem;
  font: 400 .84rem/1.6 var(--font-body); color: var(--ink-muted);
}

/* stat number + suffix — reused inside the hero card (count-up JS targets .stat__num) */
.stat__figure { display: inline-flex; align-items: baseline; }
.stat__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.5rem; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__suffix { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--accent-cta); margin-left: .1rem; }

/* ============================================================
   @component  section shell
   ============================================================ */
.section { padding-block: clamp(3rem, 6.5vw, 4.5rem); }
.section__title {
  font-size: clamp(1.75rem, 1.4rem + 1.8vw, 3.1rem);
  margin: 0;
}
.section__title--center { text-align: center; margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.section__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.section__head p { margin: 0; max-width: 34ch; font-size: .95rem; color: var(--ink-muted); }
.section__foot { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* Flat placeholder — used when a media item has no image */
.ph { background: var(--tan); aspect-ratio: 1 / 1; }
img.ph { object-fit: cover; display: block; width: 100%; }

/* ============================================================
   @component  category grid — numbered cards, alternating panels
   ============================================================ */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  border-top: 5px solid var(--deep);
}
.cat-tile {
  display: flex; flex-direction: column;
  border-left: var(--rule) solid var(--deep);
  background: var(--cream); color: var(--deep);
  transition: background .2s ease;
}
.cat-tile:first-child { border-left: 0; }
.cat-tile:nth-child(4n+1) { background: var(--deep); color: var(--cream); border-left: 0; }
.cat-tile:nth-child(4n+3) { background: var(--accent-cta); color: var(--cream); }
.cat-tile__media { aspect-ratio: 16 / 10; }
.cat-tile__body { padding: 1.4rem 1.3rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; }
.cat-tile__num {
  font: 400 .7rem/1 var(--font-display); letter-spacing: .16em;
  color: var(--ink-faint); /* default: plain cream-bg card */
}
.cat-tile:nth-child(4n+1) .cat-tile__num { color: var(--sage-1); } /* deep-bg card: 6.2:1 */
.cat-tile:nth-child(4n+3) .cat-tile__num { color: var(--cream); }  /* accent-bg card: 5.5:1 */
.cat-tile__name { font: 600 1.5rem/1.1 var(--font-display); text-transform: uppercase; }

/* ============================================================
   @component  quality process — 4 numbered steps, tan band
   ============================================================ */
.process { background: var(--tan); border-top: 5px solid var(--deep); padding-block: clamp(3rem, 6.5vw, 4.5rem); }
.process .eyebrow { color: var(--deep); } /* accent-cta is only 4.3:1 on tan, fails AA */
.process__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.4rem);
}
.step {
  background: var(--cream); border: var(--rule) solid var(--deep);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--deep); }
.step__head {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--deep); color: var(--cream);
  padding: .7rem .9rem;
  font: 500 .74rem/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase;
}
.step__head span:last-child { color: var(--sage-1); }
.step__body { padding: 1.15rem 1.1rem 1.35rem; display: flex; flex-direction: column; gap: .6rem; }
.step__title { font: 600 1.35rem/1.1 var(--font-display); text-transform: uppercase; }
.step__text { font: 400 .9rem/1.6 var(--font-body); color: var(--ink-muted); margin: 0; }

/* ============================================================
   @component  cold-chain / suppliers split band
   ============================================================ */
.partners { background: var(--cream); border-top: 5px solid var(--deep); }
.partners .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding-inline: 0; max-width: none;
}
.partners__media { position: relative; min-height: 380px; border-right: 5px solid var(--deep); }
.partners__media .ph { width: 100%; height: 100%; aspect-ratio: auto; }
.partners__text {
  padding: clamp(2.5rem, 5vw, 3.4rem) var(--gutter);
  display: flex; flex-direction: column; justify-content: center; gap: 1.1rem;
}
.partners__cta { align-self: flex-start; }
.partners__title { font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.9rem); margin: 0; }
.partners__text > p { margin: 0; color: var(--ink-muted); font-size: 1rem; }
@media (max-width: 820px) {
  .partners .container { grid-template-columns: 1fr; }
  .partners__media { border-right: 0; border-bottom: 5px solid var(--deep); min-height: 260px; }
}

/* ============================================================
   @component  brand story band
   ============================================================ */
.story { background: var(--deep); color: var(--cream); }
.story .container { max-width: 800px; text-align: center; }
.story__title { font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.9rem); margin: 0 0 1.2rem; }
.story p { margin: 0 0 1.8rem; color: var(--sage-2); font-family: var(--font-body); }

/* ============================================================
   @component  news grid
   ============================================================ */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.news-item { display: block; border: var(--rule) solid var(--deep); background: var(--cream); transition: transform .2s ease, box-shadow .2s ease; }
.news-item:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--deep); }
.news-item .ph { margin-bottom: 0; }
.news-item__title { font: 600 1.15rem/1.15 var(--font-display); text-transform: uppercase; margin: 1rem 1.1rem .4rem; }
.news-item__date { font: 400 .8rem/1 var(--font-display); letter-spacing: .08em; color: var(--ink-faint); margin: 0 1.1rem 1.1rem; }
@media (max-width: 780px) {
  .news-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

/* ============================================================
   @component  contact CTA band (homepage) — dark/light split
   ============================================================ */
.cta-split { border-top: 5px solid var(--deep); display: grid; grid-template-columns: 1fr 1fr; background: var(--deep); color: var(--cream); }
.cta-split__panel { padding: clamp(2.75rem, 5.5vw, 3.6rem) var(--gutter); display: flex; flex-direction: column; gap: 1.2rem; }
.cta-split__panel--dark { border-right: 3px solid var(--sage-3); }
.cta-split__panel--light { background: var(--cream); color: var(--deep); justify-content: center; }
.cta-split h2 { font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.7rem); max-width: 16ch; }
.cta-split p { margin: 0; max-width: 42ch; color: var(--sage-2); font-family: var(--font-body); }
.cta-split__panel--light p { color: var(--ink-faint); }
.cta-split__direct { display: flex; flex-direction: column; gap: .5rem; }
.cta-split__direct--bordered { border-top: 2px solid var(--hairline); padding-top: 1.3rem; }
.cta-split__direct-label { font: 400 .78rem/1 var(--font-display); letter-spacing: .14em; color: var(--sage-1); text-transform: uppercase; }
.cta-split__panel--light .cta-split__direct-label { color: var(--ink-faint); }
.cta-split__panel--dark .cta-split__direct a { color: var(--cream); }
.cta-split__phone { font: 600 2rem/1 var(--font-display); color: var(--deep); letter-spacing: .01em; transition: color .18s ease; }
.cta-split__phone:hover { color: var(--accent); }
@media (max-width: 780px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__panel--dark { border-right: 0; border-bottom: 3px solid var(--sage-3); }
}

/* ============================================================
   @component  newsletter
   ============================================================ */
.newsletter { background: var(--cream); border-top: 5px solid var(--deep); }
.newsletter .container { max-width: 640px; text-align: center; }
.newsletter__lead { margin: 0 0 2rem; color: var(--ink-muted); }
.newsletter__form {
  display: flex; gap: .75rem; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.newsletter__input {
  font-family: var(--font-body); font-size: 1rem; color: var(--deep);
  background: #fff;
  border: var(--rule) solid var(--deep);
  padding: .8rem 1.4rem;
  flex: 1 1 260px; max-width: 420px; min-width: 0;
}
.newsletter__input::placeholder { color: var(--ink-faint); }
.newsletter__submit {
  flex: none;
  width: 54px; height: 54px;
  background: var(--deep); color: var(--cream);
  border: var(--rule) solid var(--deep); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.newsletter__submit:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--accent); }
.newsletter__submit svg { width: 20px; height: 20px; }
.newsletter__note { font: 500 .95rem/1.4 var(--font-body); margin-top: 1.1rem; }
.newsletter__note[hidden] { display: none; }

/* ============================================================
   @component  footer
   ============================================================ */
.site-footer { background: var(--deep); color: var(--sage-2); border-top: 5px solid var(--deep); }
.site-footer a { color: var(--sage-2); }
.site-footer a:hover { color: var(--cream); }
.site-footer .container { padding-block: clamp(2.75rem, 6vw, 4rem) 1.6rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px dashed var(--sage-3);
}
.footer__brand .lockup { margin-bottom: 1rem; }
.footer__brand .lockup__mark { width: 44px; }
.footer__brand .wordmark {
  display: inline-block; background: var(--accent-cta); color: var(--cream);
  padding: .5rem .8rem; font-size: 1rem;
}
.footer__tagline { font-family: var(--font-body); font-size: .92rem; max-width: 32ch; margin: 0 0 .6rem; color: var(--sage-1); }
.footer__col h3 {
  font: 400 .74rem/1 var(--font-display); letter-spacing: .18em; text-transform: uppercase;
  margin: 0 0 1rem; color: var(--sage-1); font-weight: 400;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: .65rem; font: 400 .85rem/1.3 var(--font-display); letter-spacing: .06em; text-transform: uppercase; }
.footer__col a { border-bottom: 0; }
.footer__col p { margin: 0 0 .7rem; font-family: var(--font-body); font-size: .92rem; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

.copyright {
  background: var(--copyright);
  color: var(--sage-1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  font: 400 .78rem/1 var(--font-display); letter-spacing: .1em;
  padding: 1.1rem var(--gutter);
}

.footer__social {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .3rem;
  font: 500 .82rem/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase;
}
.footer__reg { font-family: var(--font-body); font-size: .85rem; color: var(--sage-1); }

/* ---------- gentle scroll reveal (disabled under reduced-motion via JS + the global rule) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--1 { transition-delay: .05s; }
.reveal--2 { transition-delay: .15s; }
.reveal--3 { transition-delay: .25s; }
.reveal--4 { transition-delay: .35s; }
.cat-grid > .reveal:nth-child(2), .news-grid > .reveal:nth-child(2), .process__grid > .reveal:nth-child(2) { transition-delay: .08s; }
.cat-grid > .reveal:nth-child(3), .news-grid > .reveal:nth-child(3), .process__grid > .reveal:nth-child(3) { transition-delay: .16s; }
.cat-grid > .reveal:nth-child(4), .news-grid > .reveal:nth-child(4), .process__grid > .reveal:nth-child(4) { transition-delay: .24s; }
.cat-grid > .reveal:nth-child(5) { transition-delay: .32s; }

/* ============================================================
   Screen-reader-only utility
   ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   @component  page head + breadcrumbs
   ============================================================ */
.page-head { background: var(--tan); padding-block: clamp(2.25rem, 5vw, 3.5rem); border-bottom: 5px solid var(--deep); }
.page-head__title {
  font-size: clamp(2rem, 1.5rem + 2.4vw, 3.4rem);
  margin: .7rem 0 0;
}
.page-head__lead { max-width: 60ch; margin: 1rem 0 0; font-family: var(--font-body); color: var(--ink-muted); }

.crumbs {
  font: 400 .8rem/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase;
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; color: var(--ink-faint);
}
.crumbs a { color: var(--ink-faint); border-bottom: 1px solid transparent; }
.page-head .crumbs, .page-head .crumbs a { color: var(--ink-muted); } /* ink-faint fails AA on the tan page-head bg */
.crumbs a:hover { color: var(--deep); border-bottom-color: var(--deep); }
.crumbs span[aria-hidden] { opacity: .5; }
.crumbs [aria-current] { color: var(--deep); }

/* ============================================================
   @component  section variants
   ============================================================ */
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.section--alt { background: var(--tan); padding-block: clamp(2.5rem, 6vw, 4rem); }

.empty-state { text-align: center; padding-block: 2.5rem; font-family: var(--font-body); }

/* ============================================================
   @component  spec list
   ============================================================ */
.spec { margin: 0; }
.spec__row {
  display: flex; justify-content: space-between; gap: 1.25rem;
  padding: .8rem 0; border-bottom: 1px dashed var(--taupe);
}
.spec__row dt { font: 500 .82rem/1 var(--font-display); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }
.spec__row dd { margin: 0; text-align: right; font-family: var(--font-body); }

/* ============================================================
   @component  prose (article body, about copy)
   ============================================================ */
.prose > * + * { margin-top: 1.1rem; }
.prose p { max-width: 68ch; margin: 0; font-family: var(--font-body); }
.prose h2 {
  font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.9rem);
  margin-top: 2.2rem;
}
.prose h2:first-child { margin-top: 0; }

/* ============================================================
   @component  two-column layouts
   ============================================================ */
.two-col {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.two-col--form { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.side-card {
  background: var(--cream);
  border: var(--rule) solid var(--deep);
  position: sticky; top: 100px;
}
.side-card__title {
  background: var(--deep); color: var(--cream);
  margin: 0; padding: .85rem 1.2rem;
  font: 500 .82rem/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase;
}
.side-card > .spec { padding: 0 1.2rem; }
.side-card > .spec .spec__row:first-child { padding-top: 1.2rem; }
.side-card__cta { margin: 1.2rem; width: calc(100% - 2.4rem); }
@media (max-width: 900px) { .side-card { position: static; } }

/* ============================================================
   @component  article
   ============================================================ */
.article { max-width: 760px; }
.article__title { font-size: clamp(1.9rem, 1.5rem + 2vw, 2.9rem); margin: .9rem 0 .5rem; }
.article__date { font: 400 .85rem/1 var(--font-display); letter-spacing: .06em; color: var(--ink-faint); margin: 0 0 1.6rem; }
.article__hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-bottom: 1.8rem; background: var(--tan); }
.article__back { margin-top: 2.2rem; }

.pagination-wrap { margin-top: clamp(2rem, 4vw, 3rem); font-family: var(--font-display); }
.pagination-wrap svg { width: 1.05rem; height: 1.05rem; display: inline; }

/* ============================================================
   @component  forms
   ============================================================ */
.form-heading { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.9rem); margin: 0 0 1.5rem; }

.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font: 500 .82rem/1 var(--font-display); letter-spacing: .04em; text-transform: uppercase; }
.req { color: var(--accent-cta); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--deep);
  background: #fff;
  border: 1.5px solid var(--hairline);
  padding: .7rem .9rem;
  width: 100%;
  transition: border-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--deep); }
.field input[aria-invalid], .field textarea[aria-invalid] { border-color: var(--accent-cta); }
.field textarea { resize: vertical; }
.field__err { font-family: var(--font-body); font-size: .85rem; color: var(--accent-cta); font-weight: 600; }
.inquiry-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.inquiry-form__hint { margin: 0; font-family: var(--font-body); font-size: .9rem; color: var(--ink-faint); }
@media (max-width: 620px) { .inquiry-form { grid-template-columns: 1fr; } }

.form-note { padding: 1rem 1.15rem; margin: 0; font-family: var(--font-body); font-size: .98rem; }
.form-note--ok { background: var(--tan); border-left: 4px solid var(--deep); }
.form-note--ok strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; }
.form-note--err { color: var(--accent-cta); font-weight: 600; }
