:root {
  color-scheme: dark;
  --ink: #111611;
  --ink-soft: #192019;
  --moss: #263329;
  --moss-light: #60715e;
  --paper: #f1ecdf;
  --paper-dim: #c8c1b2;
  --copper: #c99558;
  --copper-bright: #e0b16e;
  --wine: #6f2e2d;
  --line: rgba(241, 236, 223, .16);
  --line-dark: rgba(17, 22, 17, .14);
  --serif: "Iowan Old Style", "Palatino Linotype", "Noto Serif Georgian", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", "Noto Sans Georgian", Arial, sans-serif;
  --mono: "SFMono-Regular", Menlo, Consolas, monospace;
  --shell: min(1220px, calc(100vw - 48px));
  --header: 82px;
  --radius: 3px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.dialog-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--copper); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--copper-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 150px) 0; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--copper-bright);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .25em;
  text-transform: uppercase;
}

h1, h2, h3, p { text-wrap: pretty; }
h2, h3, p, blockquote, cite { overflow-wrap: anywhere; }
.story > *, .interior > *, .reserve-grid > *, .section-head > *, .menu-layout > * { min-width: 0; }
h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 6.6vw, 86px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.lede { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 31px); line-height: 1.35; }
.fine-print { color: var(--paper-dim); font-size: 12px; line-height: 1.55; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, height .35s;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(17, 22, 17, .92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; text-decoration: none; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(224, 177, 110, .7);
  border-radius: 50%;
  color: var(--copper-bright);
  font-family: var(--serif);
  font-size: 19px;
}
.brand__name { font-family: var(--serif); font-size: 20px; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: rgba(241, 236, 223, .76);
  font-size: 12px;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}
.main-nav a:hover { color: var(--paper); }
.lang-switch { justify-self: end; display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 30px; }
.lang-switch button {
  min-width: 46px;
  border: 0;
  border-radius: 24px;
  padding: 7px 9px;
  background: transparent;
  color: rgba(241, 236, 223, .6);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  cursor: pointer;
}
.lang-switch button[aria-pressed="true"] { background: var(--paper); color: var(--ink); }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero__media, .hero__veil { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 51%; transform: scale(1.025); animation: hero-drift 24s var(--ease) infinite alternate; }
@keyframes hero-drift { to { transform: scale(1.095); } }
.hero__veil {
  background:
    radial-gradient(circle at 74% 36%, transparent 0 12%, rgba(10, 14, 10, .15) 55%),
    linear-gradient(180deg, rgba(10, 14, 10, .3), rgba(10, 14, 10, .08) 36%, rgba(10, 14, 10, .86) 100%),
    linear-gradient(90deg, rgba(10, 14, 10, .64), transparent 72%);
}
.hero__content { position: relative; z-index: 2; padding: calc(var(--header) + 80px) 0 clamp(62px, 8vh, 102px); }
.hero h1 {
  margin: 0;
  max-width: none;
  font-family: var(--serif);
  font-size: clamp(94px, 18vw, 245px);
  font-weight: 400;
  line-height: .68;
  letter-spacing: -.075em;
  text-shadow: 0 4px 30px rgba(0,0,0,.22);
}
.hero__georgian { margin: 36px 0 0 8px; color: var(--copper-bright); font-family: var(--serif); font-size: clamp(25px, 3.3vw, 45px); }
.hero__lead { max-width: 27ch; margin: 22px 0 0; font-family: var(--serif); font-size: clamp(23px, 3vw, 38px); line-height: 1.17; }
.hero__actions, .final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button--solid { background: var(--copper); color: #131510; }
.button--solid:hover { background: var(--copper-bright); }
.button--glass { border-color: rgba(241, 236, 223, .46); background: rgba(17, 22, 17, .17); backdrop-filter: blur(8px); }
.button--glass:hover { background: rgba(241, 236, 223, .12); border-color: var(--paper); }
.button--wa { background: #1f6d4c; color: white; }
.button--wa:hover { background: #28855e; }
.button--full { width: 100%; }
.button:disabled { cursor: not-allowed; opacity: .38; transform: none; }
.wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #6de5a9; box-shadow: 0 0 0 5px rgba(109, 229, 169, .12); }

.hero__facts { display: grid; grid-template-columns: repeat(3, minmax(120px, 190px)); gap: 0; margin-top: 56px; }
.hero__facts div { display: flex; flex-direction: column; padding: 0 28px; border-left: 1px solid rgba(241, 236, 223, .28); }
.hero__facts div:first-child { padding-left: 0; border-left: 0; }
.hero__facts strong { font-family: var(--serif); font-size: 27px; font-weight: 400; }
.hero__facts span { color: var(--paper-dim); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero__scroll { position: absolute; z-index: 3; right: 38px; bottom: 48px; display: grid; place-items: center; width: 44px; height: 74px; border: 1px solid rgba(241, 236, 223, .35); border-radius: 28px; }
.hero__scroll span { width: 4px; height: 4px; border-radius: 50%; background: var(--copper-bright); animation: scroll-dot 2s ease-in-out infinite; }
@keyframes scroll-dot { 0%, 100% { transform: translateY(-13px); opacity: .4; } 50% { transform: translateY(13px); opacity: 1; } }

.story { display: grid; grid-template-columns: 1.08fr .74fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.story__copy > p:not(.eyebrow) { max-width: 42ch; color: var(--paper-dim); }
.story__copy .lede { margin: 36px 0 24px; color: var(--paper); }
.text-link { display: inline-block; margin-top: 22px; padding-bottom: 4px; border-bottom: 1px solid var(--copper); color: var(--copper-bright); font-size: 13px; letter-spacing: .08em; text-decoration: none; }
.story__image { position: relative; margin: 0; }
.story__image picture { display: block; overflow: hidden; aspect-ratio: 2 / 3; }
.story__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story__image:hover img { transform: scale(1.025); }
.story__image figcaption { margin-top: 14px; color: var(--paper-dim); font-family: var(--serif); font-size: 14px; font-style: italic; }
.story__quote { grid-column: 1 / -1; display: grid; grid-template-columns: 90px 1fr; align-items: start; margin-top: 12px; padding: 55px 0 0; border-top: 1px solid var(--line); }
.story__quote > span { color: var(--copper); font-family: var(--serif); font-size: 100px; line-height: .7; }
.story__quote blockquote { max-width: 31ch; margin: 0; font-family: var(--serif); font-size: clamp(27px, 3.6vw, 49px); line-height: 1.22; }
.story__quote cite { grid-column: 2; margin-top: 16px; color: var(--paper-dim); font-size: 12px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }

.gallery { display: grid; grid-template-columns: 1.45fr .55fr; grid-template-rows: auto auto; gap: 8px; padding: 0 8px; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.25s var(--ease); }
.gallery figure:hover img { transform: scale(1.02); }
.gallery__wide { grid-row: 1 / 3; aspect-ratio: 16 / 10; }
.gallery__tall { aspect-ratio: 4 / 5; }
.gallery__note { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 22px; min-height: 170px; padding: 28px; background: var(--paper); color: var(--ink); }
.gallery__number { color: var(--wine); font-family: var(--serif); font-size: 52px; }
.gallery__note p { max-width: 24ch; margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.35; }

.menu-section { background: var(--paper); color: var(--ink); }
.menu-section .eyebrow { color: var(--wine); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: clamp(50px, 7vw, 90px); }
.section-head > p { max-width: 42ch; margin: 0; color: #545a50; }
.menu-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(48px, 7vw, 90px); align-items: start; }
.menu-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 54px 48px; }
.menu-group h3 { margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line-dark); font-family: var(--serif); font-size: 27px; font-weight: 400; }
.menu-item { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; min-height: 61px; border-bottom: 1px solid rgba(17,22,17,.08); }
.menu-item__name { line-height: 1.3; }
.menu-item__price { color: #6f5540; font-family: var(--mono); font-size: 12px; white-space: nowrap; }
.menu-stepper { display: grid; grid-template-columns: 30px 24px 30px; align-items: center; border: 1px solid rgba(17,22,17,.2); border-radius: 30px; overflow: hidden; }
.menu-stepper button { width: 30px; height: 31px; padding: 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.menu-stepper button:hover { background: rgba(17,22,17,.08); }
.menu-stepper output { text-align: center; font-family: var(--mono); font-size: 11px; }
.cart-panel { position: sticky; top: 96px; padding: 32px; background: var(--ink); color: var(--paper); box-shadow: 0 26px 60px rgba(17,22,17,.18); }
.cart-panel .eyebrow { color: var(--copper-bright); }
.cart-panel h3 { margin: 0; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.05; }
.cart-empty { display: flex; align-items: center; gap: 16px; margin: 34px 0; padding: 22px 0; border-block: 1px solid var(--line); color: var(--paper-dim); }
.cart-empty > span { display: grid; place-items: center; flex: 0 0 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; color: var(--copper-bright); }
.cart-empty p { margin: 0; font-size: 13px; }
.cart-lines { display: grid; gap: 13px; margin: 30px 0 20px; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 15px; font-size: 13px; }
.cart-line span { color: var(--paper-dim); }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin: 18px 0 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.cart-total span { color: var(--paper-dim); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.cart-total strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }

.interior { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(54px, 8vw, 120px); align-items: center; }
.interior__image { aspect-ratio: 3 / 2; overflow: hidden; }
.interior__image img, .interior__second img { width: 100%; height: 100%; object-fit: cover; }
.interior__copy p:not(.eyebrow) { max-width: 36ch; color: var(--paper-dim); }
.interior__copy h2 { font-size: clamp(42px, 5vw, 68px); }
.interior__second { grid-column: 1 / -1; width: 73%; margin: 42px 0 0 auto; aspect-ratio: 16 / 8; overflow: hidden; }

.reserve-section { background: var(--moss); }
.reserve-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.reserve-copy { position: sticky; top: 110px; }
.reserve-copy .lede { max-width: 25ch; margin: 34px 0; }
.reserve-steps { display: grid; gap: 16px; margin: 38px 0; padding: 0; list-style: none; }
.reserve-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; }
.reserve-steps span { color: var(--copper-bright); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.reserve-steps p { margin: -5px 0 0; color: var(--paper-dim); font-size: 14px; }
.confirmation-note { max-width: 42ch; padding: 18px 20px; border-left: 2px solid var(--copper); background: rgba(17,22,17,.2); color: var(--paper-dim); font-size: 13px; }

.form-card { padding: clamp(28px, 5vw, 52px); background: var(--paper); color: var(--ink); }
.form-row { display: grid; gap: 8px; margin-bottom: 20px; }
.form-row--split { grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card label, .order-dialog label { color: #4d544d; font-size: 11px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.form-card input, .form-card textarea, .form-card select, .order-dialog input, .order-dialog textarea {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  border: 1px solid rgba(17,22,17,.2);
  border-radius: 0;
  padding: 11px 13px;
  background: rgba(255,255,255,.28);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-card textarea, .order-dialog textarea { resize: vertical; }
.form-card select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #394239 50%), linear-gradient(135deg, #394239 50%, transparent 50%); background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px; background-size: 5px 5px; background-repeat: no-repeat; }
.form-card input:focus, .form-card textarea:focus, .form-card select:focus, .order-dialog input:focus, .order-dialog textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(201,149,88,.13); }
.form-card input.invalid, .form-card textarea.invalid, .order-dialog input.invalid { border-color: #a7463f; }
.form-error { min-height: 22px; margin: 0 0 12px; color: #a7463f; font-size: 13px; }
.form-card .fine-print { color: #6a7067; text-align: center; }

.visit .section-head { align-items: start; }
.visit__details { display: grid; gap: 16px; min-width: min(100%, 380px); }
.visit__details p { display: grid; grid-template-columns: 90px 1fr; gap: 18px; margin: 0; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.visit__details span { color: var(--paper-dim); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.visit__details strong { font-size: 14px; font-weight: 500; }
.visit__details a { text-decoration: none; }
.map-card { position: relative; height: min(64vw, 620px); min-height: 400px; overflow: hidden; background: var(--ink-soft); }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: saturate(.45) sepia(.08) contrast(1.05); }
.map-card__link { position: absolute; right: 20px; bottom: 20px; padding: 13px 18px; background: var(--ink); color: var(--paper); font-size: 11px; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }

.final-cta { position: relative; min-height: 76svh; display: grid; align-items: center; overflow: hidden; }
.final-cta__media, .final-cta__veil { position: absolute; inset: 0; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 47%; }
.final-cta__veil { background: linear-gradient(90deg, rgba(9,13,9,.88), rgba(9,13,9,.26)), linear-gradient(180deg, rgba(9,13,9,.2), rgba(9,13,9,.75)); }
.final-cta__content { position: relative; z-index: 2; padding-block: 100px; }
.final-cta h2 { max-width: 11ch; font-size: clamp(57px, 9vw, 120px); }

.site-footer { padding: 70px 0 28px; background: #0a0e0a; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr .7fr; gap: 70px; }
.footer-brand { font-family: var(--serif); font-size: 38px; }
.footer-brand span { display: block; color: var(--copper-bright); font-size: 19px; }
.site-footer p { color: var(--paper-dim); }
.footer-label { margin: 0 0 14px; color: var(--copper-bright) !important; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.site-footer a { display: block; margin-bottom: 7px; color: var(--paper-dim); font-size: 14px; text-decoration: none; }
.site-footer a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line); color: rgba(241,236,223,.68); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.order-dialog {
  width: min(680px, calc(100vw - 24px));
  max-height: calc(100svh - 30px);
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  overflow: auto;
}
.order-dialog::backdrop { background: rgba(7,10,7,.78); backdrop-filter: blur(6px); }
.order-dialog__close-form { position: sticky; z-index: 2; top: 0; height: 0; text-align: right; }
.order-dialog__close-form button { width: 46px; height: 46px; border: 0; background: var(--ink); color: var(--paper); font-size: 25px; cursor: pointer; }
.order-dialog__body { padding: clamp(30px, 6vw, 62px); }
.order-dialog .eyebrow { color: var(--wine); }
.order-dialog h2 { max-width: 12ch; margin-bottom: 28px; font-size: clamp(38px, 6vw, 59px); }
.order-summary { display: grid; gap: 8px; margin: 0 0 28px; padding: 20px; background: #e4dece; font-size: 13px; }
.order-summary div { display: flex; justify-content: space-between; gap: 14px; }
.order-summary .summary-total { margin-top: 7px; padding-top: 11px; border-top: 1px solid var(--line-dark); font-weight: 700; }
.mode-switch { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 24px; border: 0; padding: 0; }
.mode-switch label { position: relative; cursor: pointer; }
.mode-switch input { position: absolute; opacity: 0; pointer-events: none; }
.mode-switch span { display: grid; place-items: center; min-height: 48px; border: 1px solid rgba(17,22,17,.2); color: #555e55; }
.mode-switch label + label span { border-left: 0; }
.mode-switch input:checked + span { background: var(--ink); color: var(--paper); }
.order-dialog .fine-print { color: #6a7067; text-align: center; }

.floating-action {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  background: rgba(31,109,76,.94);
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
  color: white;
  font-size: 10px;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.floating-action > span:first-child { width: 7px; height: 7px; border-radius: 50%; background: #81e7b4; }
.toast { position: fixed; z-index: 250; left: 50%; bottom: 30px; transform: translate(-50%, 130px); padding: 12px 18px; background: var(--paper); color: var(--ink); font-size: 13px; opacity: 0; transition: transform .3s, opacity .3s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 820px); }
  .site-header { grid-template-columns: 1fr auto; padding: 0 18px; }
  .main-nav { display: none; }
  .story, .interior, .reserve-grid { grid-template-columns: 1fr; }
  .story__image { width: 66%; margin-left: auto; }
  .menu-layout { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
  .interior__copy { max-width: 600px; }
  .reserve-copy { position: static; }
  .footer-grid { gap: 34px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 28px); --header: 70px; }
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .site-header { padding: 0 14px; }
  .brand__name { display: none; }
  .lang-switch button { min-width: 42px; padding-inline: 7px; }
  .hero__content { padding-bottom: 42px; }
  .hero h1 { font-size: clamp(83px, 27vw, 122px); line-height: .78; }
  .hero__georgian { margin-top: 26px; }
  .hero__lead { max-width: 22ch; font-size: 25px; }
  .hero__actions .button { flex: 1 1 180px; }
  .hero__facts { grid-template-columns: repeat(3, 1fr); margin-top: 42px; }
  .hero__facts div { padding: 0 10px; }
  .hero__facts strong { font-size: 22px; }
  .hero__facts span { font-size: 8px; }
  .hero__scroll { display: none; }
  .story { gap: 55px; }
  .story__image { width: 84%; }
  .story__quote { grid-template-columns: 52px 1fr; padding-top: 38px; }
  .story__quote > span { font-size: 66px; }
  .gallery { grid-template-columns: 1fr; padding-inline: 0; }
  .gallery__wide { grid-row: auto; aspect-ratio: 5 / 4; }
  .gallery__tall { width: 70%; margin-left: auto !important; }
  .gallery__note { min-height: 145px; }
  .section-head { display: grid; gap: 28px; }
  .menu-categories { grid-template-columns: 1fr; gap: 44px; }
  .menu-item { grid-template-columns: 1fr auto; padding: 9px 0; }
  .menu-stepper { grid-column: 1 / -1; width: fit-content; margin-bottom: 5px; }
  .cart-panel { padding: 26px 22px; }
  .interior__second { width: 88%; margin-top: 8px; }
  .form-row--split { grid-template-columns: 1fr; gap: 0; }
  .visit__details { min-width: 0; }
  .map-card { min-height: 440px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .floating-action { right: 14px; bottom: 14px; }
  .floating-action span:last-child { display: none; }
  .floating-action { width: 48px; padding: 0; justify-content: center; }
}

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