:root {
  --ink: #151515;
  --paper: #f7f1e8;
  --muted: #8f877c;
  --line: rgba(255,255,255,.28);
  --gold: #c7a369;
  --charcoal: #0a0a0a;
  --cream: #fffaf1;
  --serif: "Times New Roman", Georgia, serif;
  --sans: Helvetica, Arial, sans-serif;
  --image-text-outline:
    0 1px 1px rgba(0,0,0,.85),
    1px 0 1px rgba(0,0,0,.55),
    0 -1px 1px rgba(0,0,0,.55),
    -1px 0 1px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html, body { max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.topbar, .site-header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  color: #fff;
  text-shadow: var(--image-text-outline);
}
.topbar {
  top: 0;
  padding: 13px clamp(20px, 5vw, 70px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.site-header {
  top: 45px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 70px);
}
.logo img { width: 118px; }
.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-item { padding: 26px 0; }
.nav-trigger {
  display: inline;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: default;
}
.nav-trigger::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 5px;
  background: currentColor;
  transition: width .25s ease;
}
.nav-item:hover .nav-trigger::after { width: 100%; }
.nav-item > a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 5px;
  background: currentColor;
  transition: width .25s ease;
}
.nav-item:hover > a::after { width: 100%; }
.book-btn, .outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.book-btn:hover, .outline-btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .2s ease;
  background: rgba(8,8,8,.96);
  padding: 30px clamp(20px, 5vw, 70px);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
}
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: auto;
}
.mega-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  display: grid;
  place-items: end start;
  padding: 22px;
  isolation: isolate;
}
.mega-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .45s ease;
}
.mega-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
  z-index: -1;
}
.mega-card:hover img { transform: scale(1.06); }
.mega-card span {
  font-family: var(--serif);
  font-size: 22px;
  text-decoration: underline;
  text-underline-offset: 7px;
  text-shadow: var(--image-text-outline);
}
.mobile-toggle { display: none; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 170px clamp(22px, 7vw, 110px) 90px;
  isolation: isolate;
  contain: paint;
  background: #050505;
  text-shadow: var(--image-text-outline);
}
.hero::before, .page-hero::before {
  display: none;
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.3) 52%, rgba(0,0,0,.55));
  z-index: 1;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero > div:not(.hero-slides), .page-hero > div:not(.hero-slides) {
  position: relative;
  z-index: 2;
}
.hero > div:not(.hero-slides) {
  width: min(980px, calc(100vw - 44px));
  margin-inline: auto;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(0);
  pointer-events: none;
  transform: translateZ(0);
}
.hero-slide {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease, visibility 0s linear 1.2s;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1.08);
  transition-delay: 0s;
}
.hero-static {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero .eyebrow,
.page-hero .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #fff;
  letter-spacing: .12em;
  font-size: clamp(13px, 1.2vw, 20px);
}
.hero .eyebrow::before,
.hero .eyebrow::after,
.page-hero .eyebrow::before,
.page-hero .eyebrow::after {
  content: "";
  width: clamp(48px, 7vw, 92px);
  height: 1px;
  background: rgba(255,255,255,.82);
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .95;
  margin: 0;
}
.hero h1 {
  max-width: 980px;
  margin: 34px auto 28px;
  font-size: clamp(54px, 7.7vw, 112px);
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: clamp(70px, 9vw, 125px) clamp(22px, 6vw, 86px);
}
.intro {
  background: #fff;
  text-align: center;
}
.hero + .intro {
  background: #050505;
  color: #fff;
}
.hero + .intro p {
  color: rgba(255,255,255,.78);
}
.hero + .intro .outline-btn {
  color: #fff;
}
.hero + .intro .outline-btn:hover {
  background: #fff;
  color: #111;
}
.intro-inner {
  max-width: 880px;
  margin: auto;
}
.intro h2, .split h2, .page-content h2 {
  margin: 12px 0 24px;
  font-size: clamp(44px, 7vw, 86px);
}
.intro p {
  font-size: 18px;
  color: #4f4a44;
}
.button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button-row .outline-btn { color: #111; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
}
.split.alt { background: #111; color: #fff; }
.split .media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.split .media-grid img:first-child { margin-top: 44px; }
.split p { color: #5d554c; }
.split.alt p { color: #ddd; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  background: #fff;
}
.feature-card {
  background: #111;
  color: #fff;
}
.feature-card img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
}
.feature-card div { padding: 30px; }
.feature-card h3 { font-size: 34px; margin-bottom: 12px; }
.feature-card .eyebrow { color: #fff; opacity: .7; }

.page-hero {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 150px 24px 80px;
  isolation: isolate;
  contain: paint;
  background: #050505;
  text-shadow: var(--image-text-outline);
}
.page-hero h1 {
  max-width: 1000px;
  margin: 28px auto 0;
  font-size: clamp(48px, 6.4vw, 88px);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.page-hero > div {
  width: 100%;
  max-width: calc(100vw - 44px);
}
.page-content {
  background: #fff;
}
.page-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  margin: 40px auto 0;
  max-width: 1100px;
}
.page-column .intro-inner {
  max-width: none;
}
.restaurant-page {
  background: #fff;
}
.restaurant-hero {
  min-height: 74vh;
}
.restaurant-hero::after {
  background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.2) 36%, rgba(0,0,0,.5));
}
.restaurant-hero h1 {
  margin-top: 22px;
  font-size: clamp(64px, 7vw, 94px);
  text-transform: none;
}
.restaurant-intro {
  padding-top: clamp(84px, 9vw, 122px);
  padding-bottom: clamp(74px, 8vw, 110px);
  background: #fff;
  text-align: center;
}
.restaurant-intro-inner {
  max-width: 980px;
  margin: 0 auto;
}
.restaurant-intro .eyebrow {
  color: #1f1f1f;
  letter-spacing: .08em;
}
.restaurant-intro h2 {
  margin: 14px 0 24px;
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 1.02;
}
.restaurant-intro-copy {
  margin: 0 auto;
  max-width: 940px;
  font-size: 17px;
  line-height: 1.9;
  color: #3d3a36;
}
.restaurant-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .62fr) minmax(140px, .38fr);
  align-items: stretch;
  gap: 0;
  padding: 0 clamp(22px, 6vw, 86px) clamp(84px, 9vw, 118px);
  background: #fff;
}
.restaurant-feature-copy {
  padding: clamp(18px, 2vw, 26px) clamp(18px, 3vw, 44px) clamp(18px, 2vw, 24px) 0;
}
.restaurant-feature-copy h2 {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: clamp(30px, 3.55vw, 50px);
  line-height: 1.2;
}
.restaurant-feature-copy p {
  max-width: 640px;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.85;
  color: #3f3a34;
}
.restaurant-feature-copy p strong {
  color: #1d1d1d;
}
.restaurant-button-row {
  justify-content: flex-start;
  margin-top: 34px;
}
.restaurant-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.restaurant-feature-fill {
  background: #21242d;
}
.restaurant-noble {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: 0 clamp(22px, 6vw, 86px) clamp(88px, 9vw, 124px);
  background: #fff;
}
.restaurant-noble-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurant-noble-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(38px, 4vw, 58px);
  text-align: center;
}
.restaurant-noble-card h2 {
  margin: 0 0 18px;
  font-size: clamp(56px, 5vw, 72px);
  line-height: .98;
}
.restaurant-noble-card p {
  max-width: 380px;
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: #3f3a34;
}
.restaurant-noble-card .outline-btn {
  margin-top: 32px;
  color: #111;
}
.restaurant-noble-card .outline-btn:hover {
  background: #111;
  color: #fff;
}
.restaurant-mosaic {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1.6fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 0;
  background: #fff;
}
.restaurant-mosaic-item {
  min-height: 0;
}
.restaurant-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurant-mosaic .is-tall-left {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.restaurant-mosaic .is-tall-right {
  grid-column: 4;
  grid-row: 1 / span 2;
}
.lunch-page {
  background: #2b3148;
}
.lunch-hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background: #050505;
  padding: 170px clamp(22px, 6vw, 84px) 72px;
  text-shadow: var(--image-text-outline);
}
.lunch-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.28) 55%, rgba(0,0,0,.55));
  z-index: 1;
}
.lunch-hero-inner {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100vw - 44px));
  margin-left: clamp(18px, 3vw, 34px);
}
.lunch-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(54px, 6.2vw, 82px);
  line-height: .95;
  font-weight: 400;
}
.lunch-hero h1 em {
  font-style: italic;
}
.lunch-hero h1 strong {
  font-weight: 700;
}
.lunch-hero-copy {
  max-width: 720px;
}
.lunch-hero-copy p {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
  color: rgba(255,255,255,.9);
}
.lunch-content {
  background: #2b3148;
  color: #fff;
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(64px, 8vw, 96px);
}
.lunch-intro {
  max-width: 820px;
  margin: 0 auto clamp(68px, 8vw, 96px);
  text-align: center;
}
.lunch-bordered-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lunch-bordered-eyebrow::before,
.lunch-bordered-eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,.42);
}
.lunch-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(52px, 6vw, 76px);
  line-height: .98;
}
.lunch-intro p {
  margin: 0 auto;
  max-width: 780px;
  font-size: 18px;
  color: rgba(255,255,255,.78);
}
.lunch-columns {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 84px);
}
.lunch-bottom-columns {
  margin-top: clamp(48px, 7vw, 78px);
}
.lunch-column {
  display: grid;
  gap: clamp(36px, 5vw, 54px);
}
.lunch-full-row {
  max-width: 1260px;
  margin: clamp(48px, 7vw, 76px) auto 0;
}
.lunch-day-block {
  color: #fff;
}
.lunch-day-title {
  display: inline-block;
  margin-bottom: 22px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255,255,255,.7);
  font-size: clamp(18px, 1.8vw, 32px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lunch-item {
  margin-bottom: 22px;
}
.lunch-item:last-child {
  margin-bottom: 0;
}
.lunch-item-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lunch-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.05;
  font-weight: 400;
}
.lunch-item-price {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  color: rgba(255,255,255,.95);
}
.lunch-item-line {
  flex: 1;
  min-width: 24px;
  height: 1px;
  background: rgba(255,255,255,.12);
}
.lunch-item p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 16px;
  line-height: 1.6;
}
.lunch-item.is-note h3 {
  visibility: hidden;
}
.lunch-item.is-note p {
  margin-top: 0;
  font-size: 15px;
}
.lunch-button-row {
  margin-top: clamp(54px, 8vw, 88px);
}
.lunch-button-row .outline-btn {
  color: #fff;
  border-color: rgba(255,255,255,.78);
}
.lunch-button-row .outline-btn:hover {
  background: #fff;
  color: #111;
}
.shopping-lunch-content {
  background: #597b9b;
}
.shopping-columns {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 84px);
}
.shopping-columns .lunch-day-title {
  font-size: clamp(19px, 1.7vw, 30px);
}
.shopping-columns .lunch-day-block .lunch-day-title:empty {
  display: none;
}
.shopping-columns .lunch-item h3,
.shopping-pizza-column .lunch-item h3 {
  text-transform: uppercase;
  font-size: clamp(22px, 1.95vw, 31px);
}
.shopping-lunch-page .lunch-item-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .01em;
}
.shopping-columns .lunch-item p,
.shopping-pizza-column .lunch-item p {
  max-width: 540px;
}
.shopping-pizza-row {
  max-width: 1260px;
  margin: clamp(46px, 7vw, 82px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .95fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}
.shopping-side-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 64px;
}
.shopping-side-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.shopping-side-images img:first-child {
  margin-top: -22px;
}
.shopping-bottom-row {
  margin-top: clamp(54px, 8vw, 90px);
}
.afterwork-page {
  background: #fff;
}
.afterwork-hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background: #050505;
  padding: 162px clamp(24px, 6vw, 84px) 72px;
  text-shadow: var(--image-text-outline);
}
.afterwork-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.26) 55%, rgba(0,0,0,.54));
  z-index: 1;
}
.afterwork-hero-inner {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100vw - 48px));
  margin-left: clamp(18px, 3vw, 36px);
}
.afterwork-hero-eyebrow {
  margin: 0 0 12px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.afterwork-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(60px, 6vw, 88px);
  line-height: .95;
}
.afterwork-hero-copy {
  max-width: 860px;
}
.afterwork-hero-copy p {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.75;
  color: rgba(255,255,255,.9);
}
.afterwork-intro {
  background: #2b3148;
  color: #fff;
  text-align: center;
}
.afterwork-intro-inner {
  max-width: 940px;
  margin: 0 auto;
}
.afterwork-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(56px, 6vw, 76px);
  line-height: .96;
}
.afterwork-intro p {
  margin: 0 auto 22px;
  max-width: 880px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.86);
}
.afterwork-intro a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.afterwork-note {
  max-width: 760px;
  color: rgba(255,255,255,.78);
}
.afterwork-grid-wrap {
  background: #fff;
}
.noble-page {
  background: #fff;
}
.noble-hero::after {
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.2) 56%, rgba(58,0,8,.38));
}
.noble-intro {
  background: #782525;
}
.noble-grid-wrap {
  background: #fff;
}
.noble-grid .afterwork-card {
  background: #782525;
}
.noble-grid .afterwork-card:nth-of-type(2) {
  background: #d56574;
}
.afterwork-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr .72fr;
  grid-template-rows: minmax(280px, auto) minmax(250px, auto) minmax(250px, auto);
}
.afterwork-media,
.afterwork-card {
  min-height: 100%;
}
.afterwork-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.afterwork-media-tall {
  grid-row: 1 / span 3;
}
.afterwork-media-top {
  grid-column: 2;
  grid-row: 1;
}
.afterwork-card {
  background: #31364c;
  color: #fff;
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.afterwork-card h3 {
  margin: 0 0 22px;
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: .98;
  text-transform: uppercase;
}
.afterwork-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
}
.afterwork-card-meta {
  color: #fff;
}
.afterwork-link {
  align-self: flex-start;
  margin-top: 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(199,163,105,.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.alacarte-page-content {
  background: linear-gradient(180deg, #f6f7f0 0%, #ffffff 100%);
}
.alacarte-intro {
  max-width: 900px;
  margin: 0 auto clamp(44px, 7vw, 82px);
  text-align: center;
}
.alacarte-intro h2,
.pizza-intro h2,
.prix-fixe-intro h2,
.kids-menu-heading h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 82px);
  text-transform: uppercase;
  line-height: .92;
}
.alacarte-intro .page-lead,
.pizza-intro p {
  margin: 0 auto;
  max-width: 770px;
  color: #5c554d;
}
.menu-story {
  max-width: 1180px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
}
.menu-story.is-reversed .story-media {
  order: 2;
}
.menu-story.is-reversed .menu-panel {
  order: 1;
}
.menu-story.is-list-only {
  grid-template-columns: minmax(0, 1fr);
}
.menu-story.is-list-only .menu-panel {
  max-width: 720px;
  margin-left: auto;
}
.story-media {
  display: grid;
  gap: 18px;
}
.story-media-short,
.story-media-tall {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.story-media img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.story-media-short img {
  aspect-ratio: .92 / 1;
}
.story-media-tall img {
  aspect-ratio: .72 / 1;
}
.story-media-short .is-offset {
  margin-top: 44px;
}
.story-media-tall .is-offset {
  margin-bottom: 44px;
}
.menu-panel {
  padding: clamp(18px, 3vw, 40px) 0;
}
.alacarte-page-content .menu-panel .menu-list {
  grid-template-columns: 1fr;
  gap: 22px 0;
}
.menu-panel-heading {
  margin-bottom: 24px;
  text-align: left;
}
.menu-panel-heading.is-dark span {
  color: #111;
}
.menu-panel-heading.is-dark span::after {
  background: rgba(17,17,17,.18);
}
.menu-panel-heading span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.2;
}
.menu-panel-heading span::after {
  content: "";
  width: 86px;
  height: 1px;
  background: rgba(200,147,95,.7);
}
.pizza-intro {
  max-width: 900px;
  margin: clamp(50px, 7vw, 90px) auto 40px;
  text-align: center;
}
.noble-feature {
  position: relative;
  min-height: 100vh;
  margin: clamp(20px, 4vw, 40px) calc(50% - 50vw) clamp(48px, 7vw, 80px);
  background:
    linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.58)),
    var(--noble-bg) center / cover no-repeat;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.noble-feature-inner {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100vw - 44px));
  padding: 48px 0;
}
.noble-feature .eyebrow {
  color: rgba(255,255,255,.82);
}
.noble-feature h2 {
  margin: 10px 0 18px;
  font-size: clamp(52px, 7vw, 76px);
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: .1em;
}
.noble-stars {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
}
.noble-feature p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,.9);
}
.noble-feature .outline-btn {
  color: #fff;
  border-color: rgba(255,255,255,.82);
}
.noble-feature .outline-btn:hover {
  background: #fff;
  color: #111;
}
.pizza-intro .eyebrow,
.prix-fixe-intro .eyebrow,
.kids-menu-heading .eyebrow {
  color: var(--gold);
  margin-bottom: 18px;
}
.pizza-stamp {
  width: clamp(92px, 12vw, 180px);
  margin: 6px auto -20px;
  display: block;
}
.pizza-grid {
  max-width: 1260px;
  margin: 0 auto clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .58fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
}
.pizza-grid.no-center {
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 170px);
}
.pizza-column {
  padding-top: 16px;
}
.pizza-center {
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px 22px 40px;
  text-align: center;
}
.pizza-center h2 {
  margin: 0 0 26px;
  font-size: clamp(44px, 4vw, 64px);
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: .08em;
}
.pizza-photo-wrap {
  width: 100%;
  border-radius: 999px;
  overflow: hidden;
}
.pizza-photo-wrap img {
  width: 100%;
  aspect-ratio: .86 / 1.22;
  object-fit: cover;
  display: block;
}
.menu-list.pizza-list,
.menu-list.prix-fixe-list {
  grid-template-columns: 1fr;
}
.prix-fixe-intro {
  max-width: 900px;
  margin: clamp(40px, 7vw, 90px) auto 24px;
  text-align: center;
}
.prix-fixe-card {
  max-width: 920px;
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: 0;
  background: transparent;
}
.prix-fixe-list .dish {
  padding-bottom: 14px;
  border-bottom-style: dotted;
}
.prix-fixe-list .dish-head {
  justify-content: flex-start;
}
.kids-menu {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) 0 10px;
}
.kids-menu-heading {
  text-align: center;
  margin-bottom: 38px;
}
.kids-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.kids-card {
  text-align: center;
}
.kids-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  text-transform: uppercase;
}
.kids-price {
  font-weight: 600;
  margin-bottom: 8px;
}
.kids-card p {
  margin: 0 auto;
  max-width: 220px;
  color: rgba(2,1,1,.65);
  line-height: 1.35;
}
.page-lead {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
  font-size: 18px;
  color: #524b43;
  overflow-wrap: anywhere;
}
.menu-section {
  max-width: 1040px;
  margin: 0 auto 55px;
}
.menu-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 48px;
}
.dish {
  border-bottom: 1px solid #ddd5ca;
  padding-bottom: 18px;
}
.dish-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}
.dish p {
  margin: 8px 0 0;
  color: #675f55;
}
.story-grid {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.story-grid img {
  height: 330px;
  width: 100%;
  object-fit: cover;
}
.image-carousel {
  max-width: 1120px;
  margin: 58px auto 0;
}
.carousel-stage {
  position: relative;
  min-height: clamp(320px, 55vw, 620px);
  overflow: hidden;
  background: #111;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .65s ease, transform 1.2s ease;
}
.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: rgba(0,0,0,.36);
  color: #fff;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .25s ease, transform .25s ease;
  z-index: 2;
}
.carousel-arrow:hover {
  background: rgba(0,0,0,.68);
  transform: translateY(-50%) scale(1.05);
}
.carousel-prev { left: 22px; }
.carousel-next { right: 22px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid #1b1b1b;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.carousel-dot.is-active {
  background: #1b1b1b;
  transform: scale(1.18);
}

.footer {
  background: #070707;
  color: #fff;
  padding: 70px clamp(22px, 6vw, 86px) 24px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr 1fr;
  gap: 38px;
  max-width: 1180px;
  margin: auto;
}
.footer img { width: 112px; margin-bottom: 22px; }
.footer h4 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}
.footer p, .footer li {
  color: #c8c4bc;
  margin: 0 0 8px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.newsletter {
  display: flex;
  border-bottom: 1px solid #777;
  padding-bottom: 8px;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
}
.newsletter button {
  border: 0;
  background: transparent;
  color: #fff;
  letter-spacing: .12em;
  cursor: pointer;
}
.copyright {
  max-width: 1180px;
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: #aaa;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .topbar { display: none; }
  .site-header {
    position: fixed;
    top: 0;
    grid-template-columns: 120px 1fr 48px;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(14px);
  }
  .logo img { width: 104px; }
  .nav {
    position: fixed;
    inset: 76px 0 auto;
    min-height: calc(100dvh - 76px);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #090909;
    display: none;
    padding: 20px 24px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  body.menu-open .nav { display: flex; }
  .nav-item { width: 100%; padding: 13px 0; }
  .nav-item > a, .nav-trigger {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .nav-trigger::after { display: none; }
  .nav-trigger::before {
    content: "+";
    order: 2;
    color: var(--gold);
    font-size: 18px;
    line-height: 1;
  }
  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 18px 0 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-item.is-open .mega { display: block; }
  .nav-item.is-open .nav-trigger::before { content: "−"; }
  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .mega-card {
    min-height: 145px;
    padding: 16px;
  }
  .mega-card span { font-size: 19px; }
  .book-btn { display: none; }
  .mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.55);
    background: transparent;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .split, .cards, .footer-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .carousel-stage { min-height: 420px; }
  .split .media-grid { grid-template-columns: 1fr 1fr; }
  .split .media-grid img:first-child { margin-top: 0; }
  .lunch-hero {
    min-height: 74vh;
    padding: 140px 22px 58px;
  }
  .lunch-hero-inner {
    width: min(100%, 560px);
    margin-left: 0;
  }
  .lunch-columns {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .shopping-columns,
  .shopping-pizza-row {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .afterwork-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .afterwork-media-tall {
    grid-column: 1 / span 2;
    grid-row: auto;
  }
  .afterwork-media-top {
    grid-column: auto;
    grid-row: auto;
  }
  .shopping-side-images {
    padding-top: 0;
  }
  .lunch-column {
    gap: 34px;
  }
  .restaurant-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .restaurant-feature-copy {
    padding-right: 0;
  }
  .restaurant-feature-fill {
    display: none;
  }
  .restaurant-feature-image img {
    max-height: 760px;
  }
  .restaurant-noble {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .restaurant-noble-media img {
    max-height: 560px;
  }
  .restaurant-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .restaurant-mosaic .is-tall-left,
  .restaurant-mosaic .is-tall-right {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 104px 1fr 44px;
    padding: 14px 18px;
  }
  .logo img { width: 96px; }
  .nav {
    inset: 72px 0 auto;
    min-height: calc(100dvh - 72px);
    max-height: calc(100dvh - 72px);
    padding: 18px;
  }
  .hero {
    min-height: 88svh;
    padding: 118px 22px 58px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 64px);
  }
  .hero .eyebrow,
  .page-hero .eyebrow {
    gap: 14px;
    font-size: 12px;
    letter-spacing: .1em;
  }
  .hero .eyebrow::before,
  .hero .eyebrow::after,
  .page-hero .eyebrow::before,
  .page-hero .eyebrow::after {
    width: clamp(28px, 11vw, 48px);
  }
  .hero-actions, .button-row { align-items: stretch; }
  .hero-actions .outline-btn, .button-row .outline-btn {
    width: 100%;
  }
  .section {
    width: 100%;
    max-width: 100vw;
    padding: 58px 22px;
  }
  .page-content {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .page-columns {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .intro h2, .split h2, .page-content h2 {
    font-size: clamp(38px, 13vw, 56px);
  }
  .intro p, .page-lead {
    width: min(100%, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .page-hero {
    min-height: 60svh;
    padding: 118px 18px 58px;
  }
  .lunch-hero {
    min-height: 72svh;
    padding: 118px 22px 52px;
  }
  .afterwork-hero {
    min-height: 72svh;
    padding: 118px 22px 58px;
  }
  .afterwork-hero-inner {
    width: min(100%, 560px);
    margin-left: 0;
  }
  .afterwork-hero h1 {
    font-size: clamp(42px, 11vw, 62px);
  }
  .afterwork-hero-copy p,
  .afterwork-intro p {
    font-size: 16px;
  }
  .afterwork-grid {
    grid-template-columns: 1fr;
  }
  .afterwork-media-tall {
    grid-column: auto;
  }
  .afterwork-card {
    padding: 26px 22px 30px;
  }
  .afterwork-card h3 {
    font-size: clamp(28px, 10vw, 42px);
  }
  .lunch-hero h1 {
    font-size: clamp(38px, 10.5vw, 58px);
  }
  .lunch-hero-copy p,
  .lunch-intro p {
    font-size: 16px;
  }
  .lunch-day-title {
    font-size: 16px;
  }
  .lunch-item h3 {
    font-size: 25px;
  }
  .lunch-item-price {
    font-size: 13px;
  }
  .shopping-lunch-page .lunch-item-price {
    font-size: 17px;
  }
  .lunch-item p {
    font-size: 15px;
  }
  .page-hero h1 { font-size: clamp(34px, 11vw, 42px); }
  .restaurant-hero h1 { font-size: clamp(54px, 13vw, 74px); }
  .menu-story,
  .pizza-grid {
    grid-template-columns: 1fr;
  }
  .shopping-side-images {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .restaurant-mosaic {
    grid-template-columns: 1fr;
  }
  .pizza-grid.no-center {
    gap: 28px;
  }
  .noble-feature {
    min-height: 72svh;
    margin-bottom: 44px;
  }
  .menu-story.is-reversed .story-media,
  .menu-story.is-reversed .menu-panel {
    order: initial;
  }
  .story-media-short .is-offset,
  .story-media-tall .is-offset {
    margin: 0;
  }
  .pizza-center {
    order: -1;
  }
  .kids-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-card { min-height: 126px; }
  .split .media-grid { grid-template-columns: 1fr; }
  .feature-card div { padding: 24px; }
  .feature-card h3 { font-size: 30px; }
  .dish-head {
    flex-wrap: wrap;
    row-gap: 2px;
  }
  .dish-head span:first-child { max-width: calc(100% - 72px); }
  .carousel-stage { min-height: 310px; }
  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }
  .footer-grid { gap: 28px; }
  .newsletter { display: block; }
  .newsletter input {
    width: 100%;
    padding: 0 0 8px;
  }
  .newsletter button {
    padding: 10px 0 0;
  }
  .footer { padding-bottom: 28px; }
  .copyright { display: block; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: clamp(38px, 15vw, 54px); }
  .page-hero h1 { font-size: clamp(30px, 10vw, 38px); }
  .restaurant-hero h1 { font-size: clamp(48px, 13vw, 62px); }
  .lunch-hero h1 { font-size: clamp(34px, 12vw, 46px); }
  .story-media-short,
  .story-media-tall,
  .kids-grid {
    grid-template-columns: 1fr;
  }
  .shopping-side-images {
    grid-template-columns: 1fr;
  }
  .afterwork-hero h1 { font-size: clamp(36px, 12vw, 48px); }
  .pizza-center h2 {
    font-size: clamp(34px, 12vw, 48px);
  }
  .eyebrow { letter-spacing: .16em; }
  .outline-btn { padding: 0 18px; }
  .restaurant-intro-copy,
  .restaurant-feature-copy p,
  .restaurant-noble-card p {
    font-size: 15px;
    line-height: 1.75;
  }
  .restaurant-feature-copy h2 {
    font-size: clamp(30px, 10vw, 46px);
  }
  .restaurant-noble-card h2 {
    font-size: clamp(42px, 14vw, 56px);
  }
}
