﻿:root {
  --bg: #06070c;
  --bg-soft: #111520;
  --text: #f2f4f8;
  --muted: #b5bdcf;
  --gold: #d8b067;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top right, #172038, var(--bg) 45%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(216, 176, 103, 0.12), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(91, 127, 255, 0.18), transparent 33%);
  z-index: -1;
  animation: drift 14s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -25px, 0) scale(1.05);
  }
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(6, 7, 12, 0.65);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

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

.logo {
  color: var(--text);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--gold);
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

h2 {
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-size: 0.78rem;
}

.hero {
  padding: 6.8rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
  max-width: 680px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
}

.stat-pill strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.stat-pill span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.check-list {
  margin: 0 0 1rem;
  padding-left: 1rem;
}

.check-list li {
  margin-bottom: 0.45rem;
  color: #d7dcef;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0ba72, #b78632);
  color: #121319;
  border: none;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(184, 134, 50, 0.28);
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.feature-grid,
.menu-grid,
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.menu-grid-four {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.menu-card,
.contact-form {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.menu-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.menu-card li:last-child {
  border-bottom: none;
}

.menu-card strong {
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
  align-items: center;
  margin: 2rem 0 3rem;
}

.split img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.split img:hover {
  transform: scale(1.02);
}

.page-top {
  padding-top: 3.5rem;
}

.link-arrow {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  margin: 1.2rem 0 2.5rem;
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: #e4e9f5;
}

input,
textarea {
  width: 100%;
  margin-top: 0.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.65rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

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

.footer-content a {
  color: var(--gold);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .menu-grid,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .btn-sm {
    display: none;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .menu-grid,
  .menu-grid-four,
  .testimonials,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .split img {
    min-height: 280px;
  }
}

@media (max-width: 540px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

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