/* ============================================================
   Innova-Tec — design system
   Brand: #FDB813 yellow · #000 black · #4F4538 brown · #B7A99A taupe · cream
   Type: DM Sans (headings & body), mono accents for numerals
   ============================================================ */

:root {
  --yellow: #FDB813;
  --yellow-soft: #FFD35C;
  --yellow-dim: rgba(253, 184, 19, .14);
  --black: #0E0D0B;
  --ink: #1B1916;
  --ink-2: #26231F;
  --brown: #4F4538;
  --taupe: #B7A99A;
  --cream: #FAF7F0;
  --cream-2: #F3EFE6;
  --white: #FFFFFF;
  --text: #23201B;
  --text-soft: #5E574D;
  --text-inv: #F5F2EC;
  --text-inv-soft: #B9B2A6;
  --line: rgba(35, 32, 27, .12);
  --line-inv: rgba(245, 242, 236, .14);
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-1: 0 1px 2px rgba(14, 13, 11, .06), 0 8px 24px rgba(14, 13, 11, .07);
  --shadow-2: 0 2px 6px rgba(14, 13, 11, .08), 0 18px 50px rgba(14, 13, 11, .16);
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --container: 1200px;
  --header-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--yellow); color: var(--black); }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
}

/* ---------- typography ---------- */

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }

.display {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  letter-spacing: -0.03em;
}

.display .dot { color: var(--yellow); }

.h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -0.025em; }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.on-dark .kicker { color: var(--text-inv-soft); }
.on-yellow .kicker { color: rgba(14, 13, 11, .65); }
.on-yellow .kicker::before { background: var(--black); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-soft);
  max-width: 60ch;
}

.on-dark .lead { color: var(--text-inv-soft); }

.num-mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: 0; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px) scale(.99); }

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--yellow); color: var(--black); }
.btn--primary:hover { background: var(--yellow-soft); box-shadow: 0 10px 30px rgba(253, 184, 19, .35); transform: translateY(-2px); }

.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: #262421; transform: translateY(-2px); box-shadow: var(--shadow-2); }

.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }

.on-dark .btn--ghost { border-color: var(--line-inv); color: var(--text-inv); }
.on-dark .btn--ghost:hover { border-color: var(--text-inv); }

.btn--sm { padding: 10px 20px; font-size: .92rem; }
.btn--lg { padding: 18px 36px; font-size: 1.08rem; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(250, 247, 240, .86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}

.site-header--dark.is-solid {
  background: rgba(14, 13, 11, .78);
  border-bottom-color: var(--line-inv);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand img.mark { height: 40px; width: auto; }
.brand img.word { height: 20px; width: auto; transform: translateY(2px); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .98rem;
  color: var(--text);
  transition: background .15s ease, color .15s ease;
}

.site-header--dark .main-nav a { color: var(--text-inv); }

.main-nav a:hover { background: rgba(35, 32, 27, .07); }
.site-header--dark .main-nav a:hover { background: rgba(245, 242, 236, .1); }

.main-nav a.is-active {
  background: var(--black);
  color: var(--white);
}

.site-header--dark .main-nav a.is-active { background: var(--yellow); color: var(--black); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header--dark .nav-toggle { border-color: var(--line-inv); }

.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.site-header--dark .nav-toggle span { background: var(--text-inv); }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px 24px 26px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .site-header--dark .main-nav { background: var(--ink); }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 16px; font-size: 1.05rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: clamp(620px, 92svh, 860px);
  display: flex;
  align-items: flex-end;
  color: var(--text-inv);
  overflow: hidden;
  background: var(--black);
}

.hero__media, .hero__media video, .hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,11,.42) 0%, rgba(14,13,11,.18) 40%, rgba(14,13,11,.78) 100%),
    radial-gradient(120% 90% at 85% 10%, transparent 55%, rgba(14,13,11,.35) 100%);
}

.hero__bolt {
  position: absolute;
  right: -6%;
  top: -8%;
  height: 122%;
  opacity: .1;
  pointer-events: none;
  filter: drop-shadow(0 0 60px rgba(253,184,19,.15));
}

@media (max-width: 1100px) {
  .hero__bolt { display: none; }
}

.hero h1, .hero .lead { text-shadow: 0 2px 24px rgba(14, 13, 11, .45); }

.hero .container { position: relative; z-index: 2; padding: 110px 0 72px; }

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 13, 11, .5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-inv);
  color: var(--text-inv);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 26px;
}

.hero__tagline .dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(253, 184, 19, .7);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(253, 184, 19, .55); }
  70% { box-shadow: 0 0 0 12px rgba(253, 184, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(253, 184, 19, 0); }
}

.hero h1 { max-width: 15ch; margin-bottom: 22px; }
.hero .lead { margin-bottom: 36px; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-inv);
  border: 1px solid var(--line-inv);
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero__stats > div {
  background: rgba(14, 13, 11, .55);
  padding: 20px 24px;
}

.hero__stats b {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
}

.hero__stats b em { color: var(--yellow); font-style: normal; }

.hero__stats span { font-size: .88rem; color: var(--text-inv-soft); }

@media (max-width: 860px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- sections ---------- */

.section { padding: clamp(72px, 9vw, 120px) 0; }

.section--dark { background: var(--black); color: var(--text-inv); }
.section--ink { background: var(--ink); color: var(--text-inv); }
.section--yellow { background: var(--yellow); color: var(--black); }
.section--cream2 { background: var(--cream-2); }
.section--white { background: var(--white); }

.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head .h2 { margin-bottom: 16px; }

.pattern-diamonds {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='rgba(14,13,11,0.10)' stroke-width='1.4'%3E%3Crect x='35' y='35' width='70' height='70' transform='rotate(45 70 70)'/%3E%3Crect x='-35' y='-35' width='70' height='70' transform='rotate(45 0 0)'/%3E%3Crect x='105' y='105' width='70' height='70' transform='rotate(45 140 140)'/%3E%3Crect x='105' y='-35' width='70' height='70' transform='rotate(45 140 0)'/%3E%3Crect x='-35' y='105' width='70' height='70' transform='rotate(45 0 140)'/%3E%3C/g%3E%3C/svg%3E");
}

.section--dark .pattern-diamonds,
.pattern-diamonds--light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='rgba(245,242,236,0.07)' stroke-width='1.4'%3E%3Crect x='35' y='35' width='70' height='70' transform='rotate(45 70 70)'/%3E%3Crect x='-35' y='-35' width='70' height='70' transform='rotate(45 0 0)'/%3E%3Crect x='105' y='105' width='70' height='70' transform='rotate(45 140 140)'/%3E%3Crect x='105' y='-35' width='70' height='70' transform='rotate(45 140 0)'/%3E%3Crect x='-35' y='105' width='70' height='70' transform='rotate(45 0 140)'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1020px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 660px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }

.product-card__media { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; }

.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .6, .2, 1);
}

.product-card:hover .product-card__media img { transform: scale(1.05); }

.product-card__index {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(14, 13, 11, .72);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: .85rem;
  padding: 6px 12px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.product-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.product-card__body h3 { font-size: 1.5rem; }
.product-card__body h3 small { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); margin-top: 6px; }

.product-card__body p { color: var(--text-soft); font-size: .98rem; flex: 1; }

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--black);
  margin-top: 6px;
}

.product-card__cta svg { transition: transform .2s ease; }
.product-card:hover .product-card__cta svg { transform: translateX(5px); }

/* feature tiles */

.feature {
  padding: 30px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
}

.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }

.section--dark .feature, .section--ink .feature {
  background: var(--ink-2);
  border-color: var(--line-inv);
}

.feature__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--yellow-dim);
  color: var(--black);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.section--dark .feature__icon, .section--ink .feature__icon { background: rgba(253, 184, 19, .16); color: var(--yellow); }

.feature__icon svg { width: 26px; height: 26px; }

.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { font-size: .95rem; color: var(--text-soft); }
.section--dark .feature p, .section--ink .feature p { color: var(--text-inv-soft); }

/* ---------- gallery / marquee ---------- */

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee img {
  height: clamp(200px, 26vw, 300px);
  width: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- CTA band ---------- */

.cta-band { position: relative; overflow: hidden; }

.cta-band .container {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band__bolt {
  position: absolute;
  right: 4%;
  top: 50%;
  height: 180%;
  transform: translateY(-50%);
  opacity: .14;
  pointer-events: none;
}

.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); max-width: 22ch; }
.cta-band p { margin-top: 10px; color: rgba(14, 13, 11, .72); max-width: 52ch; }

/* ---------- specs & price tables ---------- */

.spec-table { width: 100%; border-collapse: collapse; font-size: .98rem; }

.spec-table th, .spec-table td { text-align: left; padding: 14px 18px; }

.spec-table tbody tr { border-top: 1px solid var(--line); }
.spec-table tbody tr:first-child { border-top: none; }

.spec-table th { color: var(--text-soft); font-weight: 500; width: 46%; }
.spec-table td { font-weight: 600; }

.spec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-card__head {
  padding: 18px 22px;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-tiles { display: grid; gap: 14px; }

.price-tile {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--ink-2);
  border: 1px solid var(--line-inv);
  transition: border-color .2s ease, transform .2s ease;
}

.price-tile:hover { border-color: rgba(253, 184, 19, .5); transform: translateX(4px); }

.price-tile__label { color: var(--text-inv-soft); font-weight: 500; }

.price-tile__value {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-inv);
  white-space: nowrap;
}

.price-tile__value small { font-size: .58em; font-weight: 600; color: var(--text-inv-soft); margin-left: 6px; }

.note { font-size: .88rem; color: var(--text-soft); }
.on-dark .note, .section--dark .note, .section--ink .note { color: var(--text-inv-soft); }

/* ---------- product hero (subpages) ---------- */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(48px, 7vw, 80px);
  background: var(--black);
  color: var(--text-inv);
  overflow: hidden;
}

.page-hero--media { min-height: 68svh; display: flex; align-items: flex-end; }

.page-hero__bg, .page-hero__bg img, .page-hero__bg video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,.55), rgba(14,13,11,.25) 45%, rgba(14,13,11,.82));
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .88rem;
  color: var(--text-inv-soft);
  margin-bottom: 22px;
}

.breadcrumbs a:hover { color: var(--yellow); }

.breadcrumbs .sep { opacity: .5; }

/* media + text split */

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.split--rev { grid-template-columns: .95fr 1.05fr; }

@media (max-width: 900px) {
  .split, .split--rev { grid-template-columns: 1fr; }
}

.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); position: relative; }
.split__media img, .split__media video { width: 100%; height: 100%; object-fit: cover; }

.checklist { list-style: none; display: grid; gap: 14px; margin-top: 22px; }

.checklist li { display: flex; gap: 14px; align-items: flex-start; }

.checklist li svg {
  flex: none;
  width: 24px; height: 24px;
  margin-top: 2px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  padding: 5px;
}

.on-dark .checklist li svg { color: var(--black); }

.checklist b { display: block; }
.checklist span { color: var(--text-soft); font-size: .95rem; }
.on-dark .checklist span { color: var(--text-inv-soft); }

/* gallery grid */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery a { border-radius: var(--radius); overflow: hidden; display: block; position: relative; }
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.06); }

@media (max-width: 780px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* lightbox */

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(14, 13, 11, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
}

.lightbox.is-open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto; height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
}

.lightbox__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-inv);
  background: rgba(245, 242, 236, .1);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

/* ---------- reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .25, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--text-inv);
  padding: clamp(56px, 7vw, 84px) 0 0;
}

.site-footer a:hover { color: var(--yellow); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img.word { height: 22px; margin: 18px 0 14px; }
.footer-brand img.mark { height: 44px; }
.footer-brand p { color: var(--text-inv-soft); font-size: .95rem; max-width: 34ch; }

.site-footer h4 {
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-inv-soft);
  margin-bottom: 18px;
  font-weight: 600;
}

.site-footer ul { list-style: none; display: grid; gap: 11px; font-size: .98rem; }

.footer-legal {
  border-top: 1px solid var(--line-inv);
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--text-inv-soft);
}

/* ---------- forms ---------- */

.field { display: grid; gap: 8px; }

.field label { font-weight: 600; font-size: .92rem; }

.field input, .field select, .field textarea {
  font: inherit;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(253, 184, 19, .22);
}

.field .hint { font-size: .82rem; color: var(--text-soft); }

/* ---------- badges / chips ---------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: .88rem;
  font-weight: 500;
}

.on-dark .chip, .section--dark .chip, .section--ink .chip {
  background: var(--ink-2);
  border-color: var(--line-inv);
}

.chip svg { width: 16px; height: 16px; color: var(--yellow); }

/* trust logos row */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---------- misc ---------- */

.eyebrow-num {
  font-family: var(--mono);
  color: var(--yellow);
  font-size: .95rem;
  display: block;
  margin-bottom: 12px;
}

.divider { height: 1px; background: var(--line); border: none; }
.on-dark .divider { background: var(--line-inv); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 999;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
}

.skip-link:focus { left: 12px; }

.text-yellow { color: var(--yellow); }

.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; } .mt-4 { margin-top: 48px; }
.mb-1 { margin-bottom: 10px; } .mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 32px; }
