﻿*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #101311;
  --panel: #171c18;
  --panel-soft: rgba(23, 28, 24, 0.82);
  --line: rgba(255, 255, 255, 0.14);
  --text: #fbfaf4;
  --muted: #c7c8bd;
  --soft: #8c9186;
  --accent: #d9f66f;
  --accent-2: #e76f51;
  --leaf: #7bd389;
  --radius: 8px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
}

.restaurant-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 19, 17, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.restaurant-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.restaurant-nav a {
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.restaurant-nav a:hover,
.restaurant-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.restaurant-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 2rem;
  padding: 8.5rem 2rem 3rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.88), rgba(16, 19, 17, 0.36) 58%, rgba(16, 19, 17, 0.88)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.restaurant-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-content,
.hero-hours {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 740px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  font-size: 4.6rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.1rem 0 1.6rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.button-primary {
  color: #101311;
  background: var(--accent);
}

.button-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.hero-hours {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 19, 17, 0.62);
  box-shadow: var(--shadow);
}

.hero-hours span,
.hero-hours strong,
.hero-hours small {
  display: block;
}

.hero-hours span {
  color: var(--leaf);
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-hours strong {
  margin-top: 0.25rem;
  font-size: 1.55rem;
}

.hero-hours small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.intro-section,
.menu-section,
.experience-section,
.reservation-section {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 5.5rem 2rem;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
}

.intro-section h2,
.section-head h2,
.experience-copy h2,
.reservation-copy h2 {
  font-size: 2.7rem;
}

.intro-section > p,
.experience-copy p,
.reservation-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2rem;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.dish-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.dish-type {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dish-card h3 {
  margin-top: 0.35rem;
  font-size: 1.25rem;
}

.dish-card p {
  min-height: 3.2rem;
  margin: 0.5rem 0 0.8rem;
  color: var(--muted);
}

.dish-card strong {
  color: var(--accent);
  font-size: 1.3rem;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.experience-image {
  min-height: 440px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 19, 17, 0.02), rgba(16, 19, 17, 0.46)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1400&q=85") center / cover;
  box-shadow: var(--shadow);
}

.experience-copy {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.experience-copy ul {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.experience-copy li {
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 1rem;
  align-items: start;
}

.reservation-form {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.reservation-form label {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.restaurant-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.restaurant-footer p {
  margin: 0;
}

.restaurant-footer a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .restaurant-header {
    position: sticky;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .restaurant-hero,
  .intro-section,
  .experience-section,
  .reservation-section {
    grid-template-columns: 1fr;
  }

  .restaurant-hero {
    min-height: auto;
    padding: 7rem 1rem 3rem;
  }

  h1 {
    font-size: 3.2rem;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 2.55rem;
  }

  .intro-section h2,
  .section-head h2,
  .experience-copy h2,
  .reservation-copy h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
