:root {
  --ink: #1d2620;
  --ink-soft: #415049;
  --canvas: #f5f7f4;
  --surface: #ffffff;
  --line: #d8dfd8;
  --brand: #cf9228;
  --brand-deep: #aa7215;
  --night: #1d2620;
  --radius: 14px;
  --shadow: 0 20px 55px rgb(28 38 32 / 14%);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: var(--sans); font-size: 16px; line-height: 1.5; }
body.locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

.skip-link { position: fixed; z-index: 100; left: 16px; top: 16px; transform: translateY(-180%); padding: 10px 14px; background: var(--brand); color: var(--ink); border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.content-frame { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.eyebrow { margin: 0 0 14px; color: var(--brand-deep); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1, h2 { font-weight: 800; letter-spacing: -.045em; line-height: 1.03; }
h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4vw, 4.5rem); max-width: 10ch; }
.section-heading { max-width: 650px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p, .story-copy > p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }

.site-header { position: fixed; z-index: 20; top: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; min-height: 72px; padding: 0 4vw; color: #fff; transition: background 220ms var(--ease-out), color 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
.site-header.is-scrolled { color: var(--ink); background: rgb(245 247 244 / 96%); box-shadow: 0 1px 0 rgb(29 38 32 / 10%); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; color: inherit; font-size: 1.05rem; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 42px; height: 42px; object-fit: cover; object-position: center; border-radius: 50%; background: #fff; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: .88rem; font-weight: 700; }
.desktop-nav a { padding: 8px 0; border-bottom: 1px solid transparent; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { border-color: currentColor; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.language-wrap { position: relative; }
.language-button, .social-link, .menu-toggle, .icon-button { display: inline-grid; place-items: center; border: 0; color: inherit; background: transparent; transition: transform 150ms var(--ease-out), background 180ms ease; }
.language-button { grid-template-columns: auto 17px; gap: 3px; min-height: 42px; padding: 0 10px; font-size: .85rem; font-weight: 700; }
.language-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-link { width: 42px; height: 42px; }
.social-link svg { width: 20px; fill: currentColor; }
.language-button:hover, .language-button:focus-visible, .social-link:hover, .social-link:focus-visible { background: rgb(255 255 255 / 14%); border-radius: 8px; }
.site-header.is-scrolled .language-button:hover, .site-header.is-scrolled .language-button:focus-visible, .site-header.is-scrolled .social-link:hover, .site-header.is-scrolled .social-link:focus-visible { background: rgb(29 38 32 / 7%); }
.language-menu { position: absolute; top: calc(100% + 8px); right: 0; width: 190px; padding: 6px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.language-option { display: block; width: 100%; padding: 10px 12px; border: 0; border-radius: 8px; color: var(--ink); background: transparent; text-align: left; }
.language-option:hover, .language-option:focus-visible, .language-option[aria-current="true"] { background: #edf1eb; }
.menu-toggle { display: none; position: relative; width: 44px; height: 44px; }
.menu-toggle span { position: absolute; width: 21px; height: 1.5px; background: currentColor; transition: transform 220ms var(--ease-out); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle.is-open span:first-child { transform: rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: rotate(-45deg); }

.hero { position: relative; display: grid; min-height: 760px; min-height: 100dvh; overflow: hidden; color: #fff; background: var(--night); }
#header-trigger { position: absolute; top: 104px; left: 0; width: 1px; height: 1px; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 47%; }
html.js-motion .hero-image { animation: hero-background-settle 1200ms var(--ease-out) both; }
@keyframes hero-background-settle {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(12 19 14 / 85%) 0%, rgb(12 19 14 / 54%) 52%, rgb(12 19 14 / 15%) 100%); }
.hero-content { position: relative; align-self: center; padding-top: 72px; }
.hero h1 { max-width: 650px; margin-bottom: 22px; font-size: clamp(3.2rem, 5.5vw, 5.6rem); }
.hero-copy { max-width: 430px; margin-bottom: 32px; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.55; }
.hero .eyebrow { color: #f6c96d; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 8px; font-size: .9rem; font-weight: 800; text-align: center; transition: transform 160ms var(--ease-out), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgb(10 20 13 / 16%); }
.button:active { transform: translateY(1px) scale(.965); box-shadow: none; }
.button-primary { color: var(--ink); background: var(--brand); border-color: var(--brand); }
.button-primary:hover, .button-primary:focus-visible { background: #e5aa42; border-color: #e5aa42; }
.button-secondary { color: #fff; background: rgb(255 255 255 / 12%); border-color: rgb(255 255 255 / 70%); }
.button-secondary:hover, .button-secondary:focus-visible { background: rgb(255 255 255 / 22%); }
.button-dark { color: #fff; background: var(--night); border-color: var(--night); }
.button-dark:hover, .button-dark:focus-visible { background: #324339; border-color: #324339; }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-outline:hover, .button-outline:focus-visible { background: rgb(29 38 32 / 7%); }

.story { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(44px, 8vw, 130px); }
.story-copy h2 { max-width: 7ch; }
.story-image { width: min(100%, 470px); justify-self: end; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out); }
.story-image img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center; transition: transform 620ms var(--ease-out); }
.text-link { display: inline-block; margin-top: 10px; color: var(--brand-deep); font-weight: 800; border-bottom: 1px solid currentColor; }

.menu-section { color: #fff; background: var(--night); }
.menu-section .eyebrow { color: #f6c96d; }
.menu-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 430px); gap: clamp(40px, 10vw, 150px); align-items: end; margin-bottom: 48px; }
.menu-heading h2 { max-width: 8ch; margin-bottom: 0; }
.menu-note { max-width: 37ch; margin: 0 0 8px; color: #dce5dd; font-size: 1.05rem; line-height: 1.65; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-bottom: 0; }
.menu-feature-card { display: grid; grid-template-rows: auto 1fr; min-width: 0; transition: transform 280ms var(--ease-out); }
.menu-feature-image { margin: 0; overflow: hidden; border-radius: var(--radius); background: #324339; }
.menu-feature-image img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 520ms var(--ease-out), filter 320ms ease; }
.menu-feature-copy { display: grid; align-content: start; min-height: 150px; padding-top: 20px; }
.menu-feature-label { margin: 0 0 8px; color: #f6c96d; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.menu-feature-copy h3 { margin: 0 0 10px; color: #fff; font-size: clamp(1.25rem, 1.8vw, 1.65rem); letter-spacing: -.03em; line-height: 1.1; }
.menu-feature-copy > p:last-child { max-width: 34ch; margin: 0; color: #dce5dd; font-size: .94rem; line-height: 1.55; }
.menu-section .button-dark { position: relative; top: -20px; color: var(--ink); background: var(--brand); border-color: var(--brand); }
.menu-section .button-dark:hover, .menu-section .button-dark:focus-visible { background: #e5aa42; border-color: #e5aa42; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item { overflow: hidden; padding: 0; border: 0; border-radius: var(--radius); background: var(--surface); box-shadow: 0 12px 36px rgb(28 38 32 / 9%); transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out); }
.gallery-item img { width: 100%; object-fit: cover; transition: transform 560ms var(--ease-out), filter 260ms ease; }
.gallery-item.portrait img { aspect-ratio: 3 / 4; }
.gallery-item:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

.reviews-section { background: #f2eee5; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.review-card { display: flex; min-height: 270px; flex-direction: column; padding: 26px; background: #fffdf8; border: 1px solid rgba(41, 61, 46, .12); transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 200ms ease; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-author { display: inline-flex; min-width: 0; align-items: center; gap: 10px; color: #1d2620; font-size: .9rem; font-weight: 700; text-decoration: none; }
.review-author img { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; background: #d8d1c4; }
.review-rating { color: #b4642d; font-size: .95rem; letter-spacing: .08em; white-space: nowrap; }
.review-card blockquote { margin: 24px 0; color: #334036; font-family: Georgia, 'Times New Roman', serif; font-size: 1.08rem; line-height: 1.6; }
.review-link { margin-top: auto; color: #294a37; font-size: .84rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.visit { background: #eaf0e9; }
.visit-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.visit-copy h2 { max-width: 9.4ch; margin-bottom: 28px; }
.visit-copy address { margin-bottom: 12px; font-size: 1.12rem; font-weight: 800; line-height: 1.48; }
.phone-link { display: inline-block; margin-bottom: 28px; color: var(--brand-deep); font-size: 1.05rem; font-weight: 800; }
.opening-hours { max-width: 358px; margin: 0 0 32px; padding-top: 18px; border-top: 1px solid rgb(29 38 32 / 18%); }
.opening-hours-title { margin: 0 0 11px; color: var(--brand-deep); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.opening-hours dl { display: grid; gap: 7px; margin: 0; }
.opening-hours dl div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; color: var(--ink-soft); font-size: .94rem; }
.opening-hours dt { font-weight: 700; }
.opening-hours dd { margin: 0; text-align: right; }
.map-frame { overflow: hidden; min-height: 560px; border-radius: var(--radius); background: #dce6da; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 560px; border: 0; }

.site-footer { padding: 46px 0; color: #e6ede7; background: var(--night); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-brand { align-self: start; }
.footer-label { margin-bottom: 10px; color: #f6c96d; font-size: .77rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-footer address, .site-footer a:not(.brand) { display: block; margin-bottom: 7px; color: #e6ede7; font-size: .94rem; }
.site-footer a:not(.brand):hover, .site-footer a:not(.brand):focus-visible { color: #f6c96d; }
.site-footer .footer-social { display: inline-grid; color: #e6ede7; }
.mobile-social { color: #fff; border: 1px solid rgb(255 255 255 / 32%); border-radius: 8px; }
.mobile-social:hover, .mobile-social:focus-visible { color: #f6c96d; background: rgb(255 255 255 / 10%); }

.overlay, .lightbox { position: fixed; z-index: 50; inset: 0; display: grid; place-items: stretch; background: rgb(13 20 15 / 68%); opacity: 0; pointer-events: none; transition: opacity 220ms ease; }
.overlay.is-open, .lightbox.is-open { opacity: 1; pointer-events: auto; }
.mobile-panel-shell { width: min(100%, 480px); height: 100%; padding: 22px; color: #fff; background: var(--night); transform: translateX(100%); transition: transform 360ms var(--ease-drawer); }
.overlay.is-open .mobile-panel-shell { transform: translateX(0); }
.mobile-panel-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-panel-top p { margin: 0; font-weight: 800; font-size: 1.15rem; }
.icon-button { width: 44px; height: 44px; border-radius: 8px; }
.icon-button:hover, .icon-button:focus-visible { background: rgb(255 255 255 / 12%); }
.icon-button svg, .back-button svg, .lightbox-arrow svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mobile-view { height: calc(100% - 44px); }
.mobile-nav { display: grid; gap: 2px; padding-top: 54px; }
.mobile-nav a, .mobile-language-open { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 62px; padding: 0; border: 0; border-bottom: 1px solid rgb(255 255 255 / 20%); color: #fff; background: transparent; font-size: 1.6rem; font-weight: 800; text-align: left; }
.mobile-language-open span:last-child { color: #f6c96d; font-size: .8rem; font-weight: 700; }
.mobile-panel-bottom { padding-top: 36px; }
.mobile-panel-bottom .button { width: 100%; }
.back-button { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; padding: 8px 0; border: 0; color: #f6c96d; background: transparent; font-weight: 800; }
.mobile-language-list { display: grid; padding-top: 28px; }
.mobile-language-list .language-option { padding: 16px 0; border-radius: 0; border-bottom: 1px solid rgb(255 255 255 / 20%); color: #fff; font-size: 1.25rem; }
.mobile-language-list .language-option:hover, .mobile-language-list .language-option:focus-visible, .mobile-language-list .language-option[aria-current="true"] { color: #f6c96d; background: transparent; }

.modal-overlay { overflow-y: auto; padding: 24px; place-items: center; }
.booking-modal { position: relative; width: min(100%, 660px); max-height: calc(100dvh - 48px); overflow-y: auto; padding: clamp(28px, 6vw, 52px); border-radius: var(--radius); color: var(--ink); background: var(--surface); opacity: 0; transform: translateY(22px) scale(.985); transition: opacity 220ms ease, transform 300ms var(--ease-out); }
.modal-overlay.is-open .booking-modal { opacity: 1; transform: translateY(0) scale(1); }
.booking-modal h2 { margin-bottom: 13px; font-size: clamp(2rem, 5vw, 3.6rem); }
.booking-copy { color: var(--ink-soft); }
.modal-close { position: absolute; top: 18px; right: 18px; }
.modal-close:hover, .modal-close:focus-visible { background: #edf1eb; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compact-grid { grid-template-columns: 1fr 1fr; }
#booking-form { display: grid; gap: 16px; margin-top: 28px; }
#booking-form label { display: grid; gap: 7px; color: var(--ink); font-size: .9rem; font-weight: 800; }
#booking-form input, #booking-form select, #booking-form textarea { width: 100%; padding: 12px; border: 1px solid #aebbb0; border-radius: 8px; color: var(--ink); background: #fff; }
#booking-form input:focus, #booking-form select:focus, #booking-form textarea:focus { outline: 3px solid rgb(207 146 40 / 36%); border-color: var(--brand-deep); }
.form-error, .form-status { min-height: 1.3em; margin: 0; font-size: .92rem; font-weight: 700; }
.form-error { color: #9c271b; }
.form-status { color: #2d5d3e; }
.form-submit { width: 100%; }

.lightbox { z-index: 60; padding: 22px; place-items: center; background: rgb(10 15 11 / 92%); }
.lightbox-shell { position: relative; display: grid; place-items: center; width: min(100%, 1060px); max-height: calc(100dvh - 44px); opacity: 0; transform: scale(.975); transition: opacity 180ms ease, transform 280ms var(--ease-out); }
.lightbox.is-open .lightbox-shell { opacity: 1; transform: scale(1); }
.lightbox img { max-width: 100%; max-height: calc(100dvh - 110px); object-fit: contain; }
.lightbox-close { position: fixed; top: 16px; right: 16px; color: #fff; }
.lightbox-arrow { position: absolute; top: 50%; width: 48px; height: 48px; border: 1px solid rgb(255 255 255 / 45%); border-radius: 50%; color: #fff; background: rgb(17 25 19 / 56%); transform: translateY(-50%); }
.lightbox-arrow:hover, .lightbox-arrow:focus-visible { background: rgb(255 255 255 / 16%); }
.previous { left: -62px; }
.next { right: -62px; }
.lightbox p { margin: 13px 0 0; color: #fff; text-align: center; }

.reveal { opacity: 1; transform: none; }
html.js-motion .reveal { opacity: 0; filter: blur(4px); transform: translateY(28px) scale(.985); transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out), filter 460ms ease; }
html.js-motion .reveal.is-visible { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
.menu-feature-card:nth-child(2), .gallery-item:nth-child(2), .review-card:nth-child(2) { transition-delay: 75ms; }
.menu-feature-card:nth-child(3), .gallery-item:nth-child(3), .review-card:nth-child(3) { transition-delay: 150ms; }
.gallery-item:nth-child(4) { transition-delay: 45ms; }
.gallery-item:nth-child(5) { transition-delay: 120ms; }
.gallery-item:nth-child(6) { transition-delay: 195ms; }

@media (hover: hover) and (pointer: fine) {
  .story-image:hover { transform: translateY(-9px) rotate(.35deg); box-shadow: 0 30px 64px rgb(28 38 32 / 22%); }
  .story-image:hover img { transform: scale(1.045); }
  .menu-feature-card:hover { transform: translateY(-10px); }
  .menu-feature-card:hover .menu-feature-image img { transform: scale(1.055); filter: saturate(1.06); }
  .gallery-item:hover { transform: translateY(-9px) rotate(.25deg); box-shadow: 0 26px 48px rgb(28 38 32 / 18%); }
  .gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); filter: saturate(1.05); }
  .review-card:hover { transform: translateY(-8px) rotate(-.2deg); border-color: rgb(207 146 40 / 42%); box-shadow: 0 24px 42px rgb(64 52 34 / 16%); }
}

button:focus-visible, a:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; } html.js-motion .reveal { opacity: 1; filter: none; transform: none; } }

@media (max-width: 767px) {
  .content-frame { width: min(100% - 32px, 620px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 64px; padding: 0 16px; }
  .brand img { width: 38px; height: 38px; }
  .desktop-nav, .desktop-only { display: none; }
  .menu-toggle { display: grid; }
  .section { padding: 72px 0; }
  h2 { max-width: 11ch; font-size: clamp(2.1rem, 10vw, 3.3rem); }
  .hero { min-height: 700px; min-height: 100dvh; }
  .hero-image { object-position: 50% 47%; }
  .hero-scrim { background: linear-gradient(0deg, rgb(12 19 14 / 88%) 0%, rgb(12 19 14 / 42%) 78%, rgb(12 19 14 / 25%) 100%); }
  .hero-content { align-self: end; padding: 0 0 54px; }
  .hero h1 { max-width: 9ch; font-size: clamp(3rem, 13vw, 4.4rem); }
  .hero-copy { max-width: 33ch; margin-bottom: 26px; font-size: 1.04rem; }
  .hero-actions .button { flex: 1 1 150px; }
  .story, .visit-layout { grid-template-columns: 1fr; gap: 34px; }
  .story-image { order: -1; justify-self: start; }
  .visit-copy h2 { max-width: 10ch; margin-bottom: 24px; }
  .menu-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .menu-note { margin-bottom: 0; font-size: 1rem; }
  .menu-grid { grid-template-columns: 1fr; gap: 34px; }
  .menu-feature-copy { min-height: 0; padding-top: 17px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { min-height: 0; padding: 22px; }
  .gallery-item.portrait img { aspect-ratio: 3 / 4; }
  .map-frame, .map-frame iframe { min-height: 400px; height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .modal-overlay { padding: 12px; }
  .booking-modal { max-height: calc(100dvh - 24px); padding: 42px 22px 26px; }
  .form-grid, .compact-grid { grid-template-columns: 1fr; }
  .previous { left: 4px; }
  .next { right: 4px; }
  .lightbox-arrow { width: 42px; height: 42px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-heading { grid-template-columns: minmax(0, 1fr) minmax(230px, .8fr); gap: 48px; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
