:root {
  --bg: #050505;
  --surface: #0f0f0f;
  --surface-muted: #181818;
  --text: #f5f3f0;
  --text-muted: rgba(245, 243, 240, 0.75);
  --accent: #cc1d28;
  --accent-soft: rgba(204, 29, 40, 0.24);
  --border: rgba(255, 255, 255, 0.08);
  --hero-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=2000&q=80');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 15px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.page {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 45%);
}

.hero {
  position: relative;
  min-height: 60vh;
  padding: 32px clamp(24px, 6vw, 120px) 64px;
  background:
    radial-gradient(circle at top right, rgba(204, 29, 40, 0.4), transparent 42%),
    linear-gradient(150deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.4)),
    var(--hero-image) center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.85) 85%);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.2em;
}

.phone {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
}

.hero__content {
  position: relative;
  z-index: 1;
  margin-top: clamp(32px, 8vw, 100px);
  max-width: 520px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-top: 12px;
}

.lead {
  margin-block: 16px 32px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn.text {
  padding: 0;
  border: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

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

.hero__meta {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
}

section {
  padding: clamp(40px, 8vw, 90px) clamp(18px, 5vw, 90px);
}

.intro {
  background: var(--surface);
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badges span {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}

.section-heading {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-top: 6px;
}

.section-heading p {
  color: var(--text-muted);
  margin-top: 12px;
}

.signature {
  background: var(--surface-muted);
}

.signature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card img {
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 20px;
}

.card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card__body p {
  color: var(--text-muted);
}

.tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.experience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  background: linear-gradient(120deg, rgba(204, 29, 40, 0.15), rgba(3, 3, 3, 0.7));
}

.experience__image img {
  border-radius: 32px;
  height: 100%;
  object-fit: cover;
}

.experience__body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 12px 0 20px;
}

.experience__body ul {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}

.experience__body li::before {
  content: '• ';
  color: var(--accent);
}

.menu-showcase {
  background: var(--surface);
}

.menu-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.dish-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.dish-card__image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 160px;
}

.dish-card__body {
  padding: 20px;
}

.dish-card__body h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.menu-full {
  background: #050505;
}


.menu-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card.modern {
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.menu-card.modern.highlight {
  background: linear-gradient(145deg, rgba(204, 29, 40, 0.2), rgba(5, 5, 5, 0.8));
}

.menu-card__badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.menu-card.modern h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.menu-card.modern p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.menu-card.modern ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-card.modern li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  font-weight: 600;
}

.menu-card.modern li span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.gallery {
  background: #060606;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item img:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.subpages {
  background: #050505;
}

.subpages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.subpage-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.subpage-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.subpage-card p {
  color: var(--text-muted);
}

.subpage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 720px) {
  .hero {
    min-height: 50vh;
    padding: 24px 16px 40px;
  }

  .hero__content {
    margin-top: 24px;
  }

  .hero__meta {
    flex-direction: column;
    gap: 8px;
  }

  section {
    padding: 36px 16px;
  }

  .card img,
  .gallery-item img {
    height: 160px;
  }

  .menu-card.modern {
    padding: 20px;
  }

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

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

.visit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: stretch;
  background: var(--surface-muted);
}

.visit__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.details h3 {
  margin-bottom: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  border-radius: 32px;
  border: 1px solid var(--border);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 48px clamp(24px, 6vw, 120px);
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.8);
}

.footer__links {
  display: flex;
  gap: 18px;
}

.footer__links a {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__content {
    margin-top: 80px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 16px 64px;
  }

  section {
    padding: 48px 16px;
  }

  .gallery__grid img {
    height: 180px;
  }
}
