:root {
  --ink: #261d18;
  --night: #17120f;
  --night-soft: #201812;
  --paper: #f4eee6;
  --paper-light: #fffaf4;
  --sand: #e9ddcf;
  --line: rgba(72, 55, 42, 0.18);
  --line-dark: rgba(255, 248, 238, 0.22);
  --muted: #756457;
  --gold: #b79671;
  --white: #fffaf3;
  --shadow: 0 22px 70px rgba(42, 30, 20, 0.14);
}

html.fonts-loading body {
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 6%, rgba(183, 150, 113, 0.09), transparent 30rem),
    linear-gradient(180deg, #090807 0%, #17120f 46%, #0b0908 100%);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  width: min(100%, 1450px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--night);
  box-shadow: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 90px;
  padding: 23px clamp(26px, 5vw, 58px);
  background: linear-gradient(180deg, rgba(18, 13, 10, 0.9), rgba(18, 13, 10, 0.64));
  color: var(--white);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  min-width: 172px;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  letter-spacing: 0.23em;
  white-space: nowrap;
}

.brand small {
  margin-top: 7px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.33em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.45vw, 25px);
  width: 100%;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: 180ms ease;
}

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

.main-nav .nav-cta {
  margin-left: 8px;
  padding: 14px 21px;
  border: 1px solid rgba(255, 250, 243, 0.55);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero,
.contact-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 138px clamp(34px, 7vw, 92px) 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 17, 14, 0.98), rgba(24, 18, 14, 0.82) 52%, rgba(28, 20, 15, 0.68)),
    radial-gradient(circle at 78% 40%, rgba(196, 154, 102, 0.22), transparent 25rem),
    var(--night);
  color: var(--white);
}

.hero::before,
.contact-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
  content: "";
  pointer-events: none;
}

.hero-copy,
.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 465px;
}

.hero-copy.narrow {
  max-width: 380px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
.quote-strip blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.7vw, 82px);
  line-height: 0.95;
}

h1 em {
  font-style: italic;
}

.hero-copy p:not(.eyebrow),
.contact-copy > p {
  max-width: 400px;
  margin-bottom: 30px;
  color: rgba(255, 250, 243, 0.84);
  font-size: 15px;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

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

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: rgba(255, 250, 243, 0.55);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #6b4a35;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-link::after {
  content: "->";
  font-size: 13px;
  letter-spacing: 0;
}

.text-link.light {
  color: var(--white);
}

.hero-home {
  min-height: 596px;
  grid-template-columns: minmax(320px, 0.8fr) minmax(460px, 1.2fr);
  column-gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.hero-plate {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(690px, 100%);
  aspect-ratio: 1.95 / 1;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(183, 150, 113, 0.34);
  border-radius: 999px;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.44);
  opacity: 1;
}

.hero-plate img,
.menu-dish img {
  position: relative;
  z-index: 1;
}

.hero-plate img {
  object-position: center 55%;
}

.hero-plate::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    linear-gradient(
      115deg,
      rgba(183, 150, 113, 0.32) 0%,
      rgba(255, 236, 178, 0.9) 12%,
      rgba(183, 150, 113, 0.34) 23%,
      rgba(183, 150, 113, 0.14) 45%,
      rgba(255, 239, 198, 0.72) 58%,
      rgba(183, 150, 113, 0.28) 70%,
      rgba(183, 150, 113, 0.16) 100%
    );
  background-size: 240% 100%;
  content: "";
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.2;
  animation: maree-gold-border-continuous 8.8s linear infinite;
  will-change: background-position, opacity;
}

.hero-plate::after,
.menu-dish::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 13, 8, 0.08), transparent 36%),
    linear-gradient(180deg, transparent 58%, rgba(20, 13, 8, 0.18));
  content: "";
}

.intro-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 48px clamp(40px, 7vw, 108px);
  background: var(--paper-light);
}

.intro-copy {
  max-width: 450px;
}

.intro-copy h2 {
  margin: -10px 0 28px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.intro-copy p:not(.section-kicker) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.image-panel {
  height: 246px;
  margin: 0;
  overflow: hidden;
}

.dish-panel {
  height: clamp(300px, 25vw, 360px);
}

.dish-panel img {
  object-position: center 52%;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 31px clamp(34px, 6vw, 84px);
  background: var(--night);
  color: var(--white);
}

.feature-strip article,
.soft-strip article,
.private-features article,
.reservation-note {
  display: flex;
  align-items: center;
  gap: 18px;
}

.line-icon {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
}

.feature-strip h3,
.soft-strip h3,
.private-features h2,
.hours-card h2,
.course h2 {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.feature-strip p,
.soft-strip p,
.private-features p {
  margin: 0;
  color: rgba(255, 250, 243, 0.72);
  font-size: 12px;
}

.hero-about,
.hero-private {
  min-height: 430px;
  grid-template-columns: minmax(290px, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}

.hero-photo,
.private-hero-photo {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 245px;
  margin: -58px -42px -34px 0;
  overflow: hidden;
  opacity: 0.76;
  mix-blend-mode: screen;
}

.chef-photo {
  border-radius: 0;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(350px, 1fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  padding: 43px clamp(46px, 8vw, 116px);
  background: var(--paper-light);
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.wide-photo {
  height: 262px;
  margin: 0;
  overflow: hidden;
}

.quote-strip {
  padding: 38px 28px 42px;
  background:
    radial-gradient(circle at 50% 0, rgba(187, 150, 104, 0.14), transparent 22rem),
    var(--night);
  color: var(--white);
  text-align: center;
}

.quote-strip blockquote {
  margin: 0;
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.1;
}

.quote-strip span {
  color: var(--gold);
}

.quote-strip p {
  margin: 11px 0 0;
  color: rgba(255, 250, 243, 0.72);
  font-size: 12px;
}

.hero-menu {
  min-height: 350px;
  grid-template-columns: minmax(310px, 0.78fr) minmax(460px, 1.22fr);
  column-gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.menu-dish {
  position: relative;
  justify-self: end;
  width: min(700px, 100%);
  aspect-ratio: 1.65 / 1;
  margin-top: 24px;
  overflow: visible;
  opacity: 1;
}

.menu-dish img {
  object-fit: contain;
  object-position: center;
}

.menu-dish-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.menu-dish-frame path {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-dish-frame-cover path {
  stroke: rgba(22, 15, 11, 0.9);
  stroke-width: 8.4;
}

.menu-dish-frame-cover path:first-child {
  stroke: rgba(31, 18, 11, 0.88);
  stroke-width: 9.2;
}

.menu-dish-frame-lines path {
  filter: drop-shadow(0 0 2px rgba(208, 148, 62, 0.12));
  opacity: 0.56;
  stroke: url("#menuFrameGold");
  stroke-width: 1.45;
}

.menu-dish-frame-lines path:first-child {
  opacity: 0.76;
  stroke-width: 1.65;
  transform-box: fill-box;
  transform-origin: center;
  animation: maree-menu-frame-drift 14s ease-in-out infinite;
  will-change: transform;
}

.menu-dish-frame-shine {
  display: none;
}

.menu-dish::after {
  display: none;
}

@keyframes maree-gold-border-sweep {
  0% {
    background-position: 145% 50%;
    opacity: 0;
  }

  12% {
    background-position: 128% 50%;
    opacity: 0;
  }

  22% {
    opacity: 0.7;
  }

  54% {
    background-position: 0% 50%;
    opacity: 0.72;
  }

  72% {
    background-position: -62% 50%;
    opacity: 0;
  }

  100% {
    background-position: -62% 50%;
    opacity: 0;
  }
}

@keyframes maree-gold-border-continuous {
  0% {
    background-position: 140% 50%;
    opacity: 0.2;
  }

  16% {
    opacity: 0.54;
  }

  50% {
    background-position: 8% 50%;
    opacity: 0.68;
  }

  84% {
    opacity: 0.54;
  }

  100% {
    background-position: -92% 50%;
    opacity: 0.2;
  }
}

@keyframes maree-menu-frame-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(4px, -3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-plate::before {
    animation: none;
    background-position: 52% 50%;
  }

  .menu-dish-frame-lines path:first-child {
    animation: none;
    transform: none;
  }
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(240px, 0.46fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
  padding: 32px clamp(46px, 7vw, 100px) 45px;
  background: var(--paper-light);
}

.menu-card {
  min-width: 0;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  border-bottom: 1px solid var(--line);
}

.tab {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: left;
  text-transform: uppercase;
}

.tab.is-active {
  border-bottom-color: var(--gold);
  color: #6d4630;
}

.tab-panel {
  display: none;
  max-width: 780px;
  padding-top: 26px;
}

.tab-panel.is-active {
  display: block;
}

.course {
  margin-bottom: 30px;
}

.course p {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin: 0 0 9px;
  color: #4e433b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.25;
}

.course strong {
  min-width: 50px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.menu-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.menu-intro > p {
  max-width: 285px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.menu-highlight {
  min-width: 245px;
  padding: 15px 18px;
  border: 1px solid rgba(183, 150, 113, 0.34);
  background: rgba(239, 228, 216, 0.58);
}

.menu-highlight span,
.wine-arrangement span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-highlight strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(72, 55, 42, 0.1);
}

.menu-item:first-of-type {
  padding-top: 5px;
}

.menu-item h3 {
  margin: 0 0 4px;
  color: #3a2b22;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

.menu-item strong {
  flex: 0 0 auto;
  min-width: 58px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.wine-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.wine-arrangement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(183, 150, 113, 0.36);
  background: linear-gradient(135deg, rgba(239, 228, 216, 0.86), rgba(255, 250, 244, 0.56));
}

.wine-arrangement p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.wine-arrangement dl {
  display: grid;
  gap: 8px;
  min-width: 138px;
  margin: 0;
}

.wine-arrangement dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.wine-arrangement dt,
.wine-arrangement dd {
  margin: 0;
  font-size: 12px;
}

.wine-arrangement dt {
  color: var(--muted);
}

.wine-arrangement dd {
  color: var(--ink);
  font-weight: 800;
}

.wine-course .menu-item strong {
  min-width: 94px;
}

.sommelier-note {
  position: sticky;
  top: 112px;
  padding: 25px 24px 27px;
  border-left: 1px solid rgba(183, 150, 113, 0.42);
  background:
    linear-gradient(180deg, rgba(32, 24, 18, 0.94), rgba(23, 18, 15, 0.96)),
    var(--night);
  color: var(--white);
}

.sommelier-note h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.sommelier-note p:not(.section-kicker) {
  margin-bottom: 23px;
  color: rgba(255, 250, 243, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.sommelier-note .text-link {
  color: var(--white);
}

.menu-side-photo {
  height: 405px;
  margin: 28px 0 0;
  overflow: hidden;
}

.soft-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px clamp(40px, 7vw, 100px);
  background: #efe4d8;
}

.soft-strip p {
  color: var(--muted);
}

.reservation-page {
  padding-top: 90px;
  background: var(--paper-light);
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(420px, 1fr);
  min-height: 650px;
}

.reserve-visual {
  min-height: 650px;
  margin: 0;
  background: var(--night);
}

.booking-panel {
  display: flex;
  align-items: center;
  padding: 86px clamp(40px, 7vw, 88px) 56px;
}

.booking-form {
  width: 100%;
  max-width: 550px;
}

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

label {
  display: block;
  margin-bottom: 15px;
  color: #6e5d51;
  font-size: 11px;
  font-weight: 700;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  min-height: 45px;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 250, 244, 0.72);
  color: var(--ink);
  font-size: 13px;
  outline: none;
  padding: 0 14px;
}

textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183, 150, 113, 0.15);
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #6e5d51;
  font-size: 12px;
}

.reservation-note {
  padding: 30px clamp(44px, 7vw, 98px);
  background: #efe4d8;
  color: var(--muted);
}

.reservation-note p {
  margin: 0;
  font-size: 13px;
}

.private-hero-photo {
  min-height: 260px;
  mix-blend-mode: normal;
  opacity: 0.75;
}

.private-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 46px clamp(42px, 6vw, 92px);
  background: var(--paper-light);
}

.private-features article {
  flex-direction: column;
  padding: 0 clamp(20px, 3vw, 46px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.private-features article:last-child {
  border-right: 0;
}

.private-features p {
  color: var(--muted);
}

.private-contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1fr;
  min-height: 200px;
  background: var(--night-soft);
  color: var(--white);
}

.private-contact figure {
  min-height: 220px;
  margin: 0;
}

.private-contact div {
  align-self: center;
  padding: 42px clamp(38px, 6vw, 72px);
}

.private-contact p {
  margin-bottom: 22px;
  color: rgba(255, 250, 243, 0.74);
  font-size: 16px;
}

.contact-hero {
  grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: 500px;
}

.contact-copy h1 {
  margin-bottom: 22px;
}

.contact-list {
  display: grid;
  gap: 19px;
  margin: 34px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
}

.contact-list dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.map-panel {
  position: relative;
  z-index: 1;
  min-height: 310px;
  margin-right: -44px;
  overflow: hidden;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(183, 150, 113, 0.16), transparent 14rem),
    #120e0b;
}

.map-preview {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 310px;
  overflow: hidden;
  background:
    linear-gradient(132deg, transparent 0 22%, rgba(183, 150, 113, 0.08) 22.2% 22.7%, transparent 22.9% 53%, rgba(183, 150, 113, 0.06) 53.2% 53.7%, transparent 53.9%),
    linear-gradient(38deg, transparent 0 34%, rgba(255, 250, 243, 0.045) 34.2% 34.7%, transparent 34.9% 66%, rgba(255, 250, 243, 0.04) 66.2% 66.7%, transparent 66.9%),
    radial-gradient(circle at 50% 52%, rgba(183, 150, 113, 0.15), transparent 10rem),
    #120e0b;
}

.map-preview-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.restaurant-marker {
  position: relative;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 250, 243, 0.72);
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #dfc08f, #a47b50);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
  transform: rotate(-45deg);
}

.map-preview-label {
  position: absolute;
  left: 50%;
  top: calc(50% + 62px);
  z-index: 2;
  color: rgba(255, 250, 243, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.restaurant-marker::after {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--night);
  box-shadow: inset 0 0 0 3px rgba(255, 250, 243, 0.72);
  content: "";
}

.restaurant-marker::before {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 44px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.36);
  content: "";
  filter: blur(6px);
  transform: rotate(45deg);
}

.map-open-link {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 600;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 250, 243, 0.4);
  background: rgba(23, 18, 15, 0.78);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-lower {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(320px, 0.7fr);
  background: var(--paper-light);
}

.contact-lower figure {
  min-height: 300px;
  margin: 0;
}

.hours-card {
  padding: 60px clamp(42px, 6vw, 86px);
}

.hours-card h2 {
  margin: 0 0 17px;
}

.hours-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.hours-card strong {
  color: var(--ink);
}

.hours-card span {
  float: right;
  color: var(--ink);
}

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

/* Let section backgrounds reach the viewport edge on wide screens while the
   existing De Maree composition stays centered at its 1450px design width. */
@media (min-width: 1451px) {
  .site-shell {
    overflow: visible;
  }

  .reservation-page {
    position: relative;
  }

  .reservation-page::before {
    position: absolute;
    z-index: 0;
    inset: 0 calc((1450px - 100vw) / 2);
    background: var(--paper-light);
    content: "";
    pointer-events: none;
  }

  .reservation-page > section {
    position: relative;
    z-index: 1;
  }

  .site-header,
  .site-shell > main > section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .site-header {
    right: auto;
    padding-right: calc((100vw - 1450px) / 2 + 58px);
    padding-left: calc((100vw - 1450px) / 2 + 58px);
  }

  .hero,
  .contact-hero {
    padding-right: calc((100vw - 1450px) / 2 + 92px);
    padding-left: calc((100vw - 1450px) / 2 + 92px);
  }

  .intro-section {
    padding-right: calc((100vw - 1450px) / 2 + clamp(40px, 7vw, 108px));
    padding-left: calc((100vw - 1450px) / 2 + clamp(40px, 7vw, 108px));
  }

  .feature-strip {
    padding-right: calc((100vw - 1450px) / 2 + clamp(34px, 6vw, 84px));
    padding-left: calc((100vw - 1450px) / 2 + clamp(34px, 6vw, 84px));
  }

  .story-section {
    padding-right: calc((100vw - 1450px) / 2 + clamp(46px, 8vw, 116px));
    padding-left: calc((100vw - 1450px) / 2 + clamp(46px, 8vw, 116px));
  }

  .quote-strip {
    padding-right: calc((100vw - 1450px) / 2 + 28px);
    padding-left: calc((100vw - 1450px) / 2 + 28px);
  }

  .menu-section {
    padding-right: calc((100vw - 1450px) / 2 + clamp(46px, 7vw, 100px));
    padding-left: calc((100vw - 1450px) / 2 + clamp(46px, 7vw, 100px));
  }

  .soft-strip {
    padding-right: calc((100vw - 1450px) / 2 + clamp(40px, 7vw, 100px));
    padding-left: calc((100vw - 1450px) / 2 + clamp(40px, 7vw, 100px));
  }

  .reservation-grid,
  .private-contact,
  .contact-lower {
    padding-right: calc((100vw - 1450px) / 2);
    padding-left: calc((100vw - 1450px) / 2);
  }

  .reservation-grid {
    background: var(--paper-light);
  }

  .reservation-note {
    padding-right: calc((100vw - 1450px) / 2 + clamp(44px, 7vw, 98px));
    padding-left: calc((100vw - 1450px) / 2 + clamp(44px, 7vw, 98px));
  }

  .private-features {
    padding-right: calc((100vw - 1450px) / 2 + clamp(42px, 6vw, 92px));
    padding-left: calc((100vw - 1450px) / 2 + clamp(42px, 6vw, 92px));
  }
}

@media (max-width: 1050px) {
  .site-shell {
    width: 100%;
    margin: 0;
  }

  .site-header {
    min-height: 76px;
    padding: 18px 24px;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 25;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    display: none;
    width: min(330px, calc(100% - 36px));
    padding: 20px;
    border: 1px solid var(--line-dark);
    background: rgba(23, 18, 15, 0.97);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .main-nav .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero,
  .hero-home,
  .hero-about,
  .hero-private,
  .hero-menu,
  .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 118px 34px 52px;
  }

  .hero-plate,
  .menu-dish,
  .hero-photo,
  .private-hero-photo,
  .map-panel {
    justify-self: stretch;
    width: 100%;
    margin: 12px 0 0;
  }

  .intro-section,
  .story-section,
  .menu-section,
  .reservation-grid,
  .private-contact,
  .contact-lower {
    grid-template-columns: 1fr;
  }

  .reservation-page {
    padding-top: 76px;
  }

  .reserve-visual {
    min-height: 420px;
  }

  .booking-panel {
    padding-top: 44px;
  }

  .wine-layout {
    grid-template-columns: 1fr;
  }

  .sommelier-note {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    background: var(--night);
    font-size: 15px;
  }

  .site-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .brand span {
    font-size: 20px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-copy p:not(.eyebrow),
  .contact-copy > p {
    font-size: 14px;
  }

  .hero,
  .hero-home,
  .hero-about,
  .hero-private,
  .hero-menu,
  .contact-hero {
    padding: 110px 24px 42px;
  }

  .hero-plate {
    aspect-ratio: 1.72 / 1;
    border-radius: 999px;
  }

  .menu-dish {
    aspect-ratio: 1.65 / 1;
  }

  .menu-dish-frame-lines path:first-child {
    animation: none;
    transform: none;
  }

  .intro-section,
  .story-section,
  .menu-section,
  .booking-panel,
  .private-features,
  .hours-card,
  .soft-strip,
  .reservation-note {
    padding-right: 24px;
    padding-left: 24px;
  }

  .intro-section,
  .story-section,
  .menu-section {
    gap: 28px;
  }

  .feature-strip,
  .private-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .private-features article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 24px;
  }

  .private-features article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .soft-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tabs {
    max-width: none;
  }

  .tab {
    text-align: center;
  }

  .menu-intro,
  .wine-arrangement {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .menu-highlight {
    min-width: 0;
  }

  .menu-item {
    gap: 16px;
  }

  .menu-item h3 {
    font-size: 19px;
  }

  .menu-item p {
    font-size: 11px;
  }

  .wine-arrangement dl {
    min-width: 0;
  }

  .menu-side-photo,
  .image-panel,
  .wide-photo,
  .contact-lower figure {
    height: 250px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hours-card span {
    display: block;
    float: none;
    margin-top: 4px;
  }
}

.form-disclaimer {
  margin: 4px 0 0;
  color: rgba(23, 18, 15, 0.66);
  font-size: 10px;
  line-height: 1.45;
}
