:root {
  --bg: #0c0d0e;
  --bg-elev: #121416;
  --bg-panel: #17191c;
  --bg-row: #1c1f23;
  --line: #2a2e33;
  --line-soft: #22262b;
  --bone: #ebe4d6;
  --bone-dim: #b7b0a3;
  --muted: #7d827c;
  --copper: #c8783a;
  --copper-hot: #e39a52;
  --copper-dim: rgba(200, 120, 58, 0.14);
  --ok: #6f9474;
  --warn: #c9a23a;
  --danger: #c45a4a;
  --info: #6a8f9e;
  --sidebar: 248px;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --display: "Syne", "IBM Plex Sans", sans-serif;
  --radius: 2px;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
ul { list-style: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.btn.primary {
  background: var(--copper);
  border-color: var(--copper);
  color: #140e08;
  font-weight: 600;
}
.btn.primary:hover { background: var(--copper-hot); border-color: var(--copper-hot); }
.btn.ghost { background: transparent; }
.btn.ghost:hover { border-color: var(--copper); color: var(--copper-hot); }
.btn.block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: default; }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 7px;
  border: 1px solid var(--line);
  color: var(--bone-dim);
}
.tag.copper {
  border-color: rgba(200, 120, 58, 0.45);
  color: var(--copper-hot);
  background: var(--copper-dim);
}
.pill {
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  color: var(--bone-dim);
}
.pill.live { border-color: rgba(111, 148, 116, 0.45); color: var(--ok); }
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
}
.status i {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}
.status.ok { color: var(--ok); }
.status.warn { color: var(--warn); }
.status.danger { color: var(--danger); }
.status.info { color: var(--info); }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px 14px;
  outline: none;
  border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--copper);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ——— Public site ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(12, 13, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.logo em { font-style: normal; color: var(--copper); }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  color: var(--bone);
  font-size: 18px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  flex-wrap: wrap;
}
.site-nav a {
  font-size: 14px;
  color: var(--bone-dim);
  padding: 6px 0;
}
.site-nav a:hover, .site-nav a.active { color: var(--bone); }
.site-nav .cta {
  padding: 10px 14px;
  background: var(--copper);
  color: #140e08 !important;
  font-weight: 600;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 48px 20px 56px;
  background:
    linear-gradient(90deg, rgba(8,9,10,0.9) 0%, rgba(8,9,10,0.5) 50%, rgba(8,9,10,0.3) 100%),
    linear-gradient(0deg, rgba(8,9,10,0.8) 0%, transparent 50%),
    center/cover no-repeat url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=2000&q=80");
}
.hero-inner { width: min(100%, var(--max)); margin: 0 auto; max-width: 560px; margin-left: max(0px, calc((100% - var(--max)) / 2)); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-hot);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero h1 em { font-style: normal; color: var(--copper-hot); }
.hero p {
  margin-top: 16px;
  font-size: clamp(15px, 2.4vw, 17px);
  color: rgba(235,228,214,0.8);
  max-width: 40ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 56px 0;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 18ch;
}
.section .lead {
  margin-top: 10px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 15px;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: minmax(180px, 22vw) minmax(180px, 22vw);
  gap: 10px;
  margin-top: 28px;
}
.photo-mosaic .tile {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 160px;
}
.photo-mosaic .tile:first-child { grid-row: span 2; }
.photo-mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-mosaic .tile:hover img { transform: scale(1.04); }
.photo-mosaic figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}
.photo-mosaic strong { display: block; font-size: 15px; }
.photo-mosaic span {
  font-family: var(--mono); font-size: 10px;
  color: var(--copper-hot); letter-spacing: 0.06em; text-transform: uppercase;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 36px;
}
.proof div { background: var(--bg-elev); padding: 18px 16px; }
.proof strong { font-family: var(--display); font-size: clamp(22px, 3vw, 28px); display: block; }
.proof span {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.service {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service .veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.2));
}
.service .txt { position: absolute; left: 16px; right: 16px; bottom: 16px; }
.service h3 { font-family: var(--display); font-size: 22px; letter-spacing: -0.02em; }
.service p { margin-top: 6px; font-size: 13px; color: var(--bone-dim); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  width: min(100%, calc(var(--max) + 40px));
  margin: 0 auto;
}
.site-footer a { color: var(--copper); }

/* Menus */
.page-hero {
  padding: 40px 20px 28px;
  background:
    linear-gradient(rgba(10,11,12,0.75), rgba(10,11,12,0.94)),
    center/cover no-repeat url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1800&q=80");
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { width: min(100%, var(--max)); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -0.03em;
}
.page-hero p { margin-top: 8px; color: var(--bone-dim); max-width: 50ch; }
.filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.filters button {
  font-family: var(--mono);
  font-size: 11px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}
.filters button.on, .filters button:hover {
  border-color: var(--copper);
  color: var(--copper-hot);
  background: var(--copper-dim);
}

.dish-grid {
  width: min(100% - 40px, var(--max));
  margin: 28px auto 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dish {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dish .photo { aspect-ratio: 4/3; overflow: hidden; background: #111; }
.dish .photo img { width: 100%; height: 100%; object-fit: cover; }
.dish .body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.dish h3 { font-size: 16px; font-weight: 600; }
.dish p { margin-top: 6px; font-size: 13px; color: var(--muted); flex: 1; }
.dish .meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
}
.like-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone-dim);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 11px;
}
.like-btn.on {
  border-color: var(--copper);
  color: var(--copper-hot);
  background: var(--copper-dim);
}

.menus-cta {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

/* Start */
.start-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 60px);
}
.start-visual {
  position: relative;
  min-height: 280px;
  background:
    center/cover no-repeat url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=80");
}
.start-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,9,10,0.45), rgba(8,9,10,0.88));
}
.start-visual .copy {
  position: absolute; left: 24px; right: 24px; bottom: 32px; z-index: 1;
}
.start-visual h1 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.start-visual p { margin-top: 12px; color: var(--bone-dim); max-width: 36ch; }
.start-form {
  padding: 32px 20px 48px;
  background: var(--bg-elev);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.start-form-inner { width: min(100%, 420px); margin: 0 auto; }
.start-form h2 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.start-form .hint { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.toast {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(111, 148, 116, 0.4);
  background: rgba(111, 148, 116, 0.12);
  color: var(--ok);
  font-size: 14px;
}
.toast.show { display: block; }

/* ——— Admin ——— */
.app {
  display: grid;
  grid-template-columns: var(--sidebar) 1fr;
  min-height: 100vh;
}
.sidebar {
  background: var(--bg-elev);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 18px 0 12px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.brand { padding: 0 18px 20px; border-bottom: 1px solid var(--line-soft); }
.brand .mark {
  font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.03em;
}
.brand .mark em { font-style: normal; color: var(--copper); }
.brand .sub {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.side-nav { padding: 14px 10px; display: flex; flex-direction: column; gap: 2px; flex: 1; overflow: auto; }
.side-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; font-size: 14px; color: var(--bone-dim); border-radius: var(--radius);
}
.side-nav a:hover { background: var(--bg-row); color: var(--bone); }
.side-nav a.active { background: var(--copper-dim); color: var(--copper-hot); }
.side-nav .sec {
  margin: 16px 12px 8px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.side-foot {
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  display: flex; gap: 10px; align-items: center;
}
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(145deg, #3a2a1c, #c8783a 120%);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 12px; flex-shrink: 0;
}
.side-foot .who { font-size: 13px; }
.side-foot .role { font-size: 11px; color: var(--muted); }

.main { min-width: 0; display: flex; flex-direction: column; background:
  radial-gradient(700px 320px at 100% -10%, rgba(200,120,58,0.07), transparent 55%),
  var(--bg);
}
.topbar {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(12,13,14,0.9);
  position: sticky; top: 0; z-index: 20;
}
.crumb { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.crumb strong { color: var(--bone); font-weight: 500; }
.top-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.admin-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  color: var(--bone);
  padding: 8px 12px;
  font-size: 13px;
}
.content { padding: 20px 16px 32px; }
.page-title { margin-bottom: 18px; }
.page-title h1 {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: -0.03em;
}
.page-title p { margin-top: 4px; color: var(--muted); font-size: 14px; }

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.kpi { background: var(--bg-panel); padding: 16px; }
.kpi .label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.kpi .value {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.kpi .delta { margin-top: 4px; font-size: 12px; color: var(--ok); }
.kpi .delta.down { color: var(--danger); }

.split { display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 14px; }
.panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.panel-h {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.panel-h h2 { font-size: 14px; font-weight: 600; }
.panel-h .meta { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.table-wrap { overflow: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 560px; }
.table th {
  text-align: left;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  padding: 10px 14px; border-bottom: 1px solid var(--line); font-weight: 500;
}
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--bone-dim);
  white-space: nowrap;
}
.table td.strong { color: var(--bone); font-weight: 500; }
.feed-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.feed-item time { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.feed-item strong { display: block; font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.feed-item span { font-size: 12px; color: var(--muted); }

.menu-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr minmax(200px, 280px);
  gap: 12px;
}
.meal {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  border-left: 2px solid transparent;
}
.meal:hover { background: rgba(255,255,255,0.02); }
.meal.on { background: var(--copper-dim); border-left-color: var(--copper); }
.meal h3 { font-size: 14px; font-weight: 600; }
.meal p { margin-top: 3px; font-size: 12px; color: var(--muted); }
.editor { padding: 16px; }
.editor h3 { font-family: var(--display); font-size: 20px; margin-bottom: 12px; }
.editor-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px;
}
.editor-photos div { aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--line); }
.editor-photos img { width: 100%; height: 100%; object-fit: cover; }
.nutrition {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 14px 0;
}
.nutrition div {
  background: var(--bg); border: 1px solid var(--line); padding: 10px; text-align: center;
}
.nutrition strong { display: block; font-family: var(--display); font-size: 18px; }
.nutrition span { font-family: var(--mono); font-size: 10px; color: var(--muted); text-transform: uppercase; }

.crm-layout { display: grid; grid-template-columns: 1fr minmax(260px, 340px); gap: 12px; }
.facility {
  display: grid;
  grid-template-columns: 44px 1.3fr 1fr 0.9fr 0.8fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
}
.facility:hover, .facility.on { background: var(--copper-dim); }
.facility .ico {
  width: 40px; height: 40px;
  background: var(--bg); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 10px; color: var(--copper);
}
.inspector { padding: 16px; }
.inspector h3 { font-family: var(--display); font-size: 20px; }
.inspector .sub { color: var(--muted); font-size: 13px; margin: 4px 0 14px; }
.kv { display: grid; grid-template-columns: 100px 1fr; gap: 8px 10px; font-size: 13px; margin-bottom: 14px; }
.kv dt { color: var(--muted); }

.lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.lane {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  min-height: 360px;
}
.lane-h {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 600;
}
.lane-h span { font-family: var(--mono); font-size: 11px; font-weight: 400; color: var(--muted); }
.card-job {
  margin: 8px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--copper);
}
.card-job.ok { border-left-color: var(--ok); }
.card-job.warn { border-left-color: var(--warn); }
.card-job.danger { border-left-color: var(--danger); }
.card-job h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.card-job p { font-size: 12px; color: var(--muted); }
.card-job .meta {
  margin-top: 8px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; color: var(--bone-dim);
}

/* Login */
.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.login-visual {
  position: relative;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(12,13,14,0.25), rgba(12,13,14,0.92)),
    radial-gradient(circle at 30% 40%, rgba(200,120,58,0.35), transparent 45%),
    linear-gradient(135deg, #1a1510, #0c0d0e 55%, #14181a);
  overflow: hidden;
  min-height: 320px;
}
.login-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px);
  pointer-events: none;
}
.login-visual > * { position: relative; }
.login-visual .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 10ch;
}
.login-visual .big em { font-style: normal; color: var(--copper); }
.login-visual .cap { margin-top: 16px; color: var(--bone-dim); max-width: 34ch; }
.login-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; margin-top: 24px;
}
.login-stats strong { display: block; font-family: var(--display); font-size: 22px; }
.login-stats span {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.login-form {
  display: grid; place-items: center;
  padding: 32px 20px;
  background: var(--bg-elev);
  border-left: 1px solid var(--line);
}
.form-card { width: min(100%, 380px); }
.form-card h2 {
  font-family: var(--display); font-size: 26px; letter-spacing: -0.03em;
}
.form-card .hint { margin: 6px 0 20px; color: var(--muted); font-size: 14px; }
.roles { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.roles button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 6px;
  font-size: 12px;
  color: var(--bone-dim);
}
.roles button.on {
  border-color: var(--copper);
  background: var(--copper-dim);
  color: var(--copper-hot);
}
.backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 30;
}
.backdrop.show { display: block; }

/* Responsive */
@media (max-width: 1100px) {
  .menu-layout { grid-template-columns: 1fr 1.4fr; }
  .menu-layout .panel:last-child { grid-column: 1 / -1; }
  .lanes { grid-template-columns: 1fr 1fr; }
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-mosaic .tile:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 240px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px 16px;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; border-bottom: 1px solid var(--line-soft); }
  .site-nav .cta { text-align: center; margin-top: 8px; }

  .proof { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .start-wrap { grid-template-columns: 1fr; }
  .start-form { border-left: 0; border-top: 1px solid var(--line); }
  .login { grid-template-columns: 1fr; }
  .login-form { border-left: 0; border-top: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .crm-layout { grid-template-columns: 1fr; }
  .facility { grid-template-columns: 44px 1fr 1fr; }
  .facility > :nth-child(4),
  .facility > :nth-child(5) { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .nutrition { grid-template-columns: 1fr 1fr; }

  .app { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    width: min(86vw, 300px);
    z-index: 35;
    transform: translateX(-105%);
    transition: transform 0.2s ease;
    height: 100vh;
  }
  .sidebar.open { transform: translateX(0); }
  .admin-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .dish-grid { grid-template-columns: 1fr; width: min(100% - 32px, var(--max)); }
  .section { width: min(100% - 32px, var(--max)); padding: 40px 0; }
  .photo-mosaic { grid-template-columns: 1fr; }
  .photo-mosaic .tile:first-child { grid-column: auto; }
  .hero { padding: 40px 16px 40px; min-height: 78vh; }
  .hero-inner { margin-left: 0; }
  .kpis { grid-template-columns: 1fr; }
  .lanes { grid-template-columns: 1fr; }
  .menu-layout { grid-template-columns: 1fr; }
  .login-stats { grid-template-columns: 1fr; gap: 10px; }
  .roles { grid-template-columns: 1fr; }
  .content { padding: 16px 12px 28px; }
}
