:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #6b665f;
  --paper: #f7f4ee;
  --porcelain: #fffaf2;
  --stone: #c9beb0;
  --bronze: #9f7246;
  --deep: #0d1718;
  --sea: #0e5860;
  --line: rgba(17, 17, 17, 0.14);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --text-font: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --display-font: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #070b0b;
  color: var(--ink);
  font-family: var(--text-font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

section[id] {
  scroll-margin-top: 110px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 18px;
  width: 100%;
  padding: 20px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(13, 23, 24, 0.86);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.site-header {
  background: rgba(13, 23, 24, 0.76);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.subpage .site-header,
.home-page .site-header {
  padding-block: 12px;
  background: rgba(13, 23, 24, 0.9);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.subpage {
  --header-offset: 94px;
  --page-top-space: 18px;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  background: #070b0b;
}

.subpage main {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.subpage main > section:first-child {
  padding-top: calc(var(--header-offset) + var(--page-top-space));
}

.subpage main > section:only-child {
  flex: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(247, 244, 238, 0.42)),
    rgba(255, 250, 242, 0.36);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(1.08);
  overflow: hidden;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(38px, 3.8vw, 52px);
}

.nav {
  display: flex;
  gap: clamp(18px, 3.4vw, 42px);
  justify-content: center;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a,
.header-cta {
  position: relative;
  opacity: 0.88;
}

.nav a:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(clamp(7px, 1.5vw, 17px) * -1);
  width: 1px;
  height: 0.9em;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.nav-divider {
  display: none;
}

.nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: hero-crossfade 10.5s infinite;
}

.hero-media img:first-child {
  animation-name: hero-first-frame;
}

.hero-media img:nth-child(2) {
  animation-delay: 3.5s;
}

.hero-media img:nth-child(3) {
  animation-delay: 7s;
}

@keyframes hero-crossfade {
  0% { opacity: 0; transform: scale(1.04); }
  5% { opacity: 1; }
  29% { opacity: 1; }
  34% { opacity: 0; transform: scale(1.09); }
  100% { opacity: 0; transform: scale(1.09); }
}

@keyframes hero-first-frame {
  0% { opacity: 1; transform: scale(1.04); }
  29% { opacity: 1; }
  34% { opacity: 0; transform: scale(1.09); }
  95% { opacity: 0; transform: scale(1.09); }
  100% { opacity: 1; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
  }

  .hero-media img:first-child {
    opacity: 1;
  }
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 12, 0.74), rgba(5, 11, 12, 0.26) 50%, rgba(5, 11, 12, 0.2)),
    linear-gradient(0deg, rgba(5, 11, 12, 0.72), rgba(5, 11, 12, 0.08) 48%);
}

.hero-content {
  align-self: center;
  width: min(800px, calc(100% - 36px));
  margin: 76px 0 0 clamp(18px, 6vw, 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c291;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 500;
  line-height: 0.96;
}

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 9.2vw, 8.35rem);
}

.hero h1 {
  font-size: 6.2rem;
}

h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  line-height: 1.02;
}

main h2 {
  text-align: center;
}

.ruled-title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 8px;
}

.ruled-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 74px;
  height: 1px;
  background: var(--bronze);
  transform: translateX(-50%);
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border: 0;
  border-radius: 999px;
  appearance: none;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--bronze);
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button.secondary.light {
  border-color: var(--white-line);
}

.button.secondary.dark-text {
  border-color: rgba(17, 17, 17, 0.2);
  color: var(--ink);
}

.button.secondary.warm {
  border-color: rgba(159, 114, 70, 0.3);
  background: rgba(175, 126, 76, 0.16);
  color: #5a3d22;
}

.button.large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 0.92rem;
}

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 30px;
  display: grid;
  gap: 2px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.46);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
}


.band {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 4.5vw, 62px);
}

.dark {
  background: var(--deep);
  color: #fff;
}

.intro {
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: min(880px, 100%);
  margin-inline: auto;
  text-align: center;
}

.intro .section-kicker {
  width: min(880px, 100%);
  margin-inline: auto;
  text-align: center;
}

.intro-grid p,
.menu-copy p:not(.section-kicker),
.experience-copy p:not(.section-kicker),
.reservation-inner p:not(.section-kicker),
.company-name {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-family: var(--text-font);
  line-height: 1.62;
}

.menu-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 500px) minmax(300px, 390px);
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: clamp(520px, 62vh, 650px);
  padding-block: clamp(54px, 7vw, 92px);
  background:
    radial-gradient(circle at 68% 42%, rgba(159, 114, 70, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(232, 220, 204, 0.82)),
    #f1ebe1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(159, 114, 70, 0.18);
  pointer-events: none;
}

.menu-copy {
  position: relative;
  z-index: 1;
  justify-self: center;
  text-align: center;
}

.menu-copy h2 {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  color: #2a211a;
}

.menu-copy h2:not(.ruled-title)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 74px;
  height: 1px;
  background: var(--bronze);
  transform: translateX(-50%);
}

.menu-description {
  margin-top: 0;
  max-width: 520px;
  color: #51453a;
  font-family: var(--display-font);
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
  line-height: 1.35;
}

.menu-copy h2 + .menu-description {
  margin-top: 36px;
}

.menu-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.menu-highlights article {
  padding: 18px;
  border: 1px solid rgba(159, 114, 70, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.54);
}

.menu-highlights span {
  display: block;
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-highlights strong {
  display: block;
  margin-top: 12px;
  color: #241d17;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
}

.menu-highlights p {
  margin: 12px 0 0;
  color: #66594c;
  font-family: var(--text-font);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.62;
}

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

.menu-preview {
  position: relative;
  z-index: 1;
  display: block;
  justify-self: center;
  width: min(100%, 360px);
  padding: clamp(5px, 0.7vw, 9px);
  appearance: none;
  border: 1px solid rgba(159, 114, 70, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.72), rgba(220, 201, 178, 0.24)),
    #f8f2e9;
  box-shadow: 0 26px 74px rgba(80, 55, 32, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.menu-preview-page {
  display: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.menu-preview-page.is-active {
  display: block;
}

.menu-preview-page img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(159, 114, 70, 0.28);
  border-radius: 12px;
  background: #fff;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.menu-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 8, 8, 0.78);
  backdrop-filter: blur(10px);
}

.menu-modal-panel {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 96vw;
  max-height: 92svh;
  padding: clamp(7px, 1vw, 12px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: #f8f2e9;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.menu-modal-panel img {
  width: auto;
  max-width: calc(96vw - 24px);
  max-height: calc(92svh - 24px);
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.menu-modal-pages {
  display: grid;
  place-items: center;
  max-width: calc(96vw - 24px);
  max-height: calc(92svh - 24px);
  overflow: hidden;
}

.menu-modal-pages img {
  display: none;
}

.menu-modal-pages img.is-active {
  display: block;
}

.menu-page-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 15, 16, 0.78);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.menu-page-nav.is-prev {
  left: 14px;
}

.menu-page-nav.is-next {
  right: 14px;
}

.menu-page-nav:disabled {
  opacity: 0.35;
  cursor: wait;
}

.menu-page-count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(8, 15, 16, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-page-count.is-modal {
  right: 20px;
  bottom: 20px;
}

.menu-modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 0 -42px auto;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

body.menu-modal-open {
  overflow: hidden;
}

.section-head {
  display: grid;
  gap: 12px;
  width: min(880px, 100%);
  margin-bottom: 28px;
  margin-inline: auto;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: #1d2425;
}

figure.wide {
  grid-row: span 2;
  min-height: 618px;
}

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

figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  max-width: calc(100% - 40px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: center;
  background: #eee7dc;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: center;
  background: var(--porcelain);
}

.about-copy {
  width: min(780px, 100%);
  justify-self: center;
  text-align: center;
}

.about-text {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.about-text p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--text-font);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.62;
}

.about-image {
  width: 100%;
  height: clamp(360px, 38vw, 540px);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.experience-copy p {
  margin-top: 24px;
}

.experience-copy p.section-kicker {
  margin-top: 0;
}

.experience-copy,
.contact-copy {
  width: min(720px, 100%);
  justify-self: center;
  text-align: center;
}

.highlights {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
}

.highlights div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.highlights dt {
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.highlights dd {
  margin: 7px 0 0;
  color: #2f2b26;
}

.stacked-images {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 14px;
  align-items: end;
}

.stacked-images img {
  width: 100%;
  height: clamp(360px, 46vw, 560px);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stacked-images img:first-child {
  height: clamp(290px, 38vw, 460px);
}

.reservation {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 138px);
  background:
    linear-gradient(rgba(247, 244, 238, 0.88), rgba(247, 244, 238, 0.92)),
    url("assets/site/interior.webp") center / cover;
}

.reservation-inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.subpage main > .reservation:only-child {
  display: grid;
  flex: 1;
  min-height: calc(100svh - 138px);
  align-items: center;
}

.subpage:has(main > .reservation:only-child) main {
  flex: 1;
}

.reservation-inner p {
  margin-top: 24px;
}

.reservation-inner p.section-kicker {
  margin-top: 0;
}

.reservation-inner h2 span {
  white-space: nowrap;
}

.reservation .button {
  margin-top: 34px;
}

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

.reservation-actions .button {
  margin-top: 0;
}

.button.compact {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.68rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: center;
}

.contact h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.5rem;
  line-height: 1.3;
}

.contact address {
  max-width: 560px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
}

.company-name {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0;
}

.contact .contact-actions {
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.contact .contact-actions .button {
  min-width: 220px;
}

.contact-image {
  width: 100%;
  height: clamp(320px, 40vw, 520px);
  object-fit: cover;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #24c368;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #070b0b;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer:not(:has(.footer-links)) {
  justify-content: center;
  text-align: center;
}

.checkout-footer {
  margin-top: auto;
}

.footer div,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #fff;
}

.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(9, 14, 15, 0.94);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(18px);
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-consent p {
  margin: 6px 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-consent__link,
.cookie-consent__button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-consent__link {
  padding: 9px 4px;
  color: rgba(255, 255, 255, 0.72);
}

.cookie-consent__button {
  padding: 9px 14px;
  border: 1px solid rgba(159, 114, 70, 0.62);
  background: var(--bronze);
  color: #fff;
  cursor: pointer;
}

.cookie-consent__button.is-muted {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
}

.checkout-page,
.policy-page {
  background: var(--paper);
  overflow-x: hidden;
}

.checkout-page {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.checkout-page main {
  flex: 1;
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(13, 23, 24, 0.92);
  color: #fff;
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.checkout-header span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-brand img {
  height: 42px;
}

.checkout-hero {
  position: relative;
  min-height: clamp(260px, 34vh, 380px);
  display: grid;
  align-content: end;
  padding: clamp(74px, 7vw, 102px) clamp(18px, 6vw, 78px) clamp(34px, 4vw, 52px);
  background:
    linear-gradient(90deg, rgba(5, 11, 12, 0.88), rgba(5, 11, 12, 0.48) 54%, rgba(5, 11, 12, 0.18)),
    linear-gradient(0deg, rgba(5, 11, 12, 0.86), rgba(5, 11, 12, 0.14) 55%),
    url("assets/site/dining-room.webp") center 58% / cover;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.checkout-hero-content {
  width: min(860px, 100%);
}

.checkout-hero h1 {
  max-width: 700px;
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
}

.checkout-shell {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: clamp(30px, 5.2vw, 76px) clamp(16px, 5vw, 72px);
}

.checkout-flow {
  display: grid;
  gap: 18px;
}

.checkout-panel,
.checkout-summary,
.policy-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 20px 60px rgba(80, 55, 32, 0.08);
}

.checkout-panel {
  padding: clamp(22px, 4vw, 34px);
}

.checkout-panel:not(.is-active) .panel-body {
  display: none;
}

.checkout-panel.is-complete {
  background: rgba(255, 250, 242, 0.54);
}

.panel-toggle {
  display: grid;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.panel-toggle strong {
  color: #241d17;
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.06;
}

.panel-body {
  margin-top: 24px;
}

.checkout-panel h2,
.checkout-summary h2,
.policy-shell h1,
.policy-shell h2 {
  color: #241d17;
}

.checkout-panel h2,
.checkout-summary h2,
.policy-shell h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.step-label {
  display: block;
  margin-bottom: 0;
  color: var(--bronze);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.form-grid label,
.date-select-group,
.expiry-date-group,
.agreement-check {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 8px;
  color: #4b4035;
  font-size: 0.86rem;
  font-weight: 700;
}

.optional-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.date-select-group {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 0;
}

.date-select-group legend {
  grid-column: 1 / -1;
  padding: 0;
}

.expiry-date-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 0;
}

.expiry-date-group legend {
  grid-column: 1 / -1;
  padding: 0;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
}

.form-grid input:invalid:not(:placeholder-shown),
.form-grid textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(156, 46, 31, 0.62);
}

.form-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.field-hint,
.form-error,
.test-notice {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}

.form-error {
  min-height: 1.2em;
  margin: 16px 0 0;
  color: #9c2e1f;
}

.test-notice {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(159, 114, 70, 0.24);
  border-radius: 8px;
  background: rgba(159, 114, 70, 0.08);
  color: #5b4b3d;
}

.full-field {
  grid-column: 1 / -1;
}

.cart-line,
.cart-total,
.account-box {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cart-line:first-of-type {
  margin-top: 18px;
}

.cart-line div,
.account-box {
  display: grid;
  gap: 5px;
}

.cart-line span,
.panel-copy,
.account-box span,
.policy-date {
  color: var(--muted);
}

.cart-total {
  align-items: center;
  color: var(--ink);
  font-size: 1.1rem;
}

.cart-total strong {
  font-size: 1.45rem;
}

.muted-line {
  color: var(--muted);
}

.agreement-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 14px 0;
  font-weight: 500;
  line-height: 1.45;
}

.agreement-list {
  margin-top: 22px;
}

.disabled-button,
.disabled-button:hover {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.agreement-check a,
.checkout-summary a,
.policy-back {
  color: var(--bronze);
  font-weight: 800;
}

.checkout-summary {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.checkout-summary a {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.policy-shell {
  width: min(920px, calc(100% - 32px));
  margin: 36px auto;
  padding: clamp(24px, 5vw, 54px);
}

.policy-shell h1 {
  margin-top: 24px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.policy-shell section {
  margin-top: 34px;
}

.policy-shell p {
  color: #3d362f;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 861px) {
  .band {
    padding-block: clamp(48px, 5.6vw, 76px);
  }

  .menu-section {
    grid-template-columns: minmax(330px, 475px) minmax(340px, 440px);
    min-height: clamp(480px, 54vh, 590px);
    padding-block: clamp(48px, 5.6vw, 76px);
  }

  .menu-highlights article {
    padding: 14px 18px;
  }

  .menu-highlights strong {
    font-size: clamp(1.12rem, 1.34vw, 1.34rem);
    line-height: 1.22;
  }

  .menu-copy .menu-highlights p {
    margin-top: 8px;
    font-size: clamp(0.9rem, 1.06vw, 0.98rem);
    line-height: 1.42;
  }

  .menu-preview {
    width: min(100%, 405px);
  }

  figure {
    min-height: 270px;
  }

  figure.wide {
    min-height: 558px;
  }

  .stacked-images img {
    height: clamp(330px, 36vw, 480px);
  }

  .stacked-images img:first-child {
    height: clamp(270px, 30vw, 390px);
  }

  .contact-image {
    height: clamp(300px, 34vw, 440px);
  }

  .checkout-page .checkout-shell {
    display: grid;
    min-height: clamp(500px, 58vh, 680px);
    align-items: center;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 250px;
  }

  .subpage {
    --header-offset: 158px;
    --page-top-space: 22px;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }

  section[id] {
    scroll-margin-top: 250px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 16px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand img {
    height: clamp(62px, 13vw, 82px);
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    justify-content: flex-start;
    gap: clamp(20px, 5vw, 38px);
    overflow: hidden;
    white-space: nowrap;
    font-size: clamp(0.84rem, 2.7vw, 1rem);
    letter-spacing: clamp(0.08em, 0.65vw, 0.13em);
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .hero-note {
    left: 16px;
    right: auto;
    bottom: 22px;
    max-width: calc(100% - 32px);
  }

  .intro-grid,
  .image-grid,
  .experience,
  .about-section,
  .menu-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .menu-section {
    max-width: none;
    margin: 0;
    border-radius: 0;
    min-height: auto;
    padding-block: clamp(56px, 10vw, 82px);
  }

  .menu-copy h2 {
    font-size: clamp(1.65rem, 4.6vw, 2rem);
  }

  .menu-copy .section-kicker {
    font-size: 0.7rem;
  }

  .menu-highlights {
    gap: 8px;
    margin-top: 16px;
  }

  .menu-highlights article {
    padding: 14px;
  }

  .menu-highlights strong {
    margin-top: 0;
    font-size: clamp(1.05rem, 3vw, 1.2rem);
    line-height: 1.25;
  }

  .menu-copy .menu-highlights p {
    margin-top: 8px;
    font-size: clamp(0.9rem, 2.4vw, 1rem);
    line-height: 1.5;
  }

  .menu-actions {
    margin-top: 22px;
  }

  .menu-preview {
    width: min(90%, 400px);
  }

  figure,
  figure.wide {
    min-height: 360px;
  }

  .stacked-images {
    grid-template-columns: 1fr;
  }

  .stacked-images img,
  .stacked-images img:first-child,
  .about-image,
  .contact-image {
    height: 420px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 0;
  }

  .subpage {
    --header-offset: 150px;
    --page-top-space: 22px;
  }

  .checkout-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-hero {
    min-height: 255px;
    padding-top: 42px;
    padding-bottom: 30px;
    background-position: center top;
  }

  .checkout-hero h1 {
    font-size: clamp(2.25rem, 10.8vw, 3.35rem);
  }

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

  .date-select-group {
    grid-template-columns: 0.8fr 1fr 0.9fr;
  }

  .cart-line,
  .cart-total,
  .account-box {
    align-items: flex-start;
    flex-direction: column;
  }

  section[id] {
    scroll-margin-top: 0;
  }

  .site-header {
    column-gap: 10px;
    padding-inline: 16px;
  }

  .subpage .site-header,
  .home-page .site-header {
    padding: 16px 16px 18px;
  }

  .brand {
    margin-left: 4px;
    padding: 8px 11px;
    border-radius: 20px;
  }

  .brand img {
    height: clamp(50px, 13vw, 58px);
  }

  .header-cta {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .nav {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr) max-content minmax(0, 1fr) max-content minmax(0, 1fr) max-content minmax(0, 1fr) max-content;
    width: calc(100% + 16px);
    margin-inline: -8px;
    gap: 0;
    align-items: center;
    font-family: var(--text-font);
    font-size: clamp(0.66rem, 3vw, 0.76rem);
    letter-spacing: 0;
    line-height: 1.25;
    overflow: visible;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding-inline: 0;
    text-align: center;
    white-space: nowrap;
  }

  .nav a:not(:first-child)::before {
    display: none;
  }

  .nav-divider {
    display: block;
    justify-self: center;
    width: 1px;
    height: 1em;
    background: rgba(255, 255, 255, 0.3);
  }

  h1 {
    font-size: clamp(2.76rem, 13.2vw, 3.78rem);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.65rem, 7.6vw, 2.1rem);
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.55rem);
  }

  .atmosphere-page h2 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .menu-modal-pages img {
    width: 100%;
    max-width: 100%;
  }

  .menu-modal-panel > .menu-page-nav.is-prev {
    left: 10px;
  }

  .menu-modal-panel > .menu-page-nav.is-next {
    right: 10px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100svh;
    min-height: 100dvh;
    max-height: 100dvh;
    padding-top: 158px;
    padding-bottom: 30px;
  }

  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 0;
    width: 100%;
    pointer-events: none;
  }

  .hero::before {
    top: 132px;
    height: 112px;
    border-top: 1px solid rgba(218, 176, 119, 0.16);
    background: repeating-linear-gradient(
      118deg,
      transparent 0 17px,
      rgba(226, 188, 137, 0.1) 17px 18px,
      transparent 18px 35px
    );
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
  }

  .hero::after {
    bottom: 0;
    height: 150px;
    border-bottom: 1px solid rgba(218, 176, 119, 0.16);
    background: repeating-linear-gradient(
      62deg,
      transparent 0 21px,
      rgba(226, 188, 137, 0.08) 21px 22px,
      transparent 22px 43px
    );
    mask-image: linear-gradient(to top, #000, transparent 94%);
  }

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

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 11, 12, 0.2), rgba(5, 11, 12, 0.48) 52%, rgba(5, 11, 12, 0.82)),
      linear-gradient(90deg, rgba(5, 11, 12, 0.58), rgba(5, 11, 12, 0.14));
  }

  .hero-content {
    position: relative;
    z-index: 1;
    width: calc(100% - 32px);
    margin: max(0px, calc(43.2dvh - 189px)) 16px 0;
    text-align: left;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .hero-copy {
    max-width: 390px;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero .button {
    min-height: 46px;
    padding: 11px 15px;
    font-size: 0.7rem;
  }

  .menu-highlights article {
    padding: 12px;
  }

  .menu-highlights strong {
    font-size: 1.04rem;
  }

  .menu-highlights p {
    font-size: 0.9rem;
  }

  .menu-preview {
    width: min(80vw, 300px);
  }

  .hero-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 56px);
    margin: 18px 28px 0;
    font-size: 0.62rem;
    justify-items: start;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.46);
    text-align: left;
  }

  .hero-note strong {
    font-size: 1.18rem;
  }


  .button {
    width: 100%;
  }

  .reservation-actions {
    display: grid;
  }

  .reservation {
    min-height: calc(100svh - 238px);
  }

  .reservation-inner h2 {
    max-width: 390px;
    margin-inline: auto;
    font-size: clamp(1.28rem, 5.8vw, 1.6rem);
    line-height: 1.12;
  }

  .reservation-inner h2 span {
    display: block;
  }

  .reservation-inner p:not(.section-kicker) {
    margin-top: 28px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 16px;
  }

  .cookie-consent__actions {
    justify-content: flex-start;
  }

  .cookie-consent__link,
  .cookie-consent__button {
    min-height: 36px;
    font-size: 0.66rem;
  }
}

@media (max-width: 380px) {
  .header-cta {
    font-size: 0.62rem;
    padding-inline: 10px;
  }

}

/* Shared typography scale for visitor-facing subpages. */
.subpage main h2 {
  font-size: clamp(1.65rem, 2.5vw, 2rem);
}

.subpage main .section-kicker {
  font-size: 0.7rem;
}

.subpage .menu-highlights strong {
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.subpage .intro-grid p,
.subpage .about-text p,
.subpage .experience-copy p:not(.section-kicker),
.subpage .reservation-inner p:not(.section-kicker),
.subpage .company-name,
.subpage .menu-copy .menu-highlights p,
.subpage .highlights dd {
  font-size: clamp(0.9rem, 1.25vw, 1rem);
}

@media (max-width: 560px) {
  .subpage .contact h2 {
    width: auto;
    max-width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
    white-space: normal;
  }

  .subpage .contact h2 span {
    display: block;
  }

  .subpage .contact h2 span + span {
    margin-top: 4px;
    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

}
