/* ModuFoodService — industrial / utilitarian system */
:root {
  --bg: #fafaf7;
  --bg-2: #f2f0eb;
  --ink: #1d1d1f;
  --ink-2: #3a3a3d;
  --muted: #6b6b6b;
  --rule: #e2e0db;
  --rule-2: #d4d2cc;
  --blue: #810814;          /* brand accent — oxblood */
  --blue-deep: #5a0610;     /* brand accent — hover/deep */
  --blue-tint: #f3a2a8;     /* brand accent — light tint for dark bgs */
  --warn: #c4471c;
  --ok: #1b6b3a;

  --pad: 32px;
  --gutter: 24px;
  --maxw: 1440px;

  --font-display: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; color: inherit; }

/* ============ TOPBAR ============ */
.topbar-wrap { position: sticky; top: 0; z-index: 50; background: var(--bg); overflow: hidden; }
.topbar-ticker {
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  height: 28px;
  display: flex; align-items: center;
}
.topbar-ticker .track {
  display: inline-flex; gap: 48px;
  animation: scroll-x 60s linear infinite;
  padding-left: 100%;
}
.topbar-ticker .track > span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-ticker .dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; display: inline-block; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 36px; height: 36px;
  object-fit: contain;
  display: block;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
}
.brand-name b { color: var(--blue); font-weight: 700; }
.topbar button { color: inherit; }
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.navlinks {
  display: flex; gap: 4px;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.navlinks button {
  background: none; border: none; padding: 8px 14px;
  color: var(--ink-2);
  font: inherit; text-transform: inherit; letter-spacing: inherit;
  border-radius: 0;
  position: relative;
}
.navlinks button:hover { color: var(--ink); }
.navlinks button.active { color: var(--ink); }
.navlinks button.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--blue);
}

.cta {
  background: var(--ink); color: #fafaf7 !important;
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta:hover { background: var(--blue); }
.cta.ghost { background: transparent; color: var(--ink) !important; border: 1px solid var(--ink); }
.cta.ghost:hover { background: var(--ink); color: #fafaf7 !important; }
.cta .arr { display: inline-block; transform: translateY(-1px); }

/* ============ SHELL ============ */
.view { max-width: var(--maxw); margin: 0 auto; overflow-x: hidden; }
.section { border-bottom: 1px solid var(--rule); overflow: hidden; }
.section-inner { padding: 64px var(--pad); }

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.kicker::before {
  content: ""; width: 12px; height: 1px; background: var(--muted); display: inline-block;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 16px 0 0;
}
.h-display em { font-style: normal; color: var(--blue); }
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 12px 0 0;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
.lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
}

/* ============ HERO ============ */
.hero { position: relative; background: var(--bg); border-bottom: 1px solid var(--rule); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  min-height: 620px;
}
.hero-left { padding: 56px var(--pad) 40px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-meta-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 32px;
}
.hero-tag { color: var(--blue); }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.hero-foot {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule); padding-top: 20px;
}
.hero-foot > div { padding-right: 16px; }
.hero-foot .k { font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -0.02em; }
.hero-foot .l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.hero-right {
  background: var(--bg-2);
  border-left: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero-spec {
  position: absolute; inset: 0;
  padding: 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--muted);
}
.hero-spec .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.hero-spec .row + .row { margin-top: 6px; }
.hero-spec .row b { color: var(--ink); font-weight: 500; font-family: var(--font-mono); }
.hero-img-slot {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-slot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-img-slot .lbl {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  text-align: center;
}
.hero-corners::before, .hero-corners::after,
.hero-corners-2::before, .hero-corners-2::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border-color: var(--ink); border-style: solid;
}
.hero-corners::before { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.hero-corners::after { top: 14px; right: 14px; border-width: 1px 1px 0 0; }
.hero-corners-2::before { bottom: 14px; left: 14px; border-width: 0 0 1px 1px; }
.hero-corners-2::after { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }

/* ============ CAPABILITY STRIP ============ */
.cap-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.cap-cell {
  padding: 24px var(--pad);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.cap-cell:last-child { border-right: none; }
.cap-cell .no {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.cap-cell .t { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.cap-cell .d { font-size: 13px; color: var(--ink-2); }

/* ============ TWO-COL  ============ */
.two-col { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.two-col .col-side .kicker { margin-bottom: 12px; }
.two-col .col-side p { font-size: 13px; color: var(--muted); }

/* ============ FEATURED PRODUCTS ============ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.feat-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer;
  transition: background .12s;
}
.feat-card:hover { background: var(--bg-2); }
.feat-card .head { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.feat-card .img {
  aspect-ratio: 1.1;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(29,29,31,0.06) 12px 13px),
    var(--bg-2);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
}
.feat-card .img .lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.feat-card .name { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; line-height: 1.15; }
.feat-card .specs {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 4px 12px;
}

/* ============ CATALOG ============ */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-top: 1px solid var(--rule);
  min-height: 80vh;
}
.cat-side {
  border-right: 1px solid var(--rule);
  padding: 24px;
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.cat-side h4 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin: 24px 0 10px;
}
.cat-side h4:first-of-type { margin-top: 0; }
.cat-side .opt {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  cursor: pointer;
  color: var(--ink-2);
}
.cat-side .opt:hover { color: var(--ink); }
.cat-side .opt input { margin-right: 8px; accent-color: var(--blue); }
.cat-side .opt .ct { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.cat-side .opt label { flex: 1; cursor: pointer; display: flex; align-items: center; }
.cat-side .clear {
  margin-top: 16px;
  background: none; border: 1px solid var(--rule-2); color: var(--ink-2);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 8px 12px; width: 100%;
}
.cat-side .clear:hover { border-color: var(--ink); color: var(--ink); }

.cat-main { padding: 24px var(--pad); }
.cat-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; gap: 24px;
}
.search {
  flex: 1; max-width: 480px;
  position: relative;
}
.search input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  padding: 11px 14px 11px 38px;
  font: inherit; font-size: 16px;
  outline: none;
}
.search input:focus { border-color: var(--ink); background: var(--bg); }
.search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); }
.cat-count {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.sort-select {
  background: var(--bg-2); border: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 16px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 10px 12px;
  color: var(--ink-2);
}
.cat-table {
  border: 1px solid var(--rule);
  border-bottom: none;
  overflow: hidden;
  max-width: 100%;
}
.cat-row {
  display: grid;
  grid-template-columns: 100px 1.4fr 100px 100px 1fr 90px 80px 60px;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  font-size: 13px;
}
.cat-row.head {
  background: var(--bg-2);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  padding: 10px 16px;
}
.cat-row.body { cursor: pointer; }
.cat-row.body:hover { background: var(--bg-2); }
.cat-row .sku { font-family: var(--font-mono); font-size: 12px; color: var(--ink); }
.cat-row .nm { font-weight: 500; font-family: var(--font-display); font-size: 15px; letter-spacing: -0.005em; }
.cat-row .ct { color: var(--muted); font-size: 12px; }
.cat-row .badges { display: flex; gap: 4px; flex-wrap: wrap; }
.badge {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 6px;
  border: 1px solid var(--rule-2); color: var(--ink-2);
  background: var(--bg);
}
.badge.blue { color: var(--blue); border-color: var(--blue); }
.badge.solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cat-row .more {
  font-family: var(--font-mono); font-size: 11px; color: var(--blue);
}

.empty {
  padding: 48px; text-align: center; color: var(--muted);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--rule); border-top: none;
}

/* ============ PRODUCT DRAWER ============ */
.drawer-scrim {
  position: fixed; inset: 0; background: rgba(29,29,31,0.4);
  z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100vh;
  width: min(560px, 100vw);
  background: var(--bg);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--rule);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; background: var(--bg);
}
.drawer-head .sku { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
.drawer-close {
  background: none; border: none; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
}
.drawer-body { padding: 24px var(--pad); }
.drawer-img {
  aspect-ratio: 1.4;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(29,29,31,0.06) 14px 15px),
    var(--bg-2);
  border: 1px solid var(--rule);
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
}
.drawer-img .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.drawer h3 { font-family: var(--font-display); font-weight: 600; font-size: 32px; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.drawer .note { margin-top: 12px; color: var(--ink-2); }
.spec-table { margin-top: 24px; border-top: 1px solid var(--rule); }
.spec-table .r {
  display: grid; grid-template-columns: 140px 1fr;
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  font-size: 13px;
}
.spec-table .r .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* ============ SERVICES ============ */
.serv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.serv-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
}
.serv-card .head { display: flex; justify-content: space-between; align-items: baseline; }
.serv-card .no { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }
.serv-card .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.serv-card .t { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -0.02em; line-height: 1.05; }
.serv-card .d { color: var(--ink-2); }
.serv-card ul { padding: 0; margin: auto 0 0; list-style: none; border-top: 1px solid var(--rule); }
.serv-card li {
  padding: 8px 0; border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-2);
  display: flex; gap: 10px; align-items: baseline;
}
.serv-card li::before {
  content: "+"; color: var(--blue);
}

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.timeline { margin-top: 32px; }
.timeline .ev {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.timeline .ev .y { font-family: var(--font-mono); font-size: 13px; color: var(--blue); }
.timeline .ev .t { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.timeline .ev .d { color: var(--ink-2); font-size: 14px; margin-top: 2px; }

/* ============ SUSTAINABILITY ============ */
.sus-hero {
  background: var(--ink); color: var(--bg);
  padding: 96px var(--pad);
  border-bottom: 1px solid var(--rule);
}
.sus-hero .kicker { color: rgba(250,250,247,0.5); }
.sus-hero .kicker::before { background: rgba(250,250,247,0.5); }
.sus-hero .h-display { color: var(--bg); }
.sus-hero .h-display em { color: var(--blue-tint); }
.sus-hero .lede { color: rgba(250,250,247,0.7); }
.sus-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.sus-kpis .kpi {
  padding: 32px var(--pad);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
}
.sus-kpis .kpi:last-child { border-right: none; }
.sus-kpis .kpi .n {
  font-family: var(--font-display); font-weight: 600; font-size: 64px;
  letter-spacing: -0.04em; line-height: 1;
}
.sus-kpis .kpi .l { font-size: 13px; color: var(--ink-2); }

/* ============ LOCATIONS ============ */
.loc-layout { display: grid; grid-template-columns: 1.2fr 1fr; }
.loc-map-wrap {
  position: relative;
  background: var(--bg-2);
  border-right: 1px solid var(--rule);
  aspect-ratio: 1.5;
  overflow: hidden;
}
.loc-map {
  position: absolute; inset: 0;
}
.loc-map .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(29,29,31,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29,29,31,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.loc-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 2;
}
.loc-pin .dot {
  width: 14px; height: 14px;
  background: var(--blue);
  border: 2px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 2px 0 rgba(29,29,31,0.2);
}
.loc-pin.active .dot { background: var(--ink); transform: scale(1.4); }
.loc-pin .pulse {
  position: absolute; top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%; background: var(--blue);
  animation: pulse 2s ease-out infinite;
  opacity: 0.5;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3.5); opacity: 0; }
}
.loc-pin .lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
  margin-top: 6px; white-space: nowrap;
  background: var(--bg); padding: 2px 6px; border: 1px solid var(--rule);
}
.loc-side { padding: 0; }
.loc-card {
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  display: grid; grid-template-columns: 32px 1fr auto; gap: 16px; align-items: start;
}
.loc-card:hover, .loc-card.active { background: var(--bg-2); }
.loc-card .idx { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.loc-card .n { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.015em; }
.loc-card .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-top: 2px; }
.loc-card .meta {
  margin-top: 10px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.loc-card .meta b { color: var(--ink); font-weight: 500; display: block; font-size: 13px; }
.loc-card .arr { font-family: var(--font-mono); color: var(--muted); }

/* ============ FOOTER ============ */
footer.foot {
  background: var(--ink);
  color: var(--bg);
  padding: 72px var(--pad) 32px;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.foot-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,250,247,0.15);
}
.foot .brand-name { color: var(--bg); }
.foot .brand-name b { color: var(--blue-tint); }
.foot p { color: rgba(250,250,247,0.65); max-width: 32ch; }
.foot h5 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(250,250,247,0.5);
  margin: 0 0 14px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { padding: 4px 0; }
.foot li a { color: rgba(250,250,247,0.8); }
.foot li a:hover { color: var(--bg); }
.foot-bot {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: rgba(250,250,247,0.5);
  text-transform: uppercase;
}

/* ============ MISC ============ */
.divider-rule { height: 1px; background: var(--rule); }
.swap-thin { font-family: var(--font-mono); font-weight: 400; }

/* ============ LANGUAGE TOGGLE ============ */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.lang-toggle button {
  background: none; border: none; padding: 4px 6px;
  font: inherit; letter-spacing: inherit;
  color: var(--muted); cursor: pointer;
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.active { color: var(--ink); font-weight: 500; }
.lang-toggle .sep { color: var(--rule-2); }

/* ============ LIVE-DATA ADDITIONS ============ */
/* Real product photography dropped into the design's placeholder slots */
.img.has-photo img,
.hero-img-slot img,
.drawer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.drawer-img.has-photo { padding: 0; }

/* Loading / empty state for the featured grid on Home */
.feat-empty {
  border: 1px solid var(--rule);
  padding: 48px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Catalog table rebuilt around real fields with product thumbnail */
.cat-table.real .cat-row {
  grid-template-columns: 56px 120px 1.6fr 120px 140px 100px 70px;
}
.cat-row .thumb {
  width: 48px;
  height: 48px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  overflow: hidden;
  flex-shrink: 0;
}
.cat-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-row .price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}

/* ============ RESPONSIVE GRID HELPERS ============ */
.grid-half {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.grid-cta {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.ops-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--rule); align-items: baseline;
}
.ops-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.ops-val { font-size: 15px; }

.partner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule); background: var(--bg);
}
.partner-grid > div {
  padding: 18px 20px; border-bottom: 1px solid var(--rule);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: -0.005em; color: var(--ink);
}
.partner-grid > div:not(:nth-child(4n)) { border-right: 1px solid var(--rule); }

/* ============ HAMBURGER MENU ============ */
.hamburger {
  display: none;
  background: none; border: none; padding: 8px;
  cursor: pointer; flex-direction: column; gap: 5px;
  width: 36px; align-items: center;
}
.hamburger .bar {
  display: block; width: 22px; height: 2px;
  background: var(--ink); transition: all .25s ease;
}
.hamburger .bar.open:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger .bar.open:nth-child(2) { opacity: 0; }
.hamburger .bar.open:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 24px var(--pad);
  flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav button {
  background: none; border: none; padding: 12px 0;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-2); text-align: left;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}
.mobile-nav button:hover, .mobile-nav button.active { color: var(--ink); }
.mobile-nav button.active { color: var(--blue); }
.mobile-cta { width: 100%; text-align: center; justify-content: center; }

/* ============ RESPONSIVE · TABLET (960px) ============ */
@media (max-width: 960px) {
  :root { --pad: 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { min-height: 320px; border-left: none; border-top: 1px solid var(--rule); }
  .cap-strip, .feat-grid, .serv-grid, .sus-kpis { grid-template-columns: repeat(2, 1fr); }
  .desktop-only { display: none !important; }
  .hamburger { display: flex; }
  .topbar { grid-template-columns: auto 1fr; gap: 16px; }
  .topbar > div:last-child { justify-self: end; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col .col-side { max-width: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-half, .grid-cta { grid-template-columns: 1fr; gap: 32px; }
  .loc-layout, .catalog-layout { grid-template-columns: 1fr; }
  .cat-side { position: static; max-height: none; border-right: none; border-bottom: 1px solid var(--rule); }
  .cat-row { grid-template-columns: 90px 1fr 80px; }
  .cat-table.real .cat-row { grid-template-columns: 48px 1fr 80px; }
  .cat-row > .col-hide { display: none; }
  .cat-row .thumb { width: 40px; height: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .foot-bot { flex-direction: column; gap: 8px; text-align: center; }
  .hero-foot { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-inner { padding: 40px var(--pad); }
  .h-display { font-size: clamp(28px, 4.5vw, 52px); }
  .h2 { font-size: clamp(22px, 3.5vw, 40px); }
  .serv-card { min-height: auto; padding: 24px; }
  .loc-map-wrap { aspect-ratio: 1.2; min-height: 300px; }
}

/* ============ RESPONSIVE · MOBILE (600px) ============ */
@media (max-width: 600px) {
  :root { --pad: 16px; --gutter: 16px; }
  .topbar { padding: 10px var(--pad); gap: 8px; }
  .topbar-ticker { font-size: 10px; height: 24px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-name { font-size: 14px; }
  .brand-sub { font-size: 9px; }
  .hero-left { padding: 32px var(--pad) 24px; }
  .hero-right { min-height: 240px; }
  .hero-foot { grid-template-columns: repeat(2, 1fr); gap: 12px; padding-top: 16px; }
  .hero-foot .k { font-size: 22px; }
  .hero-foot .l { font-size: 9px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .hero-actions .cta { text-align: center; justify-content: center; }
  .hero-meta-row { flex-direction: column; gap: 4px; margin-bottom: 16px; }
  .h-display { font-size: clamp(24px, 7vw, 36px); }
  .h2 { font-size: clamp(20px, 5.5vw, 28px); }
  .lede { font-size: 15px; }
  .ops-row { grid-template-columns: 1fr; gap: 4px; }
  .ops-label { margin-bottom: 0; }
  .ops-val { font-size: 14px; }
  .cap-strip { grid-template-columns: 1fr 1fr; }
  .cap-cell { padding: 16px; }
  .cap-cell .t { font-size: 15px; }
  .cap-cell .d { font-size: 12px; }
  .feat-grid {
    grid-template-columns: 1fr;
    border-left: none;
    max-height: none;
  }
  .feat-card {
    padding: 12px; gap: 8px;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto;
  }
  .feat-card .head { grid-column: 1 / -1; }
  .feat-card .img { aspect-ratio: 1; width: 80px; height: 80px; grid-row: 2 / 5; }
  .feat-card .name { font-size: 14px; align-self: start; }
  .feat-card .specs { font-size: 10px; }
  .serv-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid > div:not(:nth-child(4n)) { border-right: none; }
  .partner-grid > div:nth-child(odd) { border-right: 1px solid var(--rule); }
  .serv-card .t { font-size: 20px; }
  .section-inner { padding: 32px var(--pad); }
  .kicker { font-size: 10px; }
  .cat-toolbar { flex-direction: column; align-items: stretch; gap: 12px; }
  .cat-main { padding: 16px var(--pad); overflow: hidden; }
  .cat-side { padding: 16px; }
  .catalog-layout { overflow: hidden; }
  .cat-table.real .cat-row { grid-template-columns: 40px 1fr 70px; gap: 8px; padding: 10px 8px; }
  .cat-row .nm { overflow: hidden; text-overflow: ellipsis; }
  .cat-row.head { padding: 8px; }
  .cat-row .thumb { width: 36px; height: 36px; }
  .cat-row .nm { font-size: 13px; }
  .drawer { width: 100vw; }
  .drawer-body { padding: 20px var(--pad); }
  .drawer h3 { font-size: 24px; }
  .spec-table .r { grid-template-columns: 100px 1fr; font-size: 12px; }
  .loc-layout { grid-template-columns: 1fr; }
  .loc-map-wrap { aspect-ratio: 1; min-height: 280px; }
  .loc-side { padding: 24px var(--pad) !important; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-grid > div:first-child { grid-column: auto; }
  .foot-grid p { word-break: break-word; }
  .foot-bot { font-size: 10px; flex-wrap: wrap; }
  .foot-bot span { word-break: break-word; }
  .lang-toggle { font-size: 10px; }
  .lang-toggle button { padding: 4px 4px; }
  .two-col { overflow: hidden; }
  .hero-foot .l { word-break: break-word; }
  .lede { word-break: break-word; }
  img { max-width: 100%; height: auto; }
  input, select, textarea { font-size: 16px !important; }
  .cat-side input { font-size: 16px !important; }
}
