:root {
  --ivory: #f4efe6;
  --ivory-light: #fbf8f2;
  --paper: #fffdf9;
  --espresso: #211b17;
  --espresso-2: #332a24;
  --olive: #68705a;
  --olive-dark: #4f5845;
  --terracotta: #b74732;
  --terracotta-dark: #943624;
  --sand: #ded1bc;
  --line: rgba(33, 27, 23, .14);
  --line-light: rgba(255, 255, 255, .2);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --header: 82px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(49, 38, 29, .12);
  --ease: cubic-bezier(.22, .78, .28, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--espresso);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p, figure { margin-top: 0; }
address { font-style: normal; }
::selection { color: #fff; background: var(--terracotta); }
:focus-visible { outline: 3px solid #e1715b; outline-offset: 4px; }

.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 8vw, 118px) 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; transform: translateY(-160%); padding: 10px 16px; color: #fff; background: var(--espresso); border-radius: 6px; }
.skip-link:focus { transform: none; }
.visually-hidden { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.eyebrow { margin-bottom: 17px; color: var(--terracotta); font-size: 11px; font-weight: 700; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(244, 239, 230, .94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: height .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-compact { height: 70px; background: rgba(251, 248, 242, .96); box-shadow: 0 8px 32px rgba(42, 33, 26, .07); }
.header-inner { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); height: 100%; margin-inline: auto; display: grid; grid-template-columns: minmax(200px, 1fr) auto minmax(250px, 1fr); align-items: center; gap: 28px; }
.brand-logo { width: max-content; display: flex; flex-direction: column; line-height: 1; }
.brand-logo span { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -.035em; }
.brand-logo small { margin-top: 3px; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2.6vw, 40px); }
.desktop-nav a { position: relative; padding: 8px 0; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--terracotta); transition: right .28s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.language-switch { display: block; min-width: 0; }
.language-menu { position: relative; width: 154px; }
.language-menu-trigger {
  width: 100%; min-height: 42px; display: grid; grid-template-columns: auto auto minmax(0,1fr) auto; align-items: center; gap: 5px;
  padding: 0 12px; color: var(--espresso); border: 1px solid rgba(33,27,23,.18); border-radius: 10px; background: rgba(255,255,255,.3);
  cursor: pointer; text-align: left; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.language-menu-trigger:hover { border-color: rgba(33,27,23,.38); background: rgba(255,255,255,.58); }
.language-menu-trigger:focus-visible { outline: 0; box-shadow: 0 0 0 3px rgba(183,71,50,.14); }
.language-menu.is-open .language-menu-trigger { border-color: var(--terracotta); background: var(--paper); box-shadow: 0 0 0 3px rgba(183,71,50,.12); }
.language-menu-current-code { font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.language-menu-separator { color: rgba(33,27,23,.3); font-size: 9px; }
.language-menu-current-name { overflow: hidden; font-size: 9px; font-weight: 600; letter-spacing: .015em; text-overflow: ellipsis; white-space: nowrap; }
.language-menu-trigger svg { width: 9px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; transition: transform .2s ease; }
.language-menu.is-open .language-menu-trigger svg { transform: rotate(180deg); }
.language-menu-popover {
  position: absolute; z-index: 150; top: calc(100% + 8px); right: 0; width: 210px; padding: 7px;
  visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-7px) scale(.98); transform-origin: top right;
  border: 1px solid rgba(33,27,23,.12); border-radius: 13px; background: var(--paper); box-shadow: 0 20px 55px rgba(33,27,23,.2);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.language-menu.is-open .language-menu-popover { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.language-menu-option {
  width: 100%; min-height: 40px; display: grid; grid-template-columns: 34px minmax(0,1fr) 17px; align-items: center; gap: 5px;
  padding: 0 10px; color: var(--espresso); border: 0; border-radius: 8px; background: transparent; cursor: pointer; text-align: left;
  transition: color .16s ease, background .16s ease;
}
.language-menu-option:hover, .language-menu-option:focus-visible { background: var(--ivory); }
.language-menu-option:focus-visible { outline: 2px solid rgba(183,71,50,.4); outline-offset: -2px; }
.language-menu-option.is-selected { color: var(--ivory-light); background: var(--espresso); }
.language-menu-code { color: var(--terracotta); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.language-menu-name { overflow: hidden; font-size: 11px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.language-menu-check { color: #ef8d78; opacity: 0; transform: scale(.7); font-size: 11px; transition: opacity .16s ease, transform .16s ease; }
.language-menu-option.is-selected .language-menu-check { opacity: 1; transform: none; }
.mobile-drawer .language-switch, .drawer-footer .language-menu { width: 100%; }
.drawer-footer .language-switch { width: min(220px, 42vw); }
.drawer-footer .language-menu-popover, .footer-language .language-menu-popover { top: auto; bottom: calc(100% + 8px); transform-origin: bottom right; }
.mobile-drawer .language-menu-popover { right: auto; left: 0; width: min(230px, calc(100vw - (var(--gutter) * 2))); transform-origin: bottom left; }
.footer-language { width: 210px; }
.footer-language .language-menu { width: 100%; }
.footer-language .language-menu-trigger { color: var(--ivory-light); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.footer-language .language-menu-trigger:hover, .footer-language .language-menu.is-open .language-menu-trigger { border-color: #e1715b; background: rgba(255,255,255,.1); }
.footer-language .language-menu-separator { color: rgba(255,255,255,.28); }
.footer-language .language-menu-popover { color: var(--ivory-light); border-color: rgba(255,255,255,.13); background: #2c2520; box-shadow: 0 20px 55px rgba(0,0,0,.34); }
.footer-language .language-menu-option { color: rgba(255,255,255,.75); }
.footer-language .language-menu-option:hover, .footer-language .language-menu-option:focus-visible { color: #fff; background: rgba(255,255,255,.08); }
.footer-language .language-menu-option.is-selected { color: #fff; background: var(--terracotta); }
.footer-language .language-menu-option.is-selected .language-menu-code, .footer-language .language-menu-option.is-selected .language-menu-check { color: #fff; }
.header-order-link { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.header-order-link:hover { border-color: var(--espresso); }
.nav-order-button { min-height: 45px; display: inline-flex; align-items: center; gap: 21px; padding: 0 17px; color: #fff; background: var(--terracotta); border: 0; border-radius: var(--radius-sm); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: background .25s ease, transform .25s ease; }
.nav-order-button:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.menu-toggle { width: 35px; height: 35px; display: none; padding: 8px 3px; border: 0; background: none; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-drawer { position: fixed; inset: 0; z-index: 90; display: none; padding: calc(var(--header) + 40px) var(--gutter) 44px; color: var(--ivory); background: var(--espresso); visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.mobile-drawer.open { visibility: visible; opacity: 1; }
.mobile-drawer nav { display: flex; flex-direction: column; }
.mobile-drawer nav a { padding: 10px 0; font-family: var(--serif); font-size: clamp(36px, 9vw, 56px); line-height: 1.1; }
.drawer-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 25px; border-top: 1px solid var(--line-light); }
.drawer-quick-actions { display: flex; align-items: center; gap: 17px; }
.drawer-quick-actions a, .drawer-quick-actions button { padding: 8px 0; color: #ef8d78; border: 0; background: none; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.drawer-quick-actions button { padding: 11px 13px; color: #fff; background: var(--terracotta); border-radius: 8px; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 0 20px; border: 1px solid transparent; border-radius: var(--radius-sm); cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.button:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--terracotta); }
.button-primary:hover { background: var(--terracotta-dark); }
.button-secondary { border-color: var(--line); background: transparent; }
.button-secondary:hover { border-color: var(--espresso); background: var(--paper); }
.button-dark { color: #fff; background: var(--espresso); }
.button-dark:hover { background: var(--espresso-2); }
.button-light { color: var(--espresso); background: var(--ivory-light); }
.button-light:hover { background: #fff; }
.inline-link { width: max-content; display: inline-flex; align-items: center; gap: 28px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.inline-link span:last-child { transition: transform .25s ease; }
.inline-link:hover span:last-child { transform: translate(2px, -2px); }

/* Home hero */
.hero-section { padding: calc(var(--header) + 46px) 0 0; background: linear-gradient(135deg, var(--ivory) 0%, #efe6d7 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); gap: clamp(42px, 6vw, 92px); align-items: center; }
.hero-copy { padding: 40px 0 54px; }
.hero-copy h1 { max-width: 700px; margin-bottom: 25px; font-family: var(--serif); font-size: clamp(58px, 6.6vw, 94px); font-weight: 500; line-height: .88; letter-spacing: -.055em; }
.hero-copy h1 em { color: var(--terracotta); font-weight: 500; }
.hero-lead { max-width: 570px; margin-bottom: 12px; font-family: var(--serif); font-size: clamp(23px, 2.2vw, 34px); line-height: 1.18; }
.hero-note { max-width: 520px; margin-bottom: 33px; color: rgba(33, 27, 23, .66); font-size: 14px; }
.hero-actions { display: flex; align-items: center; gap: 12px; }
.hero-actions .button-primary { box-shadow: 5px 5px 0 var(--espresso); }
.hero-actions .button-primary:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--espresso); }
.hero-actions .button-primary span:last-child { width: 25px; height: 25px; display: grid; place-items: center; margin: -3px -7px -3px 0; border-radius: 50%; background: rgba(255,255,255,.15); }
.business-status { width: max-content; display: flex; align-items: center; gap: 10px; margin-top: 25px; padding: 8px 12px; color: #6e3227; background: rgba(183, 71, 50, .09); border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.business-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 4px rgba(183, 71, 50, .13); }
.hero-visual { position: relative; min-width: 0; padding: 0 18px 24px 22px; }
.hero-visual::before { content: ""; position: absolute; z-index: 0; inset: 22px 0 0 0; border: 1px solid rgba(104,112,90,.54); border-radius: var(--radius-lg); transform: rotate(1.2deg); }
.hero-photo { position: relative; z-index: 1; min-height: 610px; margin-bottom: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--sand); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; transition: transform .8s var(--ease); }
.hero-photo:hover img { transform: scale(1.025); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(27, 22, 18, .45)); pointer-events: none; }
.hero-photo figcaption { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 22px; display: flex; justify-content: space-between; align-items: end; color: #fff; }
.hero-photo figcaption span { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-photo figcaption b { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.hero-ingredient-strip { position: absolute; z-index: 4; top: 32px; right: -10px; display: flex; align-items: center; gap: 7px; padding: 10px 15px 9px; color: #fff; background: var(--olive-dark); box-shadow: 0 12px 28px rgba(35,29,24,.2); transform: rotate(2.2deg); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-ingredient-strip i { color: #e5b3a8; font-style: normal; }
.hero-mini-card { position: absolute; z-index: 4; left: -30px; bottom: 68px; width: min(280px, 48%); display: grid; grid-template-columns: 72px minmax(0,1fr); gap: 13px; align-items: center; padding: 9px; color: var(--espresso); background: var(--paper); border: 1px solid rgba(33,27,23,.1); border-radius: 14px; box-shadow: 0 18px 40px rgba(44,33,26,.2); transform: rotate(-1.8deg); }
.hero-mini-card img { width: 72px; height: 72px; object-fit: cover; border-radius: 9px; }
.hero-mini-card > span { min-width: 0; display: flex; flex-direction: column; }
.hero-mini-card small { margin-bottom: 4px; color: var(--terracotta); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-mini-card strong { display: flex; flex-wrap: wrap; gap: 2px 7px; font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.05; }
.hero-mini-card strong b { color: var(--olive-dark); font-size: .72em; font-weight: 600; white-space: nowrap; }
.hero-handnote { position: absolute; z-index: 3; right: 36px; bottom: 3px; color: var(--terracotta); font-family: var(--serif); font-size: 21px; font-style: italic; transform: rotate(-4deg); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border-top: 1px solid var(--line); }
.hero-facts div { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: center; padding: 22px 30px 24px 0; border-right: 1px solid var(--line); }
.hero-facts div + div { padding-left: 30px; }
.hero-facts div:last-child { border-right: 0; }
.hero-facts span { color: var(--terracotta); font-family: var(--serif); font-size: 16px; }
.hero-facts strong { font-size: 12px; font-weight: 600; }


.brand-section { padding-block: clamp(58px, 5.5vw, 78px); background: var(--ivory-light); }
.brand-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 4vw, 58px); align-items: center; }
.brand-photo { margin-bottom: 0; }
.brand-photo img { aspect-ratio: 1.5; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.brand-photo figcaption { margin-top: 11px; color: rgba(33, 27, 23, .52); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.brand-copy h2 { margin-bottom: 28px; font-family: var(--serif); font-size: clamp(42px, 4.8vw, 68px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.brand-copy h2 em { color: var(--olive); font-weight: 500; }
.brand-copy > p:not(.eyebrow) { max-width: 600px; margin-bottom: 31px; color: rgba(33, 27, 23, .68); font-size: 15px; }

.menu-preview { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 35px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 500; line-height: .95; letter-spacing: -.04em; }
.section-heading > p { max-width: 480px; margin: 0; color: rgba(33, 27, 23, .62); font-size: 14px; }
.section-heading.compact { align-items: start; }
.category-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.category-pills a { padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.category-pills a:hover, .category-pills a.active { color: #fff; border-color: var(--olive); background: var(--olive); }
.home-menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; border-top: 1px solid var(--line); }
.home-menu-item { min-height: 148px; display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 12px 18px; align-content: center; padding: 25px 0; border-bottom: 1px solid var(--line); }
.home-menu-item.with-image { grid-template-columns: 94px 36px minmax(0, 1fr) auto; }
.home-menu-image { grid-row: 1 / 3; width: 94px; height: 94px; overflow: hidden; border-radius: 12px; background: var(--sand); }
.home-menu-image img { height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.home-menu-item:hover .home-menu-image img { transform: scale(1.05); }
.home-menu-number { grid-row: 1 / 3; padding-top: 4px; color: var(--terracotta); font-family: var(--serif); font-size: 16px; }
.home-menu-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(22px, 2vw, 29px); font-weight: 600; line-height: 1.05; }
.home-menu-item strong { justify-self: end; font-size: 13px; }
.home-menu-item p { grid-column: 2; margin: 0; color: rgba(33, 27, 23, .58); font-size: 12px; }
.home-menu-item.with-image p { grid-column: 3; }
.menu-preview-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

body.event-notice-open { overflow: hidden; }
.event-notice-layer { position: fixed; z-index: 160; }
.event-notice-layer-special { inset: 0; display: grid; place-items: center; padding: 24px; }
.event-notice-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(25,20,17,.68); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.event-notice { position: relative; color: var(--espresso); background: var(--paper); box-shadow: 0 30px 90px rgba(24,19,16,.3); }
.event-notice-special { z-index: 1; width: min(620px,calc(100vw - 48px)); max-height: calc(100dvh - 48px); overflow: auto; border-radius: var(--radius-lg); outline: none; }
.event-notice-special.has-media { width: min(840px,calc(100vw - 48px)); display: grid; grid-template-columns: minmax(280px,.88fr) minmax(340px,1.12fr); overflow: hidden; }
.event-notice-special .event-notice-media { min-height: 440px; background: var(--sand); }
.event-notice-special .event-notice-media img { width: 100%; height: 100%; object-fit: cover; }
.event-notice-copy { min-width: 0; }
.event-notice-special .event-notice-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px,5vw,58px); }
.event-notice-kicker { margin: 0 0 18px; color: var(--terracotta); font-size: 9px; font-weight: 700; letter-spacing: .11em; line-height: 1.5; text-transform: uppercase; }
.event-notice h2 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: .93; letter-spacing: -.04em; }
.event-notice-special h2 { font-size: clamp(43px,5vw,63px); }
.event-notice-description { margin: 20px 0 0; color: rgba(33,27,23,.64); font-size: 13px; line-height: 1.65; }
.event-notice-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.event-notice-actions > span { color: rgba(33,27,23,.52); font-size: 10px; }
.event-notice-cta { min-height: 43px; padding: 0 16px; color: #fff; border: 0; border-radius: 8px; background: var(--terracotta); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.event-notice-close { position: absolute; z-index: 3; top: 14px; right: 14px; width: 38px; height: 38px; border: 1px solid rgba(33,27,23,.15); border-radius: 50%; color: var(--espresso); background: rgba(255,253,249,.88); font: 25px/1 var(--serif); }
.event-notice-layer-weekly { z-index: 120; right: 22px; bottom: 22px; }
.event-notice-weekly { width: min(470px,calc(100vw - 44px)); display: grid; grid-template-columns: minmax(0,1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 18px 50px rgba(24,19,16,.22); }
.event-notice-weekly.has-media { grid-template-columns: 94px minmax(0,1fr); }
.event-notice-weekly .event-notice-media { min-height: 132px; background: var(--sand); }
.event-notice-weekly .event-notice-media img { width: 100%; height: 100%; object-fit: cover; }
.event-notice-weekly .event-notice-copy { padding: 17px 54px 16px 18px; }
.event-notice-weekly .event-notice-kicker { margin-bottom: 7px; font-size: 7px; }
.event-notice-weekly h2 { font-size: 28px; }
.event-notice-weekly .event-notice-description { display: -webkit-box; margin-top: 8px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 10px; line-height: 1.45; }
.event-notice-weekly .event-notice-actions { margin-top: 11px; padding-top: 10px; }
.event-notice-weekly .event-notice-actions > span { font-size: 8px; }
.event-notice-weekly .event-notice-cta { min-height: 31px; padding-inline: 10px; font-size: 7px; }
.event-notice-weekly .event-notice-close { top: 8px; right: 8px; width: 30px; height: 30px; font-size: 20px; }

.food-story { background: var(--ivory); }
.food-story-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .7fr); grid-template-rows: auto auto; gap: 28px clamp(40px, 6vw, 82px); align-items: center; }
.food-story-large { grid-row: 1 / 3; margin: 0; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.food-story-large img { aspect-ratio: 1.45; height: 100%; object-fit: cover; }
.food-story-copy { align-self: end; padding-top: 15px; }
.food-story-copy h2 { margin-bottom: 23px; font-family: var(--serif); font-size: clamp(42px, 4.6vw, 66px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.food-story-copy h2 em { color: var(--terracotta); font-weight: 500; }
.food-story-copy p:last-child { color: rgba(33, 27, 23, .65); font-size: 14px; }
.food-story-small { width: 78%; align-self: start; margin: 0; overflow: hidden; border-radius: var(--radius-md); }
.food-story-small img { aspect-ratio: 1.5; object-fit: cover; }

.why-section { padding-block: clamp(70px, 7vw, 96px); background: var(--ivory-light); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card { min-height: 230px; display: flex; flex-direction: column; padding: 25px clamp(22px, 2.5vw, 38px) 25px 0; border: 0; border-radius: 0; background: transparent; }
.feature-card + .feature-card { padding-left: clamp(22px, 2.5vw, 38px); border-left: 1px solid var(--line); }
.feature-card > span { color: var(--terracotta); font-family: var(--serif); font-size: 16px; }
.feature-card h3 { margin: auto 0 12px; font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1.05; }
.feature-card p { margin: 0; color: rgba(33, 27, 23, .63); font-size: 13px; }
.feature-card-accent { color: var(--espresso); }
.feature-card-accent > span { color: var(--olive); }
.feature-card-accent p { color: rgba(33, 27, 23, .63); }
.practical-grid { display: grid; grid-template-columns: minmax(290px, .78fr) minmax(0, 1.22fr); gap: 0; margin-top: clamp(34px, 4vw, 52px); }
.practical-panel { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 20px; align-content: start; align-items: start; padding: 0 clamp(30px, 4vw, 56px) 0 0; border: 0; border-radius: 0; background: transparent; }
.practical-heading .eyebrow { margin-bottom: 12px; }
.practical-heading h3 { margin: 0; font-family: var(--serif); font-size: clamp(29px, 2.7vw, 38px); font-weight: 600; line-height: 1; letter-spacing: -.03em; }
.practical-panel ul { margin: 0; padding: 0; list-style: none; }
.practical-services { padding-right: 0; padding-left: clamp(30px, 4vw, 56px); border-left: 1px solid var(--line); }
.payment-list { display: flex; flex-wrap: wrap; gap: 6px 0; color: rgba(33,27,23,.68); }
.payment-list li { display: inline-flex; align-items: center; padding: 0; font-size: 12px; }
.payment-list li:not(:last-child)::after { content: "·"; margin: 0 10px; color: var(--terracotta); }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; }
.service-list li { padding: 9px 0; border-top: 1px solid var(--line); color: rgba(33,27,23,.7); font-size: 12px; }

.reviews-section { color: var(--ivory-light); background: var(--olive-dark); }
.reviews-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.65fr); gap: clamp(45px, 7vw, 100px); align-items: start; }
.reviews-summary { position: sticky; top: 110px; }
.reviews-summary .eyebrow { color: #edb5a9; }
.reviews-summary h2 { margin-bottom: 34px; font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.rating-block { display: flex; align-items: center; gap: 19px; margin-bottom: 33px; }
.rating-block > strong { font-family: var(--serif); font-size: 58px; font-weight: 500; line-height: 1; }
.rating-block div { display: flex; flex-direction: column; }
.rating-block div span { color: #f0b85e; letter-spacing: .12em; }
.rating-block small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .07em; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-card { min-height: 270px; display: flex; flex-direction: column; padding: clamp(25px, 3vw, 38px); border: 1px solid rgba(255,255,255,.19); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.review-card:first-child { grid-column: 1 / -1; min-height: 290px; background: rgba(255,255,255,.09); }
.review-stars { color: #f0b85e; font-size: 12px; letter-spacing: .12em; }
.review-card blockquote { max-width: 800px; margin: auto 0 28px; font-family: var(--serif); font-size: clamp(23px, 2.2vw, 32px); line-height: 1.24; }
.review-card:first-child blockquote { font-size: clamp(27px, 2.8vw, 40px); }
.review-author { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.17); }
.review-author strong { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.review-author span { font-size: 10px; opacity: .6; }

.location-section { background: var(--ivory); }
.location-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 660px; overflow: hidden; border-radius: var(--radius-lg); color: var(--ivory-light); background: var(--espresso); box-shadow: var(--shadow); }
.location-info { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 70px); }
.location-info .eyebrow { color: #ed8d79; }
.location-info h2 { margin-bottom: 30px; font-family: var(--serif); font-size: clamp(40px, 4vw, 60px); font-weight: 500; line-height: .98; }
.location-info h2 em { color: #d8c7b3; font-size: .61em; font-weight: 500; }
.location-info address { display: flex; flex-direction: column; margin-bottom: 25px; }
.location-info address strong { font-family: var(--serif); font-size: 25px; font-weight: 500; }
.location-info address span { color: rgba(255,255,255,.67); font-size: 13px; }
.location-contacts { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line-light); }
.location-contacts a { display: grid; grid-template-columns: 80px 1fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line-light); }
.location-contacts small, .hours-note > span { color: rgba(255,255,255,.48); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.location-contacts strong { font-size: 12px; font-weight: 500; }
.hours-note { display: flex; flex-direction: column; gap: 5px; margin: 23px 0 27px; }
.hours-note strong { max-width: 380px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 500; }
.location-actions { display: flex; gap: 10px; }
.location-info .button-secondary { color: #fff; border-color: rgba(255,255,255,.3); }
.location-info .button-secondary:hover { color: var(--espresso); }
.location-map { position: relative; min-height: 600px; overflow: hidden; }
.location-map iframe { width: 100%; height: 100%; min-height: 600px; border: 0; filter: saturate(.75) sepia(.08); }
.map-badge { position: absolute; left: 24px; bottom: 24px; display: flex; flex-direction: column; padding: 14px 18px; color: #fff; background: var(--terracotta); border-radius: 12px; box-shadow: 0 13px 32px rgba(40, 29, 22, .25); }
.map-badge span { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.map-badge small { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.location-photo { margin: 24px 0 0; }
.location-photo img { aspect-ratio: 2.15; object-fit: cover; border-radius: var(--radius-md); }
.location-photo figcaption { display: flex; justify-content: space-between; gap: 30px; margin-top: 11px; color: rgba(33,27,23,.58); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.location-photo figcaption a { color: var(--terracotta); }

.final-cta { position: relative; min-height: 500px; display: grid; place-items: center; overflow: hidden; color: #fff; }
.final-cta-image, .final-cta-overlay { position: absolute; inset: 0; }
.final-cta-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.03); }
.final-cta-overlay { background: linear-gradient(90deg, rgba(29,22,17,.84), rgba(29,22,17,.54) 55%, rgba(29,22,17,.22)); }
.final-cta-content { position: relative; z-index: 2; }
.final-cta-content h2 { max-width: 850px; margin-bottom: 16px; font-family: var(--serif); font-size: clamp(50px, 6.4vw, 84px); font-weight: 500; line-height: .9; letter-spacing: -.045em; }
.final-cta-content p { max-width: 540px; margin-bottom: 30px; font-size: 16px; }

.site-footer { padding: 74px 0 27px; color: var(--ivory-light); background: #171310; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .65fr .9fr; gap: clamp(35px, 5vw, 75px); }
.footer-brand strong { display: block; font-family: var(--serif); font-size: 46px; font-weight: 500; line-height: .9; }
.footer-brand > span { display: block; margin-top: 7px; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-brand p { max-width: 300px; margin: 23px 0 0; color: rgba(255,255,255,.55); font-size: 13px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-column h3 { margin-bottom: 13px; color: rgba(255,255,255,.42); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.78); font-size: 12px; }
.footer-column > a:hover { color: #fff; }
.footer-order .button { margin-bottom: 18px; color: var(--espresso); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.44); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.footer-legal-links a { transition: color .2s ease; }
.footer-legal-links a:hover, .footer-legal-links a[aria-current="page"] { color: rgba(255,255,255,.82); }
.mobile-order-dock { display: none; }

/* Privacy policy */
.privacy-main { padding: calc(var(--header) + 62px) 0 100px; }
.privacy-document { max-width: 1120px; }
.privacy-heading { max-width: 910px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.privacy-heading h1 { max-width: 880px; margin-bottom: 24px; overflow-wrap: anywhere; hyphens: auto; font-family: var(--serif); font-size: clamp(52px, 7vw, 82px); font-weight: 500; line-height: .94; letter-spacing: -.045em; }
.privacy-lead { max-width: 760px; margin-bottom: 30px; color: rgba(33,27,23,.68); font-size: 18px; line-height: 1.65; }
.privacy-meta { display: flex; flex-wrap: wrap; gap: 8px 24px; color: rgba(33,27,23,.5); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.privacy-owner-placeholder { max-width: 910px; margin: 36px 0 12px; padding: 28px 30px 26px; border-left: 3px solid var(--terracotta); background: rgba(183,71,50,.055); }
.privacy-owner-placeholder .eyebrow { margin-bottom: 9px; }
.privacy-owner-placeholder h2 { max-width: 720px; margin-bottom: 24px; font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.privacy-owner-placeholder dl { margin: 0; border-top: 1px solid var(--line); }
.privacy-owner-placeholder dl > div { display: grid; grid-template-columns: minmax(160px,.6fr) minmax(0,1.4fr); gap: 22px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.privacy-owner-placeholder dt { color: rgba(33,27,23,.52); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.privacy-owner-placeholder dd { margin: 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 700; }
.privacy-owner-placeholder > p:last-child { max-width: 760px; margin: 20px 0 0; color: rgba(33,27,23,.62); font-size: 12px; }
.privacy-content { max-width: 910px; }
.privacy-section { position: relative; padding: 38px 0 34px 54px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header) + 22px); }
.privacy-section-number { position: absolute; top: 45px; left: 0; color: var(--terracotta); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.privacy-section h2 { margin-bottom: 18px; font-family: var(--serif); font-size: clamp(30px, 3.4vw, 39px); font-weight: 500; line-height: 1.06; letter-spacing: -.025em; }
.privacy-section h3 { margin: 30px 0 10px; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.15; }
.privacy-section p, .privacy-section li { color: rgba(33,27,23,.72); font-size: 14px; line-height: 1.72; }
.privacy-section p { margin-bottom: 14px; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul { margin: 12px 0 18px; padding: 0; list-style: none; }
.privacy-section li { position: relative; padding: 7px 0 7px 21px; }
.privacy-section li::before { content: ""; position: absolute; top: 17px; left: 0; width: 7px; height: 1px; background: var(--terracotta); }
.privacy-section a { color: var(--terracotta-dark); text-decoration: underline; text-decoration-color: rgba(148,54,36,.35); text-underline-offset: 3px; }
.privacy-section a:hover { text-decoration-color: currentColor; }
.privacy-section strong { color: var(--espresso); font-weight: 600; }
.privacy-effective { display: flex; align-items: baseline; justify-content: space-between; gap: 22px; padding: 29px 0 0 54px; }
.privacy-effective span { color: rgba(33,27,23,.48); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.privacy-effective strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }

/* Reservation flow */
body.booking-open { overflow: hidden; }
.booking-dialog { width: min(940px, calc(100% - 34px)); max-width: none; max-height: min(860px, calc(100dvh - 34px)); padding: 0; overflow: auto; color: var(--espresso); border: 0; border-radius: var(--radius-lg); background: var(--ivory-light); box-shadow: 0 35px 100px rgba(28,22,18,.3); }
.booking-dialog::backdrop { background: rgba(24,19,16,.66); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.booking-shell { min-height: 650px; display: grid; grid-template-columns: 220px minmax(0,1fr); grid-template-rows: auto 1fr; }
.booking-header { grid-column: 1 / -1; min-height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; border-bottom: 1px solid var(--line); background: var(--ivory); }
.booking-header > div { display: flex; flex-direction: column; line-height: 1; }
.booking-header strong { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -.03em; }
.booking-header span { margin-top: 4px; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.booking-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--espresso); background: transparent; cursor: pointer; font-family: var(--serif); font-size: 29px; line-height: 1; }
.booking-progress-wrap { padding: 44px 28px; color: #fff; background: var(--olive-dark); }
.booking-progress { display: flex; flex-direction: column; gap: 34px; margin: 0; padding: 0; list-style: none; }
.booking-progress li { display: grid; grid-template-columns: 29px 1fr; gap: 10px; align-items: center; color: rgba(255,255,255,.45); }
.booking-progress li span { font-family: var(--serif); font-size: 14px; }
.booking-progress li b { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.booking-progress li.active { color: #fff; }
.booking-progress li.current span { color: #f0a18f; }
.booking-content { min-width: 0; padding: clamp(36px, 5vw, 64px); background: var(--ivory-light); }
.booking-step { max-width: 610px; margin: 0 auto; }
.booking-step > .eyebrow { margin-bottom: 11px; }
.booking-step h2 { margin-bottom: 36px; font-family: var(--serif); font-size: clamp(42px, 5vw, 64px); font-weight: 500; line-height: .95; letter-spacing: -.04em; }
.booking-step h3 { margin: 32px 0 15px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.booking-first-grid, .booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.booking-field { display: flex; flex-direction: column; gap: 8px; }
.booking-field label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.booking-field label small { color: rgba(33,27,23,.45); font-size: 8px; }
.booking-field input, .booking-field textarea { width: 100%; min-height: 52px; padding: 12px 13px; color: var(--espresso); border: 1px solid var(--line); border-radius: 8px; background: var(--paper); font: 14px var(--sans); outline: none; }
.booking-field textarea { min-height: 95px; resize: vertical; }
.booking-field input:focus, .booking-field textarea:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(183,71,50,.1); }
.booking-comment { grid-column: 1 / -1; }
.party-control { min-height: 52px; display: grid; grid-template-columns: 44px 35px 1fr 44px; align-items: center; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.party-control button { height: 100%; border: 0; background: transparent; cursor: pointer; font-size: 20px; }
.party-control output { text-align: center; font-family: var(--serif); font-size: 23px; }
.party-control span { color: rgba(33,27,23,.52); font-size: 11px; }
.booking-choice-summary { display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 20px; }
.booking-times { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.booking-times button { min-height: 48px; border: 1px solid var(--line); border-radius: 8px; background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.booking-times button:hover, .booking-times button.selected { color: #fff; border-color: var(--olive); background: var(--olive); }
.booking-state { min-height: 100px; display: grid; place-items: center; margin: 0; padding: 20px; color: rgba(33,27,23,.6); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-size: 13px; }
.booking-final-summary { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-final-summary p { flex: 0 0 100%; margin: 0 0 3px; color: var(--terracotta); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.booking-final-summary strong { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.booking-final-summary span { font-size: 13px; }
.booking-error { min-height: 22px; margin: 15px 0 0; color: var(--terracotta-dark); font-size: 12px; }
.booking-step-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 25px; }
.booking-success { text-align: left; }
.booking-success .success-mark { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 25px; color: #fff; border-radius: 50%; background: var(--olive); font-size: 27px; }
.booking-success > p:not(.eyebrow) { margin: 24px 0; color: rgba(33,27,23,.64); }

/* Secure customer cancellation */
.cancellation-page { min-height: 100vh; background: var(--ivory); }
.cancellation-header { min-height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--gutter); border-bottom: 1px solid var(--line); }
.cancellation-header > a:last-child { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.flow-header-actions { display: flex; align-items: center; gap: 18px; }
.flow-header-actions > a { font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.flow-header-actions .language-menu { width: 154px; }
.flow-header-actions .language-menu-trigger { min-height: 38px; background: var(--ivory-light); }
.cancellation-main { min-height: calc(100vh - 82px); display: grid; place-items: center; padding: 55px var(--gutter); }
.cancellation-panel { width: min(100%, 680px); padding: clamp(30px, 6vw, 70px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ivory-light); }
.cancellation-panel h1 { margin-bottom: 18px; font-family: var(--serif); font-size: clamp(43px, 7vw, 68px); font-weight: 500; line-height: .95; letter-spacing: -.04em; }
.cancellation-panel > p:not(.eyebrow) { color: rgba(33,27,23,.65); }
.cancellation-details { display: grid; grid-template-columns: 1fr 1fr; margin: 30px 0; border-top: 1px solid var(--line); }
.cancellation-details div { padding: 15px 0; border-bottom: 1px solid var(--line); }
.cancellation-details dt { color: rgba(33,27,23,.48); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cancellation-details dd { margin: 4px 0 0; font-family: var(--serif); font-size: 20px; }
.cancellation-actions { display: flex; gap: 10px; }
.cancellation-error { min-height: 20px; color: var(--terracotta); font-size: 12px; }
.cancel-mark { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 25px; color: #fff; border-radius: 50%; background: var(--olive); font-size: 24px; }
.reservation-management-page .cancellation-main{align-items:start}.reservation-management-panel{width:min(100%,860px)}.management-form{margin-top:34px}.management-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.management-grid label{display:flex;flex-direction:column;gap:8px;margin-bottom:18px;font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase}.management-grid input,.management-grid textarea{width:100%;min-height:50px;padding:12px 14px;border:1px solid var(--line);border-radius:8px;background:var(--paper);font:13px var(--sans);outline:none}.management-grid textarea{min-height:90px;resize:vertical}.management-grid input:focus,.management-grid textarea:focus{border-color:var(--terracotta);box-shadow:0 0 0 3px rgba(183,71,50,.09)}.management-wide{grid-column:1/-1}.management-times{margin:4px 0 27px;padding:0;border:0}.management-times legend{margin-bottom:10px;font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase}.management-times>div{display:grid;grid-template-columns:repeat(6,1fr);gap:7px}.management-times button{min-height:43px;border:1px solid var(--line);border-radius:7px;background:var(--paper);font-size:12px;font-weight:700}.management-times button.selected{color:#fff;border-color:var(--olive);background:var(--olive)}.management-loading{grid-column:1/-1;padding:14px 0;color:rgba(33,27,23,.55);font-size:12px}.management-actions{display:flex;justify-content:space-between;gap:10px;margin-top:8px;padding-top:20px;border-top:1px solid var(--line)}.danger-confirm{color:#fff!important;border-color:var(--terracotta-dark)!important;background:var(--terracotta-dark)!important}

/* Menu page */
.menu-page { background: var(--ivory-light); }
.menu-hero { padding: calc(var(--header) + 42px) 0 45px; background: var(--ivory); }
.menu-hero-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.menu-hero-copy h1 { margin-bottom: 17px; font-family: var(--serif); font-size: clamp(58px, 7vw, 94px); font-weight: 500; line-height: .9; letter-spacing: -.05em; }
.menu-hero-copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 24px; color: rgba(33,27,23,.64); font-size: 15px; }
.menu-hero-meta { display: flex; flex-wrap: wrap; gap: 8px; color: rgba(33,27,23,.48); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.menu-hero-image { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.menu-hero-image img { aspect-ratio: 1.8; object-fit: cover; }
.menu-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,16,13,.16), transparent 45%); }
.menu-hero-image figcaption { position: absolute; z-index: 2; left: 18px; bottom: 15px; color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.digital-menu { background: var(--paper); }
.menu-category-bar { position: sticky; z-index: 40; top: 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,249,.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.menu-category-bar .container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.menu-tabs { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); overflow-x: auto; scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab { flex: none; position: relative; padding: 24px 0 20px; border: 0; background: none; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.menu-tab::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: var(--terracotta); transition: right .25s ease; }
.menu-tab.active { color: var(--terracotta); }
.menu-tab.active::after { right: 0; }
.menu-tab span { margin-left: 6px; font-size: 8px; opacity: .45; }
.category-order-link { flex: none; color: var(--terracotta); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.menu-content { padding-top: 72px; padding-bottom: 100px; }
.menu-category-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--espresso); }
.menu-category-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(46px, 5.5vw, 74px); font-weight: 500; line-height: .9; letter-spacing: -.04em; }
.menu-category-heading span { color: rgba(33,27,23,.5); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 46px; transition: opacity .18s ease, transform .22s ease; }
.menu-list.is-changing { opacity: 0; transform: translateY(8px); }
.menu-item { min-height: 154px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 20px; align-content: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.menu-item.has-image { grid-template-columns: 108px minmax(0, 1fr) auto; }
.menu-item-image { grid-row: 1 / 3; width: 108px; height: 92px; overflow: hidden; border-radius: 12px; background: var(--sand); }
.menu-item-image img { height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.menu-item:hover .menu-item-image img { transform: scale(1.05); }
.menu-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(21px, 2vw, 29px); font-weight: 600; line-height: 1.05; }
.menu-item .price { font-size: 13px; white-space: nowrap; }
.menu-item p { grid-column: 1; max-width: 550px; margin: 0; color: rgba(33,27,23,.57); font-size: 12px; }
.menu-item.has-image p { grid-column: 2; }
.menu-empty { grid-column: 1 / -1; min-height: 280px; display: grid; place-items: center; padding: 45px; border: 1px dashed var(--line); border-radius: var(--radius-md); text-align: center; }
.menu-empty-inner { max-width: 500px; }
.menu-empty h3 { margin-bottom: 11px; font-family: var(--serif); font-size: 31px; font-weight: 600; }
.menu-empty p { color: rgba(33,27,23,.6); font-size: 13px; }
.menu-empty a { display: inline-block; margin-top: 8px; color: var(--terracotta); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.empty-mark { display: block; margin-bottom: 10px; color: var(--terracotta); font-family: var(--serif); font-size: 45px; }
.menu-footnote { display: flex; justify-content: space-between; gap: 25px; margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); color: rgba(33,27,23,.5); font-size: 10px; }
.menu-footnote p { margin: 0; }
.menu-footnote a { color: var(--terracotta); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.menu-location-strip { padding: 70px 0; color: #fff; background: var(--olive-dark); }
.menu-location-strip .container { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.menu-location-strip .eyebrow { color: #efb3a6; }
.menu-location-strip h2 { margin: 0 0 5px; font-family: var(--serif); font-size: clamp(42px, 5vw, 68px); font-weight: 500; line-height: .95; }
.menu-location-strip p:last-child { margin: 0; color: rgba(255,255,255,.7); }

/* Subtle motion */
.reveal, .reveal-media { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-media { transform: translateY(18px) scale(.99); }
.reveal.is-visible, .reveal-media.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-drawer { display: flex; flex-direction: column; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 42px; }
  .hero-photo { min-height: 560px; }
  .hero-mini-card { left: -18px; width: min(250px, 52%); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(odd) { padding-left: 0; border-left: 0; }
  .feature-card:nth-child(even) { padding-left: clamp(22px, 3vw, 38px); border-left: 1px solid var(--line); }
  .feature-card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.15fr .85fr .85fr; }
  .footer-order { grid-column: 2 / 4; }
  .reviews-layout { grid-template-columns: .8fr 1.4fr; gap: 50px; }
}

@media (max-width: 860px) {
  :root { --header: 72px; }
  .language-desktop { display: none; }
  .hero-section { padding-top: calc(var(--header) + 28px); }
  .hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero-copy { padding-bottom: 22px; }
  .hero-copy h1 { font-size: clamp(58px, 12vw, 84px); }
  .hero-visual { padding: 0 8px 34px 0; }
  .hero-visual::before { inset: 12px 0 15px 12px; }
  .hero-photo { min-height: 0; aspect-ratio: 1.45; border-radius: var(--radius-md); }
  .hero-mini-card { left: 17px; bottom: 0; width: min(270px, 48%); }
  .hero-ingredient-strip { top: 15px; right: -2px; }
  .hero-handnote { right: 25px; bottom: 5px; }
  .hero-facts div { grid-template-columns: 24px 1fr; padding-right: 16px; }
  .hero-facts div + div { padding-left: 16px; }
  .brand-grid { grid-template-columns: 1fr; gap: 28px; }
  .brand-photo { order: 2; }
  .home-menu-list { grid-template-columns: 1fr; }
  .food-story-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .food-story-large { grid-column: 1 / 3; grid-row: 1; }
  .food-story-copy { grid-column: 1; grid-row: 2; }
  .food-story-small { grid-column: 2; grid-row: 2; width: 100%; }
  .practical-grid { grid-template-columns: 1fr; gap: 30px; }
  .practical-panel { padding: 0; }
  .practical-services { padding-top: 30px; border-top: 1px solid var(--line); border-left: 0; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-summary { position: static; }
  .location-card { grid-template-columns: 1fr; }
  .location-map, .location-map iframe { min-height: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-order { grid-column: auto; }
  .privacy-main { padding-top: calc(var(--header) + 46px); }
  .privacy-heading h1 { font-size: clamp(52px, 10vw, 72px); }
  .menu-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .menu-hero-image img { aspect-ratio: 1.65; }
  .menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; --header: 66px; --radius-md: 14px; --radius-lg: 18px; }
  body { padding-bottom: 62px; }
  .site-header, .site-header.is-compact { height: var(--header); }
  .brand-logo span { font-size: 22px; }
  .brand-logo small { font-size: 7px; }
  .header-actions { gap: 8px; }
  .nav-order-button { min-height: 38px; gap: 8px; padding: 0 11px; font-size: 8px; }
  .nav-order-button span:first-child { max-width: 112px; line-height: 1.12; text-align: center; }
  .nav-order-button span:last-child { display: none; }
  .header-order-link { display: none; }
  .menu-toggle { width: 31px; }
  .mobile-drawer { padding-top: calc(var(--header) + 35px); padding-bottom: 104px; }
  .section { padding: 72px 0; }
  .brand-section { padding-block: 54px; }
  .hero-section { padding-top: calc(var(--header) + 20px); }
  .hero-copy { padding-top: 20px; }
  .hero-copy h1 { margin-bottom: 20px; font-size: clamp(53px, 17vw, 72px); }
  .hero-lead { font-size: 24px; }
  .hero-note { font-size: 13px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .business-status { margin-top: 18px; }
  .hero-visual { padding-bottom: 31px; }
  .hero-photo { aspect-ratio: 1.1; }
  .hero-photo figcaption span { display: none; }
  .hero-ingredient-strip { gap: 5px; padding: 8px 10px 7px; font-size: 6.5px; }
  .hero-mini-card { left: 11px; width: min(238px, 72%); grid-template-columns: 56px minmax(0,1fr); gap: 10px; padding: 7px; }
  .hero-mini-card img { width: 56px; height: 56px; border-radius: 7px; }
  .hero-mini-card small { margin-bottom: 2px; font-size: 7px; }
  .hero-mini-card strong { font-size: 17px; }
  .hero-handnote { display: none; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 22px; }
  .hero-facts div, .hero-facts div + div { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-facts div:last-child { border-bottom: 0; }
  .brand-photo img { aspect-ratio: 1.15; }
  .brand-copy h2, .food-story-copy h2, .section-heading h2, .reviews-summary h2 { font-size: 43px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 15px; margin-bottom: 26px; }
  .category-pills { flex-wrap: nowrap; margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); overflow-x: auto; scrollbar-width: none; }
  .category-pills::-webkit-scrollbar { display: none; }
  .home-menu-item, .home-menu-item.with-image { grid-template-columns: 30px minmax(0, 1fr) auto; min-height: 135px; }
  .home-menu-image { display: none; }
  .home-menu-item.with-image p { grid-column: 2; }
  .home-menu-item h3 { font-size: 25px; }
  .menu-preview-actions { align-items: stretch; flex-direction: column; }
  .menu-preview-actions .button { width: 100%; }
  .event-notice-layer-special { place-items: end center; padding: 0; }
  .event-notice-special,.event-notice-special.has-media { width: 100%; max-height: calc(100dvh - 30px); display: flex; flex-direction: column; border-radius: 18px 18px 0 0; }
  .event-notice-special .event-notice-media { flex: none; min-height: 0; height: min(34dvh,240px); }
  .event-notice-special .event-notice-copy { padding: 27px 22px 25px; }
  .event-notice-special h2 { padding-right: 30px; font-size: 43px; }
  .event-notice-special .event-notice-description { margin-top: 15px; font-size: 12px; }
  .event-notice-special .event-notice-actions { align-items: stretch; flex-direction: column; gap: 12px; margin-top: 21px; }
  .event-notice-special .event-notice-cta { width: 100%; }
  .event-notice-layer-weekly { right: 12px; bottom: 74px; left: 12px; }
  .event-notice-weekly { width: 100%; }
  .event-notice-weekly.has-media { grid-template-columns: 72px minmax(0,1fr); }
  .event-notice-weekly .event-notice-media { min-height: 112px; }
  .event-notice-weekly .event-notice-copy { padding: 14px 43px 13px 14px; }
  .event-notice-weekly h2 { font-size: 24px; }
  .event-notice-weekly .event-notice-description { -webkit-line-clamp: 1; }
  .event-notice-weekly .event-notice-actions { margin-top: 8px; padding-top: 8px; }
  .food-story-grid { display: flex; flex-direction: column; }
  .food-story-large img { aspect-ratio: 1.1; }
  .food-story-copy { padding: 22px 0 0; }
  .food-story-small { width: 78%; margin-left: auto; }
  .food-story-small img { aspect-ratio: 1.15; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card:nth-child(odd), .feature-card:nth-child(even) { min-height: 0; padding: 24px 0; border-left: 0; }
  .feature-card + .feature-card { border-top: 1px solid var(--line); }
  .feature-card h3 { margin: 32px 0 12px; }
  .practical-panel { min-height: 0; grid-template-columns: 1fr; gap: 20px; padding: 0; }
  .practical-services { padding-top: 28px; }
  .service-list { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card, .review-card:first-child { grid-column: auto; min-height: 250px; }
  .review-card blockquote, .review-card:first-child blockquote { font-size: 25px; }
  .location-info { padding: 38px 24px; }
  .location-info h2 { font-size: 42px; }
  .location-contacts a { grid-template-columns: 65px minmax(0,1fr); }
  .location-contacts strong { overflow-wrap: anywhere; }
  .location-actions { flex-direction: column; }
  .location-actions .button { width: 100%; }
  .location-map, .location-map iframe { min-height: 410px; }
  .location-photo img { aspect-ratio: 1.2; }
  .location-photo figcaption { align-items: flex-start; flex-direction: column; gap: 6px; }
  .final-cta { min-height: 510px; }
  .final-cta-overlay { background: rgba(29,22,17,.65); }
  .final-cta-content h2 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-order { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-legal-links { justify-content: flex-start; }
  .privacy-main { padding: calc(var(--header) + 38px) 0 74px; }
  .privacy-heading { padding-bottom: 32px; }
  .privacy-heading .eyebrow { margin-bottom: 13px; }
  .privacy-heading h1 { margin-bottom: 20px; font-size: clamp(38px, 11.5vw, 54px); line-height: .96; }
  html[lang="de"] .privacy-heading h1 { font-size: clamp(34px, 9.5vw, 46px); }
  .privacy-lead { margin-bottom: 24px; font-size: 15px; }
  .privacy-meta { flex-direction: column; gap: 6px; }
  .privacy-owner-placeholder { margin-top: 28px; padding: 22px 19px 20px; }
  .privacy-owner-placeholder h2 { font-size: 27px; }
  .privacy-owner-placeholder dl > div { grid-template-columns: 1fr; gap: 4px; padding: 11px 0; }
  .privacy-owner-placeholder dd { font-size: 12px; }
  .privacy-section { padding: 31px 0 28px; }
  .privacy-section-number { position: static; display: block; margin-bottom: 9px; }
  .privacy-section h2 { margin-bottom: 15px; font-size: 31px; }
  .privacy-section h3 { font-size: 22px; }
  .privacy-section p, .privacy-section li { font-size: 13px; }
  .privacy-section li { padding-left: 18px; }
  .privacy-effective { align-items: flex-start; flex-direction: column; gap: 5px; padding: 26px 0 0; }
  .mobile-order-dock { position: fixed; z-index: 110; inset: auto 0 0; height: 62px; display: grid; grid-template-columns: .62fr .62fr .85fr 1.35fr; color: #fff; background: var(--espresso); box-shadow: 0 -9px 30px rgba(25,19,15,.16); }
  .mobile-order-dock a, .mobile-order-dock button { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 7px; color: #fff; border: 0; border-right: 1px solid rgba(255,255,255,.15); background: transparent; cursor: pointer; font-size: 7.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
  .mobile-order-dock span { min-width: 0; overflow-wrap: anywhere; line-height: 1.14; text-align: center; }
  .mobile-order-dock button:last-child { justify-content: space-between; padding: 0 12px; border-right: 0; background: var(--terracotta); }
  .mobile-order-dock b { font-size: 10px; }
  .booking-dialog { width: 100%; height: 100dvh; max-height: none; margin: 0; border-radius: 0; }
  .booking-shell { min-height: 100dvh; display: flex; flex-direction: column; }
  .booking-header { position: sticky; z-index: 2; top: 0; min-height: 66px; padding: 0 18px; }
  .booking-header strong { font-size: 22px; }
  .booking-progress-wrap { padding: 18px; }
  .booking-progress { flex-direction: row; gap: 5px; }
  .booking-progress li { flex: 1; display: flex; gap: 5px; }
  .booking-progress li b { display: none; }
  .booking-progress li::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.25); }
  .booking-progress li:last-child::after { display: none; }
  .booking-content { flex: 1; padding: 29px 18px 92px; }
  .booking-step h2 { margin-bottom: 27px; font-size: 46px; }
  .booking-first-grid, .booking-form-grid { grid-template-columns: 1fr; }
  .booking-comment { grid-column: auto; }
  .booking-times { grid-template-columns: repeat(3, 1fr); }
  .booking-step-actions { align-items: stretch; flex-direction: column-reverse; }
  .booking-step-actions .button { width: 100%; }
  .cancellation-header { min-height: 66px; padding: 0 18px; }
  .cancellation-header > a:last-child { font-size: 8px; }
  .flow-header-actions { gap: 8px; }
  .flow-header-actions > a { max-width: 72px; font-size: 7px; line-height: 1.2; text-align: right; }
  .flow-header-actions .language-menu { width: 72px; }
  .flow-header-actions .language-menu-trigger { min-height: 34px; grid-template-columns: 1fr auto; padding: 0 9px; }
  .flow-header-actions .language-menu-current-code { font-size: 8px; }
  .flow-header-actions .language-menu-separator, .flow-header-actions .language-menu-current-name { display: none; }
  .flow-header-actions .language-menu-popover { width: 196px; }
  .cancellation-main { min-height: calc(100vh - 66px); padding: 30px 18px; }
  .cancellation-panel { padding: 30px 0; }
  .cancellation-details { grid-template-columns: 1fr; }
  .cancellation-actions { align-items: stretch; flex-direction: column; }
  .cancellation-actions .button { width: 100%; }
  .management-grid{grid-template-columns:1fr}.management-wide{grid-column:auto}.management-times>div{grid-template-columns:repeat(3,1fr)}.management-actions{align-items:stretch;flex-direction:column-reverse}.management-actions .button{width:100%}
  .menu-hero { padding-top: calc(var(--header) + 30px); }
  .menu-hero-copy h1 { font-size: 65px; }
  .menu-hero-image img { aspect-ratio: 1.25; }
  .menu-category-bar { top: var(--header); }
  .menu-category-bar .container { min-height: 58px; }
  .menu-tabs { margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); }
  .menu-tab { padding: 20px 0 17px; }
  .menu-tab span { display: none; }
  .category-order-link { display: none; }
  .menu-content { padding-top: 52px; padding-bottom: 75px; }
  .menu-category-heading h2 { font-size: 50px; }
  .menu-item, .menu-item.has-image { min-height: 142px; grid-template-columns: minmax(0, 1fr) auto; }
  .menu-item-image { display: none; }
  .menu-item.has-image p { grid-column: 1; }
  .menu-item h3 { font-size: 25px; }
  .menu-footnote { align-items: flex-start; flex-direction: column; }
  .menu-location-strip .container { align-items: flex-start; flex-direction: column; }
  .menu-location-strip .button { width: 100%; }
}

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

/* --------------------------------------------------------------------------
   Editorial motion layer — a restrained, premium enhancement of the existing
   visual system. It intentionally sits after the original responsive rules.
   -------------------------------------------------------------------------- */
:root {
  --wine: #6e251d;
  --cream-glow: #fff7e8;
  --deep-olive: #30382c;
}

body::before {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 160;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--terracotta), #e8a36f);
  box-shadow: 0 0 16px rgba(183, 71, 50, .42);
}

.site-header { border-bottom-color: rgba(33, 27, 23, .09); }
.brand-logo span { transition: color .3s ease, letter-spacing .3s ease; }
.brand-logo:hover span { color: var(--terracotta); letter-spacing: -.015em; }
.button { position: relative; overflow: hidden; isolation: isolate; }
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .18;
  transform: translateX(-115%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, #fff 48%, transparent 52%);
  transition: transform .65s var(--ease);
}
.button:hover::before { transform: translateX(115%) skewX(-18deg); }

/* Interactive hero pizza */
.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 31%, rgba(183, 71, 50, .09), transparent 29%),
    linear-gradient(127deg, var(--ivory-light) 0%, var(--ivory) 56%, #e8dcc9 100%);
}
.hero-section::before {
  content: "DA ELIO  ·  VERA PIZZA ITALIANA  ·  ";
  position: absolute;
  z-index: -1;
  left: -1.5vw;
  bottom: 80px;
  color: rgba(33, 27, 23, .032);
  font-family: var(--serif);
  font-size: clamp(76px, 12vw, 184px);
  font-style: italic;
  line-height: .8;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.hero-grid { min-height: calc(100svh - var(--header) - 92px); }
.hero-copy { position: relative; z-index: 3; }
.hero-copy h1 { text-wrap: balance; }
.hero-copy h1 em { text-shadow: 0 15px 40px rgba(148, 54, 36, .12); }

.hero-pizza-stage {
  --pizza-x: 0px;
  --pizza-y: 0px;
  --pizza-rx: 0deg;
  --pizza-ry: 0deg;
  min-height: 620px;
  padding: 0;
  isolation: isolate;
  perspective: 1100px;
  touch-action: pan-y;
}
.hero-pizza-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 4% 2% 4% 3%;
  border: 0;
  border-radius: 48% 52% 44% 56% / 55% 43% 57% 45%;
  transform: rotate(-3deg);
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.11), transparent 25%),
    radial-gradient(circle at 50% 55%, #566049 0%, #3f493b 50%, #30382c 100%);
  box-shadow: 0 45px 90px rgba(44, 38, 30, .2), inset 0 0 0 1px rgba(255,255,255,.08);
}
.hero-pizza-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1% -1% 1% 0;
  border: 1px solid rgba(79, 88, 69, .28);
  border-radius: 47% 53% 53% 47% / 44% 48% 52% 56%;
  transform: rotate(4deg);
  pointer-events: none;
}
.pizza-ambient, .pizza-object { position: absolute; inset: 0; }
.pizza-ambient { z-index: 0; pointer-events: none; }
.pizza-object {
  z-index: 2;
  inset: auto;
  top: 50%;
  left: 50%;
  width: min(91%, 600px);
  height: auto;
  aspect-ratio: 1;
  transform: translate3d(calc(-50% + var(--pizza-x)), calc(-50% + var(--pizza-y)), 0) rotateX(var(--pizza-rx)) rotateY(var(--pizza-ry));
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.2,.75,.25,1);
  will-change: transform;
}
.pizza-object img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 25px rgba(16, 14, 10, .35)) drop-shadow(0 8px 6px rgba(16, 14, 10, .18));
  animation: pizzaFloat 7s ease-in-out infinite;
  will-change: transform;
}
.pizza-shadow {
  position: absolute;
  z-index: 1;
  inset: 17% 11% 4%;
  border-radius: 50%;
  transform: translateY(29px) rotate(-3deg);
  background: rgba(10, 11, 8, .48);
  filter: blur(24px);
  animation: pizzaShadow 7s ease-in-out infinite;
}
@keyframes pizzaFloat {
  0%, 100% { transform: translateY(0) rotate(-1.4deg) scale(1); }
  50% { transform: translateY(-12px) rotate(1.2deg) scale(1.012); }
}
@keyframes pizzaShadow {
  0%, 100% { opacity: .54; transform: translateY(29px) rotate(-3deg) scale(.96); }
  50% { opacity: .38; transform: translateY(37px) rotate(-1deg) scale(.91); }
}
.pizza-orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.pizza-orbit-one { inset: 13%; animation: orbitPulse 7s ease-in-out infinite; }
.pizza-orbit-two { inset: 6%; border-style: dashed; opacity: .34; animation: orbitSpin 45s linear infinite; }
@keyframes orbitPulse { 50% { opacity: .4; transform: scale(1.04); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.pizza-spark { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: #e7b07c; box-shadow: 0 0 0 5px rgba(231,176,124,.08); }
.pizza-spark-one { top: 20%; left: 13%; animation: sparkDrift 5s ease-in-out infinite; }
.pizza-spark-two { right: 10%; bottom: 25%; animation: sparkDrift 6s 1.2s ease-in-out infinite reverse; }
.pizza-spark-three { left: 23%; bottom: 10%; width: 3px; height: 3px; animation: sparkDrift 4.5s .6s ease-in-out infinite; }
@keyframes sparkDrift { 50% { opacity: .35; transform: translate3d(5px,-12px,0); } }
.hero-pizza-stage .hero-ingredient-strip { top: 9%; right: -1%; transform: rotate(2deg); backdrop-filter: blur(8px); }
.hero-pizza-stage .hero-mini-card {
  left: -2%;
  bottom: 11%;
  width: min(244px, 43%);
  grid-template-columns: 47px minmax(0,1fr);
  gap: 14px;
  padding: 14px 16px;
  transform: rotate(-2deg);
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(14px);
}
.mini-card-index {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--ivory-light);
  border-radius: 50%;
  background: var(--terracotta);
  font-family: var(--serif);
  font-size: 17px;
}
.hero-pizza-stage .hero-handnote { right: 3%; bottom: 2%; color: var(--wine); }
.pizza-origin {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.66);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pizza-origin i { width: 22px; height: 1px; background: rgba(255,255,255,.33); }
.pizza-drag-hint {
  position: absolute;
  z-index: 4;
  top: 49%;
  right: -39px;
  color: rgba(33,27,23,.43);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

/* Scroll choreography and image treatment */
.reveal, .reveal-media {
  transition-duration: .9s;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal { transform: translateY(32px); }
.reveal-media { transform: translateY(38px) scale(.975); clip-path: inset(7% 0 0 0 round var(--radius-md)); }
.reveal-media.is-visible { clip-path: inset(0 round 0); }
.reveal-media img { transform: scale(1.045); transition: transform 1.3s var(--ease); }
.reveal-media.is-visible img { transform: scale(1); }
[data-parallax] { --parallax-y: 0px; }
[data-parallax] img { transform: translate3d(0,var(--parallax-y),0) scale(1.065); will-change: transform; }
[data-parallax].is-visible img { transform: translate3d(0,var(--parallax-y),0) scale(1.065); }

.brand-photo, .food-story-large, .food-story-small, .menu-hero-image, .location-photo { position: relative; }
.brand-photo::after, .food-story-large::after, .food-story-small::after, .menu-hero-image::before, .location-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.brand-section, .menu-preview, .food-story, .why-section, .location-section { position: relative; isolation: isolate; }
.brand-section::before, .food-story::before, .location-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 50%;
  width: min(38vw, 520px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(33,27,23,.18), transparent);
}

.home-menu-item, .menu-item, .feature-card, .review-card, .practical-panel {
  position: relative;
  transition: transform .5s var(--ease), background-color .4s ease, box-shadow .5s var(--ease), border-color .35s ease;
}
.home-menu-item::before, .menu-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4px -16px;
  border-radius: 14px;
  opacity: 0;
  transform: scale(.985);
  background: rgba(244,239,230,.7);
  transition: opacity .4s ease, transform .45s var(--ease);
}
.home-menu-item:hover, .menu-item:hover { transform: translateX(7px); }
.home-menu-item:hover::before, .menu-item:hover::before { opacity: 1; transform: scale(1); }
.home-menu-image, .menu-item-image { box-shadow: 0 10px 30px rgba(44,33,26,.09); transition: box-shadow .45s ease, transform .55s var(--ease); }
.home-menu-item:hover .home-menu-image, .menu-item:hover .menu-item-image { transform: rotate(-1.8deg) scale(1.04); box-shadow: 0 18px 35px rgba(44,33,26,.17); }
.home-menu-item:hover .home-menu-image img, .menu-item:hover .menu-item-image img { transform: scale(1.12); }
.feature-card:hover { z-index: 2; transform: translateY(-7px); background: rgba(255,255,255,.48); box-shadow: 0 24px 50px rgba(44,33,26,.09); }
.review-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.1); box-shadow: 0 30px 60px rgba(19,22,16,.18); }
.practical-panel:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(44,33,26,.08); }

/* Menu page — same material language, more editorial depth */
.menu-page .menu-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 81% 18%, rgba(183,71,50,.12), transparent 28%),
    linear-gradient(135deg, var(--ivory-light), #ebe0cf);
}
.menu-page .menu-hero::after {
  content: "MENU";
  position: absolute;
  right: -1vw;
  bottom: -4vw;
  color: rgba(33,27,23,.035);
  font-family: var(--serif);
  font-size: clamp(120px, 24vw, 340px);
  line-height: .72;
  letter-spacing: -.08em;
}
.menu-hero-image { transform-origin: center; transition: transform .8s var(--ease), box-shadow .8s var(--ease); }
.menu-hero-image:hover { transform: rotate(.6deg) scale(1.012); box-shadow: 0 34px 80px rgba(49,38,29,.19); }
.menu-category-bar { backdrop-filter: blur(16px); background: rgba(255,253,249,.88); }
.menu-tab { position: relative; }
.menu-tab::after { transition: width .35s var(--ease), background .25s ease; }
.menu-item { border-bottom-color: rgba(33,27,23,.11); }
.menu-item h3, .home-menu-item h3 { transition: color .25s ease; }
.menu-item:hover h3, .home-menu-item:hover h3 { color: var(--terracotta-dark); }
.menu-list.is-changing { opacity: 0; transform: translateY(12px) scale(.995); }

.final-cta { isolation: isolate; overflow: hidden; }
.final-cta-image { transform: scale(1.08); transition: transform 6s cubic-bezier(.16,.7,.25,1); }
.final-cta.in-view .final-cta-image { transform: scale(1); }
.final-cta-overlay { background: linear-gradient(90deg, rgba(24,18,14,.83) 0%, rgba(24,18,14,.55) 48%, rgba(24,18,14,.2) 100%); }
.location-map iframe { transition: filter .7s ease, transform 1.1s var(--ease); }
.location-map:hover iframe { filter: saturate(.9) sepia(.06) contrast(.98); transform: scale(1.015); }

@media (max-width: 1120px) {
  .hero-pizza-stage { min-height: 560px; }
  .pizza-object { width: min(94%, 540px); }
  .pizza-drag-hint { display: none; }
}

@media (max-width: 860px) {
  .hero-section { min-height: auto; }
  .hero-grid { min-height: 0; }
  .hero-pizza-stage { min-height: 570px; margin: -8px auto 10px; padding: 0; width: min(100%, 680px); }
  .hero-pizza-stage::before { inset: 4% 5% 5%; }
  .hero-pizza-stage::after { inset: 2% 3%; }
  .pizza-object { width: min(84%, 520px); }
  .hero-pizza-stage .hero-mini-card { left: 3%; bottom: 9%; }
  .hero-pizza-stage .hero-ingredient-strip { right: 3%; }
  .pizza-origin { right: 8%; }
}

@media (max-width: 620px) {
  body::before { opacity: .025; }
  .hero-section { padding-top: calc(var(--header) + 26px); }
  .hero-copy { padding-top: 22px; }
  .hero-pizza-stage { min-height: 430px; margin-top: -3px; padding-bottom: 0; }
  .hero-pizza-stage::before { inset: 5% 1% 6%; }
  .hero-pizza-stage::after { inset: 3% 0 5%; }
  .pizza-object { width: min(91%, 410px); }
  .hero-pizza-stage .hero-ingredient-strip { top: 8%; right: 0; font-size: 6px; }
  .hero-pizza-stage .hero-mini-card { left: 1%; bottom: 7%; width: min(210px, 61%); grid-template-columns: 38px minmax(0,1fr); padding: 10px 11px; }
  .mini-card-index { width: 36px; height: 36px; font-size: 14px; }
  .hero-pizza-stage .hero-mini-card strong { font-size: 16px; }
  .pizza-origin { right: 4%; bottom: 8%; }
  .hero-facts { margin-top: 10px; }
  .home-menu-item:hover, .menu-item:hover { transform: none; }
  .feature-card:hover, .review-card:hover, .practical-panel:hover { transform: none; }
  .reveal, .reveal-media { transition-duration: .72s; }
  [data-parallax] img, [data-parallax].is-visible img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pizza-object { transform: translate(-50%, -50%); }
  .final-cta-image { transform: none; }
  [data-parallax] img, [data-parallax].is-visible img { transform: none; }
}

/* Follow-up refinements */
.hero-pizza-stage.reveal-media,
.hero-pizza-stage.reveal-media.is-visible {
  overflow: visible;
  clip-path: none;
  background: transparent;
}

.location-photo {
  min-height: clamp(430px, 39vw, 570px);
  margin-top: 34px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--espresso);
  box-shadow: 0 30px 80px rgba(37, 29, 23, .16);
  cursor: default;
}
.location-photo > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.82) contrast(1.04) brightness(.91);
  transition: transform 1.4s var(--ease), filter .8s ease;
}
.location-photo[data-parallax] > img,
.location-photo[data-parallax].is-visible > img {
  transform: translate3d(0,var(--parallax-y),0) scale(1.075);
}
.location-photo:hover > img,
.location-photo[data-parallax].is-visible:hover > img {
  transform: translate3d(0,var(--parallax-y),0) scale(1.115);
  filter: saturate(.98) contrast(1.02) brightness(.96);
}
.location-photo-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,17,14,.06) 25%, rgba(21,17,14,.28) 66%, rgba(21,17,14,.72) 100%),
    linear-gradient(90deg, rgba(21,17,14,.2), transparent 42%);
  pointer-events: none;
}
.location-photo::after {
  z-index: 4;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.19);
}
.location-photo figcaption {
  position: absolute;
  z-index: 5;
  inset: auto 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  color: #fff;
}
.location-photo-caption {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 15px 19px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 14px;
  background: rgba(28,23,19,.67);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.location-photo-caption small {
  margin-bottom: 2px;
  color: #efad9e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.location-photo-caption strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.location-photo figcaption .location-photo-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 13px 0 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: var(--terracotta);
  box-shadow: 0 16px 38px rgba(65,20,14,.24);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  transition: transform .35s var(--ease), background .25s ease, box-shadow .35s ease;
}
.location-photo figcaption .location-photo-link b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  transition: transform .35s var(--ease);
}
.location-photo figcaption .location-photo-link:hover {
  transform: translateY(-3px);
  background: var(--terracotta-dark);
  box-shadow: 0 22px 46px rgba(65,20,14,.32);
}
.location-photo figcaption .location-photo-link:hover b { transform: rotate(45deg); }
.location-entrance-marker {
  position: absolute;
  z-index: 5;
  top: 48%;
  left: 82%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.location-entrance-marker i {
  position: relative;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 7px rgba(183,71,50,.24);
}
.location-entrance-marker i::after {
  content: "";
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  animation: entrancePulse 2.4s ease-out infinite;
}
.location-entrance-marker b {
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(28,23,19,.72);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
@keyframes entrancePulse {
  0% { opacity: .9; transform: scale(.65); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

@media (max-width: 620px) {
  .location-photo { min-height: 460px; margin-top: 20px; border-radius: 18px; }
  .location-photo::after { border-radius: 18px; }
  .location-photo > img { object-position: 64% center; }
  .location-photo figcaption { inset: auto 13px 13px; align-items: stretch; flex-direction: column; gap: 9px; }
  .location-photo-caption { padding: 12px 14px; }
  .location-photo-caption strong { overflow: visible; font-size: 19px; text-overflow: clip; white-space: normal; }
  .location-photo-link { min-height: 49px; justify-content: space-between; width: 100%; padding-left: 15px; }
  .location-entrance-marker { top: 44%; left: 72%; }
}

@media (prefers-reduced-motion: reduce) {
  .location-photo[data-parallax] > img,
  .location-photo[data-parallax].is-visible > img,
  .location-photo:hover > img { transform: scale(1.04); }
}

/* Content-density refinements */
.hero-section { min-height: auto; padding-bottom: 22px; }
.hero-grid { min-height: 620px; }
.hero-pizza-stage .pizza-object { width: min(94%, 620px); }

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}
.feature-card,
.feature-card + .feature-card {
  min-height: 214px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 23px 24px 24px;
  border: 1px solid rgba(33,27,23,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.42);
  box-shadow: 0 12px 34px rgba(44,33,26,.035);
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(183,71,50,.1);
  border-radius: 50%;
  transition: transform .7s var(--ease), border-color .35s ease;
}
.feature-card:hover::after { transform: scale(1.16); border-color: rgba(183,71,50,.2); }
.feature-card .feature-index { align-self: start; color: var(--terracotta); font-family: var(--serif); font-size: 16px; }
.feature-icon {
  position: absolute;
  top: 18px;
  right: 19px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33,27,23,.11);
  border-radius: 50%;
  color: var(--olive-dark);
  background: rgba(255,255,255,.58);
  transition: color .35s ease, background .35s ease, transform .55s var(--ease);
}
.feature-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.feature-card:hover .feature-icon { color: #fff; background: var(--olive-dark); transform: rotate(-7deg) scale(1.06); }
.feature-card h3 { align-self: end; margin: 42px 0 11px; font-size: clamp(24px, 2.2vw, 31px); }
.feature-card p { max-width: 420px; font-size: 12px; line-height: 1.62; }

.practical-grid { grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr); }
.payment-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.payment-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 52px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  color: rgba(33,27,23,.76);
  font-size: 12px;
}
.payment-list li:last-child { border-bottom: 1px solid var(--line); }
.payment-list li:not(:last-child)::after { display: none; }
.payment-list li > i {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33,27,23,.11);
  border-radius: 10px;
  color: var(--terracotta);
  background: rgba(255,255,255,.58);
}
.payment-list svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.payment-list .mastercard-icon svg { stroke: none; }
.payment-list .mastercard-icon svg circle:first-child { fill: #d94b32; }
.payment-list .mastercard-icon svg circle:last-child { fill: #e7a13a; fill-opacity: .82; }
.payment-list .visa-icon svg { stroke-width: 1.35; }

/* Menu opening visual: editorial collage with a one-time entrance sequence. */
.menu-dish-stage {
  min-height: 420px;
  overflow: visible;
  isolation: isolate;
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 28%, rgba(220,148,93,.24), transparent 27%),
    linear-gradient(145deg, #414b3a, #293128);
  box-shadow: 0 30px 75px rgba(41,35,28,.18);
}
.menu-dish-stage::after { display: none; }
.menu-dish-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 25px;
  pointer-events: none;
}
.menu-collage-main {
  position: absolute;
  z-index: 1;
  inset: 34px 76px 34px 30px;
  overflow: hidden;
  border-radius: 25px 90px 25px 25px;
  transform: translateY(18px) rotate(-1.3deg) scale(.97);
  opacity: 0;
  box-shadow: 0 25px 55px rgba(9,11,8,.25);
  transition: opacity .85s ease .12s, transform 1.05s var(--ease) .12s;
}
.menu-dish-stage.is-visible .menu-collage-main { opacity: 1; transform: none; }
.menu-collage-main img,
.menu-dish-stage.is-visible .menu-collage-main img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transform: scale(1.07);
  filter: saturate(.88) contrast(1.03) brightness(.86);
  transition: transform 1.5s var(--ease), filter .7s ease;
}
.menu-dish-stage:hover .menu-collage-main img { transform: scale(1.115); filter: saturate(1) contrast(1.02) brightness(.91); }
.menu-dish {
  position: absolute;
  z-index: 4;
  opacity: 0;
  transform: translate3d(24px,18px,0) scale(.82) rotate(7deg);
  transition: opacity .65s ease, transform 1s var(--ease);
}
.menu-dish-stage.is-visible .menu-dish { opacity: 1; transform: none; }
.menu-dish img,
.menu-dish-stage.is-visible .menu-dish img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 7px solid rgba(255,253,249,.93);
  border-radius: 50%;
  box-shadow: 0 24px 48px rgba(9,11,8,.34);
  transform: none;
}
.menu-dish span {
  position: absolute;
  right: -8px;
  bottom: 2px;
  padding: 6px 10px;
  color: var(--espresso);
  border-radius: 999px;
  background: var(--ivory-light);
  box-shadow: 0 8px 20px rgba(9,11,8,.18);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}
.menu-dish-pizza { top: -22px; right: -22px; width: 150px; height: 150px; transition-delay: .4s; }
.menu-dish-pasta { right: 23px; bottom: -30px; width: 128px; height: 128px; transition-delay: .58s; }
.menu-dish-pizza span { right: auto; left: -8px; }
.menu-dish-stage figcaption {
  z-index: 6;
  right: auto;
  bottom: 47px;
  left: 48px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 13px;
  border-radius: 9px;
  background: rgba(25,22,18,.58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.menu-dish-stage figcaption span { color: #fff; font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.menu-dish-stage figcaption b { color: #efad9e; font-family: var(--serif); font-size: 16px; font-style: italic; font-weight: 500; letter-spacing: 0; text-transform: none; }

@media (max-width: 860px) {
  .hero-grid { min-height: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card + .feature-card { min-height: 190px; }
  .menu-dish-stage { width: calc(100% - 20px); min-height: 390px; margin: 12px 0 26px; }
}

@media (max-width: 620px) {
  .hero-section { padding-bottom: 5px; }
  .hero-pizza-stage { min-height: 405px; }
  .feature-card, .feature-card + .feature-card { min-height: 0; padding: 21px; }
  .feature-card h3 { margin-top: 34px; }
  .practical-grid { grid-template-columns: 1fr; }
  .menu-dish-stage { min-height: 330px; width: calc(100% - 10px); margin-left: 0; border-radius: 23px; }
  .menu-dish-stage::before { inset: 10px; border-radius: 17px; }
  .menu-collage-main { inset: 24px 45px 24px 18px; border-radius: 18px 58px 18px 18px; }
  .menu-dish-pizza { top: -13px; right: -14px; width: 105px; height: 105px; }
  .menu-dish-pasta { right: 9px; bottom: -20px; width: 92px; height: 92px; }
  .menu-dish img, .menu-dish-stage.is-visible .menu-dish img { border-width: 5px; }
  .menu-dish span { display: none; }
  .menu-dish-stage figcaption { bottom: 33px; left: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-collage-main, .menu-dish { opacity: 1; transform: none; }
}

/* Menu hero — the food photography is now part of the page atmosphere rather
   than a separate framed card. */
.menu-page .menu-hero {
  min-height: 610px;
  padding-top: var(--header);
  padding-bottom: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 33% 35%, rgba(255,255,255,.72), transparent 31%),
    linear-gradient(120deg, var(--ivory-light) 0%, var(--ivory) 52%, #ddcdb7 100%);
}
.menu-page .menu-hero::after {
  z-index: 1;
  right: auto;
  bottom: -1.5vw;
  left: 27%;
  color: rgba(255,255,255,.16);
  font-size: clamp(150px, 26vw, 370px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.menu-hero-backdrop {
  position: absolute;
  z-index: 0;
  inset: var(--header) 0 0 35%;
  overflow: hidden;
  opacity: .93;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 12%, #000 31%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 12%, #000 31%, #000 100%);
}
.menu-hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244,239,230,.42), transparent 38%),
    linear-gradient(180deg, rgba(32,27,22,.04), transparent 50%, rgba(32,27,22,.26));
  pointer-events: none;
}
.menu-hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.82) contrast(1.05) brightness(.88);
  transform-origin: 65% 50%;
  animation: menuBackdropEnter 1.35s var(--ease) both;
}
@keyframes menuBackdropEnter {
  from { opacity: 0; transform: scale(1.1) translateX(28px); filter: saturate(.55) contrast(1.02) brightness(.96); }
  to { opacity: 1; transform: scale(1.035); filter: saturate(.82) contrast(1.05) brightness(.88); }
}
.menu-page .menu-hero-grid {
  position: relative;
  z-index: 3;
  min-height: calc(610px - var(--header));
  display: block;
}
.menu-page .menu-hero-copy {
  width: min(47%, 580px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(610px - var(--header));
  padding: 45px 0 54px;
  text-shadow: 0 1px 22px rgba(251,248,242,.4);
}
.menu-page .menu-hero-copy h1 { font-size: clamp(72px, 8vw, 112px); }
.menu-page .menu-hero-copy > p:not(.eyebrow) { max-width: 465px; }
.menu-hero-signature {
  position: absolute;
  right: 0;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: rgba(255,255,255,.87);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(31,27,22,.48);
  box-shadow: 0 15px 35px rgba(24,18,14,.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-hero-signature i { width: 18px; height: 1px; background: rgba(255,255,255,.34); }

@media (max-width: 860px) {
  .menu-page .menu-hero { min-height: 760px; padding-top: var(--header); }
  .menu-page .menu-hero-grid { min-height: 690px; }
  .menu-page .menu-hero-copy { width: 62%; min-height: 690px; padding-top: 15px; padding-bottom: 310px; justify-content: center; }
  .menu-hero-backdrop { inset: 40% 0 0 10%; -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 23%); mask-image: linear-gradient(180deg, transparent 0%, #000 23%); }
  .menu-hero-signature { right: var(--gutter); bottom: 22px; }
}

@media (max-width: 620px) {
  .menu-page .menu-hero { min-height: 700px; }
  .menu-page .menu-hero-grid { min-height: 634px; }
  .menu-page .menu-hero-copy { width: 100%; min-height: 634px; padding: 24px 0 330px; justify-content: flex-start; }
  .menu-page .menu-hero-copy h1 { font-size: 67px; }
  .menu-page .menu-hero-copy > p:not(.eyebrow) { max-width: 330px; }
  .menu-hero-backdrop { inset: 45% -18% 0 0; opacity: .88; -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%); mask-image: linear-gradient(180deg, transparent 0%, #000 24%); }
  .menu-hero-backdrop img { object-position: 42% center; }
  .menu-hero-signature { right: auto; bottom: 15px; left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-hero-backdrop img { animation: none; transform: scale(1.035); }
}

/* About section — an architectural portal rather than a framed photograph. */
.brand-portal {
  --interior-x: 0px;
  --interior-y: 0px;
  --interior-rx: 0deg;
  --interior-ry: 0deg;
  --interior-image-x: 0px;
  --interior-image-y: 0px;
  position: relative;
  min-height: clamp(470px, 43vw, 580px);
  margin: 0;
  overflow: visible;
  isolation: isolate;
  perspective: 1100px;
}
.brand-portal.reveal-media,
.brand-portal.reveal-media.is-visible { overflow: visible; clip-path: none; background: transparent; }
.brand-portal::after { display: none; }
.interior-ambient {
  position: absolute;
  z-index: 0;
  inset: 2% 1% 3% 4%;
  overflow: hidden;
  border-radius: 49% 51% 43% 57% / 38% 45% 55% 62%;
  transform: rotate(-2.5deg);
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.13), transparent 27%),
    radial-gradient(circle at 70% 70%, rgba(183,71,50,.28), transparent 30%),
    linear-gradient(145deg, #59614d, #30382c 68%, #282f25);
  box-shadow: 0 35px 75px rgba(42,35,28,.17), inset 0 0 0 1px rgba(255,255,255,.08);
}
.interior-ambient::before,
.interior-ambient::after,
.interior-ambient i {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
}
.interior-ambient::before { width: 74%; aspect-ratio: 1; top: -24%; right: -8%; }
.interior-ambient::after { width: 52%; aspect-ratio: 1; bottom: -22%; left: -6%; }
.interior-ambient i:first-child { inset: 11%; }
.interior-ambient i:nth-child(2) { inset: 17%; border-style: dashed; opacity: .48; }
.interior-ambient > span {
  position: absolute;
  right: 2%;
  bottom: 9%;
  color: rgba(255,255,255,.045);
  font-family: var(--serif);
  font-size: clamp(74px, 9vw, 134px);
  font-style: italic;
  line-height: .7;
  white-space: nowrap;
}
.interior-frame {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 50%;
  width: 80%;
  height: 78%;
  overflow: hidden;
  border: 7px solid rgba(255,253,249,.9);
  border-radius: 49% 49% 20px 20px / 35% 35% 20px 20px;
  transform: translate3d(calc(-50% + var(--interior-x)), calc(-50% + var(--interior-y)), 0) rotateX(var(--interior-rx)) rotateY(var(--interior-ry));
  transform-style: preserve-3d;
  transform-origin: center;
  background: #b88d70;
  box-shadow: 0 32px 60px rgba(21,18,14,.29), inset 0 0 0 1px rgba(255,255,255,.18);
  transition: transform .5s cubic-bezier(.2,.75,.25,1), box-shadow .5s ease;
  will-change: transform;
}
.interior-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.03) 42%, rgba(20,16,12,.37));
  pointer-events: none;
}
.interior-frame img,
.brand-portal.reveal-media.is-visible .interior-frame img {
  width: calc(100% + 24px);
  max-width: none;
  height: calc(100% + 20px);
  margin: -10px -12px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.86) contrast(1.04) brightness(.92);
  transform: translate3d(var(--interior-image-x), var(--interior-image-y), 0) scale(1.055);
  transition: transform .65s var(--ease), filter .55s ease;
  will-change: transform;
}
.brand-portal:hover .interior-frame { box-shadow: 0 40px 76px rgba(21,18,14,.34), inset 0 0 0 1px rgba(255,255,255,.22); }
.brand-portal:hover .interior-frame img { filter: saturate(.98) contrast(1.03) brightness(.96); }
.interior-light {
  position: absolute;
  z-index: 2;
  top: -25%;
  left: -34%;
  width: 58%;
  height: 160%;
  transform: rotate(17deg);
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  transition: left 1.1s var(--ease), opacity .45s ease;
  pointer-events: none;
}
.brand-portal:hover .interior-light { left: 88%; opacity: 1; }
.brand-portal figcaption {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 11%;
  min-width: min(270px, 50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 13px 13px 13px 17px;
  color: var(--espresso);
  border: 1px solid rgba(33,27,23,.1);
  border-radius: 12px;
  background: rgba(255,253,249,.91);
  box-shadow: 0 18px 42px rgba(35,28,22,.2);
  transform: rotate(-1.7deg);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
}
.brand-portal figcaption span { font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.brand-portal figcaption b {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--terracotta);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
}
.interior-coordinates {
  position: absolute;
  z-index: 5;
  top: 7%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(32,38,29,.58);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.interior-coordinates i { width: 17px; height: 1px; background: rgba(255,255,255,.32); }

@media (max-width: 860px) {
  .brand-portal { width: min(100%, 670px); min-height: 535px; margin: 0 auto; }
  .interior-frame { width: 82%; }
}

@media (max-width: 620px) {
  .brand-portal { min-height: 430px; }
  .interior-ambient { inset: 4% 0 4% 2%; }
  .interior-frame { width: 86%; height: 76%; border-width: 5px; border-radius: 48% 48% 16px 16px / 30% 30% 16px 16px; }
  .brand-portal figcaption { left: 1%; bottom: 8%; min-width: min(250px, 73%); padding: 10px 10px 10px 13px; }
  .interior-coordinates { top: 9%; right: 1%; }
}

@media (prefers-reduced-motion: reduce) {
  .interior-frame { transform: translate(-50%, -50%); }
  .interior-frame img, .brand-portal.reveal-media.is-visible .interior-frame img { transform: scale(1.055); }
}

/* Frameless interior treatment: the photograph dissolves into the section and
   moves beneath an organic soft mask. */
.brand-section { overflow: hidden; }
.brand-portal { min-height: clamp(500px, 44vw, 610px); }
.brand-portal .interior-ambient {
  inset: -5% -8% -4% -6%;
  overflow: visible;
  border-radius: 0;
  transform: none;
  background:
    radial-gradient(ellipse 62% 70% at 44% 51%, rgba(69,79,61,.28), rgba(69,79,61,.08) 52%, transparent 76%),
    radial-gradient(circle at 19% 29%, rgba(183,71,50,.09), transparent 24%);
  box-shadow: none;
  filter: blur(1px);
}
.brand-portal .interior-ambient::before,
.brand-portal .interior-ambient::after,
.brand-portal .interior-ambient i { display: none; }
.brand-portal .interior-ambient > span {
  right: auto;
  bottom: 8%;
  left: -2%;
  color: rgba(79,88,69,.045);
  font-size: clamp(92px, 12vw, 170px);
}
.brand-portal .interior-frame {
  top: 50%;
  left: 46%;
  width: 108%;
  height: 104%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 62% 72% at 46% 50%, #000 0%, #000 55%, rgba(0,0,0,.94) 66%, rgba(0,0,0,.5) 76%, transparent 91%);
  mask-image: radial-gradient(ellipse 62% 72% at 46% 50%, #000 0%, #000 55%, rgba(0,0,0,.94) 66%, rgba(0,0,0,.5) 76%, transparent 91%);
}
.brand-portal:hover .interior-frame { box-shadow: none; }
.brand-portal .interior-frame::after {
  background:
    radial-gradient(circle at 33% 28%, transparent 0%, transparent 36%, rgba(29,22,17,.12) 76%),
    linear-gradient(180deg, transparent 54%, rgba(24,18,14,.25));
}
.brand-portal .interior-frame img,
.brand-portal.reveal-media.is-visible .interior-frame img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-position: 48% center;
  filter: saturate(.88) contrast(1.04) brightness(.94);
  transform: translate3d(var(--interior-image-x), var(--interior-image-y), 0) scale(1.12);
}
.brand-portal figcaption {
  left: 5%;
  bottom: 9%;
  min-width: 0;
  display: block;
  margin: 0;
  padding: 0 0 6px;
  color: rgba(255,255,255,.91);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(-1deg);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-shadow: 0 2px 15px rgba(17,13,10,.72);
}
.brand-portal figcaption span { font-size: 7px; letter-spacing: .15em; }
.interior-hotspot {
  position: absolute;
  z-index: 6;
  top: 35%;
  left: 65%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(17,13,10,.8);
}
.interior-hotspot i {
  position: relative;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(183,71,50,.2);
}
.interior-hotspot i::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  animation: entrancePulse 2.5s ease-out infinite;
}
.interior-hotspot span { font-family: var(--serif); font-size: 13px; font-style: italic; }

@media (max-width: 860px) {
  .brand-portal .interior-frame { left: 50%; width: 105%; }
}

@media (max-width: 620px) {
  .brand-portal { min-height: 420px; }
  .brand-portal .interior-frame { width: 118%; height: 108%; -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 0%, #000 58%, rgba(0,0,0,.72) 75%, transparent 92%); mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 0%, #000 58%, rgba(0,0,0,.72) 75%, transparent 92%); }
  .brand-portal figcaption { left: 7%; bottom: 9%; max-width: 64%; }
  .interior-hotspot { top: 36%; left: 68%; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-portal .interior-frame img,
  .brand-portal.reveal-media.is-visible .interior-frame img { transform: scale(1.12); }
}

/* Cinematic about scene — a full-bleed interior, integrated into the page. */
.brand-cinematic {
  position: relative;
  min-height: clamp(650px, 62vw, 790px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory-light);
  background: #1d1a16;
}
.brand-cinematic::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 12%;
  right: -11vw;
  left: auto;
  width: clamp(390px, 43vw, 680px);
  height: clamp(390px, 43vw, 680px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  transform: none;
  background: transparent;
  pointer-events: none;
}
.brand-cinematic::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,16,13,.08) 0%, rgba(20,16,13,.16) 34%, rgba(20,16,13,.58) 57%, rgba(20,16,13,.92) 100%),
    linear-gradient(180deg, rgba(20,16,13,.22), transparent 28%, transparent 68%, rgba(20,16,13,.42));
  pointer-events: none;
}
.brand-cinematic .brand-portal,
.brand-cinematic .brand-portal.reveal-media,
.brand-cinematic .brand-portal.reveal-media.is-visible {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  opacity: 1;
  transform: none;
  clip-path: none;
  perspective: none;
}
.brand-cinematic .interior-frame {
  top: 50%;
  left: 50%;
  width: 108%;
  height: 108%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #4c382c;
  box-shadow: none;
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate(-50%, -50%);
  transition: none;
}
.brand-cinematic .interior-frame::after {
  background:
    radial-gradient(circle at 26% 30%, rgba(255,223,184,.12), transparent 34%),
    linear-gradient(180deg, rgba(16,12,10,.03), rgba(16,12,10,.18));
}
.brand-cinematic .interior-frame img,
.brand-cinematic .brand-portal.reveal-media.is-visible .interior-frame img {
  width: calc(100% + 34px);
  max-width: none;
  height: calc(100% + 28px);
  margin: -14px -17px;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(.76) contrast(1.06) brightness(.76);
  transform: translate3d(var(--interior-image-x), var(--interior-image-y), 0) scale(1.055);
  transition: transform .7s var(--ease), filter .55s ease;
}
.brand-cinematic:hover .interior-frame img {
  filter: saturate(.88) contrast(1.06) brightness(.8);
}
.brand-cinematic .interior-light {
  top: -35%;
  left: -28%;
  width: 32%;
  height: 180%;
  opacity: .34;
  transform: rotate(13deg);
  background: linear-gradient(90deg, transparent, rgba(255,244,220,.12), transparent);
  animation: interiorLightSweep 11s ease-in-out infinite;
}
@keyframes interiorLightSweep {
  0%, 20% { left: -32%; opacity: 0; }
  46%, 62% { opacity: .34; }
  82%, 100% { left: 108%; opacity: 0; }
}
.brand-cinematic .brand-grid {
  position: relative;
  z-index: 2;
  min-height: clamp(650px, 62vw, 790px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, .86fr);
  align-items: center;
}
.brand-cinematic .brand-copy {
  grid-column: 2;
  max-width: 620px;
  padding: 76px 0 72px clamp(28px, 4vw, 66px);
  text-shadow: 0 2px 22px rgba(14,10,8,.22);
}
.brand-cinematic .brand-copy .eyebrow {
  color: #ef9a87;
}
.brand-cinematic .brand-copy h2 {
  margin-bottom: 34px;
  color: #fffaf2;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -.045em;
}
.brand-cinematic .brand-copy h2 em {
  color: #e4c5a6;
}
.brand-cinematic .brand-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255,250,242,.76);
  font-size: 15px;
  line-height: 1.72;
}
.brand-cinematic .inline-link {
  color: #fffaf2;
  border-bottom-color: rgba(255,250,242,.55);
}
.brand-cinematic .brand-portal figcaption {
  z-index: 4;
  right: auto;
  bottom: 34px;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0 0 7px;
  color: rgba(255,250,242,.75);
  border: 0;
  border-bottom: 1px solid rgba(255,250,242,.34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-shadow: 0 2px 15px rgba(10,7,5,.72);
}
.brand-cinematic .brand-portal figcaption span {
  font-size: 8px;
  letter-spacing: .16em;
}
.brand-cinematic .interior-hotspot,
.brand-cinematic .interior-ambient {
  display: none;
}

@media (max-width: 980px) {
  .brand-cinematic,
  .brand-cinematic .brand-grid { min-height: 720px; }
  .brand-cinematic::after {
    background:
      linear-gradient(90deg, rgba(20,16,13,.12) 0%, rgba(20,16,13,.28) 35%, rgba(20,16,13,.82) 68%, rgba(20,16,13,.94) 100%),
      linear-gradient(180deg, rgba(20,16,13,.18), transparent 54%, rgba(20,16,13,.42));
  }
  .brand-cinematic .brand-grid { grid-template-columns: minmax(0,.76fr) minmax(420px,1fr); }
  .brand-cinematic .brand-copy { padding-left: 32px; }
}

@media (max-width: 720px) {
  .brand-cinematic,
  .brand-cinematic .brand-grid { min-height: 760px; }
  .brand-cinematic::before {
    top: auto;
    right: -58%;
    bottom: -3%;
    width: 125vw;
    height: 125vw;
  }
  .brand-cinematic::after {
    background:
      linear-gradient(180deg, rgba(18,14,11,.12) 0%, rgba(18,14,11,.22) 34%, rgba(18,14,11,.76) 58%, rgba(18,14,11,.96) 100%),
      linear-gradient(90deg, rgba(18,14,11,.16), rgba(18,14,11,.38));
  }
  .brand-cinematic .interior-frame {
    width: 116%;
    height: 108%;
  }
  .brand-cinematic .interior-frame img,
  .brand-cinematic .brand-portal.reveal-media.is-visible .interior-frame img {
    object-position: 42% center;
    transform: scale(1.07);
  }
  .brand-cinematic .brand-grid {
    grid-template-columns: 1fr;
    align-items: end;
  }
  .brand-cinematic .brand-copy {
    grid-column: 1;
    max-width: 610px;
    padding: 330px 0 76px;
    text-shadow: 0 3px 24px rgba(10,7,5,.48);
  }
  .brand-cinematic .brand-copy h2 {
    max-width: 540px;
    font-size: clamp(42px, 11vw, 58px);
  }
  .brand-cinematic .brand-copy > p:not(.eyebrow) {
    color: rgba(255,250,242,.82);
  }
  .brand-cinematic .brand-portal figcaption { display: none; }
}

@media (max-width: 430px) {
  .brand-cinematic,
  .brand-cinematic .brand-grid { min-height: 730px; }
  .brand-cinematic .brand-copy { padding: 292px 0 68px; }
  .brand-cinematic .brand-copy h2 { margin-bottom: 24px; font-size: 43px; }
  .brand-cinematic .brand-copy > p:not(.eyebrow) { margin-bottom: 25px; font-size: 14px; line-height: 1.64; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-cinematic .interior-light { animation: none; opacity: .12; }
  .brand-cinematic .interior-frame img,
  .brand-cinematic .brand-portal.reveal-media.is-visible .interior-frame img { transform: scale(1.055); }
}
