:root {
  --bg: #050505;
  --surface: #111111;
  --surface-alt: #1a1a1a;
  --text: #f7f5f0;
  --muted: #c4b89e;
  --gold: #c69c6d;
  --gold-soft: rgba(198, 156, 109, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(198, 156, 109, 0.06), transparent 25%), var(--bg);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.navbar a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.navbar a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #f4d7a7);
  color: #111;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s ease, transform 5s linear;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--text);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero-call {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin: 0;
  line-height: 0.95;
}

.hero-copy {
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-dots {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-dot {
  width: 0.85rem;
  height: 0.85rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot:hover,
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.about-section,
.services-section,
.menu-section,
.why-section,
.testimonials-section,
.booking-section,
.contact-section {
  position: relative;
}

.split-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

.about-section h2,
.services-section h2,
.menu-section h2,
.why-section h2,
.testimonials-section h2,
.booking-section h2,
.contact-section h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 0 0 1.2rem;
}

.about-section p,
.why-section p,
.contact-section p,
.booking-section p {
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.7rem;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 1.5rem;
}

.statistics {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
}

.statistics div {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
}

.statistics h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--gold);
}

.services-grid,
.testimonials-grid,
.gallery-grid,
.why-grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 156, 109, 0.35);
}

.service-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(198, 156, 109, 0.14);
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card div {
  padding: 1.4rem;
}

.section-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.category-pill {
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  cursor: pointer;
}

.category-pill.active,
.category-pill:hover {
  background: rgba(198, 156, 109, 0.18);
  color: var(--text);
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.why-card {
  padding: 1.6rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.why-card h3 {
  margin-top: 0;
}

.why-image {
  min-height: 420px;
  border-radius: 1.5rem;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.testimonial-meta span {
  color: var(--gold);
}

.booking-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 1.5rem;
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: var(--text);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.whatsapp-button {
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-details,
.map-frame {
  border-radius: 1.5rem;
  overflow: hidden;
}

.contact-details {
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.map-frame iframe {
  width: 100%;
  min-height: 320px;
  border: none;
}

.footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer p {
  color: var(--muted);
  max-width: 36rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer a:hover {
  color: var(--gold);
}

.footer-copyright {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 900px) {
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
  }

  .section-headline {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-container {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
  }

  .navbar.show {
    display: flex;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .hero-dots {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .menu-categories,
  .booking-actions,
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .hero-copy,
  .about-section p,
  .booking-section p,
  .contact-section p {
    font-size: 0.95rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
