:root {
  color-scheme: light;
  --ink: #111311;
  --ink-soft: #242521;
  --paper: #f4efe5;
  --paper-bright: #fffaf0;
  --red: #a83322;
  --red-dark: #852719;
  --line: rgba(17, 19, 17, 0.22);
  --line-light: rgba(255, 250, 240, 0.3);
  --display: Georgia, "Times New Roman", serif;
  --body: Arial, Helvetica, sans-serif;
  --page: min(1240px, calc(100vw - 64px));
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
body.panel-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-200%);
  padding: 12px 16px;
  color: var(--ink);
  background: var(--paper-bright);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 116px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  width: var(--page);
  margin-inline: auto;
  color: var(--paper-bright);
  border-bottom: 1px solid var(--line-light);
}

.brand-link { align-self: start; width: 150px; padding-top: 20px; }
.brand-logo { width: 142px; height: 142px; object-fit: cover; border-radius: 50%; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 42px); }
.site-nav a,
.site-nav button,
.header-phone {
  border: 0;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  text-decoration: none;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav a,
.site-nav button { border-bottom: 1px solid transparent; }
.site-nav [data-open-reservation] {
  padding: 12px 18px;
  border: 1px solid var(--red);
  background: var(--red);
}
.site-nav a:hover,
.site-nav button:hover,
.site-nav a:focus-visible,
.site-nav button:focus-visible { border-color: currentColor; outline: none; }
.site-nav [data-open-reservation]:hover,
.site-nav [data-open-reservation]:focus-visible { border-color: var(--paper-bright); background: var(--red-dark); }
.header-phone { white-space: nowrap; }

.hero {
  position: relative;
  min-height: min(760px, 94vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
}
.hero-photo,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo { object-fit: cover; object-position: 54% center; }
.hero-shade { background: rgba(7, 8, 7, 0.55); }
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin-inline: auto;
  padding: 190px 0 70px;
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow-red { color: var(--red); }
.hero h1,
.section-heading h2,
.restaurant-copy h2,
.contact-section h2,
.panel-heading h2 {
  font-family: var(--display);
  font-weight: 400;
}
.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(4.4rem, 8vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}
.hero-copy { margin: 30px 0 28px; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.24; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 24px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button:focus-visible,
.journey-item:focus-visible,
.cart-trigger:focus-visible,
.close-button:focus-visible,
.menu-card button:focus-visible,
.category-nav a:focus-visible { outline: 3px solid #e2b24c; outline-offset: 3px; }
.button-light { color: var(--ink); background: var(--paper-bright); }
.button-light:hover { background: #e9e1d1; }
.button-red { color: #fff; background: var(--red); }
.button-red:hover { background: var(--red-dark); }
.button-outline { color: var(--paper-bright); border-color: var(--paper-bright); background: rgba(17, 19, 17, 0.38); }
.button-outline:hover { color: var(--ink); background: var(--paper-bright); }
.button-outline-dark { color: var(--paper-bright); border-color: var(--paper-bright); background: transparent; }
.button-outline-dark:hover { color: var(--ink); background: var(--paper-bright); }
.button-dark { color: var(--paper-bright); background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }
.button-outline-paper { color: var(--ink); border-color: var(--line); background: transparent; }
.button-outline-paper:hover { color: var(--paper-bright); background: var(--ink); }
.button-wide { width: 100%; }
.button:disabled { cursor: not-allowed; opacity: 0.42; }

.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 132px;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}
.journey-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 18px;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 26px clamp(24px, 4vw, 64px);
  color: var(--ink);
  background: transparent;
  text-align: left;
  text-decoration: none;
}
.journey-item:last-child { border-right: 0; }
.journey-item:hover { background: #eee6d7; }
.journey-item span { grid-row: 1 / 3; color: var(--red); font-family: var(--display); font-size: 1.2rem; }
.journey-item strong { font-family: var(--display); font-size: 1.55rem; font-weight: 400; text-transform: uppercase; }
.journey-item small { margin-top: 7px; color: #585850; font-size: 0.75rem; line-height: 1.35; }

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: start;
  padding: 100px max(32px, calc((100vw - 1240px) / 2));
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}
.story-heading h2,
.google-review-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.story-heading h2 em { color: var(--red); font-style: normal; }
.story-copy { max-width: 620px; padding-top: 4px; }
.story-copy p { margin: 0; color: #55564f; font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.75; }
.story-copy p + p { margin-top: 20px; }
.story-copy .story-invitation { padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink); font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.35; }

.menu-section { padding: 86px max(32px, calc((100vw - 1240px) / 2)); color: var(--paper-bright); background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, 440px); gap: 64px; align-items: end; }
.section-heading h2,
.restaurant-copy h2,
.contact-section h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: 0.98; letter-spacing: -0.04em; }
.section-heading > p { max-width: 42ch; margin: 0; color: #bdb9b0; line-height: 1.65; }
.menu-status { min-height: 24px; margin: 38px 0 0; color: #bdb9b0; }
.featured-menu { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.featured-card { position: relative; min-height: 290px; overflow: hidden; border-bottom: 1px solid var(--line-light); background: #242521; }
.featured-card { text-decoration: none; }
.featured-card img { width: 100%; height: 224px; object-fit: cover; }
.featured-card div { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 66px; padding: 14px 2px; }
.featured-card h3 { margin: 0; font-family: var(--display); font-size: 1.35rem; font-weight: 400; text-transform: uppercase; }
.featured-card span { color: #bdb9b0; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.menu-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line-light); }
.menu-toolbar p { margin: 0; color: #8f8d86; font-size: 0.75rem; }
.takeaway-back-link {
  display: inline-flex;
  margin-bottom: 30px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  color: var(--paper-bright);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.full-menu { margin-top: 52px; border-top: 1px solid var(--line-light); }
.category-nav { position: sticky; top: 0; z-index: 5; display: flex; gap: 8px; overflow-x: auto; padding: 18px 0; background: var(--ink); scrollbar-width: thin; }
.category-nav a { flex: 0 0 auto; border: 1px solid var(--line-light); padding: 10px 14px; color: var(--paper-bright); text-decoration: none; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.category-nav a:hover { color: var(--ink); background: var(--paper-bright); }
.menu-group { scroll-margin-top: 78px; padding: 56px 0; border-top: 1px solid var(--line-light); }
.menu-group:first-child { border-top: 0; }
.menu-group h3 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.5rem); font-weight: 400; }
.dish-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; }
.formule-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.formule-heading h3 { margin-bottom: 0; }
.formule-heading p { max-width: 40ch; margin: 0; color: #aaa89f; line-height: 1.5; }
.formule-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.formule-card { min-height: 238px; display: grid; align-content: space-between; gap: 30px; border: 1px solid var(--line-light); padding: 24px; background: linear-gradient(145deg, #282923, #1a1b18); }
.formule-kicker { margin: 0 0 12px !important; color: #d6a79f !important; font-size: 0.62rem !important; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.formule-card h4 { max-width: 14ch; margin: 0; font-family: var(--display); font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 400; line-height: 1.08; }
.formule-card p { margin: 12px 0 0; color: #aaa89f; font-size: 0.76rem; line-height: 1.5; }
.formule-card aside { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.formule-card aside > strong { font-family: var(--display); font-size: 1.25rem; font-weight: 400; }
.formule-compose-button { min-width: 126px; }
.menu-card { display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; align-items: center; min-height: 118px; border-bottom: 1px solid var(--line-light); padding: 16px 0; }
.menu-card:not(.has-image) { grid-template-columns: 1fr auto; }
.menu-card img { width: 88px; height: 86px; object-fit: cover; background: #242521; }
.menu-card h4 { margin: 0 0 6px; font-family: var(--display); font-size: 1.05rem; font-weight: 400; }
.menu-card p { margin: 0; color: #99978f; font-size: 0.76rem; line-height: 1.45; }
.menu-card aside { min-width: 152px; display: grid; justify-items: end; gap: 10px; }
.menu-card strong { font-family: var(--display); font-size: 1rem; font-weight: 400; }
.dish-control { min-height: 44px; display: flex; align-items: center; justify-content: flex-end; }
.dish-add-button {
  min-width: 112px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--red);
  padding: 0 10px 0 15px;
  color: var(--paper-bright);
  background: var(--red);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dish-add-button b { font-size: 1.25rem; line-height: 1; }
.dish-add-button:hover { border-color: var(--paper-bright); background: var(--red-dark); }
.dish-stepper { display: grid; grid-template-columns: 44px 34px 44px; align-items: center; gap: 5px; }
.dish-qty-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  padding: 0;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  touch-action: manipulation;
}
.dish-qty-minus { color: var(--paper-bright); background: #33342f; }
.dish-qty-plus { border-color: var(--red); color: #fff; background: var(--red); box-shadow: 0 8px 18px rgba(168, 51, 34, 0.28); }
.dish-qty-button:hover { border-color: var(--paper-bright); }
.dish-qty { min-width: 34px; color: var(--paper-bright); font-size: 1rem; font-weight: 900; text-align: center; }

.restaurant-section { display: grid; grid-template-columns: minmax(320px, 0.82fr) 1.18fr; min-height: 620px; background: var(--paper); }
.restaurant-copy { display: grid; align-content: center; padding: 72px max(32px, calc((100vw - 1240px) / 2)); padding-right: clamp(40px, 7vw, 110px); }
.restaurant-copy h2 { max-width: 620px; color: var(--ink); }
.restaurant-copy > p:not(.eyebrow) { max-width: 54ch; margin: 28px 0; color: #55564f; line-height: 1.7; }
.restaurant-carousel { position: relative; width: 100%; height: 100%; min-height: 620px; overflow: hidden; background: #282925; }
.restaurant-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.9s ease; }
.restaurant-slide.is-active { opacity: 1; }
.text-link { width: fit-content; border-bottom: 1px solid currentColor; padding-bottom: 5px; color: var(--ink); text-decoration: none; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.text-link-light { color: var(--paper-bright); }

.google-section { display: grid; grid-template-columns: 1.12fr 0.88fr; min-height: 560px; background: var(--ink); }
.google-map { min-height: 560px; overflow: hidden; background: #d9d4c9; }
.google-map iframe { width: 100%; height: 100%; min-height: 560px; display: block; border: 0; }
.google-review-card { display: grid; align-content: center; padding: 76px clamp(40px, 7vw, 108px); color: var(--paper-bright); }
.google-review-card .eyebrow { color: #e2b24c; }
.google-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin: 2px 0 28px; }
.google-stars { color: #e2b24c; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: 0.12em; }
.google-stars span { color: transparent; -webkit-text-stroke: 1px #e2b24c; }
.google-rating p { display: grid; gap: 2px; margin: 0; }
.google-rating strong { font-family: var(--display); font-size: 2rem; font-weight: 400; line-height: 1; }
.google-rating p span { color: #bdb9b0; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.google-review-card h2 { max-width: 620px; }
.google-review-copy { max-width: 48ch; margin: 28px 0 0; color: #bdb9b0; line-height: 1.7; }
.google-review-meta { margin: 16px 0 0; color: #8f8d86; font-size: 0.74rem; }
.google-review-meta strong { color: var(--paper-bright); font-weight: 700; }
.google-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; }

.contact-section { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; padding: 82px max(32px, calc((100vw - 1240px) / 2)); color: var(--paper-bright); background: var(--red); }
.contact-section h2 { max-width: 620px; }
.contact-details { align-self: end; }
.contact-details p { display: grid; gap: 8px; margin: 0; padding: 18px 0; border-top: 1px solid var(--line-light); }
.contact-details p strong { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-details p span,
.contact-details p a { font-family: var(--display); font-size: 1.25rem; text-decoration: none; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.site-footer { min-height: 112px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 20px max(32px, calc((100vw - 1240px) / 2)); color: var(--paper-bright); background: var(--ink); }
.site-footer img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; }
.site-footer div { display: grid; gap: 4px; }
.site-footer div strong { font-family: var(--display); font-size: 1.15rem; font-weight: 400; }
.site-footer div span,
.site-footer p { color: #8f8d86; font-size: 0.68rem; }
.site-footer p { margin: 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--paper-bright); }

.cart-trigger { position:fixed; right:22px; bottom:22px; z-index:25; width:min(520px,calc(100vw - 44px)); min-height:70px; display:grid; grid-template-columns:minmax(0,1fr) auto auto; align-items:center; gap:16px; border:1px solid rgba(255,250,240,.28); border-radius:18px; padding:12px 14px 12px 18px; color:var(--paper-bright); background:#171915; box-shadow:0 12px 34px rgba(0,0,0,.32); text-align:left; }
.cart-trigger-copy { min-width:0; display:grid; gap:4px; }
.cart-trigger-copy strong { overflow:hidden; color:var(--paper-bright); font-size:.78rem; line-height:1.25; text-overflow:ellipsis; white-space:nowrap; }
.cart-trigger-copy small { overflow:hidden; color:#aaa89f; font-size:.64rem; line-height:1.2; text-overflow:ellipsis; white-space:nowrap; }
.cart-trigger-meter { height:4px; overflow:hidden; border-radius:99px; background:#3b3d37; }
.cart-trigger-meter b { width:0; height:100%; display:block; border-radius:inherit; background:#d1a642; transition:width 220ms ease; }
.cart-trigger-amount { color:var(--paper-bright); font-family:var(--display); font-size:1.08rem; white-space:nowrap; }
.cart-trigger-count { width:42px; height:42px; display:grid; place-items:center; border-radius:11px; color:#fff; background:var(--red); font-size:.82rem; font-weight:900; }
.cart-trigger:not(.has-gifts) { width:auto; min-width:250px; }
body.panel-open .cart-trigger { right:24px; z-index:60; width:calc(100vw - 48px); max-width:none; }
.promotion-float { position:fixed; top:52%; right:clamp(10px,1.5vw,22px); z-index:25; width:92px; border:0; padding:0; color:var(--ink); background:transparent; transform:translateY(-50%); filter:drop-shadow(0 10px 20px rgba(0,0,0,.2)); }
.promotion-float-inner { position:relative; min-height:132px; display:grid; place-items:center; align-content:center; gap:5px; border:1px solid rgba(168,51,34,.55); padding:20px 10px 12px; background:
  radial-gradient(circle at 0 50%, transparent 7px, var(--paper-bright) 8px) left center / 51% 100% no-repeat,
  radial-gradient(circle at 100% 50%, transparent 7px, var(--paper-bright) 8px) right center / 51% 100% no-repeat;
  animation:promotion-nudge 6s ease-in-out infinite; }
.promotion-float-badge { position:absolute; top:-10px; left:50%; min-width:62px; padding:5px 7px; color:#fff; background:var(--red); font-size:.56rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; transform:translateX(-50%); }
.promotion-float-logo { width:58px; height:58px; display:grid; place-items:center; border:1px solid #d7b36a; border-radius:50%; background:#f3e4bc; }
.promotion-float-logo img { width:52px; height:52px; border-radius:50%; object-fit:cover; }
.promotion-float-label { color:var(--red-dark); font-family:var(--display); font-size:1.05rem; line-height:1; }
.promotion-float-percent { position:absolute; right:4px; bottom:4px; width:22px; height:22px; display:grid; place-items:center; border-radius:50%; color:var(--paper-bright); background:#c8922e; font-size:.68rem; font-weight:900; }
.promotion-float:hover .promotion-float-inner { border-color:var(--red); }
.promotion-float:focus-visible { outline:3px solid var(--gold,#e2b24c); outline-offset:4px; }
@keyframes promotion-nudge { 0%,84%,100% { transform:rotate(0); } 88% { transform:rotate(-2deg) scale(1.02); } 92% { transform:rotate(2deg) scale(1.02); } 96% { transform:rotate(0); } }
.scrim { position: fixed; inset: 0; z-index: 40; background: rgba(0, 0, 0, 0.72); }
.cart-drawer,
.modal-panel { position: fixed; z-index: 50; overflow-y: auto; color: var(--ink); background: var(--paper-bright); }
.cart-drawer { inset:0 0 0 auto; width:min(620px,100vw); padding:34px; transform:translateX(105%); transition:transform 220ms ease; }
.cart-drawer.is-open { transform: translateX(0); }
.modal-panel { top: 50%; left: 50%; width: min(620px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: clamp(24px, 5vw, 48px); transform: translate(-50%, -50%); }
.promotion-panel { width:min(760px,calc(100vw - 32px)); }
.promotion-coming-soon { min-height:390px; display:grid; align-content:center; justify-items:center; padding:34px 12px 10px; text-align:center; }
.promotion-ticket-mark { position:relative; width:132px; height:132px; display:grid; place-items:center; margin-bottom:28px; border:1px solid #d7b36a; border-radius:50%; background:#f3e4bc; box-shadow:0 14px 34px rgba(75,51,18,.12); }
.promotion-ticket-mark img { width:114px; height:114px; border-radius:50%; object-fit:cover; }
.promotion-ticket-mark span { position:absolute; right:-5px; bottom:3px; width:38px; height:38px; display:grid; place-items:center; border:3px solid var(--paper-bright); border-radius:50%; color:#fff; background:var(--red); font-weight:900; }
.promotion-coming-soon p { margin:0; color:#55564f; font-size:1rem; line-height:1.6; }
.promotion-coming-soon strong { margin-top:8px; color:var(--red-dark); font-family:var(--display); font-size:1.6rem; font-weight:400; }
.promotion-form { display:grid; gap:16px; margin-top:26px; }
.promotion-description { margin:0; color:#55564f; line-height:1.6; }
.promotion-form > label,.promotion-form .form-row label { display:grid; gap:7px; color:#54554e; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.promotion-form input,.promotion-form select,.promotion-form textarea { width:100%; border:1px solid #aaa89f; border-radius:0; padding:12px; color:var(--ink); background:#fff; text-transform:none; }
.promotion-form input:focus,.promotion-form select:focus,.promotion-form textarea:focus { outline:2px solid var(--red); outline-offset:1px; }
.promotion-dishes { display:grid; gap:8px; max-height:310px; overflow-y:auto; padding-right:4px; }
.promotion-dish { display:grid; grid-template-columns:58px minmax(0,1fr) 82px; align-items:center; gap:12px; border:1px solid var(--line); padding:8px; background:#fff; }
.promotion-dish > img { width:58px; height:58px; object-fit:cover; }
.promotion-dish > div { display:grid; gap:4px; }
.promotion-dish > div strong { font-size:.82rem; }
.promotion-dish > div small { color:var(--red-dark); font-weight:800; }
.promotion-dish s { margin-right:6px; color:#77776f; font-weight:400; }
.promotion-dish label { display:grid; gap:4px; color:#77776f; font-size:.58rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
.promotion-dish input { padding:8px; text-align:center; }
.promotion-form-error { margin:0; border-left:3px solid var(--red); padding:10px 14px; color:var(--red-dark); background:#faebe6; font-size:.8rem; line-height:1.45; }
.promotion-result { min-height:360px; }
.formule-panel { width: min(860px, calc(100vw - 32px)); }
.panel-heading { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.panel-heading h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1; }
.close-button { align-self: start; border: 0; border-bottom: 1px solid currentColor; padding: 6px 0; color: var(--ink); background: transparent; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.cart-lines { margin: 28px 0; }
.cart-empty { color: #64655d; line-height: 1.55; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line h3 { margin: 0 0 7px; font-family: var(--display); font-size: 1.12rem; font-weight: 400; }
.cart-line p { margin: 0; color: #64655d; font-size: 0.78rem; }
.cart-line-controls { display: grid; grid-template-columns: repeat(3, 34px); align-items: center; text-align: center; }
.cart-line-controls button { width: 34px; height: 34px; border: 1px solid var(--line); background: transparent; }
.cart-summary { display: flex; justify-content: space-between; border-top: 1px solid var(--ink); padding: 22px 0; }
.cart-summary strong { font-family: var(--display); font-size: 1.25rem; font-weight: 400; }
.gift-milestones { margin-top:24px; border:1px solid #383a34; border-radius:13px; padding:18px; color:var(--paper-bright); background:#1a1c18; }
.gift-milestone-track { position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.gift-milestone-track::before { content:""; position:absolute; top:21px; right:10%; left:10%; height:2px; background:#595b54; }
.gift-milestone { position:relative; z-index:1; display:grid; justify-items:center; gap:5px; text-align:center; }
.gift-milestone::after { content:""; width:13px; height:13px; border:2px solid #d1a642; border-radius:50%; background:#1a1c18; }
.gift-milestone.is-reached::after { background:var(--red); }
.gift-milestone strong { font-family:var(--display); font-size:1.05rem; font-weight:400; }
.gift-milestone small { min-height:24px; color:#9e9d96; font-size:.55rem; font-weight:800; letter-spacing:.07em; line-height:1.2; text-transform:uppercase; }
.gift-milestone.is-reached small { color:#e3c776; }
.gift-milestones > p { display:grid; gap:4px; margin:18px 0 0; text-align:center; }
.gift-milestones > p strong { font-size:.88rem; line-height:1.4; }
.gift-milestones > p span { color:#aaa89f; font-size:.68rem; }
.gift-picker { margin-top:8px; border-top:1px solid var(--line); padding-top:26px; }
.gift-picker-heading h3 { margin:0; font-family:var(--display); font-size:clamp(1.65rem,5vw,2.25rem); font-weight:400; line-height:1.05; }
.gift-picker-heading > p:last-child { margin:10px 0 0; color:#676860; font-size:.78rem; line-height:1.5; }
.gift-slots { display:grid; gap:24px; margin-top:22px; }
.gift-slot { min-width:0; width:100%; border-top:1px solid var(--line); padding-top:18px; }
.gift-slot h4 { display:flex; align-items:center; gap:10px; margin:0 0 14px; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; }
.gift-slot h4 span { width:27px; height:27px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--ink); font-family:var(--display); font-size:.9rem; font-weight:400; }
.gift-options { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
.gift-options-all { min-width:0; width:100%; max-width:100%; grid-template-columns:repeat(5,minmax(0,1fr)); }
.gift-option { min-width:0; display:grid; grid-template-rows:72px auto auto; justify-items:center; gap:6px; border:1px solid #d9d4c9; border-radius:10px; padding:9px 7px; color:var(--ink); background:#f7f2e8; text-align:center; }
.gift-option:hover { border-color:#b88320; }
.gift-option:focus-visible { outline:3px solid #d1a642; outline-offset:2px; }
.gift-option.is-selected { border-color:#bd8518; background:#fffaf0; box-shadow:inset 0 0 0 1px #bd8518; }
.gift-option img { width:100%; height:72px; object-fit:contain; }
.gift-option span { max-width:100%; font-size:.66rem; font-weight:800; line-height:1.28; }
.gift-option small { color:#a83322; font-size:.58rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.gift-adult-notice { margin:18px 0 0; border-left:2px solid #b99a57; padding:6px 0 6px 12px; color:#676860; font-size:.7rem; line-height:1.45; }
.gift-skip { width:100%; margin-top:18px; border:0; border-top:1px solid var(--line); padding:16px 0 3px; color:#6a5a3c; background:transparent; font-size:.72rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.gift-skip:hover { color:var(--red-dark); }
.cart-continue { position:sticky; bottom:0; z-index:2; margin-top:18px; box-shadow:0 -10px 24px var(--paper-bright); }

/* The active-cart composition stays deliberately compact so the two unlocked
   gift slots, skip path, CTA and persistent progress ribbon remain visible as
   one decision surface at the approved 864 × 1821 reference viewport. */
.cart-drawer .panel-heading { padding-bottom:16px; }
.cart-drawer .cart-lines { margin:18px 0; }
.cart-drawer .cart-line { padding:12px 0; }
.cart-drawer .cart-summary { padding:16px 0; }
.cart-drawer .gift-milestones { margin-top:16px; padding:14px 18px; }
.cart-drawer .gift-milestones > p { margin-top:12px; }
.cart-drawer .gift-picker { padding-top:18px; }
.cart-drawer .gift-picker-heading h3 { font-size:2rem; }
.cart-drawer .gift-picker-heading > p:last-child { margin-top:7px; }
.cart-drawer .gift-slots { gap:16px; margin-top:16px; }
.cart-drawer .gift-slot { padding-top:14px; }
.cart-drawer .gift-slot h4 { margin-bottom:10px; }
.cart-drawer .gift-option { grid-template-rows:64px auto auto; gap:4px; padding:7px 6px; }
.cart-drawer .gift-option img { height:64px; }
.cart-drawer .gift-adult-notice { margin-top:12px; }
.cart-drawer .gift-skip { margin-top:12px; padding-top:12px; }
.cart-drawer .cart-continue { margin-top:12px; }
.formule-panel-heading h2 { max-width: 18ch; }
.formule-panel-price { display: block; margin-top: 12px; color: var(--red); font-family: var(--display); font-size: 1.3rem; font-weight: 400; }
.formule-form { display: grid; gap: 24px; margin-top: 26px; }
.formule-choice-group { min-width: 0; margin: 0; border: 0; padding: 0 0 24px; }
.formule-choice-group + .formule-choice-group { border-top: 1px solid var(--line); padding-top: 24px; }
.formule-choice-group legend { width: 100%; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 12px; padding: 0; }
.formule-choice-group legend span { font-family: var(--display); font-size: 1.35rem; }
.formule-choice-group legend small { color: #77776f; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.formule-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.formule-choice { position: relative; min-height: 72px; display: grid; grid-template-columns: 52px 1fr 24px; align-items: center; gap: 10px; border: 1px solid #c7c3ba; padding: 8px; background: #fff; cursor: pointer; }
.formule-choice:has(input:checked) { border-color: var(--red); background: #fbefeb; box-shadow: inset 0 0 0 1px var(--red); }
.formule-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.formule-choice img { width: 52px; height: 52px; object-fit: cover; background: #e7e1d6; }
.formule-choice span { font-size: 0.75rem; font-weight: 700; line-height: 1.35; }
.formule-choice b { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid #aaa89f; border-radius: 50%; color: transparent; font-size: 0.7rem; }
.formule-choice input:focus-visible ~ b { outline: 2px solid var(--red); outline-offset: 2px; }
.formule-choice:has(input:checked) b { border-color: var(--red); color: #fff; background: var(--red); }
.formule-error { margin: 0; border-left: 3px solid var(--red); padding: 10px 14px; color: var(--red-dark); background: #faebe6; font-size: 0.8rem; line-height: 1.45; }

body.takeaway-mode .site-header {
  position: relative;
  min-height: 112px;
  color: var(--ink);
  background: var(--paper);
  border-bottom-color: var(--line);
}
body.takeaway-mode .site-header .brand-link { padding-top: 10px; }
body.takeaway-mode .site-header .brand-logo { width: 92px; height: 92px; }
body.takeaway-mode .site-nav,
body.takeaway-mode .header-phone,
body.takeaway-mode .hero,
body.takeaway-mode .journey,
body.takeaway-mode .story-section,
body.takeaway-mode .restaurant-section,
body.takeaway-mode .google-section,
body.takeaway-mode .contact-section { display: none; }
body.takeaway-mode .menu-section {
  min-height: calc(100dvh - 112px);
  padding-top: 54px;
  padding-bottom: 118px;
}
body.takeaway-mode .featured-menu,
body.takeaway-mode .menu-toolbar { display: none; }
body.takeaway-mode .full-menu { margin-top: 34px; }

.form-grid { display: grid; gap: 16px; margin-top: 28px; }
.form-grid label { display: grid; gap: 7px; color: #54554e; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.form-grid input,
.form-grid select,
.form-grid textarea { width: 100%; border: 1px solid #aaa89f; border-radius: 0; padding: 12px; color: var(--ink); background: #fff; text-transform: none; }
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pickup-mode-group { min-width: 0; margin: 0; border: 0; padding: 0; }
.pickup-mode-group legend { margin-bottom: 10px; color: #54554e; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.pickup-mode-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-grid .pickup-mode-card {
  position: relative;
  min-width: 0;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  border: 1px solid #aaa89f;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}
.pickup-mode-card:has(input:checked) { border-color: var(--red); background: #fbefeb; box-shadow: inset 0 0 0 1px var(--red); }
.pickup-mode-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.pickup-mode-card span { min-width: 0; display: grid; gap: 6px; }
.pickup-mode-card strong { color: var(--ink); font-family: var(--display); font-size: 1.15rem; line-height: 1.1; }
.pickup-mode-card small { color: #66675f; font-size: .78rem; font-weight: 500; line-height: 1.45; }
.pickup-mode-card b { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid #aaa89f; border-radius: 50%; color: transparent; font-size: .7rem; }
.pickup-mode-card input:focus-visible ~ b { outline: 2px solid var(--red); outline-offset: 2px; }
.pickup-mode-card:has(input:checked) b { border-color: var(--red); color: #fff; background: var(--red); }
.pickup-schedule { display: grid; gap: 12px; border-left: 3px solid var(--red); padding: 2px 0 2px 14px; }
.pickup-schedule[hidden] { display: none; }
.pickup-schedule > p { margin: 0; color: #66675f; font-size: .78rem; line-height: 1.5; }

.submission-result {
  min-height: 390px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 36px 0 8px;
  text-align: center;
}
.result-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 2px solid #2f6b4f;
  border-radius: 50%;
  color: #2f6b4f;
  background: #eef5f0;
  font-family: var(--display);
  font-size: 2.4rem;
}
.submission-result.is-error .result-icon { border-color: var(--red); color: var(--red-dark); background: #faebe6; }
.submission-result .eyebrow { margin-bottom: 12px; }
.submission-result h3 { max-width: 14ch; margin: 0; font-family: var(--display); font-size: clamp(2.2rem, 6vw, 3.4rem); font-weight: 400; line-height: 0.98; }
.result-message { max-width: 46ch; margin: 22px 0 0; color: #55564f; line-height: 1.6; }
.result-summary { margin: 18px 0 0; color: var(--ink); font-weight: 700; line-height: 1.5; }
.result-reference { margin: 22px 0 0; border-block: 1px solid var(--line); padding: 14px 24px; color: #64655d; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.result-reference strong { margin-left: 8px; color: var(--ink); font-family: var(--display); font-size: 1.2rem; font-weight: 400; letter-spacing: normal; }
.result-actions { width: min(100%, 460px); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }

@media (max-width: 1050px) {
  :root { --page: min(920px, calc(100vw - 48px)); }
  .site-header { grid-template-columns: 136px 1fr; }
  .header-phone { display: none; }
  .brand-link { width: 124px; }
  .brand-logo { width: 116px; height: 116px; }
  .site-nav { justify-content: flex-end; gap: 22px; }
  .featured-menu { grid-template-columns: repeat(2, 1fr); }
  .story-section { gap: 52px; }
  .restaurant-section { grid-template-columns: 1fr 1fr; }
  .google-section { grid-template-columns: 1fr 1fr; }
  .dish-grid { grid-template-columns: 1fr; }
  .formule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 32px); }
  .site-header { min-height: 132px; grid-template-columns: 92px 1fr; align-items: start; gap: 16px; }
  .brand-link { width: 88px; padding-top: 12px; }
  .brand-logo { width: 82px; height: 82px; }
  .site-nav { align-self: start; justify-content: flex-end; flex-wrap: wrap; gap: 2px 16px; padding-top: 20px; }
  .site-nav a,
  .site-nav button { font-size: 0.62rem; }
  .site-nav [data-open-reservation] { padding: 8px 10px; }
  .site-nav a:nth-of-type(2),
  .site-nav a:nth-of-type(3) { display: none; }
  .hero { min-height: 720px; }
  .hero-photo { object-position: 59% center; }
  .hero-shade { background: rgba(7, 8, 7, 0.6); }
  .hero-content { padding: 172px 0 42px; }
  .hero h1 { max-width: 360px; font-size: clamp(4rem, 19vw, 5.4rem); }
  .hero-copy { font-size: 1.28rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button:first-child { grid-column: 1 / -1; }
  .button { min-height: 50px; padding-inline: 16px; }
  .journey { grid-template-columns: 1fr; }
  .journey-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 24px; }
  .journey-item:last-child { border-bottom: 0; }
  .story-section { grid-template-columns: 1fr; gap: 38px; padding: 68px 20px; }
  .story-heading h2,
  .google-review-card h2 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .story-copy { padding-top: 0; }
  .menu-section { padding: 64px 16px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2,
  .restaurant-copy h2,
  .contact-section h2 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .featured-menu { grid-template-columns: 1fr 1fr; gap: 10px; }
  .featured-card { min-height: 228px; }
  .featured-card img { height: 168px; }
  .featured-card h3 { font-size: 1rem; }
  .featured-card span { display: none; }
  .menu-toolbar { align-items: stretch; flex-direction: column; }
  .menu-toolbar .button { width: 100%; }
  .menu-toolbar p { text-align: center; }
  .menu-group { padding: 42px 0; }
  .formule-heading { align-items: start; flex-direction: column; gap: 8px; }
  .formule-grid { grid-template-columns: 1fr; }
  .formule-card { min-height: 210px; }
  .menu-card { grid-template-columns: 72px 1fr; gap: 12px; }
  .menu-card:not(.has-image) { grid-template-columns: 1fr; }
  .menu-card img { width: 72px; height: 72px; }
  .menu-card aside { grid-column: 2; grid-template-columns: 1fr auto; justify-items: start; align-items: center; }
  .menu-card:not(.has-image) aside { grid-column: 1; }
  .menu-card aside { min-width: 0; width: 100%; }
  .dish-control { justify-self: end; }
  .restaurant-section { grid-template-columns: 1fr; }
  .restaurant-copy { padding: 64px 20px; }
  .restaurant-carousel { height: clamp(360px, 78vw, 460px); min-height: 360px; max-height: 460px; }
  .google-section { grid-template-columns: 1fr; min-height: 0; }
  .google-map,
  .google-map iframe { min-height: 380px; }
  .google-review-card { padding: 64px 20px; }
  .google-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .google-actions .button,
  .google-actions .text-link { width: 100%; }
  .google-actions .text-link { text-align: center; }
  .contact-section { grid-template-columns: 1fr; gap: 46px; padding: 64px 20px; }
  .site-footer { grid-template-columns: auto 1fr; padding: 22px 18px; }
  .site-footer p { grid-column: 1 / -1; }
  .cart-trigger { right:12px; bottom:12px; width:calc(100vw - 24px); gap:10px; padding-left:14px; }
  .cart-trigger-copy strong { font-size:.7rem; }
  .cart-trigger-copy small { font-size:.58rem; }
  .cart-trigger-amount { font-size:.95rem; }
  .cart-trigger-count { width:38px; height:38px; }
  .promotion-float { right:8px; width:74px; }
  .promotion-float-inner { min-height:112px; padding:17px 7px 9px; }
  .promotion-float-logo { width:47px; height:47px; }
  .promotion-float-logo img { width:42px; height:42px; }
  .promotion-float-label { font-size:.9rem; }
  .promotion-float-badge { min-width:54px; font-size:.5rem; }
  .cart-drawer { padding:24px 20px 28px; }
  body.panel-open .cart-trigger { display:none; }
  .form-row { grid-template-columns: 1fr; }
  .pickup-mode-options { grid-template-columns: 1fr; }
  .form-grid .pickup-mode-card { min-height: 92px; }
  .promotion-dish { grid-template-columns:48px minmax(0,1fr) 72px; }
  .promotion-dish > img { width:48px; height:48px; }
  .gift-options-all { grid-template-columns:repeat(5,96px); overflow-x:auto; padding-bottom:7px; scroll-snap-type:x proximity; }
  .gift-options-all .gift-option { scroll-snap-align:start; }
  .modal-panel { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); padding: 26px 20px; }
  .formule-choices { grid-template-columns: 1fr; }
  .submission-result { min-height: min(430px, calc(100dvh - 170px)); padding-top: 28px; }
  .result-actions { grid-template-columns: 1fr; }
  body.takeaway-mode .site-header { min-height: 92px; grid-template-columns: 1fr; }
  body.takeaway-mode .site-header .brand-link { width: 76px; padding-top: 8px; }
  body.takeaway-mode .site-header .brand-logo { width: 74px; height: 74px; }
  body.takeaway-mode .menu-section { min-height: calc(100dvh - 92px); padding-top: 34px; }
  body.takeaway-mode .section-heading { gap: 14px; }
  body.takeaway-mode .section-heading h2 { font-size: clamp(2.7rem, 13vw, 3.8rem); }
  body.takeaway-mode .category-nav { top: 0; margin-inline: -16px; padding-inline: 16px; }
  body.takeaway-mode .cart-trigger { min-width:0; box-shadow:0 6px 22px rgba(0,0,0,.34); }
}

@media (max-width: 390px) {
  .site-nav a:first-child { display: none; }
  .hero h1 { font-size: 3.75rem; }
  .featured-menu { grid-template-columns: 1fr; }
  .cart-trigger-copy small { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .promotion-float-inner { animation:none !important; }
}

.contact-memory { margin: -2px 0 2px; padding: 9px 11px; border: 1px solid rgba(41, 70, 58, .16); border-radius: 9px; color: #526158; background: #f4f7f3; font-size: .75rem; line-height: 1.4; }
.contact-memory button { margin-left: 4px; padding: 0; border: 0; color: #8e2f27; background: transparent; font: inherit; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.contact-memory button:focus-visible { outline: 2px solid #8e2f27; outline-offset: 3px; }
