/* ===== CSS VARIABLES ===== */
:root {
  --terracotta: #B5563E;
  --terracotta-light: #D4896A;
  --cream: #F2E6D9;
  --cream-dark: #E8D5C0;
  --brown-deep: #3D2B1F;
  --brown-mid: #6B4226;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --white: #FDFAF7;
  --text-dark: #2C1810;
  --text-mid: #5C3D2E;
  --text-light: #9B7B6A;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow-sm: 0 2px 12px rgba(61,43,31,0.08);
  --shadow-md: 0 8px 32px rgba(61,43,31,0.14);
  --shadow-lg: 0 20px 60px rgba(61,43,31,0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 10px; height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}
.cursor.hover { width: 20px; height: 20px; background: var(--gold); }
.cursor-follower.hover { width: 56px; height: 56px; opacity: 0.2; }

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  animation: floatParticle linear infinite;
  user-select: none;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(253, 250, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--terracotta);
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--terracotta); }
.nav-link:hover::after { width: 60%; }
.nav-cta {
  padding: 10px 22px;
  background: var(--terracotta);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,86,62,0.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; 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); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(181,86,62,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201,168,76,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #FDF6EE 0%, #F2E6D9 40%, #EDD5C0 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(181,86,62,0.08) 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(181,86,62,0.1);
  border: 1px solid rgba(181,86,62,0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--brown-deep);
  margin-bottom: 24px;
}
.title-line { display: block; }
.title-line.accent {
  color: var(--terracotta);
  font-style: italic;
  position: relative;
}
.title-line.accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta-light));
  border-radius: 2px;
  animation: underlineGrow 1.2s ease 0.8s both;
}
@keyframes underlineGrow {
  from { width: 0; }
  to { width: 100%; }
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--terracotta), var(--brown-mid));
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(181,86,62,0.3);
}
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(181,86,62,0.4);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--terracotta);
  color: white;
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--terracotta);
}
.stat span { font-size: 24px; color: var(--terracotta); font-weight: 700; }
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(181,86,62,0.2);
}
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}
.food-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
  border: 1px solid rgba(181,86,62,0.1);
}
.food-card:hover { transform: scale(1.05) rotate(0deg) !important; box-shadow: var(--shadow-lg); }
.food-emoji { font-size: 32px; }
.card-1 { top: 0; left: 0; animation: floatCard1 4s ease-in-out infinite; }
.card-2 { top: 0; right: 0; animation: floatCard2 4.5s ease-in-out infinite 0.5s; }
.card-3 { bottom: 0; left: 0; animation: floatCard3 5s ease-in-out infinite 1s; }
.card-4 { bottom: 0; right: 0; animation: floatCard4 4.2s ease-in-out infinite 1.5s; }
@keyframes floatCard1 { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-12px) rotate(-3deg)} }
@keyframes floatCard2 { 0%,100%{transform:translateY(0) rotate(3deg)} 50%{transform:translateY(-16px) rotate(3deg)} }
@keyframes floatCard3 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-10px) rotate(2deg)} }
@keyframes floatCard4 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-14px) rotate(-2deg)} }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ===== MARQUEE ===== */
.marquee-section {
  background: linear-gradient(135deg, var(--terracotta), var(--brown-mid));
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(181,86,62,0.1);
  border: 1px solid rgba(181,86,62,0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border: 3px solid rgba(181,86,62,0.15);
  position: relative;
}
.about-img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.big-emoji { font-size: 120px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1)); }
.about-badge-float {
  position: absolute;
  bottom: 24px; right: 24px;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  animation: badgeFloat 3s ease-in-out infinite;
}
.about-badge-float span:first-child { font-size: 20px; }
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.about-accent-box {
  position: absolute;
  top: -20px; right: -20px;
  background: linear-gradient(135deg, var(--terracotta), var(--brown-mid));
  color: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.accent-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
}
.accent-text { font-size: 12px; font-weight: 500; opacity: 0.9; }
.about-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(181,86,62,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-item strong { display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 2px; }
.feature-item p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  z-index: 1;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  background: white;
  border: 2px solid rgba(181,86,62,0.15);
  transition: var(--transition);
  cursor: none;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,86,62,0.25);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(181,86,62,0.08);
  transition: var(--transition);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(181,86,62,0.2);
}
.menu-card.hidden { display: none; }
.menu-card-img {
  height: 140px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-card-body { padding: 20px; }
.menu-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(181,86,62,0.1);
  color: var(--terracotta);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.menu-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.menu-card-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price {
  font-size: 16px;
  font-weight: 700;
  color: var(--terracotta);
}
.order-btn {
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--terracotta), var(--brown-mid));
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  cursor: none;
}
.order-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(181,86,62,0.35);
}
.menu-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #FFFDF8, white);
}
.featured-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-deep);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}

/* ===== SPECIALTIES ===== */
.specialties {
  padding: 100px 0;
  background: var(--brown-deep);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.specialties::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}
.specialties .section-tag {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold-light);
}
.specialties .section-title { color: white; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.spec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.spec-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
}
.spec-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.spec-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.spec-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== ORDER SECTION ===== */
.order-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.order-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
}
.order-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--terracotta), var(--brown-mid));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-text strong { display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 2px; }
.step-text p { font-size: 13px; color: var(--text-light); margin: 0; }
.whatsapp-direct { margin-top: 8px; }
.whatsapp-btn-direct {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.whatsapp-btn-direct svg { width: 20px; height: 20px; }
.whatsapp-btn-direct:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}

/* ORDER FORM */
.order-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(181,86,62,0.1);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(181,86,62,0.15);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(181,86,62,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.submit-order-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: white;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  cursor: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.submit-order-btn svg { width: 22px; height: 22px; }
.submit-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  z-index: 1;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(181,86,62,0.08);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stars { font-size: 18px; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--terracotta), var(--brown-mid));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.reviewer strong { display: block; font-size: 14px; color: var(--text-dark); }
.reviewer span { font-size: 12px; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(181,86,62,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 15px; color: var(--text-mid); }
.contact-item a:hover { color: var(--terracotta); }
.whatsapp-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.whatsapp-float-btn svg { width: 20px; height: 20px; }
.whatsapp-float-btn:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}
.contact-card-big {
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 2px solid rgba(181,86,62,0.15);
}
.contact-big-emoji { font-size: 80px; margin-bottom: 20px; }
.contact-card-big h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 12px;
}
.contact-card-big p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-deep);
  padding: 64px 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-main { color: var(--gold-light); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 8px; }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.footer-wa:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.15);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--brown-deep);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--brown-deep);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%,100%{box-shadow:0 8px 32px rgba(37,211,102,0.4)}
  50%{box-shadow:0 8px 48px rgba(37,211,102,0.7),0 0 0 12px rgba(37,211,102,0.1)}
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(181,86,62,0.1);
  color: var(--terracotta);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: var(--transition);
}
.modal-close:hover { background: var(--terracotta); color: white; }
.modal-icon { font-size: 56px; margin-bottom: 16px; }
.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 12px;
}
.modal p { font-size: 15px; color: var(--text-mid); margin-bottom: 8px; }
.modal-price { font-size: 18px; color: var(--terracotta); font-weight: 700; margin-bottom: 16px !important; }
.modal-note { font-size: 13px; color: var(--text-light); margin-bottom: 28px !important; }
.modal-actions { display: flex; gap: 12px; }
.modal-cancel {
  flex: 1;
  padding: 14px;
  border: 2px solid rgba(181,86,62,0.2);
  color: var(--text-mid);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: none;
}
.modal-cancel:hover { border-color: var(--terracotta); color: var(--terracotta); }
.modal-confirm {
  flex: 2;
  padding: 14px;
  background: var(--whatsapp);
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.modal-confirm:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .order-wrapper, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-accent-box { top: -10px; right: -10px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(253,250,247,0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open .nav-link { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .order-form { padding: 24px; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .section-title { font-size: 28px; }
  .menu-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .modal-actions { flex-direction: column; }
}