/* =============================================
   Joshi Kitchen's — Premium Design System
   Inspired by warm food websites with golden/sage palette
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --gold: #C8924A;
  --gold-light: #D4A864;
  --gold-dark: #A87A3A;
  --gold-pale: #F5E6D0;
  --sage: #7B9E6B;
  --sage-light: #94B584;
  --sage-dark: #5D7E50;
  --sage-pale: #E8F0E4;
  --rose: #C97B8B;
  --rose-pale: #F8E8EC;
  --cream: #FAF6F0;
  --cream-dark: #F0E8DA;
  --ivory: #FFFCF7;
  --sand: #EDE4D4;
  --white: #FFFFFF;
  --text-dark: #2D2A26;
  --text-body: #5C564E;
  --text-muted: #8E8880;
  --border-light: rgba(200, 146, 74, 0.12);
  --border-gold: rgba(200, 146, 74, 0.25);

  --shadow-xs: 0 1px 3px rgba(45, 42, 38, 0.04);
  --shadow-sm: 0 2px 10px rgba(45, 42, 38, 0.06);
  --shadow-md: 0 4px 24px rgba(45, 42, 38, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.10);
  --shadow-xl: 0 20px 60px rgba(45, 42, 38, 0.12);
  --shadow-gold: 0 4px 20px rgba(200, 146, 74, 0.2);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Global Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

html, body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background-color: var(--cream);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-pale); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

.font-script {
  font-family: 'Sofia', cursive;
}

/* ---------- Decorative Ornament ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.ornament-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

.ornament-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* Section subtitle tag */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-label svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ---------- Navbar (Floating Capsule) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 20px 0;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding-top: 8px;
}

.navbar-capsule {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 16px;
  border-radius: 100px;
  background: rgba(255, 252, 247, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(200, 146, 74, 0.12);
  box-shadow: 0 2px 20px rgba(45, 42, 38, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: var(--transition);
}

.navbar.scrolled .navbar-capsule {
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 4px 30px rgba(45, 42, 38, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  border-color: rgba(200, 146, 74, 0.18);
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
  box-shadow: 0 2px 8px rgba(200, 146, 74, 0.15);
  transition: var(--transition);
}

.navbar-logo:hover .navbar-logo-img {
  border-color: var(--gold);
  transform: scale(1.05);
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.navbar-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1px;
}

/* Nav Links (Desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
}

.nav-link:hover {
  color: var(--gold-dark);
  background: rgba(200, 146, 74, 0.08);
}

.nav-link.active {
  color: var(--gold-dark);
  background: rgba(200, 146, 74, 0.1);
  font-weight: 600;
}

/* Desktop CTA Button */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.825rem;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(200, 146, 74, 0.25);
  flex-shrink: 0;
}

.navbar-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 146, 74, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: 50%;
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(200, 146, 74, 0.08);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Buttons ---------- */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 146, 74, 0.3);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-sage {
  background: var(--sage);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border-radius: 100px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(123, 158, 107, 0.25);
}

.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(123, 158, 107, 0.35);
}

.btn-whatsapp {
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(200, 146, 74, 0.25);
}

.btn-whatsapp:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 146, 74, 0.35);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 50%, var(--cream-dark) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, var(--gold) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--gold-pale);
  top: -150px;
  right: -100px;
  opacity: 0.5;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: var(--sage-pale);
  bottom: -80px;
  left: -100px;
  opacity: 0.4;
}

.hero-blob-3 {
  width: 200px;
  height: 200px;
  background: var(--rose-pale);
  top: 40%;
  left: 30%;
  opacity: 0.3;
}

.hero-image-frame {
  position: relative;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 2px solid var(--gold);
  border-radius: 24px;
  opacity: 0.25;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--sage-pale);
  z-index: -1;
  opacity: 0.6;
}

.hero-image-frame img {
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

/* Floating badge on hero */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-icon svg {
  width: 20px;
  height: 20px;
}

/* ---------- Section Backgrounds & Dividers ---------- */
.section-cream { background: var(--cream); }
.section-ivory { background: var(--ivory); }
.section-sand { background: var(--sand); }
.section-sage-pale { background: var(--sage-pale); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), var(--gold), var(--gold-pale), transparent);
  opacity: 0.5;
  margin: 0 auto;
  max-width: 300px;
}

/* Decorative ornamental divider between sections */
.ornamental-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 2.5rem 0;
}

.ornamental-divider .line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornamental-divider .line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornamental-divider .center-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.ornamental-divider .center-icon svg {
  width: 20px;
  height: 20px;
}

/* ---------- Menu Cards (Organic Arch) ---------- */
.menu-card {
  background: var(--white);
  border-radius: 160px 160px 32px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  margin-top: 80px; /* Space for overlapping image */
  padding-top: 90px;
  text-align: center;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.menu-card-image {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(45, 42, 38, 0.12);
  z-index: 10;
  border: 6px solid var(--white);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition-slow);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05) rotate(5deg);
}

.menu-card-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  z-index: 15;
}

.menu-card-icon {
  display: none;
}

.menu-card-body {
  padding: 0 1.5rem 2.5rem;
}

/* ---------- Floating Decor ---------- */
.decor-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.decor-item {
  position: absolute;
  opacity: 0.6;
}

.decor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.decor-cross {
  color: var(--sage);
  font-size: 24px;
  line-height: 1;
  font-family: sans-serif;
}


/* ---------- USP / Feature Cards ---------- */
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.feature-card:hover::after {
  width: 60px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* ---------- Reviews Slider ---------- */
.reviews-container {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 24px;
}

.review-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold), var(--gold-pale));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card:hover::before {
  opacity: 1;
}

.review-quote-mark {
  color: var(--gold);
  opacity: 0.3;
}

.review-quote-mark svg {
  width: 32px;
  height: 32px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-gold);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gold-dark);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 2rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-pale);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ---------- Steps / How to Order ---------- */


/* ---------- Contact Form ---------- */
.contact-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  background: var(--ivory);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.925rem;
  transition: var(--transition);
  outline: none;
}

.contact-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 146, 74, 0.08);
}

.contact-input::placeholder {
  color: var(--text-muted);
}

textarea.contact-input {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Thali Highlight Banner ---------- */
.thali-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.thali-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.thali-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.thali-item-tag {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(200, 146, 74, 0.35);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(200, 146, 74, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage), var(--gold));
}

.footer a {
  transition: var(--transition);
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold-light) !important;
}

/* ---------- Stat Card ---------- */
.stat-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-light);
}

.stat-item:last-child::after {
  display: none;
}

/* ---------- Map Container ---------- */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
}

/* ---------- Animations ---------- */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .review-card { min-width: calc(50% - 12px); }
  .step-connector { display: none; }

  .nav-link {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .navbar-capsule {
    padding: 8px 10px 8px 14px;
  }

  .navbar-logo-img {
    width: 38px;
    height: 38px;
  }

  .navbar-brand {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .navbar {
    padding: 10px 10px 0;
  }

  .navbar.scrolled {
    padding-top: 6px;
  }

  .navbar-capsule {
    padding: 10px 14px 10px 14px;
    border-radius: 60px;
  }

  .navbar-logo-img {
    width: 44px;
    height: 44px;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar-tagline {
    font-size: 0.65rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 1.5rem 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    gap: 4px;
  }

  .nav-menu.active { right: 0; }

  .nav-menu .nav-link {
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: 14px;
    display: block;
    border-bottom: none;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: rgba(200, 146, 74, 0.1);
  }

  .review-card { min-width: 100%; }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg { width: 24px; height: 24px; }

  .hero-blob-1 { width: 250px; height: 250px; }
  .hero-blob-2 { width: 180px; height: 180px; }

  .stat-item::after { display: none; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }

  .btn-gold, .btn-outline-gold, .btn-sage, .btn-whatsapp {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 42, 38, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}
