/* ============================================================
   Something Thai Inc. — site styles
   Modern, self-contained design system (no framework dependency)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand greens (echo the STI logo) */
  --green-900: #0f3329;
  --green-800: #16463a;
  --green-700: #1d5a49;
  --green-600: #24705b;
  --green-500: #2f8a6f;
  --green-100: #e4f0ea;

  /* Warm gold accent (echoes spices / Golden Boy) */
  --gold-600: #b07d18;
  --gold-500: #cf972a;
  --gold-400: #e3b34e;
  --gold-100: #fbf0d7;

  --chili: #c2451f; /* warm secondary pop */

  /* Neutrals (warm) */
  --ink: #1b231f;
  --body: #41504a;
  --muted: #6c7a73;
  --line: #e7e2d7;
  --line-strong: #d8d2c4;
  --bg: #fbf9f4;
  --surface: #ffffff;
  --surface-alt: #f4f1e9;

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radii & shadows */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16, 40, 32, 0.06), 0 2px 8px rgba(16, 40, 32, 0.05);
  --shadow-md: 0 8px 24px rgba(16, 40, 32, 0.10);
  --shadow-lg: 0 22px 48px rgba(16, 40, 32, 0.18);

  /* Layout */
  --container: 1180px;
  --header-h: 74px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--green-700); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--green-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.section--alt { background: var(--surface-alt); }
.section--green {
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: #d9e6e0;
}
.section--green h2, .section--green h3 { color: #fff; }

.skip-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-130%);
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: .65rem 1.1rem;
  border-radius: var(--r-pill);
  z-index: 200;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); color:#fff; }

/* Section heading block */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section--green .eyebrow { color: var(--gold-400); }

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: .35rem; }
.section--green .section-head p { color: #b9cdc5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .9rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold-500);
  color: #2a1d02;
  box-shadow: 0 8px 18px rgba(176, 125, 24, 0.28);
}
.btn-primary:hover { background: var(--gold-400); color: #2a1d02; box-shadow: 0 12px 26px rgba(176,125,24,.34); transform: translateY(-2px); }

.btn-dark {
  background: var(--green-700);
  color: #fff;
}
.btn-dark:hover { background: var(--green-600); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--green-600); color: var(--green-600); background: var(--surface); }

.btn-ghost-light {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color:#fff; }

.btn-lg { padding: 1.05rem 2rem; font-size: 1.06rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--green-600), var(--green-800));
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), var(--shadow-sm);
  flex: none;
}
img.brand-mark {
  background: none;
  box-shadow: none;
  border-radius: 0;
  object-fit: contain;
}
.brand small { display:block; font-family: var(--font-body); font-size:.61rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); margin-top: 3px; }
.brand-text { line-height: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: .55rem .85rem;
  border-radius: var(--r-pill);
  color: var(--body);
  font-weight: 500;
  font-size: .98rem;
}
.nav-links a:hover { color: var(--green-700); background: var(--green-100); }
.nav-links a.active { color: var(--green-800); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--green-800), var(--green-900) 70%);
  color: #eaf2ee;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 420px at 88% -8%, rgba(227,179,78,.22), transparent 60%),
    radial-gradient(560px 360px at -5% 110%, rgba(47,138,111,.35), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.2);
  color: #f2e6c9;
  padding: .4rem .9rem;
  border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 3.85rem);
  line-height: 1.04;
  margin-bottom: 1.1rem;
}
.hero h1 em { color: var(--gold-400); font-style: italic; }
.hero-lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: #cfe0d8; max-width: 36ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7 / 6;
  background: var(--green-700);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 50%; bottom: 18px; transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(15, 51, 41, .82);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  padding: .7rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem;
}
.hero-badge strong { color: var(--gold-400); }

/* Sub-page hero (compact) */
.page-hero {
  position: relative;
  background: linear-gradient(150deg, var(--green-800), var(--green-900));
  color: #e7f0ea;
  overflow: hidden;
}
.page-hero::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(700px 320px at 92% -20%, rgba(227,179,78,.18), transparent 60%);
  pointer-events:none;
}
.page-hero .container { position: relative; z-index: 1; padding-block: clamp(3rem, 6vw, 4.5rem); }
.page-hero h1 { color:#fff; font-size: clamp(2rem, 4.4vw, 3rem); }
.page-hero p { color:#c6d8d0; max-width: 56ch; font-size: 1.12rem; }
.breadcrumb {
  display:flex; flex-wrap:wrap; gap:.4rem; align-items:center;
  list-style:none; margin:0 0 1.1rem; padding:0;
  font-size:.86rem; color:#9fc0b3;
}
.breadcrumb a { color:#cfe0d8; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb li::after { content:"/"; margin-left:.4rem; color:#5f8676; }
.breadcrumb li:last-child::after { content:""; }
.breadcrumb [aria-current="page"] { color:#fff; }

/* ---------- Cards / product grid ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92);
  color: var(--green-800);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.card-body { padding: 1.5rem 1.5rem 1.65rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.42rem; margin-bottom: .5rem; }
.card-body p { color: var(--muted); font-size: .98rem; }
.card-link {
  margin-top: 1.1rem;
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .95rem; color: var(--green-700);
}
.card-link svg { width: 1.05em; height: 1.05em; transition: transform .18s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* clickable whole-card */
.card-stretch { position: relative; }
.card-stretch .stretched::after {
  content:""; position:absolute; inset:0;
}

/* ---------- Trust / stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; line-height: 1; }
.stat .num span { color: var(--gold-400); }
.stat .label { color: #b9cdc5; font-size: .92rem; margin-top: .5rem; }
.stats--3col { grid-template-columns: repeat(3, 1fr); }

/* Feature list (value props) */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.feature .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ---------- Article / prose ---------- */
.prose { font-size: 1.075rem; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2.2rem; }
.prose h3 { font-size: 1.3rem; margin-top: 1.8rem; }
.prose p { margin-bottom: 1.15rem; }
.prose ul { margin: 0 0 1.2rem; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.7rem; margin-bottom: .6rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--gold-500); transform: rotate(45deg);
}
.prose strong { color: var(--ink); }

/* Two-column content with sticky aside */
.split {
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.media-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.media-frame img { width: 100%; }

.aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.aside-card h3 { font-size: 1.2rem; }
.spec-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list .k { color: var(--muted); }
.spec-list .v { color: var(--ink); font-weight: 600; text-align: right; }

/* Pills / chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.chip {
  background: var(--green-100);
  color: var(--green-800);
  border-radius: var(--r-pill);
  padding: .4rem .85rem;
  font-size: .85rem; font-weight: 600;
}

/* ---------- Data table (spices) ---------- */
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}
.table-scroll { overflow-x: auto; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
  min-width: 540px;
}
table.data caption { text-align: left; padding: 1rem 1.2rem 0; color: var(--muted); font-size: .9rem; }
table.data th, table.data td { padding: .85rem 1.2rem; text-align: left; }
table.data thead th {
  background: var(--green-800);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: sticky; top: 0;
}
table.data tbody tr { border-top: 1px solid var(--line); }
table.data tbody tr:nth-child(even) { background: var(--surface-alt); }
table.data tbody tr:hover { background: var(--green-100); }
table.data td.num, table.data th.num { text-align: right; font-variant-numeric: tabular-nums; }
table.data .group td {
  background: var(--gold-100);
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .78rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
  border-radius: var(--r-lg);
  color: #e7f0ea;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.6rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .35rem; }
.cta-band p { color: #c3d6ce; margin: 0; }
.cta-band .cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-row:first-of-type { padding-top: 0; }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row .ico { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.info-row .ico svg { width: 22px; height: 22px; }
.info-row .label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .15rem; }
.info-row .val { color: var(--ink); font-weight: 600; }
.info-row .val a { font-weight: 600; }

.form-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-sm);
  min-height: 200px;
}
.form-frame iframe { border: 0; width: 100% !important; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: #aebfb7;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #80988e; }
.footer-about p { color: #9fb3aa; margin-top: 1rem; font-size: .96rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: #a9bcb3; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; color: #a9bcb3; font-size: .96rem; line-height: 1.7; }
.footer-col address a { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  align-items: center; justify-content: space-between;
  font-size: .86rem; color: #84988e;
}
.footer-bottom .badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-bottom .badge {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-pill);
  padding: .25rem .7rem; font-size: .76rem; letter-spacing: .04em;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.lead { font-size: 1.18rem; color: var(--body); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; aspect-ratio: 16 / 10; }
  .hero-badge { display: none; }
  .split { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-about { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

@media (max-width: 800px) {
  .nav-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem clamp(1.1rem, 4vw, 2.25rem) 1.4rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: .85rem .6rem; font-size: 1.05rem; border-radius: var(--r-md); }
  .nav-links .nav-cta { margin-top: .5rem; }
  .nav-links .nav-cta a { background: var(--gold-500); color: #2a1d02; text-align: center; font-weight: 600; }
  .nav-links .nav-cta a:hover { background: var(--gold-400); }
}

@media (max-width: 720px) {
  .grid-3, .grid-2, .features { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; text-align: left; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats--3col { grid-template-columns: 1fr; }
  .stats--3col .num { font-size: 1.5rem; }
  .hero-kicker { font-size: .74rem; letter-spacing: .04em; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .card, .card-media img, .btn { transition: none; }
}