:root {
  color-scheme: dark;
  --bg: #0f0904;
  --surface: #1d1107;
  --surface-2: #2c1a10;
  --surface-3: #432a1b;
  --text: #f7e6d1;
  --text-muted: #d2b69f;
  --accent: #f17f2c;
  --accent-soft: #f6a668;
  --accent-dark: #c95519;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(circle at top left, rgba(241, 127, 44, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(196, 80, 23, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
}

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

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

button,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(15, 9, 4, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: grid;
  gap: 4px;
}

.brand-tag {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.74rem;
  color: var(--accent-soft);
}

.brand h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.36rem;
  letter-spacing: 0.02em;
}

.brand p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.btn {
  min-height: 50px;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f4b16f);
  color: #1b0800;
  box-shadow: 0 16px 40px rgba(241, 127, 44, 0.18);
}

.btn-secondary,
.btn-outline {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  min-height: calc(100vh - 102px);
  display: grid;
  align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 154, 79, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 20%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 9, 4, 0.24), rgba(15, 9, 4, 0.88));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

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

.eyebrow,
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-soft);
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.hero h2,
.section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
  margin: 0 0 22px;
  max-width: 10ch;
}

.hero p,
.section-copy p,
.section-header p,
.review-card p,
.location-copy p,
.contact-copy p,
.menu-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.hero-cta,
.hero-highlights,
.review-badges,
.contact-blocks,
.location-details,
.feature-list {
  display: grid;
  gap: 1rem;
}

.hero-cta {
  grid-template-columns: repeat(2, minmax(0, max-content));
  margin-top: 28px;
}

.hero-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.hero-highlights div,
.review-badges div,
.contact-blocks div,
.location-details div,
.feature-list div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 18px 20px;
}

.hero-highlights strong,
.review-badges strong,
.contact-blocks strong,
.location-details strong,
.feature-list h4 {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--text);
}

.hero-highlights span,
.review-badges span {
  color: var(--text-muted);
}

.hero-visual {
  display: grid;
  justify-items: end;
}

.hero-visual-card {
  width: min(540px, 100%);
  aspect-ratio: 4 / 5;
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(241, 127, 44, 0.08), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
}

.hero-visual-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero-visual-card:hover img {
  transform: scale(1.08);
}

.hero-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 100px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  display: grid;
  gap: 1rem;
}

.image-stack {
  min-height: 260px;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.image-stack-large {
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=80');
}

.image-stack-small {
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=900&q=80');
  min-height: 180px;
}

.section-header {
  margin-bottom: 42px;
}

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

.menu-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 28px;
  min-height: 280px;
  display: grid;
  gap: 16px;
}

.menu-card-large {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(241, 127, 44, 0.12), rgba(255, 255, 255, 0.02));
}

.menu-card-accent {
  background: rgba(241, 127, 44, 0.14);
}

.menu-card-top span {
  display: block;
  color: var(--accent-soft);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.menu-card-top strong {
  font-size: 1.3rem;
  display: block;
  margin-top: 6px;
}

.menu-price {
  margin-top: auto;
  font-weight: 700;
  color: var(--accent);
}

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

.gallery-item {
  min-height: 220px;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.gallery-item-large {
  min-height: 440px;
  background-image: url('https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=900&q=80');
}

.gallery-item-small {
  background-image: url('https://images.unsplash.com/photo-1529692236671-f1a87e5d65d3?auto=format&fit=crop&w=900&q=80');
}

.gallery-item-small-alt {
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=900&q=80');
}

.gallery-item-wide {
  grid-column: span 2;
  min-height: 320px;
  background-image: url('https://images.unsplash.com/photo-1543349682-a9d1c98faf37?auto=format&fit=crop&w=1200&q=80');
}

.reviews-summary {
  display: grid;
  gap: 1.5rem;
}

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

.review-badges div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.review-badges strong {
  font-size: 2rem;
}

.review-cards {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 28px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
}

.location-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.location-details div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 22px;
}

.social-links {
  display: grid;
  gap: 0.9rem;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.location-map iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.contact-card-inner {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 34px;
  display: grid;
  gap: 1.5rem;
}

.card-tag {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-soft);
  font-size: 0.82rem;
}

.contact-card-inner h4 {
  margin: 0;
  font-size: 2rem;
}

.btn-block {
  width: 100%;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
}

.site-footer {
  padding: 50px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 9, 4, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.footer-grid h3 {
  margin: 0 0 16px;
}

.footer-grid p {
  margin: 0 0 10px;
}

.footer-badge {
  justify-self: end;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 24px;
  border-radius: 24px;
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .hero-content,
  .section-grid,
  .gallery-grid,
  .contact-grid,
  .footer-grid,
  .menu-grid,
  .review-badges,
  .hero-highlights,
  .location-details,
  .contact-blocks {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero h2 {
    font-size: clamp(2.3rem, 6vw, 3.5rem);
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 12px;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .hero-cta {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .review-badges,
  .location-details,
  .contact-blocks {
    grid-template-columns: 1fr;
  }

  .gallery-item-large,
  .gallery-item-wide {
    min-height: 260px;
  }

  .menu-card-large,
  .menu-card-accent {
    grid-column: span 1;
  }
}
