/* ═══════════════════════════════════════════════════════════════════════
   Gyughi Ham u Hot — Modernist design system + site styles.
   Flat, zero border-radius, 2px rules between sections, flush-left labels,
   one green accent on a light ground. No gradients, no shadows.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201e1d;

  /* Accent — green, overriding the system's red */
  --color-accent: #1c7a3e;
  --color-accent-100: #eaf5ed;
  --color-accent-200: #c9e6d2;
  --color-accent-300: #9dd2ad;
  --color-accent-400: #5fb079;
  --color-accent-500: #2c8f4e;
  --color-accent-600: #186a35;
  --color-accent-700: #135029;
  --color-accent-800: #0d3a1e;
  --color-accent-900: #0a2715;

  --color-divider: color-mix(in srgb, #201e1d 40%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --font-heading: "Archivo", "Noto Sans Armenian", system-ui, sans-serif;
  --font-body: "Archivo", "Noto Sans Armenian", system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-heading-weight: 800;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px;
  --space-4: 16px; --space-6: 24px; --space-8: 32px;
  --radius-sm: 0px; --radius-md: 0px; --radius-lg: 0px;

  --page-pad: 40px;
  --page-max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; } h2 { font-size: 32px; } h3 { font-size: 25px; }
h4 { font-size: 20px; } h5 { font-size: 16px; }
p { margin: 0 0 var(--space-3); }
img { display: block; max-width: 100%; }
a { color: var(--color-accent); text-underline-offset: 3px; }
a:hover { color: var(--color-accent-700); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* — helpers — */
.wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad); }
.mono {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.muted { color: var(--color-neutral-700); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.grayscale { filter: grayscale(1) contrast(1.08); }
.rule-b { border-bottom: 2px solid var(--color-divider); }

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); color: var(--color-bg); }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-light { background: var(--color-bg); color: var(--color-accent-700); flex-shrink: 0; }
.btn-light:hover { background: #fff; color: var(--color-accent-800); }
.btn-block { width: 100%; margin-top: var(--space-2); justify-content: flex-start; text-align: left; }
.btn-lg { padding: 15px 24px; font-size: 15px; }
.btn-trail { margin-left: auto; padding-left: 16px; }

/* — forms — */
.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 44px; padding: 10px 12px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 110px; resize: vertical; }
select.input { appearance: none; background-image: none; }
.field-error .input { border-color: var(--color-accent-700); }
.err {
  display: none; margin-top: 5px; font-size: 12px; color: var(--color-accent-700);
  font-family: var(--font-heading); font-weight: 800;
}
.field-error .err { display: block; }

/* ── top bar ────────────────────────────────────────────────────────── */
.topbar { background: var(--color-accent); color: var(--color-bg); }
.topbar-inner {
  display: flex; flex-wrap: wrap; gap: 8px 28px; padding: 9px var(--page-pad);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.topbar a { color: inherit; text-decoration: none; }
.topbar-phone { margin-left: auto; }

/* ── header ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--color-bg); border-bottom: 2px solid var(--color-divider);
}
.header-row {
  min-height: 78px; display: flex; flex-wrap: wrap; align-items: center;
  gap: 16px 32px; padding: 0 var(--page-pad);
  max-width: var(--page-max); margin: 0 auto;
}
.brand {
  cursor: pointer; display: flex; flex-direction: column; gap: 2px;
  padding-right: 32px; flex-shrink: 0; background: none; border: 0;
  text-align: left; text-decoration: none;
}
.brand-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 19px;
  letter-spacing: -0.02em; line-height: 1.05; color: var(--color-accent);
}
.brand-sub {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-neutral-700);
}
.main-nav {
  display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; flex: 1 1 260px;
}
.main-nav a {
  cursor: pointer; text-decoration: none; color: var(--color-text);
  font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  padding: 27px 0; white-space: nowrap; border-bottom: 3px solid transparent;
}
.main-nav a:hover { color: var(--color-accent); }
.main-nav a.is-active { border-bottom-color: var(--color-accent); }
.header-tools { display: flex; align-items: center; gap: 12px; flex-shrink: 0; padding: 8px 0; }
.langsw { display: flex; border: 1px solid var(--color-divider); }
.langsw a, .langsw button {
  cursor: pointer; border: 0; padding: 9px 12px; min-height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 12px;
  background: transparent; color: var(--color-text); text-decoration: none;
}
.langsw a:hover, .langsw button:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); color: var(--color-text); }
.langsw a + a, .langsw button + button { border-left: 1px solid var(--color-divider); }
.langsw a.is-active, .langsw button.is-active { background: var(--color-accent); color: #f3f2f2; }
.cart-badge {
  background: var(--color-bg); color: var(--color-accent);
  min-width: 20px; height: 20px; display: inline-flex;
  align-items: center; justify-content: center; font-size: 12px;
}

/* ── photo tiles ────────────────────────────────────────────────────── */
.photo { width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.photo-soon {
  width: 100%; height: 100%; background: var(--color-surface);
  border: 2px solid var(--color-divider);
  display: flex; align-items: flex-end; padding: 16px;
}
.photo-soon span {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-neutral-700);
}

/* ── home: hero ─────────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1.12fr;
  border-bottom: 2px solid var(--color-divider);
}
.hero-text {
  padding: 40px 40px 40px 0; display: flex; flex-direction: column;
  justify-content: center; border-right: 2px solid var(--color-divider);
}
.hero-text h1 {
  font-size: clamp(34px, 3.6vw, 52px); line-height: 1.04; letter-spacing: -0.03em;
  margin: 0 0 18px; max-width: 21ch; text-wrap: balance;
}
.hero-sub {
  font-size: 19px; line-height: 1.5; max-width: 40ch;
  color: var(--color-neutral-800); margin: 0 0 26px; text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo {
  position: relative; min-height: clamp(380px, 44vh, 540px); overflow: hidden;
}
.hero-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
}

/* ── home: facts ────────────────────────────────────────────────────── */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact {
  padding: 26px 28px; display: flex; flex-direction: column; gap: 10px;
  border-left: 1px solid var(--color-divider);
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact:last-child { padding-right: 0; }
.fact-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--color-accent-700); }
.fact-text { font-size: 15px; line-height: 1.45; color: var(--color-neutral-900); text-wrap: pretty; }

/* ── section headings ───────────────────────────────────────────────── */
.section { max-width: var(--page-max); margin: 0 auto; padding: 56px var(--page-pad); border-bottom: 2px solid var(--color-divider); }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; margin-bottom: 28px;
}
.section-head h2 { font-size: 34px; margin: 0; }
.section-link {
  cursor: pointer; font-family: var(--font-heading); font-weight: 800;
  font-size: 13px; text-decoration: none; white-space: nowrap;
  background: none; border: 0; color: var(--color-accent);
}
.section-note {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-neutral-700); text-align: right;
}

/* ── category tiles ─────────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-tile {
  cursor: pointer; background: var(--color-bg); display: flex; flex-direction: column;
  text-decoration: none; color: inherit; text-align: left; font: inherit;
  border: 1px solid var(--color-divider); padding: 0 0 16px;
}
.cat-tile:hover { border-color: var(--color-accent); }
.cat-tile-img { aspect-ratio: 5 / 4; overflow: hidden; }
.cat-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile-meta {
  padding: 14px 14px 0; display: flex; align-items: baseline;
  justify-content: space-between; gap: 10px;
}
.cat-tile-name { font-family: var(--font-heading); font-weight: 800; font-size: 17px; line-height: 1.2; }
.cat-tile-count { font-family: var(--font-mono); font-size: 11px; color: var(--color-neutral-700); }
.cat-tile:hover .cat-tile-name { color: var(--color-accent); }

/* ── product cards ──────────────────────────────────────────────────── */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Each card closes its own frame. Rules drawn per cell used to leave half
   lines hanging wherever a row was not full — this never does, at any count
   or any screen width. */
.card-p {
  background: var(--color-bg); display: flex; flex-direction: column;
  border: 1px solid var(--color-divider);
}
.card-p:hover { border-color: var(--color-accent); }
.card-p-img { cursor: pointer; aspect-ratio: 1 / 1; overflow: hidden; display: block; border: 0; padding: 0; background: none; width: 100%; }
.card-p-img .photo, .card-p-img .photo-soon { transition: opacity 0.15s; }
.card-p-img:hover .photo { opacity: 0.88; }
.card-p-img.ratio-43 { aspect-ratio: 4 / 3; }
.card-p-img img { width: 100%; height: 100%; object-fit: cover; }
.card-p-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-p-name {
  cursor: pointer; font-size: 19px; margin: 0; line-height: 1.15;
  background: none; border: 0; padding: 0; text-align: left;
  font-family: var(--font-heading); font-weight: 800; color: var(--color-text);
}
.card-p-name a { color: inherit; text-decoration: none; }
.card-p-name:hover, .card-p-name a:hover { color: var(--color-accent); }
.card-p-price { display: flex; align-items: baseline; gap: 6px; margin-top: auto; padding-top: 4px; }
.card-p-price b { font-family: var(--font-heading); font-weight: 800; font-size: 20px; }
.card-p-price span { font-size: 13px; color: var(--color-neutral-700); }
.card-p-sm .card-p-name { font-size: 17px; }
.card-p-sm .card-p-price b { font-size: 17px; }
.card-p-sm .card-p-price span { font-size: 12px; }
.card-p-sm .card-p-body { padding: 14px 14px 16px; gap: 6px; }

/* ── poster band ────────────────────────────────────────────────────── */
.poster { background: var(--color-accent); color: var(--color-bg); }
.poster-inner {
  max-width: var(--page-max); margin: 0 auto; padding: 48px var(--page-pad);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 32px;
}
.poster h2 {
  font-size: 44px; line-height: 1.06; letter-spacing: -0.03em;
  margin: 0; max-width: 26ch; text-wrap: pretty;
}

/* ── village split ──────────────────────────────────────────────────── */
.split {
  max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad);
  display: grid; grid-template-columns: 1fr 1.05fr;
  border-bottom: 2px solid var(--color-divider);
}
.split-photo {
  position: relative; min-height: 420px; overflow: hidden;
  border-right: 2px solid var(--color-divider);
}
.split-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.split-body { padding: 64px 0 64px 56px; }
.split-body h2 { font-size: 34px; margin: 0 0 16px; }
.split-body p { font-size: 16px; line-height: 1.6; color: var(--color-neutral-800); max-width: 52ch; margin: 0 0 28px; text-wrap: pretty; }

/* ── tables ─────────────────────────────────────────────────────────── */
.tbl { width: 100%; border-collapse: collapse; }
.tbl td { vertical-align: top; }
.tbl-k {
  padding: 13px 16px 13px 0; border-top: 1px solid var(--color-neutral-300);
  font-family: var(--font-heading); font-weight: 800; font-size: 15px; width: 34%;
}
.tbl-v { padding: 13px 0; border-top: 1px solid var(--color-neutral-300); font-size: 14px; color: var(--color-neutral-800); line-height: 1.5; }
.tbl-mono .tbl-k {
  font-family: var(--font-mono); font-weight: 400; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-neutral-700);
  border-top: 0; border-bottom: 1px solid var(--color-neutral-300);
}
.tbl-mono .tbl-v { border-top: 0; border-bottom: 1px solid var(--color-neutral-300); font-size: 15px; color: var(--color-text); }

/* ── steps ──────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.step {
  height: 100%; padding: 0 36px 0 0; margin-right: 36px;
  border-right: 2px solid var(--color-divider);
  display: flex; flex-direction: column; gap: 10px;
}
.step:last-child { border-right: 0; margin-right: 0; }
.step-num { font-family: var(--font-heading); font-weight: 800; font-size: 44px; color: var(--color-accent); line-height: 1; }
.step-title { font-family: var(--font-heading); font-weight: 800; font-size: 20px; text-wrap: pretty; }
.step-body { font-size: 15px; color: var(--color-neutral-800); line-height: 1.55; text-wrap: pretty; }
.steps-cta { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ── page headers ───────────────────────────────────────────────────── */
.page-head {
  padding: 48px 0 28px; border-bottom: 2px solid var(--color-divider);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.page-head h1 { font-size: 44px; margin: 10px 0 0; }
.page-kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-neutral-700);
}
.page-count { font-family: var(--font-mono); font-size: 12px; color: var(--color-neutral-700); padding-bottom: 8px; white-space: nowrap; }

/* ── shop ───────────────────────────────────────────────────────────── */
.shop-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px 40px;
  align-items: start;
}
.shop-layout > * { min-width: 0; }
.shop-side    { grid-column: 1; grid-row: 1; }
.shop-info    { grid-column: 1; grid-row: 2; margin-top: 28px; }
.shop-results { grid-column: 2; grid-row: 1 / span 2; }
.shop-side {
  position: sticky; top: 96px; z-index: 1;
  padding: 28px 24px 28px 0; border-right: 2px solid var(--color-divider);
}
.shop-side-label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-neutral-700); margin-bottom: 14px;
}
.cat-filters { display: flex; flex-direction: column; }
.cat-filter {
  cursor: pointer; border: 0; background: transparent; text-align: left;
  text-decoration: none;
  padding: 9px 0; display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px; font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  color: var(--color-text); border-bottom: 1px solid var(--color-neutral-300);
}
.cat-filter:hover { color: var(--color-accent); }
.cat-filter.is-active { color: var(--color-accent); }
.cat-filter span:last-child { font-family: var(--font-mono); font-size: 11px; font-weight: 400; color: var(--color-neutral-600); }
.info-box { border: 2px solid var(--color-divider); padding: 16px; }
.shop-info .info-box + .info-box { margin-top: 20px; }
.info-box b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 14px; margin-bottom: 6px; }
.info-box p { margin: 0; font-size: 13px; color: var(--color-neutral-800); line-height: 1.5; }
.shop-results { padding: 28px 0 72px; }

/* ── product page ───────────────────────────────────────────────────── */
.crumb {
  padding: 20px 0; border-bottom: 2px solid var(--color-divider);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-neutral-700);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.crumb a, .crumb button {
  background: none; border: 0; padding: 0; font: inherit;
  color: var(--color-neutral-700); cursor: pointer; text-decoration: none;
}
.crumb a:hover, .crumb button:hover { color: var(--color-accent); }
.pd { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 2px solid var(--color-divider); }
.pd-photo { min-height: 540px; overflow: hidden; border-right: 2px solid var(--color-divider); }
.pd-body { padding: 48px 0 48px 48px; display: flex; flex-direction: column; }
.pd-cat {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-accent-700);
}
.pd-body h1 { font-size: 42px; margin: 14px 0 16px; line-height: 1.06; text-wrap: pretty; }
.pd-desc { font-size: 16px; line-height: 1.6; color: var(--color-neutral-800); max-width: 48ch; margin: 0 0 24px; text-wrap: pretty; }
.pd-price {
  display: flex; align-items: baseline; gap: 8px; padding: 18px 0;
  border-top: 2px solid var(--color-divider); border-bottom: 2px solid var(--color-divider);
}
.pd-price b { font-family: var(--font-heading); font-weight: 800; font-size: 34px; }
.pd-price span { font-size: 15px; color: var(--color-neutral-700); }
.pd-qty-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-neutral-700); margin: 24px 0 10px;
}
.pd-qty-hint { font-size: 13px; color: var(--color-neutral-700); line-height: 1.5; margin: 0 0 12px; max-width: 46ch; }
.pd-qty-row { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.stepper { display: flex; align-items: stretch; border: 1px solid var(--color-divider); }
.stepper button {
  cursor: pointer; width: 44px; min-height: 44px; border: 0; background: transparent;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--color-text);
}
.stepper button:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.stepper-input {
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
  border-left: 1px solid var(--color-divider); border-right: 1px solid var(--color-divider);
}
.stepper-input input {
  width: 64px; border: 0; background: transparent; text-align: right;
  font-family: var(--font-heading); font-weight: 800; font-size: 16px;
  color: var(--color-text); padding: 0;
}
.stepper-input span { font-size: 13px; color: var(--color-neutral-700); }
.pd-add { flex: 1; min-width: 220px; justify-content: flex-start; padding: 14px 20px; font-size: 15px; }
.pd-readout { margin-top: 10px; font-size: 13px; color: var(--color-neutral-700); }
.pd-specs { margin-top: 36px; width: 100%; border-collapse: collapse; }
.pd-specs td { vertical-align: top; }
.pd-specs .k {
  padding: 11px 16px 11px 0; border-bottom: 1px solid var(--color-neutral-300);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-neutral-700); width: 36%;
}
.pd-specs .v { padding: 11px 0; border-bottom: 1px solid var(--color-neutral-300); font-size: 14px; line-height: 1.5; }
.related { padding: 56px 0 80px; }
.related h2 { font-size: 28px; margin: 0 0 24px; }

/* ── cart page ──────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.cart-layout > * { min-width: 0; }
.cart-lines { padding: 32px 0; }
.cart-line {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 20px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--color-neutral-300);
}
.cart-line-thumb { aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-surface); }
.cart-line-info { display: flex; flex-direction: column; gap: 4px; }
.cart-line-name { font-family: var(--font-heading); font-weight: 800; font-size: 17px; line-height: 1.2; }
.cart-line-each { font-size: 13px; color: var(--color-neutral-700); }
.cart-line-ctrl { display: flex; align-items: center; gap: 20px; }
.stepper-sm button { width: 34px; min-height: 34px; height: 34px; font-size: 15px; }
.stepper-sm .qty {
  min-width: 104px; padding: 0 10px; display: flex; align-items: center; justify-content: center;
  white-space: nowrap; font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  border-left: 1px solid var(--color-divider); border-right: 1px solid var(--color-divider);
}
.cart-line-total {
  font-family: var(--font-heading); font-weight: 800; font-size: 17px;
  min-width: 96px; text-align: right; white-space: nowrap;
}
.cart-empty { padding: 48px 0; border-bottom: 2px solid var(--color-divider); }
.cart-empty p { font-size: 17px; color: var(--color-neutral-700); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.notice-box { margin-top: 40px; border: 2px solid var(--color-divider); padding: 20px; max-width: 60ch; }
.notice-box b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 17px; margin-bottom: 8px; }
.notice-box p { margin: 0; font-size: 14px; color: var(--color-neutral-800); line-height: 1.6; }
.summary {
  position: sticky; top: 96px; z-index: 1; margin-top: 32px;
  border: 2px solid var(--color-divider); padding: 26px;
}
.summary-label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-neutral-700); margin-bottom: 18px;
}
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; font-size: 15px; }
.summary-row b { font-family: var(--font-heading); font-weight: 800; text-align: right; }
.summary-row span:first-child { min-width: 0; }
.summary-total .v { white-space: nowrap; }
.summary-row.rule { border-bottom: 2px solid var(--color-divider); }
.summary-total { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0 4px; align-items: baseline; }
.summary-total .k { font-family: var(--font-heading); font-weight: 800; font-size: 18px; }
.summary-total .v { font-family: var(--font-heading); font-weight: 800; font-size: 26px; }
.summary-note { margin: 16px 0 0; font-size: 12px; color: var(--color-neutral-700); line-height: 1.55; }
.done { padding: 96px 0; max-width: 60ch; }
.done h1 { font-size: 46px; margin: 16px 0 18px; line-height: 1.08; text-wrap: pretty; }
.done p { font-size: 17px; color: var(--color-neutral-800); line-height: 1.6; text-wrap: pretty; }
.done .page-kicker { color: var(--color-accent-700); }

/* ── contact ────────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 40px 0; }
.logo-panel {
  height: 300px; margin-bottom: 28px; background: var(--color-accent); color: var(--color-bg);
  padding: 36px 40px; display: flex; flex-direction: column; justify-content: space-between;
}
.logo-panel-top { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.logo-panel-mark { display: flex; flex-direction: column; gap: 10px; }
.logo-panel-mark b { font-family: var(--font-heading); font-weight: 800; font-size: 46px; line-height: 0.95; letter-spacing: -0.03em; }
.logo-panel-rule { width: 64px; height: 3px; background: var(--color-bg); }
.logo-panel-latin { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.contact-form-col { border-left: 2px solid var(--color-divider); padding-left: 56px; }
.contact-form-col h3 { font-size: 24px; margin: 0 0 8px; }
.contact-form-col > p { font-size: 15px; color: var(--color-neutral-800); margin: 0 0 24px; max-width: 46ch; line-height: 1.6; text-wrap: pretty; }
.stack { display: flex; flex-direction: column; gap: 18px; }
.form-sent {
  margin-top: 18px; border: 2px solid var(--color-accent); padding: 16px;
  font-size: 14px; color: var(--color-accent-700); line-height: 1.5;
  font-family: var(--font-heading); font-weight: 800;
}

/* ── footer ─────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 3px solid var(--color-text);
  background: color-mix(in srgb, var(--color-text) 11%, var(--color-bg));
}
.footer-grid {
  max-width: var(--page-max); margin: 0 auto; padding: 48px var(--page-pad);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
}
.footer-brand { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.footer-latin {
  display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-neutral-700); margin-top: 4px;
}
.footer-blurb { margin: 18px 0 0; font-size: 14px; color: var(--color-neutral-800); max-width: 40ch; line-height: 1.6; text-wrap: pretty; }
.footer-col { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.footer-col-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-neutral-700); margin-bottom: 4px;
}
.footer-col a, .footer-col button {
  cursor: pointer; text-decoration: none; color: var(--color-text); font-size: 14px;
  background: none; border: 0; padding: 0; text-align: left; font-family: inherit;
}
.footer-col a:hover, .footer-col button:hover { color: var(--color-accent); }
.footer-col a[href^="mailto"] { word-break: break-all; }
.footer-col span { font-size: 14px; color: var(--color-neutral-800); line-height: 1.6; text-wrap: pretty; }
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--color-text) 25%, transparent);
  background: color-mix(in srgb, var(--color-text) 18%, var(--color-bg));
}
.footer-bottom-inner {
  max-width: var(--page-max); margin: 0 auto; padding: 18px var(--page-pad);
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--font-mono); font-size: 11px; color: var(--color-neutral-700);
}

/* ── cart drawer ────────────────────────────────────────────────────── */
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(32, 30, 29, 0.4);
  z-index: 90; animation: fadeIn 0.15s ease-out; border: 0; padding: 0;
}
.drawer {
  position: fixed; top: 0; right: 0; width: 440px; max-width: 92vw; height: 100vh;
  background: var(--color-bg); border-left: 2px solid var(--color-divider);
  z-index: 100; display: flex; flex-direction: column; animation: slideIn 0.2s ease-out;
}
.drawer-head {
  padding: 24px 28px; border-bottom: 2px solid var(--color-divider);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-head h3 { margin: 0; font-size: 22px; }
.drawer-close {
  cursor: pointer; border: 0; background: transparent; font-family: var(--font-heading);
  font-weight: 800; font-size: 20px; line-height: 1; width: 44px; height: 44px; color: var(--color-text);
}
.drawer-body { flex: 1; overflow-y: auto; padding: 0 28px; }
.drawer-body > p { padding: 40px 0; color: var(--color-neutral-700); font-size: 15px; }
.drawer-line {
  display: grid; grid-template-columns: 64px 1fr; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--color-neutral-300);
}
.drawer-line-thumb { aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-surface); }
.drawer-line-main { display: flex; flex-direction: column; gap: 6px; }
.drawer-line-top { display: flex; justify-content: space-between; gap: 10px; }
.drawer-line-top b { font-family: var(--font-heading); font-weight: 800; font-size: 15px; line-height: 1.25; }
.drawer-line-top span { font-family: var(--font-heading); font-weight: 800; font-size: 15px; white-space: nowrap; }
.drawer-line-each { font-size: 12px; color: var(--color-neutral-700); }
.drawer-line-ctrl { display: flex; align-items: center; gap: 12px; margin-top: 2px; }
.stepper-xs button { width: 28px; height: 28px; min-height: 28px; font-size: 14px; }
.stepper-xs .qty {
  min-width: 92px; padding: 0 8px; display: flex; align-items: center; justify-content: center;
  white-space: nowrap; font-size: 13px; font-family: var(--font-heading); font-weight: 800;
  border-left: 1px solid var(--color-divider); border-right: 1px solid var(--color-divider);
}
.drawer-foot { border-top: 2px solid var(--color-divider); padding: 22px 28px; }
.drawer-foot .row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.drawer-foot .row b { font-family: var(--font-heading); font-weight: 800; }
.drawer-foot .row.sub { margin-bottom: 6px; }
.drawer-foot .row.dlv { color: var(--color-neutral-700); }

/* ── responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  :root { --page-pad: 28px; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 190px 1fr; gap: 28px; }
  .cart-layout { gap: 32px; }
  .contact-layout { gap: 32px; }
  .contact-form-col { padding-left: 32px; }
  .split-body { padding: 48px 0 48px 32px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 40px 0 36px; border-right: 0; border-bottom: 2px solid var(--color-divider); }
  .hero-photo { min-height: 300px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2n) { border-right: 0; }
  .prod-grid, .prod-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-photo { min-height: 280px; border-right: 0; border-bottom: 2px solid var(--color-divider); }
  .split-body { padding: 40px 0; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { padding: 0 0 24px; margin-right: 0; border-right: 0; border-bottom: 2px solid var(--color-divider); }
  .step:last-child { border-bottom: 0; padding-bottom: 0; }
  .pd { grid-template-columns: 1fr; }
  .pd-photo { min-height: 340px; border-right: 0; border-bottom: 2px solid var(--color-divider); }
  .pd-body { padding: 36px 0; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; margin-top: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-col { border-left: 0; padding-left: 0; padding-top: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .poster h2 { font-size: 34px; }
  .section { padding: 40px var(--page-pad); }

  /* shop sidebar becomes a horizontal filter strip; products come first,
     the price / delivery boxes drop to the bottom */
  .shop-layout { grid-template-columns: 1fr; gap: 0; }
  .shop-side    { grid-column: 1; grid-row: auto; }
  .shop-results { grid-column: 1; grid-row: auto; }
  .shop-info    { grid-column: 1; grid-row: auto; margin-top: 8px; }
  .shop-side {
    position: static; padding: 20px 0; border-right: 0;
    border-bottom: 2px solid var(--color-divider);
  }
  .cat-filters {
    flex-direction: row; overflow-x: auto; gap: 10px;
    padding-bottom: 6px; -webkit-overflow-scrolling: touch;
  }
  .cat-filter {
    border-bottom: 0; border: 1px solid var(--color-divider);
    padding: 10px 14px; white-space: nowrap; min-height: 44px;
  }
  .cat-filter.is-active { background: var(--color-accent); color: var(--color-bg); border-color: var(--color-accent); }
  .cat-filter.is-active span:last-child { color: var(--color-bg); }
  .shop-info { border-top: 1px solid var(--color-neutral-300); padding-top: 22px; margin-top: 8px; }
  .shop-info .info-box + .info-box { margin-top: 16px; }
  .shop-results { padding: 22px 0 28px; }
}

@media (max-width: 620px) {
  :root { --page-pad: 18px; }
  .topbar-inner { font-size: 10px; gap: 6px 16px; }
  .topbar-phone { margin-left: 0; }
  .header-row { min-height: 0; padding-top: 12px; padding-bottom: 12px; gap: 12px 18px; }
  .brand { padding-right: 0; }
  .main-nav { order: 3; flex: 1 1 100%; gap: 6px 18px; border-top: 1px solid var(--color-neutral-300); }
  .main-nav a { padding: 12px 0; font-size: 13px; }
  .header-tools { margin-left: auto; padding: 0; }

  /* two per row: a phone shows a real grid of products, not a long list */
  .prod-grid, .prod-grid-3, .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* the four facts read as a 2×2 block */
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 18px 14px; border-left: 1px solid var(--color-divider); }
  .fact:nth-child(odd) { border-left: 0; padding-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--color-divider); }
  .fact:nth-child(even) { padding-right: 0; }
  .page-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .page-head h1 { font-size: 32px; }
  .hero-text h1 { font-size: 32px; }
  .pd-body h1 { font-size: 30px; }
  .done h1 { font-size: 32px; }
  .poster h2 { font-size: 28px; }
  .poster-inner { padding: 32px var(--page-pad); }
  .form-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 72px 1fr; gap: 14px; }
  .cart-line-ctrl { grid-column: 1 / -1; justify-content: space-between; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 32px var(--page-pad); }
  .footer-bottom-inner { flex-direction: column; gap: 6px; }
  .site-footer { border-top-width: 3px; }
  .footer-col-label { font-size: 9px; }
  .logo-panel-mark b { font-size: 34px; }
  .split-body h2, .section-head h2 { font-size: 26px; }
  .section-head { flex-direction: column; gap: 8px; align-items: flex-start; }
  .section-note { text-align: left; }
  .drawer { width: 100%; max-width: 100%; }
  .pd-add { min-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: flex-start; }
  .steps-cta .btn { width: 100%; justify-content: flex-start; }
  .poster .btn { width: 100%; justify-content: flex-start; }
}

@media print {
  .site-header, .topbar, .drawer, .drawer-backdrop { display: none; }
}


/* ── checkout: delivery / pickup and the grilling question ──────────── */
.choice-block { margin-top: 28px; border: 2px solid var(--color-divider); padding: 18px 20px; }
.choice-label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-neutral-700); margin-bottom: 12px;
}
.choice {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 9px 0; font-size: 15px; min-height: 44px;
}
.choice input { width: 20px; height: 20px; accent-color: var(--color-accent); flex: none; }
.choice-strong { font-family: var(--font-heading); font-weight: 800; font-size: 17px; }
.grill-hint { font-size: 13px; line-height: 1.55; margin: 4px 0 0; max-width: 56ch; }
.pickup-note {
  margin: 12px 0 0; font-size: 14px; line-height: 1.55;
  border-left: 3px solid var(--color-accent); padding-left: 12px;
}
#delivery-fields { margin-top: 6px; }

.grill-block .choice-strong { display: block; }
#grill-list { display: flex; flex-direction: column; }
.grill-item {
  display: grid; grid-template-columns: 20px 1fr auto auto; gap: 12px;
  align-items: center; padding: 11px 0;
  border-top: 1px solid var(--color-neutral-300);
}
.grill-item-name { font-family: var(--font-heading); font-weight: 800; font-size: 15px; }
.grill-item-qty { font-size: 13px; color: var(--color-neutral-700); white-space: nowrap; }
.grill-item-sum {
  font-family: var(--font-heading); font-weight: 800; font-size: 15px;
  white-space: nowrap; min-width: 76px; text-align: right;
}
.grill-item input:checked ~ .grill-item-sum { color: var(--color-accent); }
#delivery-fields .field { margin-bottom: 14px; }
.topbar-addr { opacity: 0.9; }

/* ══ mobile ═════════════════════════════════════════════════════════ */
@media (max-width: 620px) {
  /* the top bar is reference information, not navigation — keep it quiet */
  .topbar-inner { font-size: 9px; letter-spacing: 0.06em; gap: 4px 12px; padding: 7px var(--page-pad); }
  .topbar-addr { display: none; }

  /* header: brand and cart on one line, nav below, nothing cramped */
  .header-row { padding-top: 10px; padding-bottom: 0; gap: 10px; }
  .brand-name { font-size: 16px; }
  .brand-sub { display: none; }
  .header-tools { gap: 8px; }
  .langsw a, .langsw button { padding: 8px 10px; font-size: 11px; min-height: 40px; }
  .header-tools .btn-primary { padding: 10px 12px; font-size: 13px; }
  .main-nav { margin-top: 2px; }
  .main-nav a { flex: 1; text-align: center; padding: 14px 0; border-bottom-width: 2px; }

  /* two to a row, so the type and buttons shrink to suit */
  .card-p-body { padding: 10px 10px 12px; gap: 6px; }
  .card-p-name { font-size: 15px; line-height: 1.2; }
  .card-p-price b { font-size: 17px; }
  .card-p-price span { font-size: 11px; }
  .card-p .btn-block {
    padding: 11px 10px; font-size: 13px; min-height: 46px; margin-top: 6px;
    justify-content: center; text-align: center;
  }
  .cat-tile-meta { padding: 10px 10px 0; gap: 6px; flex-direction: column; }
  .cat-tile-name { font-size: 14px; line-height: 1.2; }
  .card-p-sm .card-p-name { font-size: 14px; }

  /* the grill picker on a narrow screen */
  .grill-item { grid-template-columns: 20px 1fr auto; row-gap: 2px; }
  .grill-item-qty { grid-column: 2; font-size: 12px; }
  .grill-item-sum { grid-column: 3; grid-row: 1 / span 2; }

  /* product page */
  .pd-body { padding: 28px 0 32px; }
  .pd-price { padding: 14px 0; }
  .pd-qty-row { gap: 10px; }
  .stepper { width: 100%; }
  .stepper button { flex: 1; min-height: 52px; font-size: 22px; }
  .stepper-input { flex: 2; justify-content: center; }
  .stepper-input input { width: 72px; font-size: 18px; text-align: center; }
  .pd-add { min-height: 52px; font-size: 16px; }
  .pd-specs .k { width: 42%; }

  /* checkout */
  .cart-line { grid-template-columns: 64px 1fr; gap: 12px; padding: 16px 0; }
  .cart-line-thumb { width: 64px; }
  .cart-line-ctrl { grid-column: 1 / -1; justify-content: space-between; }
  .stepper-sm button { width: 44px; height: 44px; min-height: 44px; }
  .stepper-sm .qty { min-width: 76px; padding: 0 6px; font-size: 13px; }
  .cart-line-total { font-size: 16px; min-width: 0; white-space: nowrap; }
  .cart-line-ctrl { gap: 10px; }
  .summary { padding: 20px 16px; }
  .choice-block { padding: 16px; margin-top: 22px; }
  .notice-box { padding: 16px; margin-top: 28px; }

  /* forms are the part people actually have to use on a phone */
  .input { min-height: 50px; font-size: 16px; }   /* 16px stops iOS zooming in */
  textarea.input { min-height: 96px; }
  .field > label { font-size: 13px; }

  /* the cart drawer becomes a sheet from the bottom — easier to reach */
  .drawer {
    top: auto; bottom: 0; height: auto; max-height: 88vh; width: 100%;
    border-left: 0; border-top: 2px solid var(--color-divider);
    animation: slideUp 0.22s ease-out;
  }
  .drawer-head { padding: 18px 20px; }
  .drawer-body { padding: 0 20px; }
  .drawer-foot { padding: 18px 20px calc(18px + env(safe-area-inset-bottom)); }
  .drawer-line { grid-template-columns: 56px 1fr; gap: 12px; }
  .stepper-xs button { width: 40px; height: 40px; min-height: 40px; }
  .stepper-xs .qty { min-width: 84px; }

  /* headings: less shouting, more room */
  .hero-text { padding: 28px 0 30px; }
  .hero-text h1 { font-size: 30px; letter-spacing: -0.02em; }
  .hero-sub { font-size: 17px; margin-bottom: 22px; }
  .section { padding: 32px var(--page-pad); }
  .section-head { margin-bottom: 18px; }
  .split-body { padding: 30px 0; }
  .tbl-k { width: 38%; font-size: 14px; }
  .tbl-v { font-size: 13px; }
  .steps-cta { margin-top: 28px; }
  .page-head { padding: 28px 0 18px; }
  .related { padding: 32px 0 48px; }
  .done { padding: 56px 0; }
}

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* very small phones */
@media (max-width: 380px) {
  :root { --page-pad: 14px; }
  .hero-text h1 { font-size: 26px; }
  .page-head h1 { font-size: 26px; }
  .main-nav a { font-size: 12px; }
}
