/* ============================================================
   ABC FORKLIFTS — Industrial design system
   ============================================================ */

:root {
  /* Type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, monospace;

  /* Color — cool neutral paper/ink + industrial blue + safety orange */
  --paper:    oklch(0.985 0.003 255);
  --paper-2:  oklch(0.965 0.005 255);
  --card:     oklch(1 0 0);
  --ink:      oklch(0.235 0.015 260);
  --ink-soft: oklch(0.46 0.015 260);
  --ink-mute: oklch(0.60 0.012 260);
  --line:     oklch(0.905 0.008 260);
  --line-2:   oklch(0.84 0.01 260);

  --blue:     oklch(0.50 0.13 250);
  --blue-700: oklch(0.40 0.115 253);
  --blue-900: oklch(0.225 0.055 258);
  --blue-950: oklch(0.185 0.045 260);
  --blue-tint:oklch(0.95 0.022 250);

  --orange:    oklch(0.70 0.185 46);
  --orange-600:oklch(0.635 0.195 43);
  --orange-tint: oklch(0.955 0.038 62);

  --ok:    oklch(0.62 0.13 150);
  --warn:  oklch(0.74 0.15 75);
  --bad:   oklch(0.58 0.18 25);

  --shadow-sm: 0 1px 2px oklch(0.25 0.03 260 / 0.05), 0 1px 3px oklch(0.25 0.03 260 / 0.07);
  --shadow-md: 0 6px 22px oklch(0.25 0.03 260 / 0.09);
  --shadow-lg: 0 24px 60px oklch(0.22 0.04 260 / 0.20);

  --r-sm: 5px;
  --r:    9px;
  --r-lg: 14px;

  --util-h: 38px;
  --nav-h: 72px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow.on-dark { color: oklch(0.82 0.05 252); }

.h-xxl { font-size: clamp(40px, 6vw, 76px); text-transform: uppercase; }
.h-xl  { font-size: clamp(32px, 4.4vw, 52px); text-transform: uppercase; }
.h-lg  { font-size: clamp(26px, 3vw, 38px); text-transform: uppercase; }
.lede  { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); line-height: 1.6; }

.muted { color: var(--ink-soft); }

/* ---------- hazard stripe motif ---------- */
.hazard {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 14px,
    var(--ink) 14px 28px
  );
  height: 8px;
  width: 100%;
}
.hazard-thin { height: 5px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: oklch(0.18 0.02 50); }
.btn-primary:hover { background: var(--orange-600); }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-700); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--blue-900); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost.on-dark { color: white; border-color: oklch(1 0 0 / 0.35); }
.btn-ghost.on-dark:hover { border-color: white; background: oklch(1 0 0 / 0.08); }
.btn-lg { padding: 17px 30px; font-size: 15px; }
.btn-sm { padding: 10px 16px; font-size: 12.5px; }
.btn-block { width: 100%; }
.btn-arrow svg { width: 16px; height: 16px; }

/* ---------- placeholder imagery ---------- */
.ph {
  position: relative;
  background-color: var(--blue-900);
  background-image:
    repeating-linear-gradient(135deg,
      oklch(1 0 0 / 0.045) 0 2px, transparent 2px 11px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: oklch(0.86 0.03 252);
}
.ph::after {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 12px;
  opacity: 0.85;
}
.ph.has-img { background-image: none; }
.ph.has-img::after { content: none; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-corner {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 34px 34px 0;
  border-color: transparent var(--orange) transparent transparent;
  z-index: 2;
}

/* ---------- badges ---------- */
.badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 3px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; }
.badge-avail { background: oklch(0.62 0.13 150 / 0.14); color: oklch(0.40 0.13 150); }
.badge-avail .dot { background: var(--ok); }
.badge-low { background: oklch(0.74 0.15 75 / 0.18); color: oklch(0.46 0.13 75); }
.badge-low .dot { background: var(--warn); }
.badge-out { background: oklch(0.58 0.18 25 / 0.14); color: var(--bad); }
.badge-out .dot { background: var(--bad); }

/* =========================================================
   HEADER — utility bar + nav
   ========================================================= */
.nav-wrap { position: relative; z-index: 60; }

.util-bar { background: var(--blue-950); color: oklch(0.78 0.03 252); height: var(--util-h); display: flex; align-items: center; font-size: 12.5px; }
.util-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%; }
.util-tag { font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; color: oklch(0.66 0.03 252); }
.util-right { display: flex; align-items: center; gap: 18px; height: 100%; }
.util-link { display: inline-flex; align-items: center; gap: 6px; color: oklch(0.80 0.03 252); transition: color .15s; white-space: nowrap; }
.util-link b { font-weight: 600; color: white; }
.util-link svg { color: var(--orange); }
.util-link:hover { color: white; }
.util-emergency b { color: var(--orange); }
.util-sep { width: 1px; height: 16px; background: oklch(1 0 0 / 0.16); }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: oklch(1 0 0 / 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-link {
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600;
  padding: 8px 10px; border-radius: var(--r-sm);
  color: var(--ink-soft);
  transition: color .15s, background .15s;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--blue); }
.nav-link.active::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: -1px; height: 2px; background: var(--orange);
}
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 10px; padding-left: 8px; border-left: 1px solid var(--line); }
.nav-icon-btn { width: 38px; height: 38px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--card); color: var(--ink-soft); display: grid; place-items: center; transition: .15s; }
.nav-icon-btn:hover { color: var(--blue); border-color: var(--line-2); }

.nav-search-drawer { background: var(--card); border-bottom: 1px solid var(--line); padding: 16px 0; box-shadow: var(--shadow-md); animation: fade .18s ease; }
.nav-search-drawer input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 17px; background: transparent; color: var(--ink); }
.nav-search-drawer .modal-x { width: 34px; height: 34px; }
.nav-burger { display: none; }

/* ---------- Logo ---------- */
.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 6px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  flex: none;
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.08);
}
.logo-mark span {
  font-family: var(--font-display);
  font-weight: 900;
  color: white;
  font-size: 17px;
  letter-spacing: -0.03em;
  z-index: 1;
}
.logo-mark::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 5px; background: var(--orange);
}
.logo-word { line-height: 1.08; white-space: nowrap; }
.logo-word b { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: 0.005em; text-transform: uppercase; display: block; color: var(--ink); white-space: nowrap; }
.logo-word small { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
.logo.on-dark .logo-word b { color: white; }
.logo.on-dark .logo-word small { color: oklch(0.78 0.03 252); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--blue-900); color: oklch(0.86 0.02 252); }
.footer a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; }
.footer h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(0.72 0.05 252); margin: 0 0 16px; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-bottom { border-top: 1px solid oklch(1 0 0 / 0.12); padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; font-size: 12.5px; color: oklch(0.7 0.03 252); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; background: var(--blue-950); color: white; overflow: hidden; }
.hero-img { position: absolute; inset: 0; }
.hero-img .ph { width: 100%; height: 100%; }
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, var(--blue-950) 28%, oklch(0.225 0.055 258 / 0.74) 58%, oklch(0.225 0.055 258 / 0.30)),
    linear-gradient(0deg, oklch(0.185 0.045 260 / 0.55), transparent 45%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(90deg, oklch(1 0 0 / 0.05) 1px, transparent 1px);
  background-size: calc((100% - 0px) / 6) 100%;
  opacity: 0.5;
}
.hero-inner { position: relative; z-index: 2; padding: 116px 0 124px; max-width: 800px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: oklch(0.84 0.05 252); font-weight: 500; }
.hero-eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--orange); }
.hero h1 { font-size: clamp(46px, 7.2vw, 92px); text-transform: uppercase; line-height: 0.92; letter-spacing: -0.025em; }
.hero h1 .accent { color: var(--orange); }
.hero .lede { color: oklch(0.89 0.02 252); max-width: 580px; margin-top: 24px; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; margin-top: 56px; flex-wrap: wrap; border-top: 1px solid oklch(1 0 0 / 0.14); padding-top: 28px; }
.hero-stat { padding-right: 38px; margin-right: 38px; border-right: 1px solid oklch(1 0 0 / 0.14); }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat b { font-family: var(--font-display); font-size: 42px; font-weight: 900; display: block; line-height: 1; letter-spacing: -0.02em; }
.hero-stat span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.74 0.04 252); margin-top: 6px; display: block; }

/* =========================================================
   CARDS / GRIDS
   ========================================================= */
.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  display: flex; flex-direction: column;
}
.card.link:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }

/* equipment card */
.eq-card { position: relative; }
.eq-card .ph { aspect-ratio: 4/3; transition: filter .2s; }
.eq-card.link:hover .ph { filter: brightness(1.04); }
.eq-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.eq-cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.eq-name { font-size: 19px; text-transform: uppercase; line-height: 1.05; letter-spacing: -0.01em; }
.eq-spec { display: flex; gap: 16px; font-size: 12.5px; color: var(--ink-soft); font-family: var(--font-mono); margin-top: 2px; }
.eq-spec b { color: var(--ink); font-weight: 600; }
.eq-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.eq-rate b { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.eq-rate span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; display: block; }

/* category tile */
.cat-tile { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1/1; cursor: pointer; }
.cat-tile .ph { position: absolute; inset: 0; }
.cat-tile-cap { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; background: linear-gradient(0deg, oklch(0.2 0.04 258 / 0.85), transparent 70%); }
.cat-tile-cap b { font-family: var(--font-display); text-transform: uppercase; font-size: 18px; font-weight: 800; color: white; line-height: 1; }
.cat-tile-cap span { font-family: var(--font-mono); font-size: 11px; color: oklch(0.82 0.04 252); letter-spacing: 0.08em; margin-top: 5px; }
.cat-tile:hover .ph img, .cat-tile:hover .ph { filter: brightness(1.08); }
.cat-tile-arrow { position: absolute; top: 14px; right: 14px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; opacity: 0; transform: translateY(-6px); transition: .18s; }
.cat-tile:hover .cat-tile-arrow { opacity: 1; transform: translateY(0); }

/* trust feature */
.feature { display: flex; flex-direction: column; gap: 12px; padding: 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); }
.feature-ico { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; }
.feature-ico svg { width: 24px; height: 24px; }
.feature h4 { font-size: 17px; text-transform: uppercase; }
.feature p { font-size: 14px; color: var(--ink-soft); }

/* depot card */
.depot-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; }
.depot-card .ph { aspect-ratio: 16/9; }
.depot-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.depot-row { display: flex; gap: 10px; font-size: 14px; color: var(--ink-soft); align-items: flex-start; }
.depot-row svg { width: 17px; height: 17px; color: var(--blue); flex: none; margin-top: 2px; }

/* =========================================================
   DARK SECTION
   ========================================================= */
.dark { background: var(--blue-900); color: white; }
.dark .lede, .dark p { color: oklch(0.84 0.02 252); }

/* CTA band */
.cta-band { background: var(--blue); color: white; position: relative; overflow: hidden; }
.cta-band-inner { padding: 70px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(28px, 3.6vw, 46px); text-transform: uppercase; max-width: 640px; }

/* quick links */
.quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--card); }
.quick-item { padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; border-right: 1px solid var(--line); transition: background .15s; cursor: pointer; }
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: var(--paper-2); }
.quick-item .num { font-family: var(--font-mono); font-size: 12px; color: var(--orange); letter-spacing: 0.1em; }
.quick-item b { font-family: var(--font-display); text-transform: uppercase; font-size: 18px; }
.quick-item span { font-size: 13px; color: var(--ink-soft); }
.quick-item .go { margin-top: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--blue); display: flex; align-items: center; gap: 6px; }

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */
.pd-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; }
.pd-gallery-main { aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.pd-thumb { aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden; border: 2px solid var(--line); cursor: pointer; }
.pd-thumb.active { border-color: var(--orange); }
.pd-rate-box { display: flex; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin: 20px 0; }
.pd-rate { flex: 1; padding: 18px 20px; border-right: 1px solid var(--line); }
.pd-rate:last-child { border-right: none; }
.pd-rate span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); }
.pd-rate b { font-family: var(--font-display); font-size: 30px; font-weight: 800; display: block; margin-top: 4px; }
.pd-rate b small { font-size: 13px; color: var(--ink-mute); font-weight: 500; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 0; border-bottom: 1px solid var(--line); }
.spec-table th { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; width: 45%; }
.spec-table td { font-weight: 600; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.tab { padding: 13px 18px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 0.03em; color: var(--ink-mute); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab.active { color: var(--ink); border-color: var(--orange); }
.tab:hover { color: var(--ink); }
.datasheet { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper-2); }
.datasheet svg { width: 30px; height: 30px; color: var(--bad); flex: none; }

/* =========================================================
   CATALOGUE
   ========================================================= */
.cat-layout { display: grid; grid-template-columns: 244px 1fr; gap: 36px; align-items: start; }
.filter-panel { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 26px; }
.filter-group h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 12px; font-weight: 500; }
.filter-opt { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.filter-opt input { accent-color: var(--blue); width: 16px; height: 16px; }
.filter-opt:hover { color: var(--ink); }
.filter-opt .count { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-family: var(--font-mono); font-size: 12px; padding: 7px 13px; border: 1px solid var(--line-2); border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); transition: .12s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: white; border-color: var(--ink); }
.cat-toolbar { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.cat-toolbar .count-txt { font-family: var(--font-mono); font-size: 13px; color: var(--ink-mute); }
.select {
  font-family: var(--font-body); font-size: 13.5px; padding: 9px 14px;
  border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--card);
  color: var(--ink); cursor: pointer;
}
.search-big { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 11px 15px; flex: 1; min-width: 220px; }
.search-big input { border: none; background: transparent; outline: none; font-family: inherit; font-size: 14.5px; width: 100%; color: var(--ink); }
.search-big svg { width: 18px; height: 18px; color: var(--ink-mute); }

/* =========================================================
   FORMS
   ========================================================= */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 15px; padding: 12px 14px;
  border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--card);
  color: var(--ink); outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px oklch(0.515 0.115 252 / 0.13);
}
.field.err input, .field.err textarea { border-color: var(--bad); }
.field .msg { font-size: 12px; color: var(--bad); font-family: var(--font-mono); }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); }
.check-row input { margin-top: 3px; accent-color: var(--blue); width: 16px; height: 16px; flex: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* =========================================================
   MODAL
   ========================================================= */
.modal-overlay { position: fixed; inset: 0; background: oklch(0.2 0.04 260 / 0.55); backdrop-filter: blur(3px); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; animation: fade .18s ease; }
.modal { background: var(--card); border-radius: var(--r-lg); width: 100%; max-width: 560px; max-height: 90vh; overflow: auto; box-shadow: var(--shadow-lg); animation: pop .22s cubic-bezier(.2,.8,.3,1); }
.modal-head { padding: 24px 28px; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal-body { padding: 28px; }
.modal-x { background: var(--paper-2); border: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); flex: none; }
.modal-x:hover { background: var(--line); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie { position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 90; max-width: 1000px; margin: 0 auto; background: var(--ink); color: oklch(0.92 0.01 260); border-radius: var(--r-lg); padding: 20px 24px; display: flex; align-items: center; gap: 24px; box-shadow: var(--shadow-lg); flex-wrap: wrap; }
.cookie p { font-size: 13.5px; flex: 1; min-width: 240px; line-height: 1.5; }
.cookie a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* =========================================================
   ADMIN
   ========================================================= */
.admin-shell { min-height: 100vh; background: var(--paper-2); }
.admin-login { min-height: 100vh; display: grid; place-items: center; background: var(--blue-900); padding: 24px; }
.admin-login-card { background: var(--card); border-radius: var(--r-lg); padding: 40px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.admin-top { background: var(--ink); color: white; padding: 14px 24px; display: flex; align-items: center; gap: 16px; }
.admin-top .badge { background: var(--orange); color: oklch(0.2 0.02 50); }
.admin-tabs { display: flex; gap: 4px; background: var(--card); border-bottom: 1px solid var(--line); padding: 0 24px; }
.admin-tab { padding: 16px 18px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 14px; color: var(--ink-mute); border-bottom: 2px solid transparent; }
.admin-tab.active { color: var(--blue); border-color: var(--orange); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--r); overflow: hidden; }
.admin-table th { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
.admin-table input, .admin-table select { font-family: inherit; font-size: 14px; padding: 7px 10px; border: 1px solid var(--line-2); border-radius: 4px; width: 100%; background: var(--card); color: var(--ink); }
.admin-thumb { width: 56px; height: 42px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }

/* =========================================================
   MISC / STUB pages
   ========================================================= */
.page-head { background: var(--blue-950); color: white; padding: 72px 0 60px; position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(90deg, oklch(1 0 0 / 0.04) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head .breadcrumb { color: oklch(0.74 0.04 252); }
.page-head h1 { font-size: clamp(36px, 5vw, 60px); text-transform: uppercase; margin-top: 16px; letter-spacing: -0.02em; }
.page-head p { color: oklch(0.85 0.02 252); max-width: 640px; margin-top: 16px; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--blue); }

.stub-note { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); background: var(--orange-tint); padding: 7px 12px; border-radius: 20px; }

.map-embed { width: 100%; height: 100%; border: 0; display: block; }
.map-frame { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; aspect-ratio: 16/10; background: var(--paper-2); }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--ink); color: white; padding: 14px 22px; border-radius: var(--r); font-size: 14px; z-index: 120; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; animation: pop .2s ease; }
.toast svg { width: 18px; height: 18px; color: var(--ok); }

/* testimonials */
.quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.quote-card .mark { font-family: var(--font-display); font-size: 56px; line-height: 0.5; color: var(--orange); font-weight: 900; }
.quote-card p { font-size: 16px; color: var(--ink); line-height: 1.55; }
.quote-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-author .av { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-tint); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--blue); }
.quote-author b { font-size: 14px; }
.quote-author span { font-size: 12.5px; color: var(--ink-mute); display: block; font-family: var(--font-mono); }

/* timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.tl-item { padding: 0 22px; border-left: 2px solid var(--line); position: relative; }
.tl-item::before { content: ""; position: absolute; left: -7px; top: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); }
.tl-item .yr { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--blue); }
.tl-item h4 { font-size: 16px; text-transform: uppercase; margin: 6px 0; }
.tl-item p { font-size: 13.5px; color: var(--ink-soft); }

/* staff */
.staff-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.staff-card .ph { aspect-ratio: 1/1; }
.staff-body { padding: 18px; }
.staff-body b { font-size: 17px; text-transform: uppercase; font-family: var(--font-display); display: block; }
.staff-body .role { font-family: var(--font-mono); font-size: 12px; color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase; margin: 4px 0 10px; }
.staff-body p { font-size: 13px; color: var(--ink-soft); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .quick { grid-template-columns: 1fr 1fr; }
  .quick-item:nth-child(2) { border-right: none; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 30px 0; }
}
/* nav collapses to burger early enough that the full row never overflows */
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--card); border-bottom: 1px solid var(--line); padding: 12px; gap: 2px; box-shadow: var(--shadow-md); }
  .nav-links.open .nav-link { padding: 13px; font-size: 13.5px; }
  .nav-links.open .nav-actions { margin: 8px 0 0; padding: 0; flex-direction: column; align-items: stretch; border-left: none; gap: 8px; }
  .nav-links.open .nav-actions .btn { width: 100%; }
  .nav-links.open .nav-icon-btn { width: 100%; }
  .nav-burger { display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--card); margin-left: auto; }
}
@media (max-width: 980px) {
  .util-tag { display: none; }
  .util-right { gap: 14px; }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding: 70px 0 80px; }
  .section { padding: 60px 0; }
}
@media (max-width: 860px) {
  .pd-grid { grid-template-columns: 1fr; gap: 30px; }
  .cat-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
}
@media (max-width: 720px) {
  .util-bar { display: none; }
}
@media (max-width: 560px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .wrap { padding: 0 18px; }
  .pd-rate-box { flex-direction: column; }
  .pd-rate { border-right: none; border-bottom: 1px solid var(--line); }
}
