:root {
  --terracotta: #c1502e;
  --charcoal: #2b2320;
  --cream: #f5ede3;
  --gold: #c9a24b;
  --text: #3a2f2b;
  --white: #fff;
  --shadow: 0 12px 30px rgba(43, 35, 32, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--charcoal);
  line-height: 1.15;
  margin-top: 0;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.btn {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.68rem 1.35rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-accent {
  background: var(--terracotta);
  color: var(--white);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: #a94224;
}

.btn-outline {
  border-color: var(--gold);
  color: var(--charcoal);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--gold);
  color: var(--charcoal);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  z-index: 9999;
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 237, 227, 0.96);
  border-bottom: 1px solid rgba(43, 35, 32, 0.1);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.site-nav a {
  font-weight: 700;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  display: block;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: min(84vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(43, 35, 32, 0.72), rgba(43, 35, 32, 0.35));
}

.hero-content {
  position: relative;
  color: var(--white);
  max-width: 650px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.chef {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.chef i {
  color: var(--terracotta);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1rem;
}

.about-images img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-images img:first-child {
  aspect-ratio: 3 / 4;
}

.about-images img:last-child {
  margin-top: 3rem;
  aspect-ratio: 4 / 5;
}

.menu-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 1.4rem;
}

.tab-btn {
  border: 1px solid rgba(43, 35, 32, 0.25);
  background: var(--white);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--charcoal);
  color: var(--cream);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 20px rgba(43, 35, 32, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-card h3 {
  margin-bottom: 0.25rem;
}

.menu-card p {
  margin: 0 0 0.4rem;
}

.menu-card span {
  font-weight: 700;
  color: var(--terracotta);
}

.menu-card.hidden {
  display: none;
}

.parallax {
  min-height: 320px;
  background: linear-gradient(rgba(43, 35, 32, 0.45), rgba(43, 35, 32, 0.45)), url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80") center/cover fixed;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
}

.parallax h2 {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.reserve-grid {
  align-items: start;
}

.reservation-form {
  background: var(--white);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.55rem;
}

label {
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(43, 35, 32, 0.26);
  border-radius: 8px;
  padding: 0.65rem 0.72rem;
  font: inherit;
  background: #fffdf9;
}

input:focus,
textarea:focus,
.tab-btn:focus-visible,
.btn:focus-visible,
.gallery-item:focus-visible,
.lightbox button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

input.invalid {
  border-color: #c0392b;
}

.form-msg {
  min-height: 1.35rem;
  margin: 0.35rem 0 0;
  font-weight: 700;
}

.form-msg.error {
  color: #b32a1e;
}

.form-msg.success {
  color: #1f6f3d;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 8px 20px rgba(43, 35, 32, 0.08);
}

.review-card .stars {
  margin-top: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hours table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.6rem 0 1rem;
  background: #fffdf9;
}

.hours th,
.hours td {
  border-bottom: 1px solid rgba(43, 35, 32, 0.16);
  text-align: left;
  padding: 0.65rem 0.45rem;
}

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-title {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.socials {
  display: flex;
  gap: 0.85rem;
  font-size: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.94);
  color: var(--charcoal);
}

.partners {
  margin: 0;
  padding-left: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 13, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 80vh;
  border-radius: 8px;
}

.lightbox button {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .desktop-cta {
    display: none;
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(43, 35, 32, 0.14);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.open {
    max-height: 340px;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 1rem 4%;
    gap: 0.8rem;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img:last-child {
    margin-top: 0;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
