:root {
  --cream: #0b0f17;
  --espresso: #e8f0ff;
  --mocha: #9bb2d0;
  --sage: #20e3b2;
  --rose: #5b8cff;
  --gold: #ffb347;
  --white: #111827;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--espresso);
  background: radial-gradient(circle at top, #151b2c 0%, #0b0f17 60%);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: var(--espresso);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 23, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--sage), var(--rose));
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--espresso);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--sage), var(--rose));
  color: #0b0f17;
  box-shadow: var(--shadow);
  border: none;
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05);
}

.btn.ghost {
  border-color: var(--mocha);
  color: var(--espresso);
  background: transparent;
}

.btn.ghost:hover {
  background: var(--espresso);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 6vw 4rem;
  color: var(--white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 15, 26, 0.7), rgba(9, 18, 45, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  text-align: left;
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--sage);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.highlights,
.testimonials,
.values,
.menu-section,
.contact-section,
.story-grid {
  padding: 4rem 6vw;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.highlight-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-grid article {
  background: rgba(17, 24, 39, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 227, 178, 0.5);
}

.cta-banner {
  margin: 0 6vw 4rem;
  background: linear-gradient(120deg, rgba(32, 227, 178, 0.2), rgba(91, 140, 255, 0.2));
  padding: 2.5rem 3rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.testimonial-slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: rgba(17, 24, 39, 0.92);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.testimonial {
  display: none;
  text-align: center;
  gap: 1.5rem;
}

.testimonial.active {
  display: grid;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  border: none;
  background: linear-gradient(135deg, var(--sage), var(--rose));
  color: #0b0f17;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slider-btn:hover {
  transform: scale(1.1);
}

.page {
  padding-top: 2rem;
}

.page-hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 3rem 6vw;
  align-items: center;
}

.page-hero-card {
  background: rgba(17, 24, 39, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.story-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.story-grid article,
.value-cards div {
  background: rgba(17, 24, 39, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.value-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: transparent;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: var(--espresso);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--sage), var(--rose));
  color: #0b0f17;
  border-color: transparent;
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-card {
  background: rgba(17, 24, 39, 0.92);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.menu-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.menu-card .card-actions {
  margin-top: 1rem;
}

.menu-card .btn {
  width: 100%;
  justify-content: center;
}

.menu-card span {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 140, 255, 0.6);
}

.contact-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
}

input, textarea, select {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 0.8rem;
  font-family: inherit;
  background: rgba(15, 23, 42, 0.8);
  color: var(--espresso);
}

.map-card {
  background: rgba(17, 24, 39, 0.92);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.map-placeholder {
  background: linear-gradient(135deg, rgba(32, 227, 178, 0.3), rgba(91, 140, 255, 0.3));
  border-radius: 1rem;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--espresso);
  font-weight: 600;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.site-footer {
  background: #0a0f1d;
  color: var(--espresso);
  padding: 3rem 6vw 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

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

.social-links {
  display: grid;
  gap: 0.5rem;
}

.newsletter-form {
  display: grid;
  gap: 0.8rem;
}

.newsletter-form input {
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  opacity: 0.8;
}

.form-message {
  font-size: 0.85rem;
  min-height: 1rem;
}

.chatbot-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--sage), var(--rose));
  color: #0b0f17;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.chatbot {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: min(320px, 90vw);
  background: rgba(17, 24, 39, 0.95);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.chatbot.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.chatbot-body {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.chip {
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--espresso);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 6vw;
    background: rgba(17, 24, 39, 0.98);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 1rem 4vw;
  }

  .hero {
    padding: 6rem 4vw 4rem;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}
