:root {
  --wine: #480c1c;
  --wine-2: #6d1731;
  --gold: #c6a472;
  --ivory: #f8f3ea;
  --paper: #fffaf2;
  --ink: #211417;
  --muted: #7a6a61;
  --sage: #84927d;
  --line: rgba(72, 12, 28, 0.16);
  --shadow: 0 22px 70px rgba(40, 10, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 118px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(198, 164, 114, 0.45);
  border-radius: 8px;
  background: rgba(248, 243, 234, 0.88);
  box-shadow: 0 18px 50px rgba(23, 8, 13, 0.16);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--wine);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.countdown-pill {
  display: grid;
  gap: 1px;
  min-width: 132px;
  padding: 8px 12px;
  border: 1px solid rgba(72, 12, 28, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.58);
  color: var(--wine);
  text-align: center;
}

.countdown-pill span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.countdown-pill strong {
  color: var(--wine);
  font-size: 0.86rem;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--wine);
  color: var(--paper);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--wine-2);
  transform: translateY(-1px);
}

.button-ghost {
  border-color: rgba(255, 250, 242, 0.7);
  color: var(--paper);
  background: rgba(255, 250, 242, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.button-ghost.dark {
  color: var(--wine);
  border-color: rgba(72, 12, 28, 0.24);
  background: transparent;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(128px, 16vw, 172px) clamp(22px, 6vw, 72px) clamp(34px, 8vw, 72px);
  isolation: isolate;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 5, 10, 0.84), rgba(72, 12, 28, 0.48) 48%, rgba(20, 5, 10, 0.2)),
    linear-gradient(0deg, rgba(20, 5, 10, 0.42), rgba(20, 5, 10, 0.04) 45%);
}

.hero-content {
  width: min(680px, 100%);
  color: var(--paper);
}

.hero-logo {
  width: clamp(138px, 18vw, 208px);
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.eyebrow,
.section-kicker,
.summary-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 9.4rem);
  line-height: 0.84;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy {
  width: min(580px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

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

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: clamp(20px, 4vw, 54px);
  display: grid;
  gap: 10px;
  width: min(250px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(198, 164, 114, 0.48);
  border-radius: 8px;
  background: rgba(33, 20, 23, 0.56);
  color: var(--paper);
  backdrop-filter: blur(16px);
}

.hero-note span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.9rem;
}

.hero-note span::after {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.section-pad {
  padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 72px);
}

.intro,
.menu-preview,
.reservation,
.closing,
.imprint,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--wine);
  font-size: 1.16rem;
  line-height: 1.1;
}

.intro p,
.menu-copy p,
.reservation-head p,
.closing p,
.imprint p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.features {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 82px);
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid rgba(198, 164, 114, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(198, 164, 114, 0.12), rgba(198, 164, 114, 0)),
    var(--wine);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.features-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.features-copy h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4rem);
}

.feature-list {
  display: grid;
  border-top: 1px solid rgba(198, 164, 114, 0.28);
}

.feature {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(198, 164, 114, 0.28);
}

.feature-number {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 850;
}

.feature h3 {
  color: var(--paper);
}

.feature p {
  margin: 10px 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.menu-preview {
  display: grid;
  gap: clamp(26px, 5vw, 48px);
  align-items: start;
}

.menu-copy {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.menu-page {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--wine);
  cursor: zoom-in;
  box-shadow: 0 18px 48px rgba(72, 12, 28, 0.1);
  transition: transform 180ms ease, border-color 180ms ease;
}

.menu-page:hover,
.menu-page:focus-visible {
  border-color: rgba(198, 164, 114, 0.72);
  transform: translateY(-2px);
}

.menu-page img {
  width: 100%;
  aspect-ratio: 0.88;
  border-radius: 6px;
  object-fit: cover;
  object-position: top;
}

.menu-page span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.menu-lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(19, 5, 10, 0.86);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(1120px, 100%);
  max-height: calc(100svh - 48px);
  justify-items: center;
}

.lightbox-dialog img {
  max-width: 100%;
  max-height: calc(100svh - 116px);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--wine);
  cursor: pointer;
  font-weight: 850;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.lightbox-close {
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 58px;
  font-size: 2.4rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

#lightbox-caption {
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-menu-body {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(248, 243, 234, 0.98)),
    var(--ivory);
}

.qr-menu-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px) 0 42px;
}

.qr-menu-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: clamp(22px, 5vw, 42px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.qr-menu-header img {
  width: clamp(118px, 30vw, 172px);
}

.qr-menu-header span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qr-menu-header h1 {
  margin: 4px 0 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 8vw, 4.8rem);
  line-height: 0.92;
  font-weight: 500;
}

.qr-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 34px);
}

.qr-menu-card .menu-page {
  height: 100%;
}

.qr-menu-card .menu-page img {
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  background: #f3e8dd;
}

.reservation {
  color: var(--paper);
  background: var(--wine);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reservation-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(198, 164, 114, 0.28);
}

.reservation h2,
.reservation h3 {
  color: var(--paper);
}

.reservation-head p {
  color: rgba(255, 250, 242, 0.76);
}

.reservation-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
  gap: clamp(20px, 4vw, 42px);
  padding-top: 34px;
}

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

.reservation-form label,
.reservation-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

.reservation-form fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.reservation-form legend {
  padding: 0 0 8px;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(198, 164, 114, 0.3);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.1);
  color: var(--paper);
  outline: 0;
}

.reservation-form option {
  color: var(--ink);
}

.reservation-form input::placeholder {
  color: rgba(255, 250, 242, 0.46);
}

.reservation-form input:focus,
.reservation-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 164, 114, 0.18);
}

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

.segmented label {
  min-width: 0;
}

.segmented input {
  position: absolute;
  width: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 164, 114, 0.28);
  border-radius: 8px;
  color: var(--paper);
  cursor: pointer;
}

.segmented input:checked + span {
  background: var(--gold);
  color: var(--wine);
  border-color: var(--gold);
}

.form-submit {
  grid-column: 1 / -1;
  min-height: 54px;
  background: var(--gold);
  color: var(--wine);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: #d8ba86;
}

.reservation-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(198, 164, 114, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.reservation-summary p {
  margin: 0;
  color: rgba(255, 250, 242, 0.75);
}

.availability-meter {
  padding: 14px;
  border: 1px solid rgba(198, 164, 114, 0.25);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.availability-meter span {
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.86rem;
}

.phone-note {
  padding-top: 16px;
  border-top: 1px solid rgba(198, 164, 114, 0.28);
}

.reservation-summary.is-phone,
.reservation-summary.is-full,
.reservation-summary.is-closed {
  border-color: rgba(198, 164, 114, 0.72);
  background: rgba(198, 164, 114, 0.14);
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr) auto;
  gap: 24px;
  align-items: center;
}

.closing h2 {
  width: min(860px, 100%);
  font-size: clamp(2rem, 4vw, 4rem);
}

.hours {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: var(--paper);
}

.hours span {
  color: var(--muted);
}

.hours strong {
  color: var(--wine);
  white-space: nowrap;
}

.imprint {
  border-top: 1px solid var(--line);
}

.imprint-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.imprint h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.imprint-content {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.imprint-content h3 {
  margin-bottom: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(22px, 6vw, 72px) 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 110px;
}

.site-footer span {
  text-align: center;
}

.site-footer a {
  color: var(--wine);
  font-weight: 750;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .countdown-pill {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
  }

  .intro-grid,
  .menu-preview,
  .reservation-head,
  .reservation-shell,
  .closing,
  .imprint-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-list {
    border-top: 1px solid rgba(198, 164, 114, 0.28);
  }

  .hero-note {
    position: static;
    margin-top: 34px;
  }

  .hero {
    min-height: 78svh;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px 9px 8px 12px;
  }

  .brand img {
    width: 96px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .countdown-pill {
    padding: 7px 10px;
  }

  .hero {
    min-height: 76svh;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer span {
    text-align: left;
  }

  .button,
  .nav-cta {
    white-space: nowrap;
  }

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

  .feature {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .hours div {
    display: grid;
    gap: 4px;
  }

  .menu-gallery {
    grid-template-columns: 1fr;
  }

  .qr-menu-grid {
    grid-template-columns: 1fr;
  }

  .qr-menu-header {
    grid-template-columns: 1fr;
  }

  .menu-lightbox {
    padding: 12px;
  }

  .lightbox-dialog img {
    max-height: calc(100svh - 104px);
  }

  .lightbox-close {
    top: -6px;
    right: -6px;
  }

  .lightbox-nav {
    width: 40px;
    height: 52px;
  }
}
