/* ==========================================================================
   EL LEGADO 0.0% — WELLNESS, BIENESTAR & LONGEVIDAD (wellness.ellegadodrinks.es)
   Zen & Vitality Organic Luxury Design System
   ========================================================================== */

:root {
  /* Wellness Palette (Sage, Olive, Warm Linen & Gold) */
  --sage-primary: #2d4f3e;
  --sage-light: #3e6d56;
  --sage-bright: #528d70;
  --sage-dark: #1c3328;
  --sage-gradient: linear-gradient(135deg, #3e6d56 0%, #2d4f3e 50%, #1c3328 100%);
  
  --gold-primary: #b89047;
  --gold-light: #d6b26d;
  --gold-bright: #ecd093;
  --gold-dark: #8c6a28;
  --gold-gradient: linear-gradient(135deg, #ecd093 0%, #b89047 50%, #8c6a28 100%);

  /* Light Theme (Organic Linen & Ivory) */
  --bg-light-body: #f7f5ee;
  --bg-light-surface: #ffffff;
  --bg-light-card: #ffffff;
  --bg-light-hover: #fcfaf5;
  --border-light: rgba(45, 79, 62, 0.18);
  --border-light-subtle: rgba(0, 0, 0, 0.06);

  /* Dark Theme (Restorative Deep Forest / Slate) */
  --bg-dark-section: #0f1712;
  --bg-dark-card: #17231c;
  --bg-dark-card-hover: #203127;
  --border-dark: rgba(255, 255, 255, 0.09);
  --border-sage-dark: rgba(82, 141, 112, 0.3);

  /* Text Top (Light context) */
  --text-dark-title: #141c17;
  --text-dark-body: #344039;
  --text-dark-muted: #64736b;

  /* Text Bottom (Dark context) */
  --text-light-title: #ffffff;
  --text-light-body: #d6e2db;
  --text-light-muted: #95a89e;

  /* Fonts & Shadows */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-light-card: 0 10px 30px rgba(30, 50, 40, 0.06);
  --shadow-light-hover: 0 18px 45px rgba(30, 50, 40, 0.12);
  --shadow-dark-card: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-sage: 0 8px 24px rgba(45, 79, 62, 0.28);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 50px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light-body);
  color: var(--text-dark-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

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

.sage-gradient-text {
  background: var(--sage-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   HEADER / NAV (ORGANIC ZEN)
   ========================================================================== */
.header-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(247, 245, 238, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.nav-brand-logo:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark-body);
  letter-spacing: 0.02em;
}

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

.nav-cta-btn {
  background: var(--sage-primary);
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sage);
  transition: all 0.25s ease;
}

.nav-cta-btn:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 79, 62, 0.4);
}

.lang-selector-group {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-dark-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: var(--text-dark-title);
}

.lang-btn.active {
  background: #ffffff;
  color: var(--sage-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   HERO SECTION (ZEN & VITALITY / BEATRIZ SENIOR & WELLNESS THEME)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 110px 48px 85px;
  background: url('assets/img/beatriz_wellness_terrace.jpg') 75% center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 245, 238, 0.97) 0%, rgba(247, 245, 238, 0.91) 45%, rgba(247, 245, 238, 0.45) 70%, rgba(247, 245, 238, 0.12) 100%),
              linear-gradient(180deg, rgba(247, 245, 238, 0.5) 0%, transparent 40%, rgba(247, 245, 238, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0;
  text-align: left;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-badge {
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-light);
  color: var(--text-dark-body);
  backdrop-filter: blur(8px);
}

.hero-badge.badge-leaf {
  background: #ffffff;
  border-color: var(--sage-primary);
  color: var(--sage-primary);
  font-weight: 700;
}

.hero-badge.badge-sage {
  background: rgba(45, 79, 62, 0.1);
  border-color: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark-title);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-dark-body);
  max-width: 640px;
  margin: 0 0 34px 0;
  line-height: 1.7;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 46px;
}

.btn-sage-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sage-primary);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sage);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-sage-primary:hover {
  background: var(--sage-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(45, 79, 62, 0.45);
  color: #fff;
}

.btn-outline-sage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-dark-title);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-outline-sage:hover {
  background: #ffffff;
  border-color: var(--sage-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.hero-key-metrics {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light-card);
  backdrop-filter: blur(12px);
  max-width: 640px;
  margin: 0;
}

.metric-item {
  text-align: left;
  flex: 1;
}

.metric-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-dark-body);
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 42px;
  background: var(--border-light);
}

/* ==========================================================================
   VALUE PILLARS (SALUD & LONGEVIDAD)
   ========================================================================== */
.value-pillars-section {
  padding: 95px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light-subtle);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-primary);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark-title);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--text-dark-body);
  line-height: 1.7;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background: var(--bg-light-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--sage-primary);
  box-shadow: var(--shadow-light-hover);
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(45, 79, 62, 0.08);
  border: 1px solid rgba(45, 79, 62, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--sage-primary);
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
  background: var(--sage-primary);
  color: #ffffff;
  border-color: var(--sage-primary);
  transform: scale(1.05);
}

.pillar-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-dark-title);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-dark-body);
  line-height: 1.7;
}

/* ==========================================================================
   COLLECTION 1: ESPUMOSOS (LIGHT THEME / SPAS & BRINDIS SALUDABLE)
   ========================================================================== */
.collection-section.light-theme {
  padding: 100px 24px;
  background: var(--bg-light-body);
  border-bottom: 1px solid var(--border-light);
}

.collection-header-side {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
}

.collection-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(45, 79, 62, 0.08);
  border: 1px solid rgba(45, 79, 62, 0.2);
  color: var(--sage-primary);
  margin-bottom: 12px;
}

.collection-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark-title);
  margin-bottom: 10px;
}

.collection-subtitle {
  font-size: 1.08rem;
  color: var(--text-dark-body);
  max-width: 680px;
  line-height: 1.65;
}

.collection-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-feature {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-dark-body);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* WINES GRID */
.wines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wine-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: var(--shadow-light-card);
}

.wine-card:hover {
  transform: translateY(-8px);
  border-color: var(--sage-primary);
  box-shadow: var(--shadow-light-hover);
}

.wine-card.featured-wine {
  border-color: var(--sage-primary);
  box-shadow: 0 14px 38px rgba(45, 79, 62, 0.15);
}

.featured-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sage-primary);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(45, 79, 62, 0.3);
}

.wine-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  background: #fcfaf6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.wine-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wine-card:hover .wine-img {
  transform: scale(1.05);
}

.wine-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--sage-primary);
  border: 1px solid rgba(45, 79, 62, 0.2);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wine-info {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wine-sku {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sage-primary);
  margin-bottom: 6px;
}

.wine-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark-title);
  margin-bottom: 8px;
  line-height: 1.3;
}

.wine-short-desc {
  font-size: 0.92rem;
  color: var(--text-dark-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.wine-pairing-box {
  background: #f7f5ee;
  border-left: 3px solid var(--sage-primary);
  padding: 12px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
  font-size: 0.86rem;
  line-height: 1.55;
  flex: 1;
}

.wine-pairing-box strong {
  display: block;
  color: var(--sage-primary);
  margin-bottom: 3px;
  font-size: 0.84rem;
}

.btn-ficha {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  background: #edf2ee;
  border: 1px solid var(--border-light);
  color: var(--sage-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-ficha:hover {
  background: var(--sage-primary);
  color: #ffffff;
}

/* ==========================================================================
   COLLECTION 2: TRANQUILOS (DARK THEME / SENIOR LIVING & LONGEVIDAD)
   ========================================================================== */
.collection-section.dark-theme {
  padding: 110px 24px;
  background: var(--bg-dark-section);
  color: var(--text-light-body);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.collection-section.dark-theme .collection-badge {
  background: rgba(82, 141, 112, 0.15);
  border-color: var(--border-sage-dark);
  color: var(--sage-bright);
}

.collection-section.dark-theme .collection-title {
  color: var(--text-light-title);
}

.collection-section.dark-theme .collection-subtitle {
  color: var(--text-light-muted);
}

.collection-section.dark-theme .chip-feature {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  color: var(--text-light-body);
  box-shadow: none;
}

.collection-section.dark-theme .wine-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark-card);
}

.collection-section.dark-theme .wine-card:hover {
  border-color: var(--sage-bright);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.collection-section.dark-theme .wine-img-container {
  background: #121c16;
}

.collection-section.dark-theme .wine-tag {
  background: rgba(15, 23, 18, 0.88);
  color: var(--sage-bright);
  border: 1px solid var(--border-sage-dark);
}

.collection-section.dark-theme .wine-sku {
  color: var(--sage-bright);
}

.collection-section.dark-theme .wine-title {
  color: var(--text-light-title);
}

.collection-section.dark-theme .wine-short-desc {
  color: var(--text-light-muted);
}

.collection-section.dark-theme .wine-pairing-box {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--sage-bright);
}

.collection-section.dark-theme .wine-pairing-box strong {
  color: var(--sage-bright);
}

.collection-section.dark-theme .btn-ficha {
  background: rgba(82, 141, 112, 0.15);
  border-color: var(--border-sage-dark);
  color: var(--sage-bright);
}

.collection-section.dark-theme .btn-ficha:hover {
  background: var(--sage-bright);
  color: #0f1712;
}

/* ==========================================================================
   PROS SECTION (DARK THEME)
   ========================================================================== */
.pros-section {
  padding: 110px 24px;
  background: #141f18;
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-light-body);
}

.pros-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.pros-section .section-kicker {
  color: var(--sage-bright);
}

.pros-heading {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light-title);
  line-height: 1.25;
  margin: 12px 0 18px;
}

.pros-lead {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.pros-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.pros-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(82, 141, 112, 0.2);
  color: var(--sage-bright);
  border: 1px solid var(--border-sage-dark);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pros-features-list strong {
  display: block;
  font-size: 1.05rem;
  color: var(--sage-bright);
  margin-bottom: 4px;
}

.pros-features-list p {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.pros-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.25s ease;
}

.btn-whatsapp-outline:hover {
  background: #25d366;
  color: #000;
  transform: translateY(-2px);
}

.sample-box-card {
  position: relative;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-sage-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark-card);
}

.sample-box-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--sage-gradient);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 10;
}

.sample-box-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.sample-card-content {
  padding: 30px;
}

.sample-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-light-title);
  margin-bottom: 10px;
}

.sample-card-content p {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sample-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--sage-bright);
}

/* ==========================================================================
   CONTACT FORM / CONVERSION SECTION (DARK THEME)
   ========================================================================== */
.contact-section {
  padding: 110px 24px;
  background: var(--bg-dark-section);
}

.contact-box {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-sage-dark);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-dark-card);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-section .section-kicker {
  color: var(--sage-bright);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-light-title);
  margin: 10px 0 14px;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light-title);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(15, 23, 18, 0.9);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-bright);
  box-shadow: 0 0 0 3px rgba(82, 141, 112, 0.25);
}

.form-group select option {
  background: #141f18;
  color: #fff;
}

.form-sample-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(82, 141, 112, 0.12);
  border: 1px solid var(--border-sage-dark);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.86rem;
  color: var(--text-light-body);
  line-height: 1.55;
}

.info-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.form-submit-container {
  margin-top: 10px;
}

.btn-submit-lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--sage-gradient);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 17px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(45, 79, 62, 0.35);
  transition: all 0.3s ease;
}

.btn-submit-lead:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(45, 79, 62, 0.5);
}

.form-feedback-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
}

.form-feedback-box.success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid #25d366;
  color: #25d366;
}

.form-feedback-box.error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
  color: #ff7685;
}

/* ==========================================================================
   FOOTER (DARK THEME)
   ========================================================================== */
.site-footer {
  background: #090e0b;
  border-top: 1px solid var(--border-dark);
  padding: 70px 24px 30px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage-bright);
  margin-bottom: 10px;
}

.footer-lead {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  max-width: 380px;
}

.footer-links-column h4,
.footer-contact-column h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-column a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.footer-links-column a:hover {
  color: var(--sage-bright);
}

.footer-contact-column p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-column a {
  color: var(--sage-bright);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.wa-icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* ==========================================================================
   MODAL FICHA DE CATA (PROPORCIONES PERFECTAS 724/1024)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(520px, 90vw);
  max-height: 90vh;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  color: #111111;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  transform: scale(1.1);
  background: #f4f4f4;
  color: #000000;
}

.modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  background: #ffffff;
}

.modal-ficha-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(520px, 88vw);
  max-height: 86vh;
  aspect-ratio: 724 / 1024;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 12px;
  }
  .modal-card {
    max-width: 92vw;
    max-height: 88vh;
  }
  .modal-close-btn {
    top: -12px;
    right: -8px;
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
  .modal-ficha-image {
    max-width: 90vw;
    max-height: 82vh;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & PHONES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .pillars-grid,
  .wines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pros-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-section {
    padding: 100px 20px 60px;
    background-position: 80% center;
  }

  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-key-metrics {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  
  .metric-divider {
    width: 60px;
    height: 1px;
  }
  
  .pillars-grid,
  .wines-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-box {
    padding: 36px 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
