:root {
  --ink: #0c2948;
  --hero-dark: #173b5b;
  --paper: #f3f6f9;
  --surface: #ffffff;
  --surface-alt: #e8eef5;
  --surface-strong: #dce7f1;
  --line: rgba(12, 41, 72, .1);
  --green: #dceadf;
  --accent: #3f78a6;
  --accent-secondary: #d69a32;
  --accent-secondary-panel: #fff5e4;
  --page-gutter: clamp(24px, 4.6vw, 76px);
  --type-xs: 11px;
  --type-sm: clamp(12px, .78vw, 14px);
  --type-base: clamp(15px, 1vw, 17px);
  --type-lead: clamp(17px, 1.25vw, 20px);
  --type-dish: clamp(20px, 1.7vw, 26px);
  --type-title-sm: clamp(30px, 3.1vw, 44px);
  --type-title-md: clamp(42px, 4.6vw, 68px);
  --type-title-lg: clamp(50px, 5.6vw, 82px);
  --type-menu: clamp(46px, 5.1vw, 74px);
  --font-serif: "Fraunces", Georgia, serif;
  --serif-tracking: 0em;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: "Inter", sans-serif; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }

.site-header {
  height: 108px; padding: 0 var(--page-gutter); display: flex; align-items: center;
  justify-content: space-between; border: 0; outline: 0; box-shadow: none; background: var(--paper);
  position: sticky; top: 0; z-index: 30;
}
.site-header::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--paper); pointer-events: none; }
.logo { display: inline-flex; align-items: center; width: 150px; height: 58px; cursor: pointer; user-select: none; -webkit-user-select: none; }
.logo img { display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; user-select: none; -webkit-user-select: none; -webkit-user-drag: none; filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(2319%) hue-rotate(176deg) brightness(91%) contrast(104%); }
.footer-logo img { filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(2319%) hue-rotate(176deg) brightness(91%) contrast(104%); }
.header-actions { display: flex; align-items: center; gap: 34px; }
.language { display: flex; align-items: center; gap: 20px; font-size: var(--type-base); }
.language a { border: 0; background: none; color: rgba(12,41,72,.48); cursor: pointer; padding: 8px 0; }
.language a.active { color: var(--ink); font-weight: 600; }
.language span { height: 30px; width: 1px; background: var(--line); }
.menu-button { width: 54px; height: 54px; border: 0; border-radius: 50%; background: var(--hero-dark); display: block; cursor: pointer; position: relative; z-index: 31; }
.menu-button i { position: absolute; left: 50%; width: 22px; height: 1.5px; background: white; transform: translateX(-50%); transition: top .3s ease, transform .3s ease, opacity .18s ease; }
.menu-button i:nth-child(1) { top: 19px; }
.menu-button i:nth-child(2) { top: 26px; }
.menu-button i:nth-child(3) { top: 33px; }
.menu-button.open i:nth-child(1) { top: 26px; transform: translateX(-50%) rotate(45deg); }
.menu-button.open i:nth-child(2) { opacity: 0; }
.menu-button.open i:nth-child(3) { top: 26px; transform: translateX(-50%) rotate(-45deg); }

.menu-panel { position: fixed; inset: 0; z-index: 20; overflow-y: auto; overscroll-behavior: contain; background: var(--hero-dark); color: white; padding: 180px clamp(28px, 9vw, 150px) 70px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; display: flex; justify-content: flex-start; align-items: flex-start; }
.menu-panel.open { opacity: 1; visibility: visible; }
.menu-panel nav { display: flex; flex-direction: column; width: min(880px, 100%); }
.menu-language { display: none; }
.menu-panel nav > a { display: block; width: 100%; padding: 14px 0 18px; border-bottom: 1px solid rgba(255,255,255,.2); color: white; opacity: 1; font-family: var(--font-serif); font-size: var(--type-menu); line-height: 1.05; transition: color .3s ease; }
.menu-panel nav > a:visited { color: white; }
.menu-panel nav > a:hover { color: rgba(255,255,255,.58); opacity: 1; }
.menu-panel nav > .menu-restaurant-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0; width: 100%; padding-top: 24px; }
.menu-panel nav > .menu-restaurant-links.is-secondary { margin-top: 36px; padding-top: 0; }
.menu-restaurant-label { width: 100%; margin: 0 0 6px; color: rgba(255,255,255,.42) !important; font-size: var(--type-xs); font-weight: 600; letter-spacing: .16em; text-align: left !important; text-transform: uppercase; }
.menu-panel nav > .menu-restaurant-links a { display: inline-flex; align-items: baseline; width: auto; gap: 7px; padding: 8px 0; border: 0; color: white; opacity: 1; font-family: "Inter", sans-serif; font-size: var(--type-base); font-weight: 500; line-height: 1.4; transition: none; }
.menu-panel nav > .menu-restaurant-links.is-secondary a > span { color: rgba(255,255,255,.72); transition: color .3s ease; }
.menu-panel nav > .menu-restaurant-links.is-secondary a > small { color: rgba(255,255,255,.38); transition: color .3s ease; }
.menu-panel nav > .menu-restaurant-links.is-secondary a:hover > span,
.menu-panel nav > .menu-restaurant-links.is-secondary a:hover > small { color: white; }
.menu-panel nav > .menu-restaurant-links.is-secondary a:focus-visible { outline: 1px solid rgba(255,255,255,.55); outline-offset: 4px; }
.menu-panel nav > .menu-restaurant-links.is-directory { padding-top: 0; }
.menu-panel nav > .menu-restaurant-links.is-directory a { width: 100%; padding: 14px 0 18px; border-bottom: 1px solid rgba(255,255,255,.2); color: white; opacity: 1; font-family: var(--font-serif); font-size: var(--type-menu); font-weight: 500; line-height: 1.05; transition: color .3s ease; }
.menu-panel nav > .menu-restaurant-links.is-directory a:hover { color: rgba(255,255,255,.58); opacity: 1; }
.menu-restaurant-links small { color: rgba(255,255,255,.38); font-family: "Inter", sans-serif; font-size: var(--type-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer-social { display: flex; gap: 18px; font-size: var(--type-sm); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-social a { display: inline-flex; align-items: center; gap: 8px; }
.footer-social i { font-size: 15px; }
body.menu-open { overflow: hidden; }

.hero { height: clamp(360px, 32vw, 460px); min-height: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; background: var(--hero-dark); }
.hero-copy { padding: 58px var(--page-gutter) 56px; display: flex; flex-direction: column; justify-content: center; background: var(--hero-dark); color: var(--paper); }
.eyebrow { margin: 0 0 15px; font-size: var(--type-xs); text-transform: uppercase; letter-spacing: .18em; font-weight: 600; }
.hero h1, h2, .menu-card h3 { font-family: var(--font-serif); font-weight: 500; }
.hero h1 { max-width: 780px; font-size: var(--type-title-lg); line-height: .96; margin: 27px 0 14px; }
.hero-claim { margin: 0; color: rgba(243,246,249,.74); font-size: var(--type-lead); line-height: 1.5; }
.mobile-break { display: none; }
.hero-meta { display: flex; align-items: center; gap: 18px; font-family: var(--font-serif); font-size: var(--type-lead); }
.hero-address { color: rgba(243,246,249,.84); font: 500 var(--type-sm)/1.4 "Inter", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.status { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); color: rgba(243,246,249,.86); border: 1px solid rgba(255,255,255,.18); border-radius: 99px; padding: 7px 13px; font-family: "Inter", sans-serif; font-size: var(--type-xs); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: #78bd8b; }
.status.is-closing i { background: #f2c66d; }
.status.is-opening i { background: #8cc8ed; animation: status-pulse 1.8s ease-in-out infinite; }
.status.is-later i, .status.is-next i, .status.is-closed i { background: rgba(243,246,249,.45); }
@keyframes status-pulse { 50% { opacity: .35; transform: scale(.78); } }
.hero-image { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 0; margin: 0; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; }

.detail-page .hero-copy > * { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .65s cubic-bezier(.22,.7,.3,1); }
.detail-page .hero-copy > *:nth-child(2) { transition-delay: 80ms; }
.detail-page .hero-copy > *:nth-child(3) { transition-delay: 150ms; }
.detail-page .hero-copy > *:nth-child(4) { transition-delay: 210ms; }
.detail-page .hero-image img { opacity: 0; transform: scale(1.025); transition: opacity .75s ease 80ms, transform 1s cubic-bezier(.22,.7,.3,1) 80ms; }
.detail-page.is-ready .hero-copy > * { opacity: 1; transform: translateY(0); }
.detail-page.is-ready .hero-image img { opacity: 1; transform: scale(1); }
.reveal-section { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .7s cubic-bezier(.22,.7,.3,1); }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }

.menu-section { padding: 104px var(--page-gutter) 118px; }
#menu, #info, #hours, #contact, #about, #restaurants, #footer { scroll-margin-top: 108px; }
.section-intro { text-align: center; margin-bottom: 50px; }
.section-intro h2, .information h2 { font-family: var(--font-serif); font-size: var(--type-title-md); font-weight: 500; line-height: 1; margin: 0; }
.day-picker-anchor { display: block; height: 0; }
.day-picker-shell { position: sticky; top: 104px; z-index: 12; width: calc(100% + (2 * var(--page-gutter))); margin: 0 calc(-1 * var(--page-gutter)) 67px; background: rgba(243,246,249,.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); scroll-margin-top: 104px; }
.day-picker-shell::after { content: ""; position: absolute; top: 100%; right: 0; left: 0; height: 26px; pointer-events: none; background: linear-gradient(to bottom, rgba(243,246,249,.98), rgba(243,246,249,0)); }
.day-picker { display: flex; justify-content: flex-start; gap: 22px; width: calc(100% - (2 * var(--page-gutter))); max-width: 1120px; margin: 0 auto; padding: 18px 32px 12px; box-sizing: border-box; overflow-x: auto; overscroll-behavior-inline: contain; scroll-padding-inline: 32px; scrollbar-width: none; background: transparent; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%); }
.day-picker::-webkit-scrollbar { display: none; }
.day-picker button { position: relative; flex: 0 0 88px; width: 88px; min-width: 88px; max-width: 88px; height: 60px; padding: 0 0 12px; border: 0; border-radius: 0; color: rgba(12,41,72,.48); background: transparent; cursor: pointer; font-size: var(--type-base); line-height: 1.35; transition: color .28s ease; }
.day-picker button:first-child { margin-left: auto; }
.day-picker button:last-child { margin-right: auto; }
.day-picker button span { display: block; margin-bottom: 2px; font-weight: 600; font-size: var(--type-xs); letter-spacing: .12em; }
.day-picker button::after { content: ""; position: absolute; right: 50%; bottom: 0; left: 50%; height: 2px; background: var(--accent); transition: right .3s ease, left .3s ease; }
.day-picker button:hover { color: var(--ink); }
.day-picker button.active { color: var(--ink); background: transparent; font-weight: 600; }
.day-picker button.active span { color: inherit; font-weight: 700; }
.day-picker button.active::after { right: 0; left: 0; }
.menu-card { position: relative; max-width: 1120px; margin: 0 auto; opacity: 1; }
.menu-content { position: relative; z-index: 1; }
.menu-measure { position: absolute; top: 0; left: 0; z-index: -1; width: 100%; min-height: 0 !important; visibility: hidden; pointer-events: none; }
.menu-card h3 { margin: 0 0 24px; font: 600 var(--type-sm)/1.4 "Inter", sans-serif; letter-spacing: .11em; text-transform: uppercase; color: rgba(12,41,72,.62); }
.meal { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(12,41,72,.065); font-family: var(--font-serif); font-size: var(--type-dish); }
.meal:last-child { border-bottom: 0; }
.meal-info { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.meal-name { width: 100%; min-width: 0; overflow-wrap: anywhere; text-wrap: pretty; }
.meal-icon { align-self: start; width: 1.35em; padding-top: .4em; color: var(--accent-secondary); font-size: .74em; line-height: 1; text-align: center; }
.meal-info small { font: 400 var(--type-xs)/1.35 "Inter", sans-serif; letter-spacing: .02em; color: rgba(12,41,72,.48); }
.meal strong { color: rgba(12,41,72,.62); font-family: "Inter", sans-serif; font-size: var(--type-base); font-weight: 300; white-space: nowrap; }
.serving-time { text-align: center; margin: 44px 0 0; color: rgba(12,41,72,.6); font-family: var(--font-serif); font-size: var(--type-lead); }
.serving-time span { padding: 0 8px; }
.social-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 52px; }
.social-buttons a { position: relative; isolation: isolate; overflow: hidden; min-width: 150px; padding: 12px 21px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 99px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); font-size: var(--type-sm); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: background-color .25s ease, color .25s ease, box-shadow .25s ease; }
.social-buttons .social-instagram:hover { background: linear-gradient(115deg, #515bd4 0%, #8134af 30%, #dd2a7b 62%, #f58529 100%); box-shadow: none; color: white; }
.social-buttons .social-facebook:hover { background: #1877f2; box-shadow: none; color: white; }
.social-buttons i { display: inline-block; flex: 0 0 auto; width: auto; height: auto; color: inherit; font-size: 15px; line-height: 1; }

.information { display: grid; grid-template-columns: 1fr 1fr; }
.information > div { padding: 92px var(--page-gutter) 102px; }
.information > div:first-child { background: var(--surface); color: var(--ink); }
.information > div:first-child .hours > div { border-color: var(--line); }
.information > div + div { background: var(--accent-secondary-panel); }
.information h2 { font-size: var(--type-title-md); margin-bottom: 37px; }
.information > #contact { display: block; }
.information > #contact address { max-width: 520px; }
.hours { margin: 0; }
.hours > div { display: flex; justify-content: space-between; gap: 30px; padding: 14px 0; border-bottom: 1px solid rgba(12,41,72,.07); }
.hours > div:last-child { border-bottom: 0; }
.hours dt, .hours dd { margin: 0; }
.hours dt, address .contact-link { font-family: "Inter", sans-serif; font-size: var(--type-base); font-weight: 400; line-height: 1.65; letter-spacing: 0; }
address { display: flex; flex-direction: column; align-items: flex-start; font-style: normal; font-family: "Inter", sans-serif; font-size: var(--type-base); line-height: 1.65; }
address > span { font-family: "Inter", sans-serif; font-size: var(--type-sm); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; opacity: .6; }
address strong { margin-bottom: 26px; font-family: "Inter", sans-serif; font-size: var(--type-dish); font-weight: 600; letter-spacing: -.025em; }
address a { font-weight: 500; letter-spacing: -.015em; }
address .contact-link { display: inline-flex; align-items: center; gap: 11px; margin-top: 7px; }
address .contact-link i { flex: 0 0 21px; width: 21px; color: var(--accent-secondary); font-size: 17px; line-height: 1; text-align: center; }
address .contact-address { margin-top: 12px; }
address a:hover { text-decoration: underline; }
address a.contact-link:hover { text-decoration: none; }
address a.contact-link:hover .contact-text { text-decoration: underline; text-underline-offset: 3px; }

.about-restaurant { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); align-items: stretch; gap: clamp(40px, 7vw, 120px); padding: 0; background: var(--hero-dark); color: var(--paper); }
.about-restaurant figure { min-height: 290px; margin: 0; overflow: hidden; border-radius: 0; }
.about-restaurant figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-restaurant > div { align-self: center; padding: 94px var(--page-gutter) 108px 0; }
.about-restaurant h2 { margin: 0 0 26px; overflow-wrap: anywhere; font-size: var(--type-title-md); line-height: 1; }
.about-restaurant div > p { max-width: 780px; margin: 0; color: rgba(243,246,249,.72); font-size: var(--type-lead); line-height: 1.75; }

.site-footer { background: var(--paper); color: var(--ink); padding: 64px var(--page-gutter) 30px; display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 40px; row-gap: 0; }
.site-footer::before { content: ""; grid-column: 1 / -1; grid-row: 2; width: 100%; height: 1px; margin-top: 48px; background: var(--line); }
.site-footer .footer-logo { grid-row: 1; align-self: start; }
.site-footer nav { grid-column: 1; grid-row: 3; display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px 28px; padding-top: 24px; font-size: var(--type-sm); }
.site-footer nav a, .footer-social a { transition: color .25s ease; }
.site-footer nav a:hover { color: var(--accent); }
.footer-social { grid-column: 2; grid-row: 1; justify-content: flex-end; }
.footer-social a:hover { color: var(--accent); }
.site-footer p { grid-column: 2; grid-row: 3; margin: 0; padding-top: 24px; opacity: .6; font-size: var(--type-sm); text-align: right; }
.empty-menu, .empty-state { width: 100%; text-align: center; color: rgba(12,41,72,.62); }
.empty-state { min-height: 50vh; display: grid; place-items: center; }

.standard-page { min-height: 62vh; padding: clamp(72px, 9vw, 140px) var(--page-gutter) clamp(90px, 11vw, 170px); }
.standard-page-article { width: min(920px, 100%); margin: 0 auto; }
.standard-page-header { margin-bottom: clamp(42px, 6vw, 76px); }
.standard-page-header .eyebrow { color: rgba(12,41,72,.55); }
.standard-page-header h1 { max-width: 850px; margin: 0; font: 500 var(--type-title-lg)/.98 var(--font-serif); }
.standard-page-image { margin: 0 0 clamp(42px, 6vw, 72px); overflow: hidden; border-radius: 3px; }
.standard-page-image img { display: block; width: 100%; height: auto; max-height: 540px; object-fit: cover; }
.standard-page-content { color: rgba(12,41,72,.82); font-size: var(--type-base); line-height: 1.8; }
.standard-page-content > * { max-width: 760px; }
.standard-page-content h2, .standard-page-content h3 { margin: 2em 0 .7em; color: var(--ink); line-height: 1.12; }
.standard-page-content h2 { font-size: var(--type-title-sm); }
.standard-page-content h3 { font-size: var(--type-dish); }
.standard-page-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.standard-page-content ul, .standard-page-content ol { padding-left: 1.25em; }

@media (max-width: 900px) {
  .site-header { height: 88px; }
  #menu, #info, #hours, #contact, #about, #restaurants, #footer { scroll-margin-top: 88px; }
  .day-picker-shell { top: 88px; scroll-margin-top: 88px; }
  .logo span { font-size: 43px; }
  .site-header .logo, .site-footer .footer-logo { width: 128px; height: 52px; }
  .header-actions { gap: 18px; }
  .hero { height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 28px 58px; }
  .hero h1 { font-size: clamp(44px, 12vw, 58px); }
  .mobile-break { display: block; }
  .hero-image { width: 100%; min-height: 330px; margin: 0; order: -1; clip-path: none; }
  .information { grid-template-columns: 1fr; }
  .information > div + div { border: 0; }
  .about-restaurant { grid-template-columns: 1fr; gap: 0; }
  .about-restaurant > div { padding: 68px var(--page-gutter) 76px; }
  .social-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: min(640px, 100%); margin-right: auto; margin-left: auto; }
  .social-buttons a { width: 100%; min-width: 0; }
  .site-footer { column-gap: 32px; padding-top: 48px; }
}

@media (max-width: 600px) {
  .header-actions { gap: 0; }
  .language { display: none; }
  .menu-button { width: 50px; height: 50px; }
  .menu-panel { padding: 116px 28px 36px; align-items: flex-start; flex-direction: column; }
  .menu-language { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
  .menu-language a { min-width: 44px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 3px; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-align: center; transition: color .25s ease, border-color .25s ease, background-color .25s ease; }
  .menu-language a:hover { border-color: rgba(255,255,255,.48); color: white; }
  .menu-language a.active { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); color: white; }
  .menu-panel nav > a { padding: 12px 0 14px; font-size: clamp(38px, 10.5vw, 42px); }
  .menu-panel nav > .menu-restaurant-links { gap: 0; padding-top: 18px; }
  .menu-panel nav > .menu-restaurant-links.is-secondary { margin-top: 30px; padding-top: 0; }
  .menu-panel nav > .menu-restaurant-links a { padding: 8px 0; font-size: var(--type-base); }
  .menu-panel nav > .menu-restaurant-links.is-directory a { display: flex; align-items: flex-start; flex-direction: column; gap: 3px; padding: 13px 0 15px; font-size: clamp(28px, 8vw, 34px); line-height: 1.02; }
  .menu-panel nav > .menu-restaurant-links.is-directory a > span { max-width: 100%; overflow-wrap: normal; word-break: normal; }
  .menu-panel nav > .menu-restaurant-links.is-directory a > small { font-size: 10px; line-height: 1.3; }
  .hero { position: relative; display: grid; grid-template-columns: 1fr; min-height: clamp(360px, 108vw, 430px); }
  .hero-copy, .hero-image { grid-area: 1 / 1; }
  .hero-copy {
    position: relative; z-index: 2; justify-content: flex-end; padding: 48px 24px 42px;
    background: linear-gradient(to top, rgba(12,41,72,.94) 0%, rgba(12,41,72,.68) 54%, rgba(12,41,72,.2) 100%);
  }
  .hero-image { order: 0; z-index: 1; height: 100%; min-height: 0; }
  .hero-meta { align-items: flex-start; flex-direction: column; gap: 14px; font-size: var(--type-lead); }
  .menu-section { padding-top: 34px; padding-bottom: 88px; }
  .section-intro {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  .day-picker-shell { margin-bottom: 52px; }
  .day-picker-shell::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(to right, var(--paper), transparent var(--page-gutter)) left / var(--page-gutter) 100% no-repeat, linear-gradient(to left, var(--paper), transparent var(--page-gutter)) right / var(--page-gutter) 100% no-repeat; }
  .day-picker { justify-content: flex-start; gap: 8px; width: 100%; max-width: none; padding: 12px var(--page-gutter) 8px; overflow-x: auto; scroll-padding-inline: var(--page-gutter); touch-action: pan-x; -webkit-overflow-scrolling: touch; -webkit-mask-image: none; mask-image: none; }
  .day-picker button:first-child { margin-left: 0; }
  .day-picker button:last-child { margin-right: 0; }
  .day-picker button { flex: 0 0 70px; width: 70px; min-width: 70px; max-width: 70px; height: 56px; padding: 0 0 10px; font-size: var(--type-base); }
  .meal { grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; padding: 15px 0; }
  .meal-name { width: 100%; }
  .social-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; width: 100%; margin-top: 40px; }
  .social-buttons a { width: 100%; min-width: 0; max-width: none; gap: 8px; padding: 10px 12px; font-size: var(--type-sm); letter-spacing: .08em; }
  .social-buttons i { width: auto; height: auto; font-size: 15px; }
  .about-restaurant { gap: 0; }
  .site-footer { grid-template-columns: 1fr; row-gap: 0; padding: 44px var(--page-gutter) 28px; }
  .site-footer .footer-logo, .site-footer nav, .footer-social, .site-footer p { grid-column: 1; }
  .site-footer .footer-logo { grid-row: 1; }
  .footer-social { grid-row: 2; justify-content: flex-start; flex-direction: row; padding-top: 24px; }
  .site-footer::before { grid-row: 3; margin-top: 32px; }
  .site-footer nav { grid-row: 4; flex-direction: column; flex-wrap: nowrap; align-items: flex-start; gap: 11px; padding-top: 28px; }
  .site-footer p { grid-row: 5; padding-top: 28px; text-align: left; }
  .information > div { padding-top: 68px; padding-bottom: 76px; }
  .information > #contact h2 { margin-bottom: 32px; }
  .information > #contact address { max-width: 100%; }
  .detail-brand { gap: 13px; }
  .scroll-title { padding-left: 13px; font-size: 18px; white-space: nowrap; }
}

/* Homepage */
.home-brand { display: flex; align-items: center; gap: 28px; }
.home-brand .logo { order: 0; }
.home-brand p { margin: 0; border-left: 1px solid var(--line); padding-left: 28px; font: 500 var(--type-dish)/1.15 var(--font-serif); }
.restaurant-grid { --grid-space: clamp(14px, 1.5vw, 24px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: calc(100svh - 108px - var(--grid-space) - var(--grid-space)); margin: var(--grid-space); gap: clamp(8px, .8vw, 13px); background: var(--paper); overflow: hidden; }
.restaurant-grid:not(.restaurant-count-4) { height: auto; grid-template-rows: none; grid-auto-rows: minmax(360px, 42vh); overflow: visible; }
.restaurant-tile { display: block; overflow: hidden; min-width: 0; min-height: 0; border-radius: 3px; background: #111; position: relative; color: white; opacity: 0; transition: opacity .35s ease; }
.home-page.is-ready .restaurant-tile { opacity: 1; }
.home-page.is-restoring .restaurant-tile,
.home-page.is-restoring .restaurant-tile img { transition: none !important; }
.restaurant-tile img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; transform-origin: center; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease; will-change: transform; }
.restaurant-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,12,27,.78) 0%, rgba(0,12,27,.34) 48%, rgba(0,12,27,.08) 100%); }
.tile-content { position: absolute; z-index: 1; inset: 0; padding: clamp(32px, 4.2vw, 70px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.tile-location { margin-bottom: 13px; font-size: var(--type-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }
.tile-content strong { font: 500 var(--type-title-md)/.94 var(--font-serif); }
.tile-content em { font-style: normal; font-size: var(--type-lead); margin-top: 20px; }
.tile-content b { display: inline-flex; align-items: center; gap: 14px; margin-top: auto; font-size: var(--type-sm); letter-spacing: .08em; line-height: 1; text-transform: uppercase; }
.tile-content b i { position: relative; display: block; flex: 0 0 36px; width: 36px; height: 12px; color: transparent; font-size: 0; }
.tile-content b i::before { content: ""; position: absolute; left: 0; right: 1px; top: 5px; height: 2px; background: white; }
.tile-content b i::after { content: ""; position: absolute; right: 1px; top: 0; width: 10px; height: 10px; border-top: 2px solid white; border-right: 2px solid white; transform: rotate(45deg); }
@media (hover: hover) and (pointer: fine) {
  .home-page.is-ready:not(.is-restoring) .restaurant-tile:hover img { transform: scale(1.035); filter: brightness(.88); }
}

.detail-brand { display: flex; align-items: center; gap: 28px; }
.scroll-title { border-left: 1px solid var(--line); padding-left: 28px; font: 500 var(--type-dish)/1 var(--font-serif); opacity: 0; transform: translateX(-10px); transition: opacity .35s ease, transform .35s ease; pointer-events: none; }

.menu-panel nav > a,
.hero h1,
.hero-meta,
h2,
.meal,
.serving-time,
.standard-page-header h1,
.home-brand p,
.tile-content strong,
.scroll-title { letter-spacing: var(--serif-tracking); }
.show-restaurant .scroll-title { opacity: 1; transform: translateX(0); }

@media (max-width: 900px) {
  .home-brand p { display: none; }
  .restaurant-grid { --grid-space: 12px; height: auto; grid-template-rows: none; gap: 10px; }
  .restaurant-tile { min-height: 390px; }
}

@media (max-width: 650px) {
  .restaurant-grid { grid-template-columns: 1fr; }
  .restaurant-tile { min-height: 310px; }
  .site-header { padding-right: var(--page-gutter); padding-left: var(--page-gutter); gap: 12px; }
  .site-header .logo, .site-footer .footer-logo { flex: 0 0 clamp(78px, 24vw, 94px); width: clamp(78px, 24vw, 94px); height: 40px; }
  .detail-brand { flex: 1 1 auto; min-width: 0; gap: 10px; overflow: hidden; }
  .header-actions { flex: 0 0 auto; }
  .scroll-title {
    flex: 1 1 auto; min-width: 0; max-height: 2.2em; padding-left: 10px;
    overflow: hidden; overflow-wrap: anywhere; white-space: normal;
    font-size: clamp(14px, 4.1vw, 17px); line-height: 1.1;
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  }
  .menu-button { flex: 0 0 48px; width: 48px; height: 48px; }
  .menu-button i:nth-child(1) { top: 17px; }
  .menu-button i:nth-child(2) { top: 24px; }
  .menu-button i:nth-child(3) { top: 31px; }
  .menu-button.open i:nth-child(1), .menu-button.open i:nth-child(3) { top: 24px; }
}

@media (min-width: 901px) and (max-height: 720px) {
  .restaurant-grid { height: auto; min-height: 640px; grid-template-rows: repeat(2, 315px); overflow: visible; }
}

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