:root {
  --black: #070707;
  --anthracite: #151515;
  --charcoal: #202020;
  --cream: #f5efe3;
  --muted: #cfc3ae;
  --gold: #c8a35d;
  --gold-soft: #eed59a;
  --line: rgba(245, 239, 227, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--cream);
  color: var(--black);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.38));
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.compact {
  background: rgba(7, 7, 7, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(200, 163, 93, 0.7);
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.footer-brand {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 600;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  color: rgba(245, 239, 227, 0.82);
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.main-nav a:hover {
  color: var(--cream);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav .home-link {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* Fullscreen image slider with dark premium overlay. */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 9rem clamp(1rem, 6vw, 5rem) 5rem;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.5), rgba(7, 7, 7, 0.2)),
    linear-gradient(0deg, rgba(7, 7, 7, 0.42), rgba(7, 7, 7, 0.22)),
    var(--bg) center / cover;
  transform: translateY(calc(var(--parallax, 0) * 1px));
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

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

h1,
.hero h2 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.9rem);
  line-height: 0.95;
  font-weight: 500;
}

h2 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  font-size: 1.15rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(245, 239, 227, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(200, 163, 93, 0.58);
  padding: 0.9rem 1.35rem;
  color: var(--cream);
  font-weight: 800;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, var(--gold), #7d5b22);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.button:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.button:hover::before {
  transform: scaleX(1);
}

.button-primary {
  background: rgba(200, 163, 93, 0.12);
}

.demo-button {
  cursor: default;
}

.slider-controls {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.slider-controls button {
  width: 2.6rem;
  height: 0.35rem;
  border: 0;
  background: rgba(245, 239, 227, 0.35);
  cursor: pointer;
  transition: background 180ms ease, width 180ms ease;
}

.slider-controls button.is-active {
  width: 4.6rem;
  background: var(--gold);
}

/* Shared spacing keeps the one-page layout calm and editorial. */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 2rem);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section-media img {
  width: 100%;
  min-height: 440px;
  max-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-copy p,
.section-heading p,
.contact-card p,
.footer-hours span,
.site-footer p {
  color: rgba(245, 239, 227, 0.74);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stats span,
.specialty-card,
.contact-card,
.testimonial-shell {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.stats span {
  padding: 1rem;
  color: var(--muted);
}

.stats strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1.8rem;
}

.section-heading {
  margin-bottom: 3rem;
}

.specialty-grid,
.dish-grid,
.contact-grid {
  display: grid;
  gap: 1.1rem;
}

.specialty-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dish-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.specialty-card {
  min-height: 240px;
  padding: 1.5rem;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.specialty-card span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 163, 93, 0.5);
  color: var(--gold-soft);
  font-size: 1.3rem;
}

.specialty-card:hover,
.contact-card:hover {
  border-color: rgba(200, 163, 93, 0.52);
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(200, 163, 93, 0.12), rgba(255, 255, 255, 0.03));
}

.menu-section {
  max-width: none;
  background: var(--cream);
  color: var(--black);
}

.menu-section .section-heading,
.menu-section .dish-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.dish-card {
  overflow: hidden;
  background: #fffaf0;
  box-shadow: 0 24px 70px rgba(7, 7, 7, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 90px rgba(7, 7, 7, 0.26);
}

.dish-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.dish-card:hover img {
  transform: scale(1.05);
}

.dish-card div {
  padding: 1rem;
}

.dish-card h3 {
  margin-bottom: 0.4rem;
}

.dish-card p {
  margin-bottom: 0.8rem;
  color: #5f5548;
}

.dish-card strong {
  color: #8b6727;
  font-size: 1.15rem;
}

.gallery-section {
  max-width: none;
  background: #0d0d0d;
}

/* Dense gallery layout for an upscale masonry-style portfolio feel. */
.gallery-section .section-heading,
.gallery-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  min-height: 220px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--charcoal);
  cursor: zoom-in;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-item:hover img {
  filter: brightness(1.1);
  transform: scale(1.08);
}

.testimonial-shell {
  position: relative;
  display: grid;
  min-height: 280px;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.testimonial {
  grid-area: 1 / 1;
  align-self: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.testimonial.is-active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.reservation-band {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 8vw, 7rem) 1rem;
  background:
    linear-gradient(rgba(7, 7, 7, 0.62), rgba(7, 7, 7, 0.7)),
    url("../images/terrace.jpg") center / cover fixed;
  text-align: center;
}

.reservation-content {
  max-width: 760px;
}

.contact-card {
  padding: 1.5rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer nav,
.footer-hours,
.socials {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.socials {
  flex-direction: row;
  margin-top: 1rem;
}

.socials span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  color: rgba(245, 239, 227, 0.82);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.88);
}

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

.lightbox img {
  max-height: 86vh;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}

.floating-home-button {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  z-index: 120;
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  color: var(--cream);
  background: rgba(7, 7, 7, 0.52);
  border: 1px solid rgba(238, 213, 154, 0.42);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  font-weight: 800;
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.floating-home-button:hover,
.floating-home-button:focus-visible {
  background: rgba(7, 7, 7, 0.76);
  border-color: rgba(238, 213, 154, 0.74);
  transform: translateX(-50%) translateY(-3px);
}

.legal-main {
  min-height: 100svh;
  padding: 8rem 1rem 4rem;
  background: var(--cream);
  color: var(--black);
}

.legal-box {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #fffaf0;
  box-shadow: 0 24px 70px rgba(7, 7, 7, 0.14);
}

.legal-box h1 {
  color: var(--black);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav:not(.legal-nav) {
    position: fixed;
    inset: 5.2rem 1rem auto 1rem;
    display: grid;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .about-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .specialty-grid,
  .dish-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dish-card img {
    height: 160px;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand small {
    display: none;
  }

  .hero-slide {
    min-height: 100svh;
    padding: 8rem 1rem 5rem;
  }

  h1,
  .hero h2 {
    font-size: 3rem;
  }

  .slider-controls {
    left: 1rem;
    right: auto;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-media img {
    min-height: 300px;
    max-height: 380px;
  }

  .stats,
  .specialty-grid,
  .dish-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .dish-card img {
    height: 170px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 210px;
  }

  .testimonial-shell {
    min-height: 0;
  }

  .reservation-band {
    background-attachment: scroll;
  }

  .floating-home-button {
    width: calc(100% - 2rem);
    max-width: 360px;
  }
}

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