/* ============================================
   PREMIUM STYLES — Espaço Nutrir
   ============================================ */

:root {
  --color-primary: #5C2340;
  --color-secondary: #8B3A62;
  --color-accent: #C9A84C;
  --color-accent-light: #D4B96A;
  --color-bg-cream: #FAF6F0;
  --color-bg-warm: #F0E8D8;
  --color-bg-wine-light: #F5EEF0;
  --color-text-dark: #3a3a3a;
  --color-text-light: #7a7a7a;
  --color-white: #ffffff;
  --color-footer-bg: #2E1520;

  --shadow-card: 0 10px 25px rgba(92, 35, 64, 0.12);
  --shadow-strong: 0 24px 60px rgba(92, 35, 64, 0.16);
  --border-radius-card: 20px;
  --border-radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  padding-top: 90px;
  overflow-x: hidden;
}

/* Grain Texture */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%28%23noise%29)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: multiply;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 3.2rem; line-height: 1.2; }
h2 { font-size: 2.2rem; line-height: 1.25; }
h3 { font-size: 1.3rem; color: var(--color-accent); }

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 90px 0;
}

/* --- Scroll Progress Bar --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: 100001;
  transition: width 0.05s linear;
}

/* --- Navbar --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(46, 21, 32, 0.97);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

#navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
  opacity: 0.3;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a {
  color: var(--color-bg-cream);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-accent);
}

.nav-menu a.nav-cta {
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.74rem;
}

.nav-menu a.nav-cta:hover {
  background: var(--color-accent-light);
  color: var(--color-text-dark);
}

/* --- Dropdowns --- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--color-bg-cream);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-btn:hover {
  color: var(--color-accent);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(46, 21, 32, 0.98);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255,255,255,0.08);
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(15px);
}

.nav-dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: var(--color-bg-cream);
  text-transform: none;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.nav-dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-accent);
}

.mobile-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--color-bg-cream);
  background: none;
  cursor: pointer;
  border: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--color-white);
  backdrop-filter: blur(6px);
}

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

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--color-accent);
}

.btn-outline-light:hover {
  background: rgba(201, 168, 76, 0.15);
}

/* --- Hero Video Section (Dynamic) --- */
.hero-video-section {
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-video-col {
  position: relative;
  z-index: 1;
}

/* Background blob */
.hero-blob {
  position: absolute;
  top: 30px;
  right: -15px;
  width: 80%;
  height: 80%;
  background: var(--color-primary);
  border-radius: 40px 80px 50px 70px;
  z-index: -1;
  opacity: 0.25;
  filter: blur(25px);
  transform: rotate(6deg);
}

.hero-video-wrap {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4 / 5;
  max-height: 580px;
  transform: rotate(-2.5deg);
  background: var(--color-bg-warm);
  border: 4px solid var(--color-white);
  transition: transform 0.5s ease;
}

.hero-video-wrap:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.hero-text-col {
  padding: 20px 0;
}

.hero-text-col h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--color-primary);
}

.hero-text-col > p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-text-col .small-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 18px;
}

.hero-text-col .small-text i {
  color: var(--color-accent);
  margin-right: 6px;
}

.hero-chips-dark {
  margin-bottom: 32px;
}

.hero-ctas {

  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Chips --- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  backdrop-filter: blur(6px);
  letter-spacing: 0.3px;
}

.chip i {
  font-size: 0.75rem;
  color: var(--color-accent-light);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip.chip-dark {
  background: rgba(92, 35, 64, 0.08);
  border: 1px solid rgba(92, 35, 64, 0.18);
  color: var(--color-primary);
}

.chip.chip-dark i {
  color: var(--color-accent);
}

.rotina-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.rotina-chips .chip {
  justify-content: flex-start;
}

/* --- Section Styling --- */
.section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 18px auto 0;
  border-radius: 999px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-top: 16px;
}

.bg-white { background-color: var(--color-white); }
.bg-cream { background-color: var(--color-bg-cream); }
.bg-warm { background-color: var(--color-bg-warm); }
.bg-wine-light { background-color: var(--color-bg-wine-light); }

/* --- Eyebrow Badge --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(92, 35, 64, 0.10);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(92, 35, 64, 0.15);
}

.eyebrow.eyebrow-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.eyebrow.eyebrow-white i {
  color: var(--color-accent-light);
}

.eyebrow.eyebrow-wine {
  background: rgba(92, 35, 64, 0.08);
  color: var(--color-primary);
  border-color: rgba(92, 35, 64, 0.2);
}

.eyebrow.eyebrow-wine i {
  color: var(--color-accent);
}

.eyebrow.eyebrow-accent {
  color: var(--color-white);
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
}

.eyebrow.eyebrow-accent-sm {
  font-size: 0.7rem;
  padding: 5px 12px;
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
  margin-bottom: 10px;
}

.eyebrow i {
  color: var(--color-accent);
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--border-radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(92, 35, 64, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(92, 35, 64, 0.15);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(92, 35, 64, 0.07);
}

/* Premium Wine Card Variant */
.feature-card.feature-card-wine {
  background-color: var(--color-primary);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 40px rgba(92, 35, 64, 0.15);
}

.feature-card.feature-card-wine:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(92, 35, 64, 0.25);
}

.feature-card.feature-card-wine::before {
  background: rgba(201, 168, 76, 0.05);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(92, 35, 64, 0.10);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.feature-card.feature-card-wine .feature-icon {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-accent);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  color: var(--color-primary);
}

.feature-card.feature-card-wine h3 {
  color: var(--color-white);
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.93rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.feature-card.feature-card-wine p {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Carousel --- */
.carousel-shell {
  position: relative;
  margin-bottom: 50px;
}

.carousel-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 8px 30px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 6px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 999px;
}

.carousel-wrapper::-webkit-scrollbar-track {
  background-color: rgba(92, 35, 64, 0.1);
  border-radius: 999px;
}

.carousel-card {
  min-width: 300px;
  max-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(92, 35, 64, 0.08);
  transition: transform 0.4s ease;
}

.carousel-card:hover {
  transform: translateY(-8px);
}

.carousel-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.carousel-card-content {
  padding: 18px 20px;
}

.carousel-card-content h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.carousel-card-content p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* --- Buffet Mini Cards --- */
.buffet-mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.mini-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(92, 35, 64, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
}

.mini-card > i {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.mini-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.mini-card p {
  color: var(--color-text-light);
  font-size: 0.88rem;
  margin: 0;
}

/* --- SEO Microblock --- */
.seo-microblock {
  background: linear-gradient(135deg, rgba(92, 35, 64, 0.05), rgba(201, 168, 76, 0.06));
  border-left: 4px solid var(--color-accent);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.seo-microblock strong {
  color: var(--color-primary);
}

/* --- Split Section --- */
.split-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh;
}

.split-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 500px;
}

.split-content {
  flex: 1;
  min-width: 300px;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Parallax Section --- */
.parallax-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('prato-vegano-gourmet.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-section.parallax-compact {
  min-height: 280px;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(46, 21, 32, 0.62), rgba(46, 21, 32, 0.75));
}

.parallax-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
  color: var(--color-white);
  padding: 40px 20px;
}

.parallax-content h2,
.parallax-content p {
  color: var(--color-white);
}

.parallax-content p {
  opacity: 0.9;
  font-size: 1.02rem;
}

.parallax-badges {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.parallax-badge {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
}

/* --- Section Spacer --- */
.section-spacer {
  height: 60px;
}

/* --- Chá Split Section --- */
.cha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cha-video-wrap {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 9 / 14;
  max-height: 560px;
}

.cha-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cha-text {
  padding: 10px 0;
}

.cha-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cha-text p {
  color: var(--color-text-light);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* --- Video Section --- */
.video-section {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-section video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(46, 21, 32, 0.55), rgba(46, 21, 32, 0.68));
  z-index: -1;
}

.video-content {
  max-width: 750px;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.video-content h2,
.video-content p {
  color: var(--color-white);
}

.video-content p {
  opacity: 0.9;
}

/* --- Highlight Box --- */
.highlight-box {
  background: rgba(139, 58, 98, 0.08);
  border: 1px solid rgba(139, 58, 98, 0.18);
  padding: 20px 24px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 20px 0;
}

.highlight-box i {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.highlight-box p {
  margin: 0;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.highlight-box ul li {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  padding: 3px 0;
}

/* --- Two Col Grid --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  min-height: 480px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.text-card {
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(92, 35, 64, 0.10);
  border-radius: var(--border-radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.text-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 10% 20%, rgba(139, 58, 98, 0.12), transparent 35%),
              radial-gradient(circle at 90% 90%, rgba(201, 168, 76, 0.10), transparent 38%);
  pointer-events: none;
}

.text-card > * {
  position: relative;
  z-index: 1;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, rgba(92, 35, 64, 0.06), rgba(245, 238, 240, 0.85) 38%, #ffffff 100%);
}

.cta-box {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 60px 50px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(92, 35, 64, 0.12);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Footer cluster inside CTA */
.footer-cluster {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(92, 35, 64, 0.1);
}

.footer-cluster p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cluster-links a {
  font-size: 0.82rem;
  color: var(--color-primary);
  padding: 5px 12px;
  border: 1px solid rgba(92, 35, 64, 0.2);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.cluster-links a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* --- Testimonials --- */
.testimonials {
  background: linear-gradient(135deg, var(--color-bg-cream) 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.blob-t1, .blob-t2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.5;
}

.blob-t1 {
  width: 300px; height: 300px;
  background: rgba(92, 35, 64, 0.12);
  top: -50px; left: -100px;
}

.blob-t2 {
  width: 250px; height: 250px;
  background: rgba(201, 168, 76, 0.12);
  bottom: -50px; right: -50px;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.slider {
  margin: auto;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.slide-track {
  display: flex;
  width: calc(380px * 10);
  animation: scroll 50s linear infinite;
}

.slide {
  width: 380px;
  padding: 15px;
  flex-shrink: 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 15px 35px rgba(92, 35, 64, 0.08);
  border-radius: var(--border-radius-card);
  padding: 32px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 45px rgba(92, 35, 64, 0.13);
}

.quote-icon {
  font-size: 2rem;
  color: rgba(92, 35, 64, 0.18);
  margin-bottom: 12px;
}

.testimonial-stars {
  color: var(--color-accent);
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-text-dark);
  font-size: 0.93rem;
  flex-grow: 1;
  margin-bottom: 18px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-380px * 5)); }
}

/* --- Locations Section --- */
.locations-section {
  background: var(--color-footer-bg);
  color: var(--color-white);
}

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

.locations-section .section-header h2::after {
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.locations-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--border-radius-card);
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.location-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.location-card h2 {
  color: var(--color-white);
  margin-bottom: 10px;
}

.location-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.location-info {
  margin-bottom: 20px;
}

.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
}

.location-info i {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.map-wrapper {
  width: 100%;
  height: 240px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  margin-top: 20px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(110%);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(92, 35, 64, 0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(92, 35, 64, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-secondary);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  color: var(--color-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--color-text-light);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.align-center { align-items: center; }

/* --- Footer Premium --- */
footer {
  background: linear-gradient(175deg, #4A1A33 0%, #3A1428 20%, #2E1520 55%, #1A0D14 100%);
  color: #f0f0f0;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.5;
}

.footer-blob-decoration {
  position: absolute;
  top: -100px; left: -50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, rgba(92, 35, 64, 0.04) 60%, transparent 100%);
  filter: blur(50px);
  pointer-events: none;
}

footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 18px;
  display: block;
}

.footer-col p {
  color: #f0f0f0;
  opacity: 0.9;
}

.footer-col h4 {
  color: var(--color-accent);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  position: relative;
  display: inline-block;
  color: rgba(240, 240, 240, 0.85);
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-size: 0.9rem;
}

.footer-col ul:not(.footer-contact-info) li a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-col ul:not(.footer-contact-info) li a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transition: width 0.35s ease;
}

.footer-col ul:not(.footer-contact-info) li a:hover::after {
  width: 100%;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-info i {
  color: var(--color-accent);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.footer-contact-info a {
  color: rgba(240, 240, 240, 0.85);
  font-size: 0.9rem;
}

.footer-contact-info a:hover {
  color: var(--color-accent);
}

.footer-contact-info span {
  color: rgba(240, 240, 240, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: grid;
  place-items: center;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-unit-address {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-unit-address:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-unit-address h5 {
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-unit-address p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.75;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.83rem;
  opacity: 0.75;
}

.footer-bottom a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* --- WhatsApp FAB --- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  z-index: 99998;
  transition: all 0.35s ease;
  animation: fabPulse 2.5s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  animation: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.fab-tooltip {
  position: absolute;
  right: 72px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(51, 51, 51, 0.92);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55); }
}

/* --- Reveal Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* --- Background Wine --- */
.bg-wine {
  background-color: var(--color-primary);
}

.text-white {
  color: var(--color-white);
}

/* --- Card Icon (Unit Pages) --- */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(92, 35, 64, 0.10);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* --- Dark Quote Section --- */
.dark-quote-section {
  background: linear-gradient(135deg, #3A1428, #2E1520 60%, #1A0D14);
  color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dark-quote-section .glow-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg-cream);
  z-index: 1;
}

.timeline-item.left::before {
  right: -7px;
}

.timeline-item.right::before {
  left: -7px;
}

.timeline-content {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(92, 35, 64, 0.08);
}

.timeline-content h3 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--color-text-light);
  font-size: 0.93rem;
  margin: 0;
}

/* --- Contact Form Wrapper --- */
.contact-form-wrapper {
  background: var(--color-white);
  border: 1px solid rgba(92, 35, 64, 0.08);
  border-radius: var(--border-radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .feature-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-text-col {
    padding: 20px 0;
  }
}

@media (max-width: 968px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: rgba(46, 21, 32, 0.98);
    flex-direction: column;
    padding: 20px;
    text-align: center;
    gap: 12px;
  }
  .nav-menu.active { display: flex; }
  .mobile-btn { display: block; }
  
  /* Mobile dropdown tweaks */
  .nav-dropdown-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 0;
  }
  .nav-dropdown-content {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 5px 0;
  }
  .nav-dropdown-content a {
    padding: 8px 20px;
    font-size: 0.82rem;
    opacity: 0.85;
  }

  /* Hero grid stacks on tablet */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-video-section {
    padding: 110px 0 60px;
  }
  .hero-video-wrap {
    aspect-ratio: 16 / 9;
    max-height: 350px;
    transform: rotate(0deg);
  }
  .hero-video-wrap:hover {
    transform: scale(1.02);
  }
  .hero-blob {
    top: 10px;
    right: -10px;
    transform: rotate(2deg);
  }
  .hero-text-col {
    padding: 10px 0;
    text-align: center;
  }
  .hero-chips-dark {
    justify-content: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-text-col h1 { font-size: 2.1rem; }

  .cha-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cha-video-wrap {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .two-col, .locations-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-section { flex-direction: column; }
  .split-image img { min-height: 350px; }
  .split-content { padding: 50px 30px; }

  .buffet-mini-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; }
  .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }
  .timeline-item.left::before, .timeline-item.right::before { left: 13px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid-6 { grid-template-columns: 1fr; }
  .carousel-card { max-width: 85vw; min-width: 85vw; }
  .slide { width: 300px; }
  .slide-track { width: calc(300px * 10); }
  @keyframes scroll { 100% { transform: translateX(calc(-300px * 5)); } }

  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .hero-text-col h1 { font-size: 1.85rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas .btn { width: auto; }
  .location-ctas .btn { padding: 10px 18px; font-size: 0.8rem; }
}

@media (max-width: 640px) {
  .section-padding { padding: 60px 0; }
  .text-card, .cta-box, .location-card { padding: 28px 20px; }
  .split-content { padding: 40px 20px; }
  .hero-chips { justify-content: center; }
  .cluster-links { flex-direction: column; align-items: center; }
  .section-spacer { height: 30px; }
}

@media print {
  body::after, .scroll-progress-bar, .whatsapp-fab, .footer-blob-decoration { display: none !important; }
}
/* --- Language Selector --- */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.lang-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lang-link:hover, .lang-link.active {
  opacity: 1;
  border-color: var(--color-accent);
}
@media (max-width: 992px) {
  .lang-selector {
    margin-left: auto;
    margin-right: 15px;
  }
}
