@font-face {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/marcellus-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --white: #ffffff;
  --cream: #f5ecd7;
  --sun: #e8c97a;
  --gold: #c7a854;
  --taupe: #92806c;
  --ink: #4b4036; /* overlays and shadows only, never writing */
  --line: color-mix(in oklch, var(--taupe) 34%, transparent);
  --display: "Marcellus", "Baskerville", "Times New Roman", serif;
  --body: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --section: clamp(5rem, 10vw, 9rem);
  --max: 1440px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--taupe);
  font-family: var(--body);
  font-size: clamp(1rem, .97rem + .12vw, 1.075rem);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; }

::selection { background: var(--sun); color: var(--taupe); }

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

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  background: var(--taupe);
  color: var(--white);
}

.section { padding-block: var(--section); }
.section-inner { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--pad); }

.section-label {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 16ch;
  font-size: clamp(2.75rem, 6vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.025em;
}

.section-copy {
  max-width: 58ch;
  color: var(--taupe);
  font-size: clamp(1.03rem, 1rem + .3vw, 1.3rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .88rem 1.7rem;
  border: 1px solid var(--taupe);
  border-radius: 999px;
  background: transparent;
  color: var(--taupe);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px) scale(.99); }
.button--solid { background: var(--taupe); color: var(--white); }
.button--solid:hover { background: color-mix(in oklch, var(--taupe) 88%, var(--gold)); }
.button--light { border-color: var(--cream); background: var(--cream); color: var(--taupe); }
.button--light:hover { background: var(--white); }
.button--outline-light { border-color: var(--white); color: var(--white); }
.button--outline-light:hover { background: var(--white); color: var(--taupe); }

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: .45rem;
  border-bottom: 1px solid currentColor;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.text-link:hover { color: var(--gold); }

/* Fixed service controls */
.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: .8rem var(--pad);
  pointer-events: none;
}

.home-mark,
.header-tools { pointer-events: auto; }

.home-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in oklch, var(--ink) 16%, transparent);
  border-radius: 50%;
  background: color-mix(in oklch, var(--cream) 95%, transparent);
  box-shadow: 0 6px 24px color-mix(in oklch, var(--ink) 13%, transparent);
}

.home-mark img {
  display: none;
}

.home-mark::before {
  content: "";
  width: 27px;
  height: 27px;
  background: var(--taupe);
  -webkit-mask: url("/assets/img/logo-header.svg") center / contain no-repeat;
  mask: url("/assets/img/logo-header.svg") center / contain no-repeat;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.language-switch {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-inline: .35rem;
  border: 1px solid color-mix(in oklch, var(--ink) 16%, transparent);
  border-radius: 999px;
  background: color-mix(in oklch, var(--cream) 95%, transparent);
  box-shadow: 0 6px 24px color-mix(in oklch, var(--ink) 13%, transparent);
}

.language-switch button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 .55rem;
  border: 0;
  background: transparent;
  color: var(--taupe);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.language-switch button[aria-pressed="false"] { opacity: .48; }
.language-switch button[aria-pressed="true"] { text-decoration: underline; text-underline-offset: .35rem; }

.menu-button {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid color-mix(in oklch, var(--ink) 16%, transparent);
  border-radius: 50%;
  background: color-mix(in oklch, var(--cream) 95%, transparent);
  color: var(--taupe);
  box-shadow: 0 6px 24px color-mix(in oklch, var(--ink) 13%, transparent);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform .45s var(--ease), top .45s var(--ease);
}

.menu-button span:first-child { top: 19px; }
.menu-button span:last-child { top: 27px; }
.nav-open .menu-button span:first-child { top: 23px; transform: rotate(45deg); }
.nav-open .menu-button span:last-child { top: 23px; transform: rotate(-45deg); }

/* Full-screen menu */
.site-drawer {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(18rem, .82fr) minmax(28rem, 1.18fr);
  visibility: hidden;
  background: var(--cream);
  opacity: 0;
  transform: translateX(2rem);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .55s var(--ease), visibility 0s linear .55s;
}

.site-drawer[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 0s;
}

.drawer-photo { position: relative; overflow: hidden; }
.drawer-photo::after { content: ""; position: absolute; inset: 0; background: color-mix(in oklch, var(--taupe) 24%, transparent); }
.drawer-photo img { height: 100%; object-fit: cover; object-position: center; }

.drawer-content {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: 6.5rem clamp(2rem, 8vw, 8rem) 3rem;
  text-align: center;
}

.drawer-lockup { width: clamp(11rem, 22vw, 17rem); }
.drawer-lockup img { filter: drop-shadow(0 1px 0 color-mix(in oklch, var(--gold) 40%, transparent)); }

.drawer-nav { display: grid; justify-items: center; width: min(100%, 32rem); }
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.8rem);
  line-height: 1;
  transition: color .3s ease;
}

.drawer-nav a:hover { color: var(--taupe); }
.drawer-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Homepage hero */
.home-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-poster,
.hero-video,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -2; overflow: hidden; background: var(--cream); }
.hero-poster,
.hero-video {
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(.88) brightness(1.07) blur(.65px);
  transform: scale(1.025);
}
.hero-poster { z-index: 0; }
.hero-video { z-index: 1; }

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(to bottom, color-mix(in oklch, var(--ink) 14%, transparent), transparent 35%, color-mix(in oklch, var(--ink) 28%, transparent)),
    color-mix(in oklch, var(--cream) 12%, transparent);
}

.hero-content {
  display: grid;
  justify-items: center;
  width: min(100%, 48rem);
  padding: 6rem 1.25rem 2.5rem;
}

.hero-logo {
  width: clamp(17rem, 42vw, 31rem);
  filter: drop-shadow(0 3px 16px color-mix(in oklch, var(--ink) 32%, transparent));
}

.hero-city {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin-top: .05rem;
  padding: .25rem 1.05rem;
  border: 1px solid var(--sun);
  border-radius: 999px;
  color: var(--sun);
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 12px color-mix(in oklch, var(--ink) 35%, transparent);
}

.hero-actions {
  display: grid;
  gap: .75rem;
  width: min(100%, 15.5rem);
  margin-top: clamp(1.4rem, 3vh, 2.35rem);
}

.hero-actions .button { width: 100%; }

@media (prefers-reduced-motion: no-preference) {
  .hero-logo, .hero-city, .hero-actions { animation: hero-enter .8s var(--ease) both; }
  .hero-city { animation-delay: .08s; }
  .hero-actions { animation-delay: .16s; }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Homepage reservation */
.reservation-feature {
  display: grid;
  grid-template-columns: minmax(24rem, .85fr) minmax(0, 1.15fr);
  height: clamp(640px, 50vw, 720px);
  overflow: hidden;
  background: var(--white);
  contain: paint;
}

.reservation-feature__image {
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}
.reservation-feature__image img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center 52%; }
.reservation-feature__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.4rem;
  min-height: 0;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 6.5rem);
}
.reservation-feature__copy .button { margin-top: .8rem; }

/* Restaurant */
.restaurant { background: var(--cream); }
.restaurant__header {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
}
.restaurant__header .section-title { max-width: none; }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.85rem, 2vw, 1.75rem);
}
.dish-link { display: grid; gap: 1rem; min-width: 0; }
.dish-image { aspect-ratio: .72; overflow: hidden; background: var(--taupe); }
.dish-image img { height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .55s var(--ease); }
.dish-link:hover .dish-image img { transform: scale(1.025); filter: saturate(1.04); }
.dish-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  text-align: center;
}

/* Ambiance */
.ambiance {
  display: grid;
  grid-template-columns: minmax(21rem, .72fr) minmax(0, 1.28fr);
  height: clamp(620px, 48vw, 720px);
  background: var(--white);
}
.ambiance__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.5rem;
  padding: var(--section) clamp(2rem, 6vw, 6.5rem);
}
.ambiance__image { min-height: 0; overflow: hidden; }
.ambiance__image img { height: 100%; object-fit: cover; object-position: center 35%; }

/* Boutique */
.boutique { background: var(--cream); }
.boutique__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, .7fr);
  gap: 2rem 7vw;
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.boutique__heading { display: grid; gap: 1.1rem; }
.boutique__heading .section-title { max-width: none; }
.boutique__photos {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(.8rem, 2vw, 1.6rem);
  align-items: end;
}
.boutique__photos figure { overflow: hidden; }
.boutique__photos figure:first-child { height: clamp(28rem, 42vw, 39rem); }
.boutique__photos figure:last-child { height: clamp(21rem, 31vw, 29rem); }
.boutique__photos img { height: 100%; object-fit: cover; }

/* Gallery */
.gallery { background: var(--white); }
.gallery__header { display: grid; gap: 1rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.gallery__grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  grid-template-rows: repeat(2, 18rem);
  gap: clamp(.65rem, 1.3vw, 1.1rem);
}
.gallery__grid figure { overflow: hidden; }
.gallery__grid img { height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery__grid figure:hover img { transform: scale(1.02); }
.gallery__grid figure:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery__grid figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery__grid figure:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery__grid figure:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery__grid figure:nth-child(5) { grid-column: 3; grid-row: 2; }

/* Location */
.location {
  padding-bottom: clamp(1rem, 1.5vw, 1.5rem);
  background: var(--cream);
}
.location__header {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.location__header .section-title { max-width: none; }
.location__lead {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(1rem, 1rem + .24vw, 1.22rem);
  letter-spacing: .04em;
  line-height: 1.5;
  text-transform: uppercase;
}
.location__body {
  display: grid;
  grid-template-columns: minmax(18rem, .42fr) minmax(0, 1fr);
  min-height: min(70svh, 680px);
  background: var(--white);
}
.location__copy {
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: 1.35rem;
  padding: clamp(2.5rem, 5vw, 5rem);
}
.location__brand { width: min(100%, 11rem); margin-inline: auto; }
.contact-list { display: grid; width: 100%; max-width: 31rem; margin-top: .9rem; }
.contact-list a,
.contact-list p {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  color: var(--taupe);
}
.location__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }
.location__map { min-height: min(70svh, 680px); overflow: hidden; background: var(--taupe); }
.location__map iframe { display: block; width: 100%; height: 100%; min-height: inherit; border: 0; filter: saturate(.82) contrast(.94); }

/* Inner-page intro */
.page-intro {
  padding: clamp(8.5rem, 16vw, 12rem) var(--pad) clamp(4.5rem, 8vw, 7rem);
  background: var(--cream);
}
.page-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .7fr);
  gap: 2rem 8vw;
  align-items: end;
  width: min(100%, var(--max));
  margin-inline: auto;
}
.page-intro__title {
  max-width: 12ch;
  font-size: clamp(3.3rem, 8vw, 8.5rem);
  line-height: .92;
  letter-spacing: -.035em;
}
.page-intro__copy { max-width: 40ch; color: var(--taupe); font-size: clamp(1.04rem, 1rem + .35vw, 1.3rem); }

/* Reservation page */
.booking-list { background: var(--white); }
.booking-option {
  display: grid;
  grid-template-columns: minmax(20rem, .82fr) minmax(0, 1.18fr);
  min-height: 710px;
  border-bottom: 1px solid var(--line);
}
.booking-option__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.25rem;
  padding: var(--section) clamp(2rem, 6vw, 6.5rem);
}
.booking-option__copy h2 {
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: .95;
  letter-spacing: -.035em;
}
.booking-option__meta {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.booking-option__copy .section-copy { font-size: clamp(1rem, 1rem + .18vw, 1.2rem); }
.booking-option__copy .button { margin-top: .65rem; }
.booking-option__image { overflow: hidden; min-height: 680px; }
.booking-option__image img { height: 100%; object-fit: cover; object-position: center; }

.booking-note { background: var(--taupe); color: var(--white); }
.booking-note__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}
.booking-note .section-title { font-size: clamp(2.5rem, 5vw, 5rem); }
.booking-note .section-copy { color: var(--white); }
.booking-note__copy { display: grid; gap: 1rem; }

/* Menu page */
.menu-hero {
  display: grid;
  grid-template-columns: minmax(22rem, .8fr) minmax(0, 1.2fr);
  min-height: 78svh;
  background: var(--cream);
}
.menu-hero__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.3rem;
  padding: clamp(8rem, 14vw, 11rem) clamp(2rem, 6vw, 6.5rem) var(--section);
}
.menu-hero__copy h1 {
  font-size: clamp(3.6rem, 7vw, 7.8rem);
  line-height: .92;
  letter-spacing: -.035em;
}
.menu-hero__image { overflow: hidden; }
.menu-hero__image img { height: 100%; object-fit: cover; object-position: center; }

.menu-list { background: var(--white); }
.menu-choice {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, .92fr);
  min-height: 650px;
  border-bottom: 1px solid var(--line);
}
.menu-choice:nth-child(even) { grid-template-columns: minmax(22rem, .92fr) minmax(0, 1.08fr); }
.menu-choice:nth-child(even) .menu-choice__image { order: 2; }
.menu-choice__image { overflow: hidden; }
.menu-choice__image img { height: 100%; object-fit: cover; }
.menu-choice__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.25rem;
  padding: var(--section) clamp(2rem, 6vw, 6.5rem);
}
.menu-choice__copy h2 { font-size: clamp(2.8rem, 5vw, 5.8rem); line-height: .98; }
.menu-choice__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .8rem; }
.menu-service { background: var(--cream); text-align: center; }
.menu-service__inner { display: grid; justify-items: center; gap: 1rem; }
.menu-service .section-title { max-width: none; font-size: clamp(2.5rem, 5vw, 5rem); }

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .35rem 2rem;
  padding: .65rem var(--pad) .75rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--taupe);
}
.footer-meta,
.footer-credit { font-size: .72rem; line-height: 1.4; }
.footer-credit { text-align: right; }
.footer-credit a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid color-mix(in oklch, var(--taupe) 55%, transparent);
  color: var(--taupe);
}
.footer-credit a:hover { border-color: var(--gold); }

@media (min-width: 961px) {
  .reservation-feature { grid-template-rows: minmax(0, 1fr); }
}

@media (max-width: 960px) {
  .site-drawer { grid-template-columns: 1fr; }
  .drawer-photo { display: none; }
  .drawer-content { padding-inline: var(--pad); }
  .reservation-feature,
  .ambiance,
  .booking-option,
  .menu-hero,
  .menu-choice,
  .menu-choice:nth-child(even) { grid-template-columns: 1fr; }
  .reservation-feature { height: auto; }
  .reservation-feature__image { height: min(64svh, 590px); }
  .ambiance { height: auto; }
  .ambiance__copy { order: 2; }
  .ambiance__image { height: min(68svh, 620px); }
  .boutique__header { grid-template-columns: 1fr; align-items: start; }
  .boutique__header .section-copy { max-width: 52ch; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 19rem 12rem 17rem; }
  .gallery__grid figure:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery__grid figure:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery__grid figure:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery__grid figure:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery__grid figure:nth-child(5) { grid-column: 2; grid-row: 3; }
  .location__body { grid-template-columns: 1fr; }
  .location__copy { order: 2; }
  .location__map { min-height: min(62svh, 560px); }
  .page-intro__inner { grid-template-columns: 1fr; align-items: start; }
  .page-intro__copy { max-width: 48ch; }
  .booking-option { min-height: 0; }
  .booking-option__image { order: -1; min-height: min(82svh, 720px); }
  .booking-note__inner { grid-template-columns: 1fr; }
  .menu-hero__image { order: -1; min-height: min(68svh, 620px); }
  .menu-choice { min-height: 0; }
  .menu-choice:nth-child(even) .menu-choice__image { order: 0; }
  .menu-choice__image { min-height: min(72svh, 650px); }
}

@media (max-width: 720px) {
  :root { --pad: 1.25rem; --section: clamp(4.5rem, 18vw, 6.5rem); }
  .site-header { min-height: 68px; padding-top: .65rem; }
  .home-mark, .menu-button { width: 46px; height: 46px; }
  .language-switch { min-height: 46px; }
  .header-tools { gap: .4rem; }
  .language-switch button { min-width: 44px; padding-inline: .35rem; }
  .menu-button span { left: 12px; }
  .drawer-content { align-content: start; padding-top: 7rem; overflow-y: auto; }
  .drawer-lockup { width: 11rem; }
  .drawer-nav a { min-height: 52px; font-size: clamp(1.55rem, 8vw, 2.25rem); }
  .hero-content { padding-top: 5.5rem; }
  .hero-logo { width: min(88vw, 27rem); }
  .hero-city { margin-top: .35rem; }
  .hero-actions { margin-top: 2.1rem; }
  .section-title { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .reservation-feature__image { height: 66svh; }
  .reservation-feature__copy,
  .ambiance__copy,
  .location__copy,
  .booking-option__copy,
  .menu-choice__copy { padding-inline: var(--pad); }
  .reservation-feature__copy,
  .ambiance__copy { padding-block: 4rem; }
  .dish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem .75rem; }
  .dish-image { aspect-ratio: .76; }
  .dish-label { font-size: 1.05rem; }
  .ambiance__image { height: min(52svh, 460px); }
  .boutique__photos { grid-template-columns: 1fr 1fr; align-items: start; }
  .boutique__photos figure:first-child { height: 28rem; }
  .boutique__photos figure:last-child { height: 21rem; margin-top: 4rem; }
  .gallery__grid { grid-template-rows: 17rem 11rem 15rem; }
  .page-intro { padding-top: 8rem; }
  .page-intro__title { font-size: clamp(3.2rem, 17vw, 5.4rem); }
  .booking-option__image { min-height: 65svh; }
  .booking-option__copy h2 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .booking-note .button { width: 100%; }
  .menu-hero { min-height: 0; }
  .menu-hero__image { min-height: 58svh; }
  .menu-hero__copy { padding: 4.5rem var(--pad); }
  .menu-hero__copy h1 { font-size: clamp(3.6rem, 18vw, 5.5rem); }
  .menu-choice__image { min-height: 58svh; }
  .menu-choice__actions { display: grid; width: 100%; }
  .menu-choice__actions .button { width: 100%; }
  .site-footer { align-items: flex-start; }
}

@media (max-width: 380px) {
  .hero-logo { width: 94vw; }
  .hero-actions { width: min(100%, 14.5rem); }
  .button { padding-inline: 1.2rem; font-size: .7rem; }
  .boutique__photos figure:first-child { height: 24rem; }
  .boutique__photos figure:last-child { height: 18rem; }
}

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

@media (max-width: 560px) {
  .site-footer { flex-direction: column; gap: 0; }
  .footer-credit { margin-top: -.35rem; text-align: left; }
}
