:root {
  --chai-dark: #2c1810;
  --chai-brown: #4a2c1a;
  --chai-medium: #6b3e2e;
  --saffron: #e8841a;
  --saffron-light: #f5a623;
  --gold: #d4a853;
  --cream: #faf6f0;
  --cream-dark: #f0e8dc;
  --white: #ffffff;
  --text: #2c1810;
  --text-muted: #6b5b4f;
  --green: #25d366;
  --shadow: 0 4px 24px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 12px 48px rgba(44, 24, 16, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--chai-dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--chai-dark);
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--saffron);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--saffron-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--chai-dark);
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1.25rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(232, 132, 26, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, var(--chai-dark) 0%, var(--chai-brown) 40%, var(--chai-medium) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--cream-dark);
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-rating .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-rating .rating-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-price {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}

.btn-primary:hover {
  background: var(--saffron-light);
  border-color: var(--saffron-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 132, 26, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-whatsapp:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Features bar */
.features-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.5rem 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.feature-pill::before {
  content: '✓';
  color: var(--saffron);
  font-weight: 700;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--chai-dark);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-text em {
  color: var(--saffron);
  font-style: normal;
  font-weight: 500;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.highlight-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Menu */
.menu {
  background: var(--cream);
}

.menu-search-wrap {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.menu-search-wrap input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 999px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.menu-search-wrap input:focus {
  border-color: var(--saffron);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}

.menu-tab:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.menu-tab.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
}

.menu-category {
  margin-bottom: 3rem;
  animation: fadeIn 0.4s ease;
}

.menu-category.hidden {
  display: none;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
}

.menu-category-header .cat-icon {
  font-size: 1.75rem;
}

.menu-category-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--chai-dark);
}

.menu-items {
  display: grid;
  gap: 0.75rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.menu-item:hover {
  border-color: var(--cream-dark);
  box-shadow: var(--shadow);
}

.menu-item.hidden {
  display: none;
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--chai-dark);
  margin-bottom: 0.15rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.menu-item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--saffron);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-price::before {
  content: '₹';
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reviews */
.reviews {
  background: var(--chai-dark);
  color: var(--white);
}

.reviews .section-label {
  color: var(--gold);
}

.reviews .section-header h2 {
  color: var(--white);
}

.reviews .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

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

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.25s, background 0.25s;
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

.review-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--saffron);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.15rem;
}

/* Visit */
.visit {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.visit-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--chai-dark);
}

.info-block {
  margin-bottom: 1.75rem;
}

.info-block h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--chai-dark);
}

.info-block p,
.info-block a {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  text-decoration: none;
}

.info-block a:hover {
  color: var(--saffron);
}

.info-block em {
  font-size: 0.9rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--cream-dark);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 500;
  color: var(--text);
}

.hours-row .time {
  color: var(--text-muted);
}

.visit-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Contact */
.contact {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.contact-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--chai-dark);
}

.contact-card > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.listings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.listing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Inquiry form */
.inquiry-form {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  text-align: left;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.inquiry-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
  color: var(--chai-dark);
}

.inquiry-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--saffron);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.inquiry-form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.inquiry-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  min-height: 1.25rem;
  color: var(--text-muted);
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: #c62828;
}

/* Footer */
.footer {
  background: var(--chai-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.footer-brand span {
  font-size: 0.8rem;
}

.footer-copy {
  font-size: 0.85rem;
}

/* FAB WhatsApp */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--cream-dark);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

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

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-map {
    order: -1;
  }

  .visit-map iframe {
    height: 280px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .menu-tab {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
