@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* COLOR SYSTEM */
  --color-teal-primary: #01696f;
  --color-gold-accent: #C8A97E;
  --gradient-teal-blue: linear-gradient(135deg, #4CAF92 0%, #3A7BD5 100%);
  --color-bg-warm: #FAFAF8;
  --color-bg-surface: #ffffff; /* Clean warm white for cards */
  --color-text-primary: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-text-light: #FAFAF8;
  --color-whatsapp: #25D366;

  /* TYPOGRAPHY */
  --font-display: 'Bodoni Moda', serif;
  --font-body: 'Jost', sans-serif;
  
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --text-3xl: clamp(2rem, 1.7rem + 1.2vw, 2.5rem);
  --text-4xl: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  --text-5xl: clamp(3rem, 2.5rem + 3vw, 4.5rem);

  /* SPACING & LAYOUT */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --container-max-width: 1200px;
  --container-padding: clamp(1.5rem, 5vw, 2.5rem);
  
  /* AESTHETICS */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-sm: 0 8px 24px rgba(1, 105, 111, 0.04);
  --shadow-md: 0 12px 32px rgba(1, 105, 111, 0.08);
  --shadow-hover: 0 20px 48px rgba(1, 105, 111, 0.12);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* RESETS & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; color: var(--color-teal-primary); margin-bottom: var(--space-sm); }
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
p { margin-bottom: var(--space-sm); color: var(--color-text-muted); font-size: var(--text-base); line-height: 1.75; max-width: 65ch; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
img { display: block; max-width: 100%; height: auto; }

/* UTILITIES */
.container { width: 100%; max-width: var(--container-max-width); margin: 0 auto; padding: 0 var(--container-padding); }
.section { padding: var(--space-lg) 0; position: relative; }
.text-center { text-align: center; }

/* COMPONENTS: BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 500; font-size: var(--text-sm);
  letter-spacing: 0.05em; cursor: pointer; transition: all var(--transition-smooth);
  border: 1px solid transparent; gap: 0.75rem; text-transform: uppercase;
}
.btn-primary { background: var(--color-whatsapp); color: var(--color-bg-warm); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); background: #1ebe57; color: var(--color-bg-warm); }
.btn-outline { 
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;
}
.btn-outline:hover { background: white; color: var(--color-text-primary); }

/* BRAND ELEMENTS */
.infinity-symbol { font-family: var(--font-display); font-size: var(--text-4xl); color: var(--color-gold-accent); display: block; margin: var(--space-sm) 0; }
.infinity-divider {
  text-align: center;
  margin: 1.5rem auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #01696f;
  font-size: 1.25rem;
  display: block;
  letter-spacing: 0.1em;
}
.infinity-divider::before, .infinity-divider::after { content: ''; width: 60px; height: 1px; background-color: var(--color-gold-accent); opacity: 0.4; margin: 0 1rem; display: inline-block; vertical-align: middle; }

/* ==========================================================================
   PHASE 2: SECTIONS
   ========================================================================== */

/* 1. FLOATING NAV */
.nav-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(250, 250, 248, 0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(1, 105, 111, 0.05);
  transition: all var(--transition-smooth);
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.nav-header.scrolled {
  height: 76px;
  background: rgba(250, 250, 248, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.editorial-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  width: 140px;
  height: 100%;
}

.nav-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-smooth);
}

.nav-header.scrolled .nav-logo-img {
  height: 110px;
}

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

.nav-links-left {
  justify-content: flex-end;
}

.nav-links-right {
  justify-content: flex-start;
}

.nav-links a:not(.btn) {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold-accent);
  transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover {
  color: var(--color-teal-primary);
}

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

.nav-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--color-teal-primary); }

/* 2. HERO SECTION - EDITORIAL */
.editorial-hero {
  position: relative; 
  min-height: 100vh;
  display: flex; 
  align-items: center; 
  background-color: var(--color-bg-warm);
  overflow: hidden;
  padding-top: 90px; /* Offset for fixed nav */
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-content {
  padding-right: 2rem;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-accent);
  margin-bottom: 1rem;
}

.editorial-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--color-teal-primary);
  line-height: 1.05;
  margin-bottom: 1rem;
  font-weight: 400;
}

.editorial-hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-decorative {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-decorative .infinity-symbol {
  font-size: 2rem;
  margin: 0;
}

.decorative-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(to right, rgba(200, 169, 126, 0.4), transparent);
  max-width: 150px;
}

.editorial-hero .hero-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 90%;
}

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

.btn-outline-dark {
  border: 1px solid var(--color-text-primary);
  color: var(--color-text-primary);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-dark:hover {
  background: var(--color-text-primary);
  color: var(--color-bg-warm);
}

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

.image-frame {
  position: relative;
  border-radius: 4px 40px 4px 4px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(1, 105, 111, 0.08);
  aspect-ratio: 1 / 1;
  max-height: 65vh;
  width: 100%;
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px 40px 4px 4px;
  z-index: 2;
  pointer-events: none;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.image-frame:hover .hero-main-img {
  transform: scale(1.05);
}

.trust-floating-card {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
  background: var(--color-bg-surface);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 3;
  border: 1px solid rgba(200, 169, 126, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item i {
  color: var(--color-gold-accent);
}

/* 3. ABOUT SECTION */
.about-section { padding-bottom: 2.5rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.about-image { position: relative; box-shadow: var(--shadow-md); border-radius: 12px; overflow: hidden; }
.about-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; }
.about-content h2 { margin-bottom: var(--space-sm); }
.about-content p { font-size: var(--text-lg); margin-bottom: var(--space-sm); }
.brand-mention { font-style: italic; color: var(--color-teal-primary); font-family: var(--font-display); font-size: 1.15rem; margin-top: var(--space-md); line-height: 1.6; max-width: 100%; }

/* 4. USPs GRID */
.usps-section { background-color: #f5f5f2; padding-top: 2.5rem; }
.usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.usp-card {
  background: var(--color-bg-surface); padding: var(--space-md); border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.usp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.usp-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: rgba(200, 169, 126, 0.1); color: var(--color-gold-accent); border-radius: 50%; margin-bottom: var(--space-sm); }
.usp-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-xs); color: var(--color-text-primary); }
.usp-card p { font-size: var(--text-sm); margin-bottom: 0; }

/* 5. SERVICES SECTION */
.services-section { 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
.services-header { text-align: center; max-width: 700px; margin: 0 auto 1rem; }
.services-header .infinity-divider { margin: 0.75rem auto; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
.services-list { display: flex; flex-direction: column; gap: 1.5rem; }
.service-item { display: flex; gap: 1rem; align-items: flex-start; }
.service-item-icon { color: var(--color-teal-primary); flex-shrink: 0; margin-top: 0.25rem; }
.service-item h3 { font-size: var(--text-2xl); margin-bottom: 0.25rem; }
.services-image { position: relative; display: flex; justify-content: center; }
.services-image img { width: 100%; max-width: 400px; max-height: 60vh; height: auto; object-fit: contain; border-radius: 12px; box-shadow: var(--shadow-md); }

/* ==========================================================================
   PHASE 3: MENU & GALLERY
   ========================================================================== */

/* 6. MENU SECTION */
.menu-section { 
  background-color: var(--color-bg-body); 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
}
.menu-header { text-align: center; max-width: 700px; margin: 0 auto 0.75rem; }
.menu-header .infinity-divider { margin: 0.25rem auto; }
.menu-header h2 { font-size: var(--text-3xl); color: var(--color-teal-primary); margin-bottom: 0.25rem; }
.menu-header p { font-size: var(--text-base); color: var(--color-text-muted); }

/* Tabs */
.menu-tabs-wrapper { 
  overflow-x: auto; 
  padding-bottom: var(--space-sm);
  margin-bottom: 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs-wrapper::-webkit-scrollbar { display: none; }

.menu-tabs {
  display: flex;
  gap: 0.75rem;
  min-width: max-content;
  padding: 0 var(--space-xs);
}

.tab-btn {
  padding: 0.5rem 1.25rem;
  background-color: var(--color-bg-surface);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.tab-btn:hover {
  background-color: #f0f0ea;
}

.tab-btn.active {
  background-color: var(--color-teal-primary);
  color: var(--color-bg-body);
  border-color: var(--color-teal-primary);
  box-shadow: 0 4px 10px rgba(1, 105, 111, 0.2);
}

/* Tab Panels */
.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}
.tab-panel.active {
  display: block;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.menu-card {
  background: var(--color-bg-surface);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: 1px solid rgba(200, 169, 126, 0.1);
}

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

.menu-item-info h4 {
  font-size: var(--text-base);
  margin-bottom: 0.15rem;
  color: var(--color-text-primary);
  font-weight: 600;
}

.menu-item-info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.menu-item-price {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-teal-primary);
  white-space: nowrap;
}

/* 7. GALLERY SECTION */
.gallery-section { 
  background-color: #f5f5f2; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0;
}
.gallery-header { text-align: center; max-width: 700px; margin: 0 auto 1.5rem; }
.gallery-header h2 { font-size: var(--text-4xl); color: var(--color-teal-primary); margin-bottom: 0.5rem; }
.gallery-header p { font-size: var(--text-lg); color: var(--color-text-muted); }
.gallery-section .infinity-divider { margin: 1rem auto; }

.masonry-gallery {
  column-count: 3;
  column-gap: var(--space-md);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   PHASE 4: TESTIMONIALS, FAQ, CONTACT & ORDER
   ========================================================================== */

.section-header.text-center { text-align: center; max-width: 700px; margin: 0 auto var(--space-lg); }
.section-header h2 { font-size: var(--text-4xl); color: var(--color-teal-primary); margin-bottom: var(--space-xs); }
.section-header p { font-size: var(--text-lg); color: var(--color-text-muted); }

/* 8. TESTIMONIALS SECTION */
.testimonials-section { 
  background-color: var(--color-bg-body); 
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
.testimonials-section .section-header { margin-bottom: 1.5rem; }
.testimonials-section .infinity-divider { margin: 1rem auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.testimonial-card { background: var(--color-bg-surface); padding: 2.5rem 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); position: relative; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--color-teal-primary); opacity: 0.2; position: absolute; top: 10px; left: 20px; line-height: 1; }
.review-text { font-family: var(--font-body); font-style: italic; font-size: var(--text-base); color: var(--color-text-primary); margin-bottom: var(--space-md); position: relative; z-index: 1; }
.star-rating { color: var(--color-gold-accent); margin-bottom: var(--space-xs); letter-spacing: 2px; }
.customer-info strong { display: block; color: var(--color-text-primary); font-size: var(--text-base); }
.customer-info .neighbourhood { display: block; color: var(--color-text-muted); font-size: var(--text-sm); }

/* 9. FAQ SECTION */
.faq-section { 
  background-color: #f5f5f2; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
}
.faq-section .section-header { margin-bottom: 1rem; }
.faq-section .section-header h2 { font-size: var(--text-3xl); margin-bottom: 0.25rem; }
.faq-section .infinity-divider { margin: 0.5rem auto; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { background: transparent; border-bottom: 1px solid rgba(0,0,0,0.1); border-radius: 8px; overflow: hidden; transition: background var(--transition-smooth); }
.faq-item.active { background: var(--color-bg-surface); border-bottom-color: transparent; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1rem 1.25rem; font-family: var(--font-body); font-size: var(--text-base); font-weight: 500; color: var(--color-text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-icon { color: var(--color-teal-primary); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 1.25rem 1rem 1.25rem; color: var(--color-text-muted); margin: 0; font-size: 0.95rem; }

/* 10. CONTACT SECTION */
.contact-section { 
  background-color: var(--color-bg-body); 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0;
}
.contact-section .section-header { margin-bottom: 1.5rem; }
.contact-section .infinity-divider { margin: 1rem auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.contact-details { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { color: var(--color-teal-primary); margin-top: 0.25rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: var(--text-lg); color: var(--color-text-primary); margin-bottom: 0.25rem; }
.contact-item p { color: var(--color-text-muted); margin: 0; }
.contact-map iframe { border-radius: 12px; box-shadow: var(--shadow-md); }

/* MAP FALLBACK */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 320px;
  background: #e8e4de;
}
.map-link-wrap {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.map-static-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(20%) saturate(0.9);
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.map-link-wrap:hover .map-overlay {
  opacity: 1;
}
.map-cta {
  background: #01696f;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}
.map-fallback-plain {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #f0ede8;
  border-radius: 12px;
  color: #7a7974;
}
.map-fallback-plain a {
  padding: 0.6rem 1.25rem;
  background: #01696f;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}

/* 11. ORDER ON WHATSAPP SECTION */
#order {
  background: #2C2118;
  padding: clamp(4rem, 8vw, 7rem) 
           clamp(1.5rem, 5vw, 5rem);
}
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.order-label {
  display: block;
  color: #4f98a3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.order-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.order-subtext {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}
.order-trust {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.order-trust li {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.order-form-wrap {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0ddd8;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #fafaf8;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #01696f;
}
.btn-whatsapp-submit {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s ease;
}
.btn-whatsapp-submit:hover {
  background: #1ebe5d;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.2s ease, 
              box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  color: white;
}

/* FOOTER */
.site-footer {
  background: #1A1A1A; /* Deep charcoal for better contrast */
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem) 1rem;
  color: white;
  min-height: auto;
}

.footer-minimal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 432px;
  height: 432px;
  object-fit: contain;
  display: block;
}

.footer-minimal-tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold-accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-minimal-tagline em {
  font-style: italic;
  font-weight: 500;
}

.footer-minimal-nav {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-minimal-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.footer-minimal-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold-accent);
  transition: width var(--transition-fast);
}

.footer-minimal-nav a:hover {
  color: #fff;
}

.footer-minimal-nav a:hover::after {
  width: 100%;
}

.footer-minimal-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-minimal-contact a {
  color: white;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-minimal-contact a:hover {
  opacity: 0.8;
}

.contact-separator {
  color: var(--color-gold-accent);
  font-size: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-smooth);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon:hover {
  background: rgba(255,255,255,0.05);
  color: white;
  border-color: rgba(200, 169, 126, 0.4);
  transform: translateY(-3px);
}

.footer-minimal-divider {
  height: 1px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 126, 0.3), transparent);
}

.footer-minimal-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  font-family: var(--font-body);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-logo-img { width: 300px; height: 300px; }
  .footer-minimal-nav { gap: 1.5rem; flex-direction: column; }
  .footer-minimal-contact { flex-direction: column; gap: 0.5rem; }
  .contact-separator { display: none; }
  .footer-minimal-bottom { flex-direction: column; text-align: center; align-items: center; }
  .footer-company-info { order: -1; margin-bottom: 1rem; color: rgba(255,255,255,0.6); }

}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .nav-links, .nav-actions .btn { display: none; }
  .editorial-nav { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    width: 100%;
    padding: 1rem 0;
  }
  .nav-logo { order: 1; width: auto; justify-content: flex-start; }
  .hamburger { order: 2; display: block; margin-top: 10px; }
  
  /* Mobile Menu */
  .nav-header.menu-open {
    height: 100vh;
    background: var(--color-bg-surface);
    align-items: flex-start;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
  .nav-links-left { order: 3; margin-top: 2rem; }
  .nav-links-right { order: 4; }
  
  .nav-header.menu-open .nav-links {
    display: flex;
  }
  
  .nav-header.menu-open .nav-links a {
    font-size: 1.2rem; padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    width: 100%;
    text-align: center;
  }
  .nav-header.menu-open .nav-links a.btn { 
    border: none; display: inline-flex; justify-content: center; 
    margin-top: 1.5rem; width: 100%; 
  }
  
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-text-content { padding-right: 0; }
  .hero-decorative { justify-content: center; }
  .editorial-hero .hero-subtext { margin-left: auto; margin-right: auto; }
  .trust-floating-card { position: relative; bottom: 0; left: 0; margin-top: -2rem; z-index: 5; flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .hero-ctas .btn-outline-dark { width: 100%; justify-content: center; }
  .trust-bar { flex-direction: column; gap: 0.5rem; }
  .trust-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .masonry-gallery { column-count: 2; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: var(--space-lg) 0; }
  .hero h1 { font-size: clamp(2rem, 7vw, 5rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .masonry-gallery { column-count: 2; }
  .menu-header h2, .gallery-header h2, .section-header h2 { font-size: var(--text-3xl); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .order-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand { justify-content: center; align-items: center; }
  .footer-bottom { 
    flex-direction: column; 
    align-items: center;
    gap: 0.5rem;
  }
  p { max-width: 100%; }
}
@media (max-width: 480px) {
  .usps-grid { grid-template-columns: 1fr; }
  .masonry-gallery { column-count: 1; }
  .hero h1 { font-size: clamp(2rem, 7vw, 5rem); }
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, 
              transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* WHATSAPP TOOLTIP */
.whatsapp-float::after {
  content: 'Order on WhatsApp';
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: white;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.whatsapp-float:hover::after {
  opacity: 1;
}

/* TIGHTEN GAPS */
.services-section { padding-top: 2rem; padding-bottom: 2rem; }
.menu-section { padding-top: 2rem; }
