@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --vd-color-bg: #F7F5F2;
  --vd-color-bg-alt: #EEE9E3;
  --vd-color-bg-dark: #1C1A17;
  --vd-color-bg-card: #FDFCFA;
  --vd-color-primary: #2A5C45;
  --vd-color-primary-light: #3A7A5D;
  --vd-color-primary-pale: #E8F2ED;
  --vd-color-accent: #C8956C;
  --vd-color-accent-light: #E8B896;
  --vd-color-text: #1C1A17;
  --vd-color-text-muted: #6B6560;
  --vd-color-text-light: #9A948E;
  --vd-color-border: #DDD8D2;
  --vd-color-border-light: #EDE9E4;
  --vd-color-nav: #1C1A17;
  --vd-color-white: #FDFCFA;

  --vd-font-heading: 'General Sans', 'Inter', sans-serif;
  --vd-font-body: 'Inter', sans-serif;

  --vd-space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --vd-space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --vd-space-md: clamp(1rem, 2vw, 1.5rem);
  --vd-space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --vd-space-xl: clamp(2.5rem, 5vw, 4rem);
  --vd-space-2xl: clamp(4rem, 8vw, 7rem);

  --vd-radius-sm: 6px;
  --vd-radius-md: 12px;
  --vd-radius-lg: 20px;
  --vd-radius-xl: 32px;
  --vd-radius-full: 9999px;

  --vd-shadow-sm: 0 1px 3px rgba(28,26,23,0.06), 0 1px 2px rgba(28,26,23,0.04);
  --vd-shadow-md: 0 4px 12px rgba(28,26,23,0.08), 0 2px 4px rgba(28,26,23,0.05);
  --vd-shadow-lg: 0 8px 24px rgba(28,26,23,0.10), 0 4px 8px rgba(28,26,23,0.06);
  --vd-shadow-xl: 0 16px 48px rgba(28,26,23,0.12), 0 8px 16px rgba(28,26,23,0.07);

  --vd-transition-fast: 150ms ease;
  --vd-transition-base: 250ms ease;
  --vd-transition-slow: 400ms ease;

  --vd-container-max: 1200px;
  --vd-container-narrow: 760px;
}

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

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

body {
  font-family: var(--vd-font-body);
  background-color: var(--vd-color-bg);
  color: var(--vd-color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--vd-transition-base); }

ul { list-style: none; }

address { font-style: normal; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vd-font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--vd-color-text);
}

.vd-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vd-color-accent);
  margin-bottom: var(--vd-space-sm);
}

.vd-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--vd-space-md);
  color: var(--vd-color-text);
}

.vd-section-desc {
  font-size: 1.05rem;
  color: var(--vd-color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.vd-body-text {
  font-size: 1rem;
  color: var(--vd-color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--vd-space-md);
}

/* ============================================
   LAYOUT
   ============================================ */
.vd-container {
  width: 100%;
  max-width: var(--vd-container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.vd-container--narrow {
  max-width: var(--vd-container-narrow);
}

.vd-section-header {
  text-align: center;
  margin-bottom: var(--vd-space-xl);
}

/* ============================================
   NAVIGATION
   ============================================ */
.vd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--vd-color-nav);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.vd-nav.vd-nav--visible {
  transform: translateY(0);
}

.vd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 68px;
  max-width: var(--vd-container-max);
  margin: 0 auto;
}

.vd-nav-logo { display: flex; align-items: center; }
.vd-logo-img { height: 36px; width: auto; }

.vd-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.vd-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(253,252,250,0.75);
  transition: color var(--vd-transition-base);
  position: relative;
  padding: 0.25rem 0;
}

.vd-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--vd-color-accent);
  transition: width var(--vd-transition-base);
}

.vd-nav-link:hover { color: var(--vd-color-white); }
.vd-nav-link:hover::after { width: 100%; }
.vd-nav-link--active { color: var(--vd-color-white); }
.vd-nav-link--active::after { width: 100%; }

.vd-nav-link--cta {
  background: var(--vd-color-primary);
  color: var(--vd-color-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--vd-radius-full);
  font-weight: 600;
  transition: background var(--vd-transition-base), transform var(--vd-transition-fast);
}

.vd-nav-link--cta::after { display: none; }
.vd-nav-link--cta:hover { background: var(--vd-color-primary-light); transform: translateY(-1px); }

.vd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--vd-radius-sm);
  transition: background var(--vd-transition-fast);
}

.vd-hamburger:hover { background: rgba(255,255,255,0.08); }

.vd-hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vd-color-white);
  border-radius: 2px;
  transition: transform var(--vd-transition-base), opacity var(--vd-transition-base);
}

/* ============================================
   MOBILE MENU - DIAGONAL CLIP-PATH WIPE
   ============================================ */
.vd-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--vd-color-nav);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.vd-mobile-menu.vd-mobile-menu--open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}

.vd-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: clamp(2rem, 8vw, 4rem);
}

.vd-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--vd-color-white);
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: var(--vd-radius-sm);
  transition: background var(--vd-transition-fast), transform var(--vd-transition-fast);
}

.vd-mobile-close:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }

.vd-mobile-links { width: 100%; }

.vd-mobile-link {
  display: block;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 600;
  color: rgba(253,252,250,0.6);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--vd-transition-base), padding-left var(--vd-transition-base);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease, padding-left 0.2s ease;
}

.vd-mobile-menu--open .vd-mobile-link {
  opacity: 1;
  transform: translateX(0);
}

.vd-mobile-menu--open .vd-mobile-links li:nth-child(1) .vd-mobile-link { transition-delay: 0.25s; }
.vd-mobile-menu--open .vd-mobile-links li:nth-child(2) .vd-mobile-link { transition-delay: 0.32s; }
.vd-mobile-menu--open .vd-mobile-links li:nth-child(3) .vd-mobile-link { transition-delay: 0.39s; }
.vd-mobile-menu--open .vd-mobile-links li:nth-child(4) .vd-mobile-link { transition-delay: 0.46s; }
.vd-mobile-menu--open .vd-mobile-links li:nth-child(5) .vd-mobile-link { transition-delay: 0.53s; }

.vd-mobile-link:hover { color: var(--vd-color-white); padding-left: 0.5rem; }

.vd-mobile-link--cta {
  color: var(--vd-color-accent) !important;
  border-bottom: none;
  margin-top: var(--vd-space-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.vd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--vd-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--vd-font-body);
  cursor: pointer;
  transition: all var(--vd-transition-base);
  white-space: nowrap;
  border: 2px solid transparent;
}

.vd-btn--primary {
  background: var(--vd-color-primary);
  color: var(--vd-color-white);
  box-shadow: 0 4px 14px rgba(42,92,69,0.25);
}

.vd-btn--primary:hover {
  background: var(--vd-color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42,92,69,0.3);
}

.vd-btn--ghost {
  background: transparent;
  color: var(--vd-color-text);
  border-color: var(--vd-color-border);
}

.vd-btn--ghost:hover {
  border-color: var(--vd-color-primary);
  color: var(--vd-color-primary);
  transform: translateY(-2px);
}

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

.vd-btn--outline:hover {
  background: var(--vd-color-primary);
  color: var(--vd-color-white);
  transform: translateY(-2px);
}

.vd-btn--light {
  background: var(--vd-color-white);
  color: var(--vd-color-primary);
  box-shadow: var(--vd-shadow-md);
}

.vd-btn--light:hover {
  background: var(--vd-color-bg);
  transform: translateY(-2px);
  box-shadow: var(--vd-shadow-lg);
}

.vd-btn--ghost-light {
  background: transparent;
  color: var(--vd-color-white);
  border-color: rgba(255,255,255,0.4);
}

.vd-btn--ghost-light:hover {
  border-color: var(--vd-color-white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.vd-btn--full { width: 100%; justify-content: center; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.vd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.vd-reveal--delay-1 { transition-delay: 0.12s; }
.vd-reveal--delay-2 { transition-delay: 0.24s; }
.vd-reveal--delay-3 { transition-delay: 0.36s; }

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

/* ============================================
   HERO SECTION
   ============================================ */
.vd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vd-color-bg);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}

.vd-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(42,92,69,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(200,149,108,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.vd-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.vd-hero-shape--1 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(42,92,69,0.06) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.vd-hero-shape--2 {
  width: clamp(200px, 25vw, 400px);
  height: clamp(200px, 25vw, 400px);
  background: radial-gradient(circle, rgba(200,149,108,0.08) 0%, transparent 70%);
  bottom: 5%;
  left: 5%;
}

.vd-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
  max-width: var(--vd-container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.vd-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vd-color-accent);
  background: var(--vd-color-primary-pale);
  padding: 0.35rem 0.9rem;
  border-radius: var(--vd-radius-full);
  margin-bottom: var(--vd-space-md);
}

.vd-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--vd-color-text);
  margin-bottom: var(--vd-space-md);
}

.vd-hero-title em {
  font-style: normal;
  color: var(--vd-color-primary);
  position: relative;
}

.vd-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--vd-color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--vd-space-lg);
  max-width: 480px;
}

.vd-hero-actions {
  display: flex;
  gap: var(--vd-space-sm);
  flex-wrap: wrap;
}

.vd-hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vd-hero-circle {
  width: clamp(280px, 40vw, 500px);
  height: clamp(280px, 40vw, 500px);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--vd-color-border-light);
  box-shadow: var(--vd-shadow-xl), 0 0 0 12px rgba(42,92,69,0.06);
  position: relative;
  z-index: 2;
}

.vd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.vd-hero-circle:hover .vd-hero-img { transform: scale(1.04); }

.vd-hero-badge {
  position: absolute;
  bottom: 10%;
  left: -5%;
  background: var(--vd-color-white);
  border: 1px solid var(--vd-color-border);
  border-radius: var(--vd-radius-lg);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--vd-shadow-lg);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vd-color-text-muted);
  z-index: 3;
  white-space: nowrap;
}

.vd-hero-badge i { color: var(--vd-color-accent); font-size: 1rem; }

.vd-hero-sentinel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

/* ============================================
   LINK ARROW
   ============================================ */
.vd-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vd-color-primary);
  transition: gap var(--vd-transition-base), color var(--vd-transition-base);
}

.vd-link-arrow:hover { gap: 0.7rem; color: var(--vd-color-primary-light); }
.vd-link-arrow i { font-size: 0.8rem; transition: transform var(--vd-transition-base); }
.vd-link-arrow:hover i { transform: translateX(3px); }

/* ============================================
   IMAGE STYLES
   ============================================ */
.vd-img-rounded {
  border-radius: var(--vd-radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--vd-shadow-lg);
  transition: transform var(--vd-transition-slow), box-shadow var(--vd-transition-slow);
}

.vd-img-rounded:hover {
  transform: translateY(-4px);
  box-shadow: var(--vd-shadow-xl);
}

/* ============================================
   INTRO SECTION
   ============================================ */
.vd-intro {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.vd-intro-image {
  position: relative;
  height: clamp(300px, 40vw, 500px);
}

.vd-intro-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--vd-color-primary-pale);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
  z-index: -1;
}

/* ============================================
   PILLARS SECTION
   ============================================ */
.vd-pillars {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg-alt);
}

.vd-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vd-space-lg);
}

.vd-pillar-card {
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border-light);
  border-radius: var(--vd-radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform var(--vd-transition-base), box-shadow var(--vd-transition-base), border-color var(--vd-transition-base);
  position: relative;
  overflow: hidden;
}

.vd-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vd-color-primary), var(--vd-color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--vd-transition-slow);
}

.vd-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vd-shadow-xl);
  border-color: transparent;
}

.vd-pillar-card:hover::before { transform: scaleX(1); }

.vd-pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--vd-color-primary-pale);
  border-radius: var(--vd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vd-space-md);
  transition: background var(--vd-transition-base);
}

.vd-pillar-card:hover .vd-pillar-icon { background: var(--vd-color-primary); }

.vd-pillar-icon i {
  font-size: 1.25rem;
  color: var(--vd-color-primary);
  transition: color var(--vd-transition-base);
}

.vd-pillar-card:hover .vd-pillar-icon i { color: var(--vd-color-white); }

.vd-pillar-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.vd-pillar-text {
  font-size: 0.9rem;
  color: var(--vd-color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--vd-space-md);
}

.vd-pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-color-primary);
  transition: gap var(--vd-transition-base);
}

.vd-pillar-link:hover { gap: 0.6rem; }
.vd-pillar-link i { font-size: 0.75rem; }

/* ============================================
   PULL QUOTE
   ============================================ */
.vd-quote-section,
.vd-pull-quote-section {
  padding: var(--vd-space-xl) 0;
  background: var(--vd-color-bg);
}

.vd-pull-quote {
  background: var(--vd-color-primary);
  border-radius: var(--vd-radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.vd-pull-quote::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.vd-pull-quote-mark {
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.8;
  color: rgba(255,255,255,0.15);
  font-family: Georgia, serif;
  margin-bottom: var(--vd-space-sm);
  display: block;
}

.vd-pull-quote-text {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--vd-color-white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: var(--vd-space-md);
  position: relative;
  z-index: 1;
}

.vd-pull-quote-source {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(253,252,250,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.vd-how {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg-alt);
}

.vd-how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vd-space-lg);
  margin-top: var(--vd-space-xl);
}

.vd-how-step {
  display: flex;
  gap: var(--vd-space-md);
  align-items: flex-start;
  background: var(--vd-color-bg-card);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: var(--vd-radius-lg);
  border: 1px solid var(--vd-color-border-light);
  transition: transform var(--vd-transition-base), box-shadow var(--vd-transition-base);
}

.vd-how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--vd-shadow-lg);
}

.vd-how-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vd-color-border);
  line-height: 1;
  flex-shrink: 0;
  font-family: var(--vd-font-heading);
  transition: color var(--vd-transition-base);
}

.vd-how-step:hover .vd-how-number { color: var(--vd-color-primary); }

.vd-how-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.vd-how-content p {
  font-size: 0.9rem;
  color: var(--vd-color-text-muted);
  line-height: 1.7;
}

/* ============================================
   FOR WHOM SECTION
   ============================================ */
.vd-for-whom {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.vd-for-whom-image {
  height: clamp(300px, 40vw, 480px);
}

.vd-for-whom-list {
  margin: var(--vd-space-md) 0 var(--vd-space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vd-for-whom-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--vd-color-text-muted);
}

.vd-for-whom-list li i {
  color: var(--vd-color-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--vd-color-primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   GALLERY
   ============================================ */
.vd-gallery {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg-alt);
}

.vd-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--vd-space-md);
  height: clamp(260px, 35vw, 440px);
}

.vd-gallery-item { overflow: hidden; border-radius: var(--vd-radius-lg); }

.vd-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.vd-faq {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vd-faq-item {
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border-light);
  border-radius: var(--vd-radius-md);
  overflow: hidden;
  transition: box-shadow var(--vd-transition-base);
}

.vd-faq-item:hover { box-shadow: var(--vd-shadow-md); }

.vd-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vd-color-text);
  background: transparent;
  transition: color var(--vd-transition-base);
  cursor: pointer;
}

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

.vd-faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--vd-color-text-light);
  transition: transform var(--vd-transition-base), color var(--vd-transition-base);
}

.vd-faq-item.vd-faq-item--open .vd-faq-icon {
  transform: rotate(45deg);
  color: var(--vd-color-primary);
}

.vd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--vd-transition-base);
  padding: 0 1.5rem;
}

.vd-faq-item.vd-faq-item--open .vd-faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.vd-faq-answer p {
  font-size: 0.9rem;
  color: var(--vd-color-text-muted);
  line-height: 1.75;
}

/* ============================================
   CTA BANNER
   ============================================ */
.vd-cta-banner {
  position: relative;
  padding: var(--vd-space-2xl) 0;
  overflow: hidden;
}

.vd-cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C3A2B 0%, #2A5C45 50%, #1E4433 100%);
  z-index: 0;
}

.vd-cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,149,108,0.15) 0%, transparent 60%);
}

.vd-cta-banner .vd-container { position: relative; z-index: 1; }

.vd-cta-banner-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.vd-cta-banner-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--vd-color-white);
  margin-bottom: var(--vd-space-sm);
}

.vd-cta-banner-text {
  font-size: 1rem;
  color: rgba(253,252,250,0.75);
  margin-bottom: var(--vd-space-lg);
  line-height: 1.7;
}

.vd-cta-banner-actions {
  display: flex;
  gap: var(--vd-space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.vd-page-hero {
  position: relative;
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--vd-color-bg);
}

.vd-page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(42,92,69,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.vd-page-hero-content { position: relative; z-index: 1; }

.vd-page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--vd-space-sm);
}

.vd-page-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--vd-color-text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.vd-about-story {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.vd-about-image { height: clamp(320px, 40vw, 520px); }

.vd-values {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg-alt);
}

.vd-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vd-space-lg);
}

.vd-value-card {
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border-light);
  border-radius: var(--vd-radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform var(--vd-transition-base), box-shadow var(--vd-transition-base);
}

.vd-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vd-shadow-lg);
}

.vd-value-icon {
  width: 48px;
  height: 48px;
  background: var(--vd-color-primary-pale);
  border-radius: var(--vd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vd-space-md);
}

.vd-value-icon i { font-size: 1.2rem; color: var(--vd-color-primary); }

.vd-value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.vd-value-card p { font-size: 0.9rem; color: var(--vd-color-text-muted); line-height: 1.7; }

.vd-team {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vd-space-lg);
}

.vd-team-card {
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border-light);
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  transition: transform var(--vd-transition-base), box-shadow var(--vd-transition-base);
}

.vd-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vd-shadow-lg);
}

.vd-team-img-wrap {
  height: 260px;
  overflow: hidden;
}

.vd-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.vd-team-card:hover .vd-team-img { transform: scale(1.04); }

.vd-team-info { padding: 1.5rem; }

.vd-team-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; }
.vd-team-role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--vd-color-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.vd-team-bio { font-size: 0.88rem; color: var(--vd-color-text-muted); line-height: 1.65; }

.vd-approach {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg-alt);
}

.vd-approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.vd-approach-image { height: clamp(300px, 38vw, 460px); }

/* ============================================
   PARTICULARES PAGE
   ============================================ */
.vd-particulares-intro {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-particulares-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.vd-particulares-image { height: clamp(300px, 38vw, 460px); }

.vd-process {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg-alt);
}

.vd-process-timeline {
  position: relative;
  max-width: 760px;
  margin: var(--vd-space-xl) auto 0;
}

.vd-process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--vd-color-primary), transparent);
}

.vd-process-step {
  display: flex;
  gap: var(--vd-space-md);
  align-items: flex-start;
  padding-bottom: var(--vd-space-lg);
  padding-left: 0;
  position: relative;
}

.vd-process-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vd-color-primary);
  border: 3px solid var(--vd-color-bg-alt);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(42,92,69,0.15);
  transition: transform var(--vd-transition-base);
}

.vd-process-step:hover .vd-process-dot { transform: scale(1.15); }

.vd-process-content { padding-top: 0.5rem; }

.vd-process-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vd-color-accent);
  margin-bottom: 0.35rem;
}

.vd-process-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.vd-process-content p { font-size: 0.9rem; color: var(--vd-color-text-muted); line-height: 1.7; }

.vd-formats {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vd-space-lg);
}

.vd-format-card {
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border-light);
  border-radius: var(--vd-radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform var(--vd-transition-base), box-shadow var(--vd-transition-base);
}

.vd-format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vd-shadow-lg);
}

.vd-format-icon {
  width: 52px;
  height: 52px;
  background: var(--vd-color-primary-pale);
  border-radius: var(--vd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vd-space-md);
}

.vd-format-icon i { font-size: 1.25rem; color: var(--vd-color-primary); }

.vd-format-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; }
.vd-format-card > p { font-size: 0.9rem; color: var(--vd-color-text-muted); line-height: 1.7; margin-bottom: var(--vd-space-md); }

.vd-format-list { display: flex; flex-direction: column; gap: 0.5rem; }

.vd-format-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--vd-color-text-muted);
}

.vd-format-list li i { color: var(--vd-color-primary); font-size: 0.8rem; width: 16px; }

.vd-what-included {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg-alt);
}

.vd-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vd-space-lg);
}

.vd-included-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border-light);
  border-radius: var(--vd-radius-lg);
  transition: transform var(--vd-transition-base), box-shadow var(--vd-transition-base);
}

.vd-included-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--vd-shadow-md);
}

.vd-included-item i { font-size: 1.4rem; color: var(--vd-color-primary); }
.vd-included-item h4 { font-size: 0.95rem; font-weight: 600; }
.vd-included-item p { font-size: 0.88rem; color: var(--vd-color-text-muted); line-height: 1.65; }

/* ============================================
   TALLERES PAGE
   ============================================ */
.vd-taller-detail {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-taller-detail--alt { background: var(--vd-color-bg-alt); }

.vd-taller-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.vd-taller-grid--reverse { direction: rtl; }
.vd-taller-grid--reverse > * { direction: ltr; }

.vd-taller-image { height: clamp(300px, 38vw, 480px); }

.vd-taller-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vd-color-accent);
  background: rgba(200,149,108,0.12);
  padding: 0.3rem 0.8rem;
  border-radius: var(--vd-radius-full);
  margin-bottom: var(--vd-space-sm);
}

.vd-taller-topics {
  background: var(--vd-color-bg-alt);
  border-radius: var(--vd-radius-md);
  padding: 1.25rem 1.5rem;
  margin: var(--vd-space-md) 0;
}

.vd-taller-topics h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vd-color-text-light);
  margin-bottom: 0.75rem;
}

.vd-taller-topics ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vd-taller-topics li {
  font-size: 0.88rem;
  color: var(--vd-color-text-muted);
  line-height: 1.5;
}

.vd-taller-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: var(--vd-space-md) 0;
}

.vd-taller-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--vd-color-text-muted);
  font-weight: 500;
}

.vd-taller-meta i { color: var(--vd-color-primary); font-size: 0.8rem; }

.vd-programa-completo {
  padding: var(--vd-space-2xl) 0;
  background: var(--vd-color-bg);
}

.vd-programa-inner {
  background: var(--vd-color-primary-pale);
  border: 1px solid rgba(42,92,69,0.15);
  border-radius: var(--vd-radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.vd-contact-main { min-height: 100vh; display: flex; flex-direction: column; }

.vd-contact-page { flex: 1; }

.vd-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}

.vd-contact-info-panel {
  background: var(--vd-color-bg-alt);
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: flex-start;
  border-right: 1px solid var(--vd-color-border);
}

.vd-contact-info-inner { max-width: 420px; }

.vd-contact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--vd-space-md);
}

.vd-contact-intro {
  font-size: 1rem;
  color: var(--vd-color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--vd-space-xl);
}

.vd-contact-details { display: flex; flex-direction: column; gap: var(--vd-space-md); margin-bottom: var(--vd-space-xl); }

.vd-contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vd-contact-detail-item i {
  width: 40px;
  height: 40px;
  background: var(--vd-color-primary-pale);
  border-radius: var(--vd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-color-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.vd-contact-detail-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vd-color-text-light);
  margin-bottom: 0.2rem;
}

.vd-contact-detail-item p, .vd-contact-detail-item a {
  font-size: 0.92rem;
  color: var(--vd-color-text-muted);
  line-height: 1.5;
}

.vd-contact-detail-item a:hover { color: var(--vd-color-primary); }

.vd-booking-box {
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border);
  border-radius: var(--vd-radius-lg);
  padding: 1.5rem;
}

.vd-booking-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vd-booking-title i { color: var(--vd-color-primary); }

.vd-booking-box p {
  font-size: 0.88rem;
  color: var(--vd-color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.vd-booking-box p:last-child { margin-bottom: 0; }
.vd-booking-box a { color: var(--vd-color-primary); font-weight: 500; }
.vd-booking-box a:hover { text-decoration: underline; }

.vd-contact-form-panel {
  background: var(--vd-color-bg);
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: flex-start;
}

.vd-contact-form-inner { width: 100%; max-width: 520px; }

.vd-form-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--vd-space-xl);
}

.vd-field-group {
  margin-bottom: var(--vd-space-lg);
}

.vd-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-color-text);
  margin-bottom: 0.5rem;
}

.vd-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--vd-color-border);
  border-radius: var(--vd-radius-md);
  font-size: 0.95rem;
  font-family: var(--vd-font-body);
  color: var(--vd-color-text);
  background: var(--vd-color-bg-card);
  transition: border-color var(--vd-transition-base), box-shadow var(--vd-transition-base);
  outline: none;
  -webkit-appearance: none;
}

.vd-input:focus {
  border-color: var(--vd-color-primary);
  box-shadow: 0 0 0 3px rgba(42,92,69,0.1);
}

.vd-input::placeholder { color: var(--vd-color-text-light); }

.vd-textarea { resize: vertical; min-height: 130px; }

.vd-field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--vd-color-text-light);
  margin-top: 0.4rem;
}

.vd-field-group--checkbox { display: flex; flex-direction: column; gap: 0.4rem; }

.vd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.vd-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }

.vd-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--vd-color-border);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--vd-transition-base);
  background: var(--vd-color-bg-card);
  position: relative;
}

.vd-checkbox:checked + .vd-checkbox-custom {
  background: var(--vd-color-primary);
  border-color: var(--vd-color-primary);
}

.vd-checkbox:checked + .vd-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.vd-checkbox-text {
  font-size: 0.88rem;
  color: var(--vd-color-text-muted);
  line-height: 1.5;
}

.vd-checkbox-text a { color: var(--vd-color-primary); text-decoration: underline; }

.vd-map-section { padding: var(--vd-space-xl) 0 var(--vd-space-2xl); background: var(--vd-color-bg-alt); }

.vd-map-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin-bottom: var(--vd-space-md);
}

.vd-map-wrap {
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-md);
  border: 1px solid var(--vd-color-border);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.vd-thanks-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vd-thanks-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vd-space-2xl) var(--vd-space-md);
  background: var(--vd-color-bg);
}

.vd-thanks-inner {
  text-align: center;
  max-width: 480px;
}

.vd-envelope-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--vd-space-xl);
}

.vd-envelope {
  position: relative;
  width: 100px;
  height: 70px;
}

.vd-envelope-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 65px;
  background: var(--vd-color-primary-pale);
  border: 2px solid var(--vd-color-primary);
  border-radius: 4px;
  animation: envelopeAppear 0.5s ease forwards;
}

.vd-envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 36px solid var(--vd-color-primary);
  transform-origin: top center;
  animation: flapOpen 0.6s ease 0.5s forwards;
  transform: rotateX(0deg);
}

.vd-envelope-letter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 70px;
  height: 50px;
  background: var(--vd-color-white);
  border: 1.5px solid var(--vd-color-border);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  animation: letterRise 0.6s ease 1s forwards;
  opacity: 0;
}

.vd-letter-lines span {
  display: block;
  height: 2px;
  background: var(--vd-color-border);
  border-radius: 2px;
}

@keyframes envelopeAppear {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes flapOpen {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(180deg); }
}

@keyframes letterRise {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(-30px); }
}

.vd-thanks-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: var(--vd-space-md);
  animation: fadeInUp 0.6s ease 1.5s both;
}

.vd-thanks-text {
  font-size: 1rem;
  color: var(--vd-color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--vd-space-xl);
  animation: fadeInUp 0.6s ease 1.7s both;
}

.vd-thanks-actions {
  display: flex;
  gap: var(--vd-space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 1.9s both;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.vd-legal-page {
  padding: clamp(6rem, 10vw, 8rem) 0 var(--vd-space-2xl);
  background: var(--vd-color-bg);
  min-height: 100vh;
}

.vd-legal-header {
  margin-bottom: var(--vd-space-xl);
  padding-bottom: var(--vd-space-lg);
  border-bottom: 1px solid var(--vd-color-border);
}

.vd-legal-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vd-legal-date {
  font-size: 0.85rem;
  color: var(--vd-color-text-light);
}

.vd-legal-intro {
  font-size: 0.95rem;
  color: var(--vd-color-text-muted);
  line-height: 1.75;
  margin-top: var(--vd-space-sm);
}

.vd-legal-content { display: flex; flex-direction: column; gap: var(--vd-space-xl); }

.vd-legal-qa h2, .vd-legal-section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--vd-color-text);
}

.vd-legal-qa p, .vd-legal-section p {
  font-size: 0.93rem;
  color: var(--vd-color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.vd-legal-qa ul, .vd-legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.vd-legal-qa li, .vd-legal-section li {
  font-size: 0.93rem;
  color: var(--vd-color-text-muted);
  line-height: 1.65;
}

.vd-legal-qa a, .vd-legal-section a {
  color: var(--vd-color-primary);
  text-decoration: underline;
}

.vd-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.vd-legal-table th, .vd-legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--vd-color-border-light);
}

.vd-legal-table th {
  font-weight: 600;
  color: var(--vd-color-text);
  width: 35%;
  background: var(--vd-color-bg-alt);
}

.vd-legal-table td {
  color: var(--vd-color-text-muted);
}

code {
  font-family: monospace;
  background: var(--vd-color-bg-alt);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.88em;
  color: var(--vd-color-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.vd-footer {
  background: var(--vd-color-bg-dark);
  color: rgba(253,252,250,0.65);
  padding: var(--vd-space-2xl) 0 0;
}

.vd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: var(--vd-space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vd-footer-logo { display: inline-flex; align-items: center; margin-bottom: var(--vd-space-md); }
.vd-footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1) opacity(0.85); }

.vd-footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: var(--vd-space-md);
}

.vd-footer-address p {
  font-size: 0.83rem;
  line-height: 1.65;
}

.vd-footer-address a {
  color: rgba(253,252,250,0.65);
  transition: color var(--vd-transition-base);
}

.vd-footer-address a:hover { color: var(--vd-color-white); }

.vd-footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,250,0.4);
  margin-bottom: var(--vd-space-md);
}

.vd-footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }

.vd-footer-nav a {
  font-size: 0.88rem;
  color: rgba(253,252,250,0.6);
  transition: color var(--vd-transition-base), padding-left var(--vd-transition-base);
  display: block;
}

.vd-footer-nav a:hover { color: var(--vd-color-white); padding-left: 4px; }

.vd-footer-note p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(253,252,250,0.4);
}

.vd-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--vd-space-md) 0;
  font-size: 0.8rem;
  color: rgba(253,252,250,0.35);
}

/* ============================================
   COOKIE CONSENT - MINIMALIST LINK
   ============================================ */
.vd-cookie-link {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vd-color-text-muted);
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border);
  padding: 0.45rem 0.85rem;
  border-radius: var(--vd-radius-full);
  box-shadow: var(--vd-shadow-md);
  cursor: pointer;
  transition: all var(--vd-transition-base);
  text-decoration: none;
}

.vd-cookie-link:hover {
  color: var(--vd-color-primary);
  border-color: var(--vd-color-primary);
  transform: translateY(-2px);
  box-shadow: var(--vd-shadow-lg);
}

.vd-cookie-link.vd-cookie-link--pulse {
  animation: cookiePulse 1.8s ease-in-out 3;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--vd-shadow-md); }
  50% { box-shadow: 0 0 0 4px rgba(42,92,69,0.15), var(--vd-shadow-md); }
}

.vd-cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,26,23,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vd-transition-base);
  backdrop-filter: blur(4px);
}

.vd-cookie-modal-overlay.vd-cookie-modal--open {
  opacity: 1;
  pointer-events: all;
}

.vd-cookie-modal {
  background: var(--vd-color-bg-card);
  border: 1px solid var(--vd-color-border);
  border-radius: var(--vd-radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--vd-shadow-xl);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--vd-transition-slow);
}

.vd-cookie-modal-overlay.vd-cookie-modal--open .vd-cookie-modal {
  transform: translateY(0) scale(1);
}

.vd-cookie-modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vd-cookie-modal-title i { color: var(--vd-color-accent); }

.vd-cookie-modal-desc {
  font-size: 0.88rem;
  color: var(--vd-color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--vd-space-lg);
}

.vd-cookie-categories { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: var(--vd-space-lg); }

.vd-cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--vd-color-bg-alt);
  border-radius: var(--vd-radius-md);
  border: 1px solid var(--vd-color-border-light);
}

.vd-cookie-category-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.vd-cookie-category-info p { font-size: 0.8rem; color: var(--vd-color-text-light); }

.vd-cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.vd-cookie-toggle input { opacity: 0; width: 0; height: 0; }

.vd-cookie-slider {
  position: absolute;
  inset: 0;
  background: var(--vd-color-border);
  border-radius: var(--vd-radius-full);
  cursor: pointer;
  transition: background var(--vd-transition-base);
}

.vd-cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--vd-transition-base);
  box-shadow: var(--vd-shadow-sm);
}

.vd-cookie-toggle input:checked + .vd-cookie-slider { background: var(--vd-color-primary); }
.vd-cookie-toggle input:checked + .vd-cookie-slider::before { transform: translateX(20px); }
.vd-cookie-toggle input:disabled + .vd-cookie-slider { opacity: 0.5; cursor: not-allowed; }

.vd-cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.vd-cookie-modal-actions .vd-btn { flex: 1; min-width: 120px; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .vd-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .vd-gallery-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .vd-gallery-item--large { grid-column: span 2; height: 260px; }
  .vd-gallery-item { height: 200px; }
  .vd-footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .vd-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .vd-hero-text { order: 2; }
  .vd-hero-image-wrap { order: 1; justify-content: center; }
  .vd-hero-subtitle { margin: 0 auto var(--vd-space-lg); }
  .vd-hero-actions { justify-content: center; }
  .vd-hero-circle { width: clamp(220px, 60vw, 320px); height: clamp(220px, 60vw, 320px); }
  .vd-hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }

  .vd-intro-grid,
  .vd-for-whom-grid,
  .vd-about-grid,
  .vd-approach-inner,
  .vd-particulares-grid,
  .vd-taller-grid { grid-template-columns: 1fr; }

  .vd-intro-image,
  .vd-for-whom-image,
  .vd-about-image,
  .vd-approach-image,
  .vd-particulares-image,
  .vd-taller-image { height: 280px; }

  .vd-taller-grid--reverse { direction: ltr; }

  .vd-pillars-grid { grid-template-columns: 1fr; }

  .vd-how-steps { grid-template-columns: 1fr; }

  .vd-values-grid,
  .vd-team-grid,
  .vd-formats-grid,
  .vd-included-grid { grid-template-columns: 1fr; }

  .vd-gallery-grid { grid-template-columns: 1fr; height: auto; }
  .vd-gallery-item--large { grid-column: span 1; height: 240px; }
  .vd-gallery-item { height: 200px; }

  .vd-contact-layout { grid-template-columns: 1fr; }
  .vd-contact-info-panel { border-right: none; border-bottom: 1px solid var(--vd-color-border); }

  .vd-footer-grid { grid-template-columns: 1fr; gap: var(--vd-space-lg); }
  .vd-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .vd-process-timeline::before { display: none; }
  .vd-process-step { padding-left: 0; }
}

@media (max-width: 480px) {
  .vd-hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .vd-cta-banner-actions { flex-direction: column; align-items: stretch; }
  .vd-cta-banner-actions .vd-btn { text-align: center; justify-content: center; }
  .vd-hero-actions { flex-direction: column; align-items: center; }
  .vd-taller-meta { flex-direction: column; gap: 0.5rem; }
  .vd-cookie-modal-actions { flex-direction: column; }
}