/* ===========================================================================
   «Тёплый угол» — ремесленная пекарня на закваске.
   Дизайн-система одного лендинга. Палитра: пшеница/крем + корочка + рожь.
   Только локальные ресурсы, без внешних запросов.
   =========================================================================== */

:root {
  /* --- цвет --- */
  --cream:     #f7efe1;   /* кремовый фон */
  --cream-2:   #efe3cf;   /* тёплая бумага */
  --wheat:     #e9d4ad;   /* пшеничный, мягкие плашки */
  --crust:     #b06a32;   /* корочка-коричневый — основной акцент */
  --crust-2:   #8f5223;   /* корочка глубокая (hover) */
  --rye:       #2f241a;   /* ржаной тёмный — текст/тёмные секции */
  --rye-2:     #3c2e21;
  --seed:      #6b7a4f;   /* тыквенно-зелёный, второй акцент */
  --ink:       #33271c;
  --ink-soft:  #6a594a;
  --muted:     #9a8771;
  --line:      #e0cfb2;
  --line-soft: #ead9bd;

  /* --- типографика: дружелюбный округлый сан + сериф --- */
  --sans:  ui-rounded, "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, "Helvetica Neue", Arial, sans-serif;
  --serif: "Hoefler Text", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;

  /* --- шкала отступов --- */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 72px; --s-7: 104px; --s-8: 140px;

  --maxw: 1200px;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow:    0 2px 6px rgba(47,36,26,.06), 0 14px 36px rgba(47,36,26,.08);
  --shadow-lg: 0 26px 64px rgba(47,36,26,.18);
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 var(--s-2); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-4); }
.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--rye); color: var(--cream); padding: 10px 16px; border-radius: var(--r-sm); z-index: 999;
}

/* ---------- общие секции ---------- */
.section { padding-block: var(--s-7); }
.section--cream2 { background: var(--cream-2); }
.section--rye   { background: var(--rye); color: #f1e6d3; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .2em;
  font-size: 12px; font-weight: 700; color: var(--crust); margin: 0 0 var(--s-2);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--crust); border-radius: 2px; }
.eyebrow--light { color: #e6b884; }
.eyebrow--light::before { background: #e6b884; }

.section-head { max-width: 660px; margin: 0 0 var(--s-6); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: var(--s-2); }
.section-head__lead { color: var(--ink-soft); font-size: 18px; margin: 0; }
.section--rye .section-head__lead { color: #cbbca6; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--crust); color: #fff; padding: 15px 30px;
  border: 1px solid var(--crust); border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { background: var(--crust-2); border-color: var(--crust-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--small { padding: 10px 20px; font-size: 14px; }
.btn--ghost { background: transparent; color: var(--crust); }
.btn--ghost:hover { background: rgba(176,106,50,.08); color: var(--crust-2); }
.btn--ghost-dark { background: transparent; color: var(--rye); border-color: var(--rye); }
.btn--ghost-dark:hover { background: var(--rye); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,239,225,.0);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(247,239,225,.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 3px 18px rgba(47,36,26,.05);
}
.header-inner { display: flex; align-items: center; gap: var(--s-3); height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); }
.brand__mark { color: var(--crust); flex: none; }
.brand__name { letter-spacing: .01em; }
.brand__sub { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.nav { display: flex; gap: var(--s-4); margin-left: auto; }
.nav a { font-size: 15px; font-weight: 600; position: relative; padding: 6px 0; transition: color .2s var(--ease); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--crust);
  border-radius: 2px; transition: width .25s var(--ease);
}
.nav a:hover { color: var(--crust); }
.nav a:hover::after { width: 100%; }
.nav-cta { flex: none; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: auto; }
.burger span { width: 25px; height: 2px; background: var(--rye); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }

/* ===========================================================================
   HERO — асимметричный сплит: крупное фото хлеба сверху + заголовок сбоку.
   Принципиально отличается от full-bleed veil-героя эталона.
   =========================================================================== */
.hero { background: var(--cream); padding-top: var(--s-5); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.02fr 1.18fr; gap: var(--s-6);
  align-items: center; padding-bottom: var(--s-6);
}
.hero__copy { max-width: 38ch; }
.hero__title { font-size: clamp(42px, 6vw, 76px); line-height: .98; margin-bottom: var(--s-3); }
.hero__title em { font-style: italic; color: var(--crust); }
.hero__lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); margin-bottom: var(--s-4); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-4); }
.hero__meta { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--serif); font-size: 26px; color: var(--crust); line-height: 1; }
.hero__meta span { font-size: 13px; color: var(--muted); margin-top: 4px; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 96px;
  overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__stamp {
  position: absolute; left: -22px; bottom: 28px; z-index: 3;
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--seed); color: #f4f1e3; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); transform: rotate(-8deg);
}
.hero__stamp b { font-family: var(--serif); font-size: 30px; line-height: 1; }
.hero__stamp span { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; margin-top: 5px; font-weight: 700; }
.hero__strip {
  display: flex; gap: var(--s-2); align-items: center; flex-wrap: wrap;
  border-top: 1px dashed var(--line); padding-top: var(--s-3);
  font-size: 14px; color: var(--ink-soft);
}
.hero__strip span { display: inline-flex; align-items: center; gap: 8px; }
.hero__strip i { width: 7px; height: 7px; border-radius: 50%; background: var(--crust); display: inline-block; }

/* ===========================================================================
   STORY — история пекарни: текст + фото-карточка с подписью внахлёст
   =========================================================================== */
.story__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-6); align-items: center; }
.story__text h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: var(--s-3); }
.story__text p { color: var(--ink-soft); }
.story__sign { display: flex; align-items: center; gap: var(--s-2); margin-top: var(--s-4); }
.story__sign img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.story__sign b { display: block; font-family: var(--serif); font-size: 19px; }
.story__sign span { font-size: 14px; color: var(--muted); }
.story__media { position: relative; }
.story__media img { border-radius: var(--r-md); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.story__card {
  position: absolute; right: -18px; bottom: -22px; max-width: 230px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-3); box-shadow: var(--shadow);
}
.story__card b { font-family: var(--serif); font-size: 22px; color: var(--crust); }
.story__card p { font-size: 14px; color: var(--ink-soft); margin: 4px 0 0; }

/* ===========================================================================
   MENU — ассортимент: список-строки с описанием и графиком выпечки
   =========================================================================== */
.menu__list { display: flex; flex-direction: column; gap: var(--s-2); }
.menu-row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: var(--s-4); align-items: center;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.menu-row:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: #d2bb96; }
.menu-row__pic { width: 96px; height: 96px; border-radius: var(--r-sm); overflow: hidden; flex: none; }
.menu-row__pic img { width: 100%; height: 100%; object-fit: cover; }
.menu-row__body h3 { font-size: 22px; margin-bottom: 4px; }
.menu-row__body h3 span { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--seed); margin-left: 10px; vertical-align: middle; }
.menu-row__body p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.menu-row__bake { font-size: 13px; color: var(--muted); margin-top: 6px; display: inline-flex; align-items: center; gap: 7px; }
.menu-row__bake svg { width: 15px; height: 15px; flex: none; }
.menu-row__bake svg path, .menu-row__bake svg circle { fill: none; stroke: var(--crust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.menu-row__price { text-align: right; flex: none; }
.menu-row__price b { font-family: var(--serif); font-size: 22px; color: var(--crust); display: block; line-height: 1; }
.menu-row__price span { font-size: 12px; color: var(--muted); }
.menu__note { margin-top: var(--s-4); color: var(--ink-soft); font-size: 15px; }
.menu__note b { color: var(--crust); }

/* ===========================================================================
   PROCESS — про закваску: тёмная секция, вертикальная лента шагов
   =========================================================================== */
.process__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--s-6); align-items: center; }
.process__media img { border-radius: var(--r-md); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.process__steps { list-style: none; padding: 0; margin: var(--s-2) 0 0; counter-reset: step; }
.process__steps li { position: relative; padding: 0 0 var(--s-4) var(--s-6); }
.process__steps li::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  position: absolute; left: 0; top: 0; font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--rye); background: #e6b884; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-content: center;
}
.process__steps li::after {
  content: ""; position: absolute; left: 18px; top: 40px; bottom: 4px; width: 2px;
  background: linear-gradient(#e6b884, rgba(230,184,132,.15));
}
.process__steps li:last-child::after { display: none; }
.process__steps h3 { font-size: 21px; margin-bottom: 4px; color: #f4ead8; }
.process__steps p { color: #cbbca6; font-size: 15.5px; margin: 0; }
.process__steps b { color: #e6b884; }

/* ===========================================================================
   SCHEDULE — расписание и точки: карточки-локации + сетка часов
   =========================================================================== */
.schedule__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
.spot {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-4); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.spot:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.spot__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-2); margin-bottom: var(--s-1); }
.spot__head h3 { font-size: 22px; }
.spot__badge { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--seed); background: rgba(107,122,79,.12); padding: 4px 10px; border-radius: var(--r-pill); }
.spot__addr { color: var(--ink-soft); font-size: 15px; margin: 0 0 var(--s-3); }
.spot__hours { list-style: none; padding: 0; margin: 0; border-top: 1px dashed var(--line); }
.spot__hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.spot__hours li:last-child { border-bottom: 0; }
.spot__hours span { color: var(--muted); }
.spot__hours b { font-family: var(--serif); color: var(--ink); font-weight: 600; }
.spot__hours li.is-closed b { color: var(--muted); font-style: italic; font-family: var(--sans); font-weight: 500; }

/* ===========================================================================
   PREORDER / SUBSCRIBE — подписка на новинки «свежее из печи»
   =========================================================================== */
.subscribe__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-6); align-items: center;
}
.subscribe__text h2 { font-size: clamp(28px, 3.8vw, 44px); color: #f4ead8; margin-bottom: var(--s-2); }
.subscribe__text p { color: #cbbca6; }
.subscribe__perks { list-style: none; padding: 0; margin: var(--s-3) 0 0; display: grid; gap: 10px; }
.subscribe__perks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #ddcfba; }
.subscribe__perks svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.subscribe__perks svg path { fill: none; stroke: #e6b884; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.subscribe__form {
  background: var(--rye-2); border: 1px solid #4a3829; border-radius: var(--r-lg);
  padding: var(--s-5); box-shadow: var(--shadow-lg);
}
.subscribe__form h3 { color: #f4ead8; font-size: 24px; margin-bottom: 6px; }
.subscribe__form > p { color: #b9a88f; font-size: 14.5px; margin-bottom: var(--s-3); }
.field { margin-bottom: var(--s-2); }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: #c9b89e; margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm);
  border: 1px solid #54402f; background: #271d14; color: #f1e6d3; font: inherit; font-size: 16px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder { color: #8a7660; }
.field input:focus, .field select:focus { outline: none; border-color: var(--crust); box-shadow: 0 0 0 3px rgba(176,106,50,.3); }
.field input.invalid { border-color: #d8714e; box-shadow: 0 0 0 3px rgba(216,113,78,.28); }
.field__err { display: none; color: #f0a988; font-size: 13px; margin-top: 6px; }
.field input.invalid ~ .field__err { display: block; }
.subscribe__form .btn { width: 100%; margin-top: 6px; }
.subscribe__legal { font-size: 12.5px; color: #93806a; margin: var(--s-2) 0 0; text-align: center; }
.subscribe__ok {
  display: none; text-align: center; padding: var(--s-3) 0;
}
.subscribe__ok.is-shown { display: block; }
.subscribe__ok .tick {
  width: 56px; height: 56px; border-radius: 50%; background: var(--seed); margin: 0 auto var(--s-2);
  display: grid; place-content: center;
}
.subscribe__ok .tick svg { width: 28px; height: 28px; }
.subscribe__ok .tick svg path { fill: none; stroke: #f4f1e3; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.subscribe__ok h3 { color: #f4ead8; }
.subscribe__ok p { color: #c9b89e; font-size: 15px; margin: 6px 0 0; }
.subscribe__form.is-done .subscribe__fields,
.subscribe__form.is-done > h3,
.subscribe__form.is-done > p:not(.subscribe__legal),
.subscribe__form.is-done .subscribe__legal { display: none; }

/* ===========================================================================
   TESTIMONIALS — отзывы: «карточки-крафт» со штампом-кавычкой
   =========================================================================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.review {
  margin: 0; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-4); position: relative;
}
.review::before {
  content: "\201C"; position: absolute; right: 18px; top: 4px; font-family: var(--serif);
  font-size: 70px; color: var(--wheat); line-height: 1;
}
.review__stars { color: var(--crust); letter-spacing: 2px; font-size: 14px; margin-bottom: var(--s-2); }
.review blockquote { margin: 0 0 var(--s-3); font-size: 16.5px; line-height: 1.6; color: var(--ink); position: relative; }
.review figcaption { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.review figcaption b { color: var(--ink); font-family: var(--serif); font-weight: 600; font-size: 15px; }
.review__ava { width: 38px; height: 38px; border-radius: 50%; background: var(--wheat); color: var(--crust-2); display: grid; place-content: center; font-family: var(--serif); font-weight: 700; font-size: 16px; flex: none; }

/* ---------- faq ---------- */
.faq__inner { display: grid; grid-template-columns: .75fr 1.25fr; gap: var(--s-6); align-items: start; }
.faq__list details { border-bottom: 1px solid var(--line); padding: var(--s-1) 0; }
.faq__list summary {
  list-style: none; cursor: pointer; font-family: var(--serif); font-size: 20px;
  padding: 14px 40px 14px 0; position: relative; transition: color .2s var(--ease);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  border-right: 2px solid var(--crust); border-bottom: 2px solid var(--crust);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--ease);
}
.faq__list details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__list summary:hover { color: var(--crust); }
.faq__list details p { color: var(--ink-soft); padding: 0 40px 12px 0; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--rye); color: #cbbca6; padding-top: var(--s-7); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.1fr; gap: var(--s-5); padding-bottom: var(--s-6); }
.brand--light .brand__name { color: #f4ead8; }
.brand--light { color: #f4ead8; }
.footer__brand p { margin-top: var(--s-2); font-size: 15px; max-width: 34ch; color: #ad9c85; }
.footer__col h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: #8b7860; margin: 0 0 var(--s-2); }
.footer__col a, .footer__col p { display: block; font-size: 15px; color: #cbbca6; margin: 0 0 9px; transition: color .2s var(--ease); }
.footer__col a:hover { color: #e6b884; }
.footer__social a { display: inline; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-2);
  border-top: 1px solid #463528; padding-block: var(--s-3) var(--s-4); font-size: 14px; color: #8b7860;
}
.footer__bottom a:hover { color: #e6b884; }

/* ---------- reveal-анимация ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }

/* ===========================================================================
   адаптив
   =========================================================================== */
@media (max-width: 1000px) {
  .hero__grid, .story__grid, .process__grid, .subscribe__inner, .faq__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero__media { order: -1; }
  .story__media { max-width: 460px; }
  .process__media { max-width: 460px; }
  .process__media img { aspect-ratio: 16/10; }
  .schedule__grid { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding-block: var(--s-6); }
  .wrap { padding-inline: var(--s-3); }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: var(--s-2) var(--s-3) var(--s-3); transform: translateY(-135%);
    transition: transform .35s var(--ease); box-shadow: var(--shadow-lg); margin: 0; z-index: 90;
  }
  .site-header.menu-open .nav { transform: translateY(0); }
  .site-header.menu-open { background: rgba(247,239,225,.97); backdrop-filter: blur(10px); }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .site-header.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .burger span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__stamp { width: 96px; height: 96px; left: auto; right: 14px; bottom: -18px; }
  .hero__stamp b { font-size: 22px; }
  .menu-row { grid-template-columns: 72px 1fr; gap: var(--s-3); }
  .menu-row__pic { width: 72px; height: 72px; }
  .menu-row__price { grid-column: 2; text-align: left; margin-top: 4px; }
  .menu-row:hover { transform: none; }
  .story__card { position: static; max-width: none; margin-top: var(--s-3); right: auto; bottom: auto; }
  .subscribe__form { padding: var(--s-4); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
