:root {
  color-scheme: light;
  --black: #0c0b09;
  --ink: #191713;
  --muted: #696257;
  --line: rgba(25, 23, 19, 0.13);
  --cream: #f7f2e8;
  --paper: #fffaf2;
  --gold: #b59065;
  --gold-dark: #8b6c43;
  --white: #ffffff;
  --header-h: 86px;
  --title-font: "Playfair Display", Georgia, serif;
  --script-font: "Great Vibes", "Playfair Display", cursive;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  width: 100%;
  min-height: var(--header-h);
  padding: 14px 38px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.dark-header {
  min-height: 74px;
  background: rgba(12, 11, 9, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand-link {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 178px;
  height: 66px;
  display: flex;
  align-items: center;
}

.brand-link img {
  width: 178px;
  max-height: 66px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a:nth-child(3) {
  margin-right: 224px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.current::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-call {
  position: absolute;
  top: 50%;
  right: 38px;
  display: grid;
  gap: 3px;
  transform: translateY(-50%);
  text-align: right;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-call span {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 140px 24px 96px;
  color: var(--white);
  text-align: center;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  filter: brightness(1.22) saturate(1.04);
}

.hero-shade {
  background: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  transform: translateY(22px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--title-font);
  font-size: 72px;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--gold);
  -webkit-text-stroke: 0.35px rgba(255, 255, 255, 0.38);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.38),
    0 10px 26px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  color: var(--white);
  -webkit-text-stroke: 0;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.78),
    0 8px 24px rgba(0, 0, 0, 0.58);
}

.hero p {
  width: min(620px, 100%);
  margin: 18px auto 32px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.44);
}

.hero .button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.hero .button-gold:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 45px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.button-gold:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: var(--white);
}

.button-outline {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: var(--white);
}

.section {
  padding: 96px 0;
}

.split-grid,
.video-grid,
.highlight-grid,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

.about-section,
.featured-dishes-section,
.gallery-section,
.video-blog-section,
.story-page {
  background: var(--paper);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.about-images img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.about-images img:nth-child(2) {
  margin-top: 54px;
}

.script-label {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-family: var(--title-font);
  font-size: 27px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
}

.section-copy h2,
.centered-copy h1,
.centered-copy h2,
.reservation-copy h2,
.story-copy h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: clamp(36px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.centered-copy p,
.reservation-copy p,
.story-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.section-copy .button {
  margin-top: 28px;
}

.section-copy .script-label,
.centered-copy .script-label,
.reservation-copy .script-label,
.story-copy .script-label {
  margin-top: 0;
  color: var(--gold-dark);
  font-family: var(--title-font);
  font-size: 27px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
}

.video-section,
.menu-highlight {
  background: #fff;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 8px solid var(--white);
  box-shadow: 0 28px 70px rgba(35, 27, 14, 0.18);
}

.video-frame video,
.video-frame iframe,
.video-trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--black);
  object-fit: cover;
}

.video-trigger {
  position: relative;
  padding: 0;
  color: var(--white);
  cursor: pointer;
}

.video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.video-trigger::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, 0.16);
  content: "";
}

.video-trigger:hover img {
  filter: brightness(0.94);
  transform: scale(1.04);
}

.video-play-mark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
}

.video-play-mark svg {
  width: 74px;
  height: 74px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--gold-dark);
  fill: currentColor;
  transform: translateZ(0);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.video-trigger:hover .video-play-mark svg {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.06);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: min(7vw, 74px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 40px));
  aspect-ratio: 16 / 9;
  background: var(--black);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.video-modal.is-short .video-modal-dialog {
  width: min(430px, calc(100vw - 40px), 50vh);
  aspect-ratio: 9 / 16;
}

.video-modal-dialog iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.video-modal-close:hover {
  background: var(--gold);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: min(7vw, 74px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(980px, calc(100vw - 40px));
}

.gallery-modal-dialog img {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.gallery-modal-dialog p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.gallery-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.gallery-modal-close:hover {
  background: var(--gold);
}

.centered-copy {
  width: min(680px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.centered-copy p {
  margin-right: auto;
  margin-left: auto;
}

.featured-dishes-section {
  background: var(--white);
}

.featured-dishes-section .centered-copy {
  margin-bottom: 58px;
}

.featured-dishes-section .script-label {
  margin-bottom: 2px;
  color: #5f6e1e;
  font-size: 20px;
}

.featured-dishes-section .centered-copy h2 {
  color: var(--gold);
  font-size: 42px;
}

.featured-dishes-section .centered-copy p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
}

.featured-dishes-section .centered-copy .script-label {
  margin-bottom: 2px;
  color: #5f6e1e;
  font-size: 20px;
  line-height: 1.1;
}

.chef-carousel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 24px;
}

.round-control {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.round-control:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.round-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.featured-dishes {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3);
  gap: 28px;
  overflow-x: auto;
  padding: 0 0 24px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.featured-dishes::-webkit-scrollbar {
  display: none;
}

.featured-dish {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0 18px;
  scroll-snap-align: start;
  text-align: center;
}

.featured-dish img {
  width: min(270px, 100%);
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: cover;
  box-shadow: none;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.featured-dish:hover img {
  transform: translateY(-3px) scale(1.02);
  box-shadow: none;
}

.featured-dish h3 {
  max-width: 180px;
  min-height: 34px;
  margin: 6px 0 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.featured-dish span {
  color: #5f6e1e;
  font-size: 12px;
  font-weight: 700;
}

.mosaic-section {
  overflow: hidden;
  background: #11100e;
}

.mosaic-grid {
  display: grid;
  width: 100%;
  aspect-ratio: 1955 / 791;
  grid-template-columns: 316fr 397fr 400fr 842fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.mosaic-tile {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  background: #11100e;
  color: var(--white);
}

.mosaic-dessert {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.mosaic-seafood {
  grid-column: 2;
  grid-row: 1;
}

.mosaic-text {
  grid-column: 3;
  grid-row: 1;
  place-items: center;
  padding: 34px;
  text-align: center;
}

.mosaic-hours {
  grid-column: 2;
  grid-row: 2;
  place-items: center;
  padding: 34px;
  text-align: center;
}

.mosaic-room {
  grid-column: 3;
  grid-row: 2;
}

.mosaic-feast {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 420ms ease, transform 420ms ease;
}

.mosaic-tile:hover img {
  filter: brightness(1.06);
  transform: scale(1.08);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: 36px;
}

.mosaic-dessert::after,
.mosaic-feast::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 9, 0.08), rgba(12, 11, 9, 0.42));
  content: "";
}

.mosaic-overlay-large {
  align-content: start;
  justify-items: start;
  padding-top: 14%;
}

.mosaic-overlay-center {
  place-items: center;
  text-align: center;
}

.mosaic-tile h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(40px, 4.4vw, 78px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.mosaic-dessert h2,
.mosaic-feast h2,
.mosaic-hours h2 {
  font-family: var(--script-font);
  font-size: clamp(42px, 4.2vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.mosaic-hours h2 {
  color: var(--gold);
  font-size: clamp(30px, 2.35vw, 44px);
  white-space: nowrap;
}

.mosaic-feast h2 {
  color: var(--white);
}

.mosaic-text .script-label {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--script-font);
  font-size: clamp(28px, 2.1vw, 38px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.mosaic-text p,
.mosaic-hours p,
.mosaic-feast p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.75;
}

.mosaic-text > div,
.mosaic-hours > div {
  max-width: 360px;
}

.mosaic-hours {
  background:
    linear-gradient(rgba(12, 11, 9, 0.86), rgba(12, 11, 9, 0.86)),
    url("assets/images/logo-gold.png") center / 250px auto no-repeat;
}

.paired-images {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 18px;
  align-items: end;
}

.paired-images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 22px 56px rgba(35, 27, 14, 0.12);
}

.paired-images img:nth-child(2) {
  margin-bottom: 42px;
}

.reverse .paired-images {
  order: 2;
}

.wine-section {
  background: var(--cream);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.video-blog-section > .container {
  width: 100%;
  max-width: none;
}

.video-blog-section .centered-copy {
  width: min(680px, calc(100% - 40px));
}

.video-blog {
  position: relative;
  display: grid;
  min-height: auto;
  overflow: visible;
  background: var(--white);
  box-shadow: none;
}

.video-blog-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
}

.video-blog-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: cover;
  transform: scale(1.04);
}

.video-blog-panel::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, 0.08);
  content: "";
}

.video-blog-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 360px;
  padding: 92px 24px 178px;
  color: var(--white);
  text-align: center;
}

.video-blog-content .script-label {
  margin-bottom: 4px;
  color: var(--gold);
}

.video-blog-content h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 58px;
  font-weight: 600;
  line-height: 0.98;
}

.video-blog-copy {
  max-width: 580px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.7;
}

.video-blog-thumbs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: min(1020px, calc(100% - 40px));
  max-width: none;
  margin: -142px auto 0;
  padding: 30px;
  background: var(--white);
}

.video-blog-thumb {
  position: relative;
  display: block;
  width: 100%;
  min-height: 150px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.video-blog-thumbs img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 280ms ease;
}

.video-blog-thumb:hover img {
  transform: scale(1.07);
}

.video-blog-thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 9, 0.05), rgba(12, 11, 9, 0.64));
  content: "";
}

.video-blog-thumb:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.video-thumb-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.video-thumb-play svg {
  width: 60px;
  height: 60px;
  padding: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  fill: currentColor;
  transition: transform 180ms ease, background 180ms ease;
}

.video-blog-thumb:hover .video-thumb-play svg {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.08);
}

.video-blog-thumbs h3 {
  display: none;
}

.gallery-section {
  background: var(--white);
}

.gallery-heading {
  margin-bottom: 42px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
  width: min(930px, 100%);
  margin: 0 auto;
  background: var(--white);
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--black);
  padding: 0;
  cursor: pointer;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 280ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, 0);
  content: "";
  transition: background 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.06);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: rgba(12, 11, 9, 0.18);
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 420px;
  background: var(--black);
  color: var(--white);
}

.reservation-section > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.reservation-copy {
  display: grid;
  align-content: center;
  padding: 72px min(8vw, 94px);
  background:
    linear-gradient(rgba(12, 11, 9, 0.9), rgba(12, 11, 9, 0.9)),
    url("assets/images/logo-gold.png") center / 420px auto no-repeat;
}

.reservation-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 58px 0;
  background: #080807;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 28px;
  line-height: 1;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.page-shell {
  min-height: 100vh;
  padding-top: 74px;
}

.page-hero {
  display: grid;
  place-items: center;
  min-height: 390px;
  padding: 80px 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
    url("assets/images/hero-background.jpg") center / cover;
  color: var(--white);
  text-align: center;
}

.compact-hero {
  min-height: 300px;
}

.page-hero p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.menu-carousel-section {
  background: var(--paper);
}

.menu-carousel {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 18px;
}

.menu-page-frame {
  margin: 0;
  text-align: center;
}

.menu-page-frame img {
  width: min(620px, 100%);
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  background: #f7f1e7;
  box-shadow: 0 24px 74px rgba(35, 27, 14, 0.18);
}

.menu-page-frame figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.carousel-control {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.carousel-control svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.carousel-control:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.menu-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.story-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.story-media img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.story-media img:nth-child(2) {
  margin-top: 70px;
}

.story-copy {
  padding: 24px 0;
}

.story-copy p:first-child {
  margin-top: 0;
}

.about-page-hero {
  min-height: 430px;
  background: url("assets/images/about-page/hero.jpg") center / cover;
}

.about-page-section {
  background: var(--white);
}

.about-page-band {
  padding: 76px 0 64px;
  overflow: visible;
  background:
    linear-gradient(90deg, #d4b792 0 82%, var(--white) 82% 100%);
}

.about-page-closing {
  background: var(--paper);
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.about-page-grid.reverse .about-page-media {
  order: 2;
}

.about-page-media {
  position: relative;
}

.about-page-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: none;
}

.about-page-media-stack img {
  box-shadow: none;
}

.about-page-media-small img {
  aspect-ratio: 10 / 7;
}

.about-page-copy {
  max-width: 540px;
}

.about-page-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-page-section:not(.about-page-band):not(.about-page-service) .about-page-copy {
  padding-top: 68px;
}

.about-page-band .about-page-copy {
  padding-top: 24px;
}

.about-page-band .about-page-copy p {
  color: rgba(25, 23, 19, 0.82);
}

.about-page-band .about-page-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 46px;
}

.about-page-band .about-page-media {
  width: calc(100% + max(20px, (100vw - 1160px) / 2));
  height: clamp(330px, 30vw, 430px);
  transform: translateY(-106px);
}

.about-page-band .about-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-page-service {
  padding-top: 0;
}

.about-page-service .about-page-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-page-service .about-page-media {
  margin-top: -34px;
}

.about-page-service .about-page-copy {
  padding-top: 74px;
}

.contact-hero {
  background:
    linear-gradient(rgba(12, 11, 9, 0.46), rgba(12, 11, 9, 0.46)),
    url("assets/images/reservation.jpg") center / cover;
}

.contact-info-section,
.contact-map-section {
  background: var(--white);
}

.contact-intro {
  width: min(680px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.contact-intro h2,
.contact-form-panel h2,
.contact-side h2,
.contact-answer h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  background: transparent;
}

.contact-info-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.contact-info-item h3 {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  text-decoration: none;
}

.contact-info-item a:hover,
.contact-side-block a:hover {
  color: var(--gold-dark);
}

.contact-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #eee8dd;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.92);
}

.contact-main-section {
  background: var(--paper);
}

.contact-answer-section {
  background: var(--paper);
}

.contact-answer {
  width: min(620px, calc(100% - 40px));
  text-align: center;
}

.contact-answer p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.contact-answer .button {
  margin: 30px 6px 0;
}

.contact-answer-socials {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
}

.contact-answer-socials a {
  color: rgba(25, 23, 19, 0.58);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-answer-socials a:hover {
  color: var(--gold-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: 68px;
}

.contact-form-panel,
.contact-side {
  min-width: 0;
}

.contact-form-panel > p:not(.script-label),
.contact-side > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(181, 144, 101, 0.24);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.contact-side {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-side-list {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.contact-side-block {
  display: grid;
  gap: 6px;
}

.contact-side-block h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.contact-side-block p,
.contact-side-block a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  text-decoration: none;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 132px auto auto;
    padding: 14px 22px;
  }

  .main-nav {
    gap: 16px;
    font-size: 11px;
  }

  .main-nav a:nth-child(3) {
    margin-right: 176px;
  }

  .header-call {
    right: 22px;
    font-size: 15px;
  }

  .header-call span {
    font-size: 10px;
  }

  .featured-dishes {
    grid-auto-columns: calc((100% - 28px) / 2);
  }

  .mosaic-grid {
    grid-template-columns: 316fr 397fr 400fr 842fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .mosaic-dessert {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .mosaic-seafood {
    grid-column: 2;
    grid-row: 1;
  }

  .mosaic-text {
    grid-column: 3;
    grid-row: 1;
  }

  .mosaic-hours {
    grid-column: 2;
    grid-row: 2;
  }

  .mosaic-room {
    grid-column: 3;
    grid-row: 2;
  }

  .mosaic-feast {
    grid-column: 4;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    grid-template-columns: 44px 1fr 44px;
    min-height: var(--header-h);
  }

  .brand-link,
  .brand-link img {
    width: 128px;
  }

  .brand-link {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    height: 50px;
  }

  .brand-link img {
    max-height: 50px;
  }

  .nav-toggle {
    position: relative;
    display: grid;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.2);
    padding: 13px 10px;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    position: absolute;
    right: 10px;
    left: 10px;
    display: block;
    height: 2px;
    background: var(--white);
    content: "";
  }

  .nav-toggle::before {
    top: 15px;
  }

  .nav-toggle::after {
    bottom: 15px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 12px 24px 26px;
    background: rgba(12, 11, 9, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav a:nth-child(3) {
    margin-right: 0;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 112px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .section {
    padding: 72px 0;
  }

  .split-grid,
  .video-grid,
  .highlight-grid,
  .story-layout,
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-page-grid.reverse .about-page-media {
    order: 0;
  }

  .about-page-band {
    padding: 72px 0;
    background: #d4b792;
  }

  .about-page-band .about-page-grid,
  .about-page-service .about-page-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-page-band .about-page-media,
  .about-page-service .about-page-media {
    width: 100%;
    height: auto;
    margin-top: 0;
    transform: none;
  }

  .about-page-band .about-page-media img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .about-page-service {
    padding-top: 72px;
  }

  .about-page-service .about-page-copy {
    padding-top: 0;
  }

  .about-page-section:not(.about-page-band):not(.about-page-service) .about-page-copy,
  .about-page-band .about-page-copy {
    padding-top: 0;
  }

  .section-copy h2,
  .centered-copy h1,
  .centered-copy h2,
  .reservation-copy h2,
  .video-blog-content h3 {
    font-size: 44px;
  }

  .reverse .paired-images {
    order: 0;
  }

  .mosaic-grid {
    aspect-ratio: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(250px, 42vw));
  }

  .mosaic-dessert {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .mosaic-seafood {
    grid-column: 2;
    grid-row: 1;
  }

  .mosaic-text {
    grid-column: 2;
    grid-row: 2;
  }

  .mosaic-hours {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .mosaic-room {
    grid-column: 1;
    grid-row: 4;
  }

  .mosaic-feast {
    grid-column: 2;
    grid-row: 4;
  }

  .reservation-section {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-auto-rows: 180px;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .menu-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .carousel-control {
    width: 44px;
    height: 50px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: 640px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .section-copy h2,
  .centered-copy h1,
  .centered-copy h2,
  .reservation-copy h2,
  .story-copy h2 {
    font-size: 27px;
    line-height: 1.1;
  }

  .about-section .section-copy h2 {
    font-size: 27px;
  }

  .about-images,
  .paired-images,
  .story-media {
    gap: 10px;
  }

  .about-page-hero {
    min-height: 340px;
    padding: 64px 18px;
  }

  .about-page-grid {
    gap: 28px;
  }

  .about-page-media-small img {
    aspect-ratio: 4 / 3;
  }

  .chef-carousel {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .round-control {
    width: 100%;
    height: 48px;
    border-radius: 0;
    order: 2;
  }

  .round-control.next {
    order: 3;
  }

  .featured-dishes {
    grid-column: 1 / -1;
    grid-auto-columns: 100%;
    gap: 18px;
    order: 1;
  }

  .featured-dish {
    padding: 8px 8px 0;
  }

  .featured-dish img {
    width: min(220px, 100%);
  }

  .featured-dish h3 {
    min-height: 34px;
    font-size: 15px;
  }

  .thumb-row {
    grid-template-columns: 1fr;
  }

  .mosaic-grid {
    aspect-ratio: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows:
      clamp(205px, 54vw, 320px)
      clamp(205px, 54vw, 320px)
      clamp(150px, 42vw, 240px)
      clamp(250px, 72vw, 420px);
  }

  .mosaic-dessert {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .mosaic-seafood {
    grid-column: 2;
    grid-row: 1;
  }

  .mosaic-text {
    grid-column: 2;
    grid-row: 2;
  }

  .mosaic-hours {
    grid-column: 1;
    grid-row: 3;
  }

  .mosaic-room {
    grid-column: 2;
    grid-row: 3;
  }

  .mosaic-feast {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .mosaic-dessert,
  .mosaic-feast,
  .mosaic-text,
  .mosaic-hours {
    min-height: 0;
  }

  .mosaic-overlay {
    padding: 18px;
  }

  .mosaic-dessert h2,
  .mosaic-feast h2 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .mosaic-text {
    padding: 18px 14px;
  }

  .mosaic-text .script-label {
    margin-bottom: 8px;
    font-size: clamp(22px, 6vw, 30px);
  }

  .mosaic-text p,
  .mosaic-hours p,
  .mosaic-feast p {
    font-size: 11px;
    line-height: 1.45;
  }

  .mosaic-hours {
    padding: 18px 14px;
  }

  .mosaic-hours h2 {
    font-size: clamp(22px, 6vw, 30px);
    white-space: normal;
  }

  .video-blog-panel {
    min-height: 420px;
  }

  .video-blog-content {
    min-height: 300px;
    padding: 64px 18px 120px;
  }

  .video-blog-thumbs {
    width: min(100% - 28px, 560px);
    margin: -86px auto 0;
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
  }

  .video-blog-thumb,
  .video-blog-thumbs img {
    min-height: 96px;
  }

  .gallery-heading {
    margin-bottom: 30px;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item-tall {
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }

  .gallery-item-tall {
    aspect-ratio: 3 / 4;
  }

  .gallery-item img {
    height: 100%;
  }

  .contact-intro {
    margin-bottom: 34px;
  }

  .contact-info-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    padding: 0;
  }

  .contact-map {
    display: grid;
  }

  .contact-map iframe {
    height: 340px;
  }

  .contact-side {
    padding: 30px 22px;
  }

  .gallery-modal {
    padding: 64px 16px 28px;
  }

  .reservation-section > img {
    min-height: 260px;
  }

  .reservation-copy {
    padding: 56px 22px;
    background-size: 270px auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-carousel {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .menu-page-frame {
    grid-column: 1 / -1;
    order: 1;
  }

  .carousel-control {
    display: inline-grid;
    place-items: center;
    width: 100%;
    order: 2;
  }

  .carousel-control.next {
    order: 3;
  }

  .menu-page-frame img {
    max-height: none;
  }
}

@media (max-width: 360px) {
  .section-copy h2,
  .centered-copy h2,
  .reservation-copy h2,
  .story-copy h2 {
    font-size: 24px;
  }

  .about-section .section-copy h2 {
    font-size: 24px;
  }
}
