:root {
  --bg: #100b07;
  --surface: #17110d;
  --surface-soft: #231611;
  --text: #f7ecde;
  --muted: #ccb7a3;
  --accent: #d96724;
  --accent-strong: #ff8b33;
  --accent-dark: #6c2e12;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 103, 36, 0.25), transparent 25%),
    var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 11, 7, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 14px 30px rgba(217, 103, 36, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80") center/cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 11, 7, 0.95), rgba(16, 11, 7, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.hero-text,
.section-heading p,
.about-copy p,
.review-card p,
.footer-shell p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 1.4rem;
}

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

.hero-badges span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}

.highlights,
.section,
.site-footer {
  padding: 5rem 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.highlight-card,
.menu-card,
.review-card,
.map-card,
.about-copy,
.gallery img {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.highlight-card {
  padding: 1.4rem;
  border-radius: var(--radius);
}

.highlight-card .icon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.highlight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

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

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.menu-card {
  overflow: hidden;
  border-radius: 22px;
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.2rem;
}

.menu-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}

.menu-card-title h3 {
  font-size: 1.08rem;
}

.menu-card-title span {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  background: rgba(217, 103, 36, 0.16);
  color: #ffd8b7;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.about-copy,
.contact-copy,
.review-card {
  padding: 1.7rem;
  border-radius: 24px;
}

.bullet-list,
.contact-list {
  padding-left: 1rem;
  color: var(--muted);
}

.bullet-list li,
.contact-list li {
  margin-bottom: 0.6rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.gallery img {
  border-radius: 18px;
  object-fit: cover;
  min-height: 200px;
}

.gallery img:first-child {
  grid-column: span 2;
  min-height: 260px;
}

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

.review-card {
  min-height: 220px;
}

.review-stars {
  margin-bottom: 0.8rem;
  color: #ffcc66;
  letter-spacing: 0.2em;
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.text-center {
  text-align: center;
}

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

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

@media (max-width: 960px) {
  .highlight-grid,
  .menu-grid,
  .review-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 740px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

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

  .gallery img:first-child {
    grid-column: span 1;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
