* {
  box-sizing: border-box;
}

:root {
  --red: #7b151b;
  --red-dark: #4d0d12;
  --gold: #d7a84d;
  --cream: #fff7e7;
  --paper: #fffdf4;
  --ink: #211817;
  --muted: #6f5f5a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(53, 18, 18, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 231, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 21, 27, 0.15);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(123, 21, 27, 0.2);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  color: var(--red-dark);
}

.hero {
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(39, 10, 10, 0.84), rgba(39, 10, 10, 0.26)), url("assets/front.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-content {
  width: min(760px, 92%);
  margin: 0 auto;
  padding: 90px 0;
  position: relative;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font: 700 0.82rem Arial, sans-serif;
  margin: 0 0 12px;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--red-dark);
}

h3 {
  color: var(--red-dark);
  font-size: 1.8rem;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions,
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font: 800 0.95rem Arial, sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.primary {
  background: var(--gold);
  color: var(--red-dark);
  box-shadow: var(--shadow);
}

.btn.secondary {
  border: 2px solid currentColor;
  color: currentColor;
}

.btn.dark {
  color: var(--red-dark);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 40px;
  align-items: center;
}

.split p,
.feature-copy p,
.section-heading p,
.visit p,
.menu-note {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 1.05rem;
}

.card,
.visit-card,
.menu-block,
.drink-feature {
  background: var(--white);
  border: 1px solid rgba(123, 21, 27, 0.12);
  box-shadow: var(--shadow);
  border-radius: 26px;
}

.highlight-card {
  padding: 34px;
  text-align: center;
  border-top: 8px solid var(--red);
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
}

.highlight-card strong {
  color: var(--red);
  font-size: 1.5rem;
  display: block;
  margin: 12px 0;
}

.highlight-card span {
  font-family: Arial, sans-serif;
  color: var(--muted);
}

.feature {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1180px) / 2));
  padding-right: max(22px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
  background: var(--red-dark);
}

.feature h2 {
  color: var(--white);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.menu-block {
  padding: 24px;
  margin-top: 28px;
  overflow: hidden;
}

.menu-grid {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.menu-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.menu-grid.dinein {
  grid-template-columns: repeat(2, 1fr);
}

.menu-grid img,
.drink-feature img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(123, 21, 27, 0.12);
  background: var(--paper);
}

.drinks {
  padding-top: 36px;
}

.drink-feature {
  padding: 18px;
}

.gallery-section {
  padding-top: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

figure {
  margin: 0;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(123, 21, 27, 0.12);
}

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

figcaption {
  padding: 14px 16px 18px;
  font: 800 0.95rem Arial, sans-serif;
  color: var(--red-dark);
}

.visit {
  max-width: none;
  background: linear-gradient(135deg, rgba(123, 21, 27, 0.08), rgba(215, 168, 77, 0.16));
}

.visit-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.info-grid div {
  background: var(--cream);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(123, 21, 27, 0.12);
}

.info-grid span {
  display: block;
  font: 800 0.75rem Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.info-grid strong {
  display: block;
  color: var(--red-dark);
  margin-top: 6px;
}

footer {
  text-align: center;
  padding: 28px 18px;
  background: var(--red-dark);
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, sans-serif;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .split,
  .feature,
  .info-grid,
  .menu-grid.two,
  .menu-grid.dinein {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-image img {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .visit-card,
  .menu-block {
    padding: 28px 20px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2.5rem;
  }
}


.zoomable {
  cursor: zoom-in;
}

.no-scroll {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 8, 8, 0.92);
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: min(94vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 14px;
  background: #fffdf4;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  cursor: zoom-out;
}

.lightbox-caption {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 16px;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font: 700 0.95rem Arial, sans-serif;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--red-dark);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}


.buffet-note {
  display: inline-block;
  margin: 8px 0 24px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(215, 168, 77, 0.16);
  border: 1px solid rgba(215, 168, 77, 0.45);
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 800;
}

.dessert-only-note {
  display: block;
  margin-top: 12px;
  color: var(--red-dark) !important;
  font-weight: 800;
}


.buffet-video-card {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 247, 231, 0.08);
  border: 1px solid rgba(215, 168, 77, 0.35);
  box-shadow: var(--shadow);
}

.buffet-video-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.buffet-video-card .menu-note {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.buffet-video {
  width: 100%;
  max-height: 640px;
  border-radius: 20px;
  display: block;
  background: #000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}


.holiday-notice {
  position: relative;
  z-index: 40;
  width: 100%;
  padding: 14px 22px;
  text-align: center;
  background: var(--gold);
  color: var(--red-dark);
  font: 800 1rem Arial, sans-serif;
  border-bottom: 1px solid rgba(77, 13, 18, 0.18);
}

.holiday-notice strong {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
