@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Quantico:wght@400;700&display=swap");

:root {
  --blue: #0b245e;
  --blue-dark: #071943;
  --white: #ffffff;
  --cream: #f6f3ec;
  --sand: #dfd4c1;
  --ink: #141414;
  --muted: #676767;
  --line: rgba(11, 36, 94, 0.16);
  --display: "Quantico", Arial, sans-serif;
  --sans: "Barlow", Arial, sans-serif;
  --header-height: 84px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(7, 25, 67, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #d9a429;
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  letter-spacing: 0.01em;
}

h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  font-size: 1.2em;
  content: "↗";
}

.text-link-plain::after {
  content: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Navigation */

body > header {
  position: sticky;
  z-index: 1000;
  top: 0;
}

#navigation,
#navigation-mentions {
  position: relative;
  z-index: 1;
  height: var(--header-height);
  border-bottom: 1px solid rgba(11, 36, 94, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  transition: background-color 350ms ease, border-color 350ms ease;
}

.skip-link {
  position: absolute;
  z-index: 2000;
  top: -80px;
  left: 20px;
  padding: 12px 16px;
  background: var(--blue);
  color: var(--white);
}

.skip-link:focus {
  top: 10px;
}

.nav-inner {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: 210px 1fr 210px;
}

.brand {
  display: inline-flex;
  width: 165px;
  align-items: center;
}

.brand img {
  max-height: 52px;
  object-fit: contain;
  transition: filter 350ms ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
}

.desktop-nav a {
  position: relative;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.social-link {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color 180ms ease, transform 180ms ease;
}

.social-link img {
  width: 16px;
  height: 16px;
  filter: none;
}

.social-link:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.nav-actions .button {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.66rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition:
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    background-color 300ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.menu-open .menu-toggle span {
  background: transparent;
}

.menu-open .menu-toggle {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: rotate(90deg);
}

.menu-open .menu-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* Hero */

#hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  align-items: end;
  background: var(--blue-dark);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  animation: heroReveal 1.1s ease both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 16, 45, 0.68) 0%, rgba(4, 16, 45, 0.24) 46%, rgba(4, 16, 45, 0.06) 72%),
    linear-gradient(0deg, rgba(4, 16, 45, 0.52) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9vh 0 124px;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 5.1vw, 5rem);
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 26px;
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 25, 67, 0.64);
  backdrop-filter: blur(10px);
}

.hero-facts-inner {
  display: grid;
  min-height: 82px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fact:first-child {
  padding-left: 0;
  border-left: 0;
}

@keyframes heroReveal {
  from {
    opacity: 0.5;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Restaurant */

#restaurant {
  padding: clamp(90px, 12vw, 168px) 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) - clamp(90px, 12vw, 168px));
}

.restaurant-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.restaurant-copy {
  max-width: 520px;
}

.restaurant-copy .intro {
  margin-bottom: 24px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.24;
}

.restaurant-copy p:not(.intro) {
  color: var(--muted);
}

.restaurant-visuals {
  position: relative;
  min-height: 660px;
}

.restaurant-visuals .image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 79%;
  height: 84%;
  object-fit: cover;
}

.restaurant-visuals .image-accent {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 46%;
  border: 10px solid var(--white);
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

/* Brunch */

#brunch {
  padding: clamp(100px, 13vw, 180px) 0;
  overflow: hidden;
  background: var(--cream);
  scroll-margin-top: calc(var(--header-height) - clamp(100px, 13vw, 180px));
}

.brunch-grid {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  align-items: start;
  gap: clamp(56px, 6vw, 88px);
  grid-template-columns: minmax(0, 1.25fr) minmax(400px, 0.75fr);
}

.brunch-collage {
  display: grid;
  min-height: 720px;
  gap: 14px;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 0.9fr 1.1fr;
}

.brunch-collage img {
  height: 100%;
  object-fit: cover;
}

.brunch-collage img:first-child {
  grid-row: 1 / 3;
}

.brunch-copy {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.brunch-time {
  display: inline-block;
  margin-bottom: 26px;
  padding: 9px 15px;
  border: 1px solid var(--blue);
  border-radius: 99px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brunch-copy > p {
  color: #4f4c47;
}

.brunch-list {
  display: grid;
  margin: 32px 0 36px;
  gap: 0;
}

.brunch-item {
  padding: 20px 0;
  border-top: 1px solid rgba(11, 36, 94, 0.18);
}

.brunch-item:last-child {
  border-bottom: 1px solid rgba(11, 36, 94, 0.18);
}

.brunch-item h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 0.78rem;
}

.brunch-item p {
  margin: 0;
  font-size: 0.92rem;
}

/* Privatisation */

#privatisation {
  padding: clamp(100px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.06), transparent 28%),
    var(--blue-dark);
  color: var(--white);
  scroll-margin-top: calc(var(--header-height) - clamp(100px, 11vw, 150px));
}

.private-grid {
  display: grid;
  align-items: start;
  gap: clamp(64px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.private-heading {
  align-self: center;
}

#privatisation h2 {
  margin-bottom: 34px;
  color: var(--white);
  max-width: 100%;
  font-size: clamp(2.7rem, 3.3vw, 3.1rem);
}

.private-lead {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  line-height: 1.1;
  text-wrap: balance;
}

.private-intro {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.private-details {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.private-list {
  display: grid;
}

.private-detail {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  align-items: center;
  gap: 24px;
  grid-template-columns: 48px 1fr;
}

.table-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(11, 36, 94, 0.16);
  border-radius: 12px;
  background: rgba(11, 36, 94, 0.045);
}

.table-icon img {
  display: block;
  width: 21px;
  height: 21px;
}

.private-detail .table-icon {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.private-detail .table-icon img {
  filter: brightness(0) invert(1);
}

.private-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.55;
}

.private-note {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(1.12rem, 1.45vw, 1.35rem);
  line-height: 1.35;
}

/* Galerie */

#galerie {
  padding: clamp(90px, 12vw, 160px) 0;
  scroll-margin-top: calc(var(--header-height) - clamp(90px, 12vw, 160px));
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.gallery-head h2 {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  margin-top: 44px;
  gap: 8px;
  grid-auto-flow: dense;
  grid-auto-rows: 280px;
  grid-template-columns: repeat(12, 1fr);
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  background: var(--cream);
  cursor: zoom-in;
  grid-column: span 4;
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 5;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(7) {
  grid-column: span 7;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 5;
}

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

.gallery-focus-table img {
  object-position: 50% 28%;
}

.gallery-focus-eggs img {
  object-position: 50% 60%;
}

/* Reservation */

#reservation {
  padding: clamp(88px, 10vw, 140px) 0;
  background: var(--blue);
  color: var(--white);
  scroll-margin-top: calc(var(--header-height) - clamp(88px, 10vw, 140px));
}

.reservation-head {
  text-align: center;
}

#reservation h2 {
  margin-bottom: 0;
  color: var(--white);
  text-align: center;
}

.reservation-head p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.booking-shell {
  margin-top: 60px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-shell iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

/* Info */

#infos {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1fr 1fr;
  scroll-margin-top: calc(var(--header-height) - 24px);
}

.info-image {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-content {
  display: flex;
  align-items: center;
  padding: clamp(70px, 9vw, 130px);
  background: var(--cream);
}

.info-content h2 {
  font-size: clamp(3.1rem, 5.6vw, 5.6rem);
}

.info-list {
  display: grid;
  margin: 40px 0 36px;
  border-top: 1px solid var(--line);
}

.info-row {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 18px;
  grid-template-columns: 48px 1fr;
}

.info-row span,
.info-row a {
  color: #4d4d4d;
  text-decoration: none;
}

/* Footer */

#footer,
#footer-mentions {
  padding: 80px 0 38px;
  background: var(--blue-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
}

.footer-brand {
  width: min(310px, 100%);
  filter: brightness(0) invert(1);
}

.footer-title {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-bottom {
  display: flex;
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials .social-link {
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-socials .social-link img {
  filter: brightness(0) invert(1);
}

/* Lightbox */

#lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 72px;
  background: rgba(3, 12, 33, 0.94);
}

#lightbox.is-open {
  display: grid;
}

.lightbox-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lightbox-close {
  top: 22px;
  right: 24px;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-previous {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  right: 50%;
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: translateX(50%);
}

/* Mobile sticky CTA */

#mobile-reservation {
  display: none;
}

/* Legal page */

#mentions-legales {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}

.legal-intro {
  max-width: 850px;
  margin-bottom: 70px;
}

.legal-intro h1 {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.legal-intro p {
  color: var(--muted);
}

.legal-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.legal-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-card h2 {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--blue);
}

@media (max-width: 1080px) {
  .nav-inner {
    grid-template-columns: 145px 1fr 115px;
  }

  .brand {
    width: 135px;
  }

  .desktop-nav {
    gap: 10px;
  }

  .desktop-nav a {
    font-size: 0.58rem;
  }

  .nav-actions .social-link {
    display: none;
  }

  .nav-actions .button {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.6rem;
  }

  .info-content {
    padding: 70px;
  }

  .brunch-grid {
    width: min(860px, calc(100% - 48px));
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .brunch-collage {
    min-height: 640px;
  }

  .brunch-copy {
    position: static;
  }
}

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

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 32px, 680px);
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
  }

  #navigation,
  #navigation-mentions {
    background: var(--white);
    backdrop-filter: none;
  }

  .brand {
    width: 140px;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-open #navigation,
  .menu-open #navigation-mentions {
    border-color: rgba(255, 255, 255, 0.14);
    background: var(--blue-dark);
  }

  .menu-open .brand img {
    filter: brightness(0) invert(1);
  }

  .mobile-nav {
    position: fixed;
    z-index: 10;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 34px 24px 54px;
    overflow-y: auto;
    background:
      radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.11), transparent 28%),
      var(--blue-dark);
    clip-path: circle(0% at calc(100% - 38px) 0);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      clip-path 650ms cubic-bezier(0.77, 0, 0.18, 1),
      opacity 240ms ease,
      visibility 0s linear 650ms;
  }

  .menu-open .mobile-nav {
    clip-path: circle(150% at calc(100% - 38px) 0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition:
      clip-path 650ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 240ms ease,
      visibility 0s linear 0s;
  }

  .mobile-nav > a {
    width: min(100%, 440px);
    padding: 5px 0;
    border: 0;
    color: var(--white);
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.9rem, 8vw, 3.2rem);
    line-height: 1.05;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 320ms ease,
      transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
      color 180ms ease;
  }

  .mobile-nav > a:hover {
    color: var(--sand);
  }

  .mobile-nav > a:nth-child(7) {
    width: auto;
    margin-top: 14px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-open .mobile-nav > a {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-open .mobile-nav > a:nth-child(1) {
    transition-delay: 160ms;
  }

  .menu-open .mobile-nav > a:nth-child(2) {
    transition-delay: 210ms;
  }

  .menu-open .mobile-nav > a:nth-child(3) {
    transition-delay: 260ms;
  }

  .menu-open .mobile-nav > a:nth-child(4) {
    transition-delay: 310ms;
  }

  .menu-open .mobile-nav > a:nth-child(5) {
    transition-delay: 360ms;
  }

  .menu-open .mobile-nav > a:nth-child(6) {
    transition-delay: 410ms;
  }

  .menu-open .mobile-nav > a:nth-child(7) {
    transition-delay: 460ms;
  }

  .mobile-socials {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    gap: 10px;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 300ms ease,
      transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .menu-open .mobile-socials {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 510ms;
  }

  .mobile-socials a {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: background-color 180ms ease, transform 180ms ease;
  }

  .mobile-socials a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .mobile-socials img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }

  #hero {
    display: block;
    min-height: auto;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 16, 45, 0.94) 0%, rgba(4, 16, 45, 0.74) 28%, rgba(4, 16, 45, 0.08) 62%, transparent 78%),
      linear-gradient(90deg, rgba(4, 16, 45, 0.18), transparent);
  }

  .hero-content {
    display: flex;
    min-height: calc(100svh - var(--header-height));
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(310px, 44svh, 440px) 0 42px;
  }

  .hero-content h1 {
    margin-bottom: 20px;
    font-size: clamp(3.2rem, 8.5vw, 4.5rem);
  }

  .hero-lead {
    max-width: 540px;
    margin-bottom: 26px;
    font-size: 1rem;
  }

  .hero-facts {
    position: relative;
    background: var(--blue-dark);
    backdrop-filter: none;
  }

  .hero-facts-inner {
    min-height: auto;
    padding: 18px 0;
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:first-child {
    min-height: auto;
    padding: 3px 0;
    border: 0;
  }

  .restaurant-grid,
  .brunch-grid,
  .private-grid,
  .reservation-head {
    grid-template-columns: 1fr;
  }

  .restaurant-visuals {
    min-height: 530px;
  }

  .brunch-collage {
    min-height: 580px;
  }

  .brunch-copy {
    position: static;
  }

  .private-grid {
    gap: 58px;
  }

  .private-heading {
    max-width: 680px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    grid-column: span 6;
  }

  .gallery-item:nth-child(1) {
    grid-row: span 2;
  }

  #infos {
    grid-template-columns: 1fr;
  }

  .info-content {
    padding: 80px max(24px, calc((100vw - 680px) / 2));
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / 3;
  }

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

  #mobile-reservation {
    position: fixed;
    z-index: 1500;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--blue);
  }

  #mobile-reservation .button {
    width: 100%;
    min-height: 52px;
    border-color: var(--white);
    background: var(--white);
    color: var(--blue);
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height));
    padding: clamp(240px, 38svh, 330px) 0 100px;
  }

  .hero-content h1 {
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 9.5vw, 3rem);
  }

  .hero-lead {
    max-width: 340px;
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: none;
  }

  .private-grid {
    gap: 48px;
  }

  #privatisation h2 {
    margin-bottom: 28px;
    font-size: clamp(2.4rem, 10vw, 2.9rem);
  }

  .private-lead {
    font-size: 1.75rem;
  }

  .private-heading .button {
    width: 100%;
  }

  .private-detail {
    gap: 16px;
    grid-template-columns: 48px 1fr;
  }

  .restaurant-visuals {
    min-height: 420px;
  }

  .restaurant-visuals .image-main {
    width: 88%;
  }

  .restaurant-visuals .image-accent {
    width: 54%;
    border-width: 6px;
  }

  .brunch-collage {
    min-height: 460px;
  }

  .brunch-collage img:first-child {
    grid-row: 1 / 3;
  }

  .gallery-head {
    display: block;
  }

  .gallery-head .text-link {
    margin-top: 20px;
  }

  .gallery-grid {
    grid-auto-rows: 225px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .booking-shell {
    margin-inline: -8px;
  }

  .booking-shell iframe {
    min-height: 720px;
  }

  .info-image {
    min-height: 440px;
  }

  .info-content {
    padding-inline: 24px;
  }

  .info-row {
    gap: 16px;
    grid-template-columns: 48px 1fr;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  #lightbox {
    padding: 70px 16px 30px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: scale(1.05);
  }

  .lightbox-previous {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .lightbox-counter {
    bottom: 29px;
  }
}

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