/* ============================================================
   Корица — styles. Design tokens are fixed; content comes from site.json.
   ============================================================ */

:root {
  --bg: #221612;
  --surface: #2B1D18;
  --text: #F4E9DC;
  --text-2: #C9B5A3;
  --accent: #D9A15F;
  --accent-h: #C48F4F;
  --on-accent: #221612;
  --line: #3B2B25;
  --light: #F4E9DC;
  --light-text: #221612;
  --light-text-2: #6F5A4E;
  --light-line: #E3D3C1;
  --ok: #A8C49A;
  --err: #E38B7A;

  --font-display: "Prata", Georgia, serif;
  --font-text: "Golos Text", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
  --pad: 20px;
  --section-y: 72px;
  --header-h: 64px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote, fieldset { margin: 0; padding: 0; }
ul, ol { list-style: none; }
fieldset { border: 0; min-width: 0; }
legend { padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; text-align: left; }
button, input, select, textarea { border-radius: 0; }
:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }
.band :focus-visible { outline-color: var(--light-text); }

/* Unified image grade for hero, cards, gallery and baker */
.hero-img-wrap img, .menu-card img, .gallery-item img, .baker-media img {
  filter: saturate(0.95) contrast(1.02) brightness(0.98);
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section { padding: var(--section-y) 0; }
section[id] { scroll-margin-top: 72px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head { margin-bottom: 32px; }
.section-intro { max-width: 62ch; margin-top: -8px; margin-bottom: 56px; }

/* ---------- typography ---------- */
h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--text);
}
h1 .accent { color: var(--accent); }
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--text);
}
h3 { font-weight: 600; font-size: 17px; line-height: 1.3; }
.eyebrow {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-2);
}
.body { font-size: 16px; line-height: 1.6; color: var(--text); }
.body-2 { font-size: 14px; line-height: 1.55; color: var(--text-2); }
.composition, .allergens { display: block; font-size: 13px; line-height: 1.5; color: var(--text-2); }
.price { font-weight: 500; font-size: 16px; font-variant-numeric: tabular-nums; color: var(--text); white-space: nowrap; }
.price-unit { font-weight: 400; font-size: 13px; color: var(--text-2); }
.price-min, .price-note { font-weight: 400; font-size: 13px; line-height: 1.5; color: var(--text-2); }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background-color 120ms ease, color 120ms ease;
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover, .btn-primary:active { background: var(--accent-h); }
.btn-primary:disabled { cursor: default; }
.btn-secondary { background: transparent; border: 1px solid var(--text); color: var(--text); }
.btn-secondary:hover, .btn-secondary:active { background: var(--text); color: var(--bg); }
.band .btn-secondary { border-color: var(--light-text); color: var(--light-text); }
.band .btn-secondary:hover { background: var(--light-text); color: var(--light); }
.btn-block { width: 100%; }
.btn .mark { flex: 0 0 18px; }

.text-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.band .text-link { color: var(--light-text); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.wordmark { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1; color: var(--text); }
.site-nav { display: none; }
.site-nav a {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.site-nav a.is-active { border-bottom-color: var(--accent); }
.btn-header {
  height: 44px;
  padding: 0;
  background: transparent;
  color: var(--accent);
}
.btn-header:hover, .btn-header:active { background: transparent; color: var(--accent-h); }

/* ---------- hero ---------- */
.hero { padding-top: 0; padding-bottom: 0; overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.hero-img-wrap { overflow: hidden; aspect-ratio: 3 / 2; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-text { padding-top: 32px; padding-bottom: 8px; }
.hero-text .eyebrow { margin-bottom: 12px; }
.hero-lead { max-width: 42ch; margin-top: 24px; }
.hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 16px; margin-top: 32px; }
.hero-actions .text-link { text-align: center; }

.js .hero-img-wrap img { animation: hero-img 1200ms var(--ease) both; }
.js .hero-text { animation: hero-text 600ms var(--ease) 100ms both; }
@keyframes hero-img { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes hero-text { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- info strip ---------- */
.info { margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; }
.info-list { display: flex; flex-direction: column; gap: 8px; }
.info-list li { font-weight: 500; font-size: 14px; line-height: 1.5; color: var(--text); }

/* ---------- menu ---------- */
.menu-group + .menu-group { margin-top: 56px; }
.menu-group-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.menu-terms { font-size: 13px; line-height: 1.5; color: var(--text-2); }

.menu-cards { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
.menu-card { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; width: 100%; align-self: start; }
.menu-card article { display: block; }
.img-wrap { display: block; overflow: hidden; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-4x5 { aspect-ratio: 4 / 5; }
.menu-card h3 { margin-top: 16px; }
.menu-card .composition { margin-top: 4px; }
.price-row { display: flex; align-items: baseline; gap: 16px; margin-top: 12px; }

.menu-rows { display: block; }
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 120ms ease;
}
.menu-row-main { display: block; min-width: 0; }
.menu-row-name { display: block; font-weight: 600; font-size: 16px; line-height: 1.3; color: var(--text); }
.menu-row .composition { margin-top: 4px; }
.menu-row-price { display: flex; flex-direction: column; align-items: flex-end; text-align: right; flex: 0 0 auto; }
.menu-footnote { max-width: 62ch; margin-top: 40px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.gallery-item { display: flex; flex-direction: column; width: 100%; }
.gallery-more { margin-top: 24px; }

/* ---------- light band ---------- */
.band { background: var(--light); color: var(--light-text); }
.band h2, .band h3, .band .body { color: var(--light-text); }
.band .eyebrow, .band .body-2 { color: var(--light-text-2); }

.steps { display: flex; flex-direction: column; gap: 40px; }
.step-num { display: block; font-family: var(--font-display); font-weight: 400; font-size: 56px; line-height: 1; color: var(--accent); }
.step-title { margin-top: 12px; font-weight: 600; font-size: 17px; line-height: 1.3; color: var(--light-text); }
.step-text { margin-top: 8px; max-width: 36ch; color: var(--light-text); }

.delivery { margin-top: 72px; }
.delivery-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.pickup .body { margin-top: 12px; }
.pickup .body-2 { margin-top: 8px; }
.zones-list { margin-top: 12px; }
.zone {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-line);
}
.zone-left, .zone-right { display: flex; flex-direction: column; }
.zone-right { align-items: flex-end; text-align: right; flex: 0 0 auto; }
.zone-name { font-weight: 600; font-size: 15px; line-height: 1.4; color: var(--light-text); }
.zone-districts { font-size: 13px; line-height: 1.5; color: var(--light-text-2); }
.zone-price { font-weight: 500; font-size: 16px; line-height: 1.4; font-variant-numeric: tabular-nums; color: var(--light-text); white-space: nowrap; }
.zone-window { font-size: 13px; line-height: 1.5; color: var(--light-text-2); white-space: nowrap; }
.zones-note { margin-top: 16px; }

/* ---------- baker ---------- */
.baker-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.baker-text .eyebrow { margin-bottom: 12px; }
.baker-role { margin-top: 8px; font-size: 15px; line-height: 1.55; color: var(--text-2); }
.baker-text .body { margin-top: 20px; }
.facts { margin-top: 24px; }
.facts li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.55; color: var(--text); }

/* ---------- reviews ---------- */
.reviews-list { display: flex; flex-direction: column; }
.review { padding: 32px 0; border-top: 1px solid var(--line); }
.quote { font-family: var(--font-display); font-weight: 400; font-size: 20px; line-height: 1.4; color: var(--text); }
.review-meta { margin-top: 20px; font-size: 14px; line-height: 1.5; }
.review-author { font-weight: 500; color: var(--text); }
.review-source { font-weight: 400; color: var(--text-2); }

/* ---------- order ---------- */
.order-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.direct-links { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.direct-links .btn { width: 100%; }

.order-form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
}
.field { display: block; }
.field + .field, .field + fieldset, fieldset + .field, .field + .field-address { margin-top: 20px; }
.label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-2);
}
input[type="text"], input[type="date"], select, textarea {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 120ms ease;
}
textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 96px; }
input::placeholder, textarea::placeholder { color: var(--text-2); opacity: 0.7; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--text); }
input.is-invalid, select.is-invalid { border-color: var(--err); }
input[type="date"] { color-scheme: dark; }
input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.6; cursor: pointer; }
input:-webkit-autofill { -webkit-text-fill-color: var(--text); -webkit-box-shadow: 0 0 0 100px var(--bg) inset; }
select.is-highlighted { border-color: var(--accent); }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; }
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text-2);
  pointer-events: none;
}
select option { background: var(--bg); color: var(--text); }
select optgroup { background: var(--bg); color: var(--text-2); font-style: normal; }
.helper { margin-top: 8px; font-size: 13px; line-height: 1.5; color: var(--text-2); }
.error { display: none; margin-top: 8px; font-size: 13px; line-height: 1.5; color: var(--err); }
.error.is-visible { display: block; }
.error a { color: var(--err); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.radios { display: flex; flex-direction: column; gap: 12px; }
.radio { display: flex; align-items: center; gap: 12px; cursor: pointer; min-height: 24px; }
.radio input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.radio-box {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.radio input:checked + .radio-box { background: var(--accent); border-color: var(--accent); }
.radio input:checked + .radio-box::after {
  content: "";
  position: absolute;
  left: 5px; top: 5px;
  width: 6px; height: 6px;
  background: var(--bg);
}
.radio input:focus-visible + .radio-box { outline: 2px solid var(--text); outline-offset: 2px; }
.radio-label { font-size: 16px; line-height: 1.4; color: var(--text); }

/* Address field: collapsible (200ms height/opacity) */
.field-address { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 200ms ease, opacity 200ms ease; }
.field-address .field-inner { overflow: hidden; min-height: 0; }
.field-address.is-open { grid-template-rows: 1fr; opacity: 1; }
.field-address.is-open .field-inner { overflow: visible; }
.no-js .field-address, html:not(.js) .field-address { grid-template-rows: 1fr; opacity: 1; }
.field-address:not(.is-open) { margin-top: 0; }
.field-address.is-open { margin-top: 20px; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
#submit-btn { margin-top: 28px; }
.submit-error { margin-top: 12px; }
.disclaimer { margin-top: 16px; }

.form-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text);
}
.form-success p { margin-top: 16px; color: var(--ok); }
.form-success .text-link { display: inline-block; margin-top: 24px; }

/* ---------- contacts ---------- */
.contacts-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.address > * + * { margin-top: 12px; }
.address-line { font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--text); }
.hours { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: grid; grid-template-columns: 64px 1fr; gap: 16px; font-size: 15px; line-height: 1.5; }
.hours dt { color: var(--text-2); }
.hours dd { color: var(--text); }
.contact-links { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.map-box {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 32px 0 40px; }
.footer-row { display: flex; flex-direction: column; gap: 8px; }
.footer-line { font-size: 13px; line-height: 1.5; color: var(--text-2); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-weight: 500; font-size: 13px; line-height: 1.5; color: var(--text); }
.footer-row-2 { margin-top: 16px; font-size: 12px; line-height: 1.5; color: var(--text-2); opacity: 0.7; }

/* ---------- mobile sticky bar ---------- */
body { padding-bottom: 72px; }
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  height: calc(64px + env(safe-area-inset-bottom));
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 240ms var(--ease);
}
.sticky-bar.is-visible { transform: translateY(0); pointer-events: auto; }
html:not(.js) .sticky-bar { display: none; }
.sticky-bar .btn-primary { flex: 1; height: 48px; padding: 0 16px; }
.btn-square { flex: 0 0 48px; width: 48px; height: 48px; padding: 0; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(34, 22, 18, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lb-figure { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 92vw; }
.lb-figure img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; object-fit: contain; opacity: 0; transition: opacity 180ms ease; }
.lb-figure img.is-shown { opacity: 1; }
.lb-figure figcaption { font-size: 13px; line-height: 1.5; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 92vw; }
.lb-counter { position: absolute; top: 16px; left: 20px; font-weight: 500; font-size: 13px; color: var(--text-2); }
.lb-close {
  position: absolute;
  top: 8px; right: 12px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--text);
}
.lb-prev, .lb-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px; height: 64px;
  align-items: center; justify-content: center;
  font-family: var(--font-display), var(--font-text);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--text);
}
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
body.is-locked { overflow: hidden; }

/* ---------- reveal on scroll (JS only) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.js .reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero-img-wrap img, .js .hero-text { animation: none; }
  .sticky-bar, .lightbox, .lb-figure img, .field-address { transition: none; }
}

/* ============================================================
   Breakpoints: 640, 1024, 1280
   ============================================================ */

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; align-items: center; gap: 24px; }
  .hero-actions .btn { width: auto; }
  .hero-actions .text-link { text-align: left; }
  .info-list { flex-direction: row; flex-wrap: wrap; gap: 8px 48px; }
  .menu-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .direct-links .btn { width: 100%; max-width: 320px; }
}

@media (min-width: 1024px) {
  :root { --pad: 40px; --section-y: 120px; }
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }

  h1 { font-size: 60px; }
  h2 { font-size: 44px; }
  h3 { font-size: 18px; }
  .body { font-size: 17px; }
  .body-2 { font-size: 15px; }
  .section-head { margin-bottom: 48px; }
  .section-intro { margin-top: -16px; margin-bottom: 72px; }
  .btn { height: 56px; }
  .btn-header { height: 44px; padding: 0 24px; background: var(--accent); color: var(--on-accent); }
  .btn-header:hover, .btn-header:active { background: var(--accent-h); color: var(--on-accent); }

  /* header */
  .site-nav { display: flex; gap: 32px; margin-left: auto; margin-right: 40px; }

  /* hero: image cols 1–7 with left bleed, text cols 8–12 */
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: center; }
  .hero-media { grid-column: 1 / 8; margin-left: calc(-1 * max(40px, (100vw - 1200px) / 2 + 40px)); }
  .hero-img-wrap { max-height: 680px; }
  .hero-text { grid-column: 8 / 13; padding: 0; }

  .info { margin-top: 64px; }
  .info-list { gap: 0; }
  .info-list li + li::before { content: "·"; color: var(--text-2); margin: 0 24px; }

  /* menu */
  .menu-group + .menu-group { margin-top: 72px; }
  .menu-group-head { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 16px; }
  .menu-terms { text-align: right; }
  .menu-cards { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .menu-card:hover img { transform: scale(1.03); }
  .menu-row:hover { background: var(--surface); }
  .gallery-item:hover img { transform: scale(1.03); }

  /* band */
  .steps { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
  .step { grid-column: span 4; }
  .step-num { font-size: 72px; }
  .delivery { margin-top: 96px; }
  .delivery-grid { grid-template-columns: repeat(12, 1fr); gap: 24px; }
  .pickup { grid-column: 1 / 6; }
  .zones { grid-column: 7 / 13; }

  /* baker: text 1–5, image 7–12 */
  .baker-grid { grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: center; }
  .baker-media { grid-column: 7 / 13; order: 2; }
  .baker-text { grid-column: 1 / 6; order: 1; }

  /* reviews */
  .reviews-list { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
  .review { grid-column: span 4; padding: 0; border-top: 0; }
  .review + .review { border-left: 1px solid var(--line); padding-left: 32px; }

  /* order */
  .order-grid { grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: start; }
  .order-intro { grid-column: 1 / 6; }
  .order-form { grid-column: 7 / 13; padding: 40px; }
  .direct-links { margin-top: 32px; }

  /* contacts */
  .contacts-grid { grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: start; }
  .address { grid-column: 1 / 6; }
  .map-box { grid-column: 6 / 13; aspect-ratio: 16 / 10; }

  /* footer */
  .footer-row { flex-direction: row; justify-content: space-between; align-items: baseline; }

  /* lightbox arrows */
  .lb-prev, .lb-next { display: flex; }
}
