/* ===================================================
   VINCENZO AIELLO — Italian Design System
   Verde · Bianco · Rosso
   =================================================== */

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

/* ─── Italian Flag Palette ─── */
:root {
  /* Core Italian colours */
  --verde:         #009246;
  --verde-dark:    #006F34;
  --verde-deeper:  #00572A;
  --verde-light:   #E6F5EE;
  --verde-mid:     #C8E8D6;
  --rosso:         #CE2B37;
  --rosso-dark:    #A5202A;
  --rosso-light:   #FDEDEF;
  --bianco:        #FFFFFF;

  /* Surfaces */
  --bg:            #F7FAF8;
  --surface:       #FFFFFF;
  --surface-2:     #F1F6F3;
  --surface-3:     #E6EFE9;

  /* Text */
  --text:          #111C17;
  --text-muted:    #5A6B62;
  --text-dim:      #9AB0A3;

  /* UI */
  --border:        #D8E8DF;
  --border-dark:   #B5CEBC;
  --shadow-sm:     0 1px 4px rgba(0,100,50,0.07);
  --shadow-md:     0 4px 20px rgba(0,100,50,0.1);
  --shadow-lg:     0 12px 40px rgba(0,100,50,0.14);
  --radius:        12px;
  --radius-lg:     20px;
  --ease:          cubic-bezier(0.4,0,0.2,1);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Outfit', sans-serif;
}

/* ─── Italian tricolore accent stripe ─── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde) 33.33%, var(--bianco) 33.33%, var(--bianco) 66.66%, var(--rosso) 66.66%);
  z-index: 9999;
  pointer-events: none;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Override old template */
#wrapper { overflow: visible !important; height: auto !important; }
.content-page { margin-top: 0 !important; padding: 0 !important; overflow: visible !important; min-height: unset !important; }
.footer { display: none !important; }
#topnav, #topnav2 { display: none !important; }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.01em; color: var(--text); line-height: 1.05; }
p { line-height: 1.75; color: var(--text-muted); font-size: 0.95rem; }
a { text-decoration: none; transition: color 0.2s var(--ease); }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }


/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.va-nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: var(--verde);
  box-shadow: 0 2px 20px rgba(0,100,50,0.25);
  transition: background 0.3s var(--ease), box-shadow 0.3s;
}

.va-nav--transparent {
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}

.va-nav--transparent.va-nav--scrolled,
.va-nav--solid {
  background: var(--verde);
  box-shadow: 0 2px 20px rgba(0,100,50,0.25);
}

/* Brand */
.va-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.va-nav__logo { height: 42px; width: auto; filter: brightness(0) invert(1); }
.va-nav__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}

/* Desktop links */
.va-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
.va-nav__menu li a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.va-nav__menu li a:hover { color: #fff; background: rgba(255,255,255,0.15); }
.va-nav__menu li a.va-nav__instagram { font-family: 'Agbalumo', cursive; }

/* CTA */
.va-nav__cta {
  background: var(--rosso) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 12px rgba(206,43,55,0.35) !important;
}
.va-nav__cta:hover {
  background: var(--rosso-dark) !important;
  color: #fff !important;
}

/* Dropdown */
.va-nav__dropdown { position: relative; }
.va-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 160px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  box-shadow: var(--shadow-lg);
}
.va-nav__dropdown:hover .va-nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.va-nav__dropdown-menu a {
  display: block !important;
  padding: 0.75rem 1.25rem !important;
  color: var(--text) !important;
  background: transparent !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
  font-size: 0.875rem;
  font-weight: 500;
}
.va-nav__dropdown-menu a:last-child { border-bottom: none !important; }
.va-nav__dropdown-menu a:hover { color: var(--verde) !important; background: var(--verde-light) !important; }

/* Hamburger */
.va-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: none;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  z-index: 2;
  transition: background 0.2s;
}
.va-burger:hover { background: rgba(255,255,255,0.25); }
.va-burger span {
  display: block;
  height: 2px; width: 100%;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.va-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.va-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.va-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.va-drawer {
  position: fixed;
  top: 71px; left: 0; right: 0; bottom: 0;
  background: var(--verde);
  z-index: 998;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  overflow-y: auto;
}
.va-drawer.is-open { opacity: 1; pointer-events: all; }

.va-drawer__link {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  padding: 0.875rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s, padding-left 0.2s;
}
.va-drawer__link:hover { color: #fff; padding-left: 1rem; }

.va-drawer__sub-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  padding: 0.875rem 0.5rem 0.25rem;
  display: block;
}
.va-drawer__sub { display: flex; flex-direction: column; border-bottom: 1px solid rgba(255,255,255,0.15); }
.va-drawer__sub a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.va-drawer__sub a:last-child { border-bottom: none; }
.va-drawer__sub a:hover { color: #fff; }

.va-drawer__cta {
  display: block;
  background: var(--rosso);
  color: #fff !important;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem !important;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.va-drawer__cta:hover { background: var(--rosso-dark) !important; padding-left: 1rem !important; }


/* ══════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════ */
.va-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.va-section { padding: 6rem 0; }
.va-section--sm { padding: 4rem 0; }
.va-section--tinted { background: var(--surface-2); }
.va-section--green { background: var(--verde-light); }

.va-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde);
  background: var(--verde-light);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.875rem;
  border: 1px solid var(--verde-mid);
}

.va-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.va-divider {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--verde) 0%, var(--rosso) 100%);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.va-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
}
.va-btn--primary { background: var(--verde); color: #fff; box-shadow: 0 4px 16px rgba(0,146,70,0.3); }
.va-btn--primary:hover { background: var(--verde-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,146,70,0.4); }
.va-btn--red { background: var(--rosso); color: #fff; box-shadow: 0 4px 16px rgba(206,43,55,0.25); }
.va-btn--red:hover { background: var(--rosso-dark); color: #fff; transform: translateY(-2px); }
.va-btn--outline { background: transparent; color: var(--verde); border: 2px solid var(--verde); }
.va-btn--outline:hover { background: var(--verde); color: #fff; transform: translateY(-2px); }
.va-btn--lg { padding: 1rem 2.5rem; font-size: 0.95rem; }


/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.va-hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: #0a1a0f;
}
.va-hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.va-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,50,25,0.55) 65%,
    rgba(0,30,15,0.9) 100%
  );
}
/* Italian flag decorative strips on hero */
.va-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--verde) 33%, rgba(255,255,255,0.6) 33%, rgba(255,255,255,0.6) 66%, var(--rosso) 66%);
  opacity: 0.8;
}

.va-hero__content {
  position: absolute;
  bottom: 12%;
  left: 6%;
  right: 6%;
  max-width: 900px;
}
.va-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b4ffd0;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.va-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10.5vw, 8.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}
.va-hero__title em { color: #7dffb0; font-style: italic; }

.va-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}

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

.va-hero__mute {
  position: absolute;
  bottom: 2rem; right: 2rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.va-hero__mute:hover { background: rgba(255,255,255,0.22); }

.va-hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2.5s infinite;
}
.va-hero__scroll span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%        { transform: translateX(-50%) translateY(8px); }
}


/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.va-about {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 5rem;
  align-items: center;
}
.va-about__img-wrap { position: relative; flex-shrink: 0; }
.va-about__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.va-about__badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 128px; height: 128px;
  background: var(--verde);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-md);
}
.va-about__badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.va-about__badge-txt { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.3; max-width: 80px; }

.va-about__content > p { font-size: 1rem; margin-bottom: 1rem; }

.va-stats {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.va-stat {
  flex: 1;
  background: var(--surface);
  padding: 1.25rem 1rem;
  text-align: center;
}
.va-stat__num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--verde); display: block; }
.va-stat__lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

.va-languages { display: flex; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.va-lang-tag {
  padding: 0.35rem 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════════════
   GALLERY PREVIEW
══════════════════════════════════════════════════ */
.va-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.va-gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}
.va-gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.va-gallery-cell:hover img { transform: scale(1.06); }
.va-gallery-cell__shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,146,70,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.va-gallery-cell:hover .va-gallery-cell__shine { opacity: 1; }


/* ══════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════ */
.va-reviews-wrap { max-width: 740px; margin: 0 auto; }
.va-review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  display: none;
  box-shadow: var(--shadow-md);
}
.va-review-card.active { display: block; }
.va-stars { color: var(--rosso); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.va-review-card__quote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.75rem; }
.va-review-card__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text); }
.va-review-card__role { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; }

.va-review-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.va-review-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.va-review-btn:hover { border-color: var(--verde); color: var(--verde); }

.va-review-dots { display: flex; gap: 0.5rem; }
.va-review-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none; padding: 0;
}
.va-review-dot.active { background: var(--verde); transform: scale(1.4); }


/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.va-footer {
  background: var(--verde);
  padding: 4.5rem 0 0;
}
.va-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.va-footer__brand { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; letter-spacing: 0.08em; color: #fff; margin-bottom: 0.5rem; }
.va-footer__tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.75rem; color: rgba(255,255,255,0.7); }
.va-footer p { color: rgba(255,255,255,0.7); }

.va-footer__social { display: flex; gap: 0.625rem; }
.va-footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  transition: all 0.2s;
}
.va-footer__social a:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.15); }

.va-footer__col-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.1em; color: #fff; margin-bottom: 1.25rem; }
.va-footer__links { list-style: none; }
.va-footer__links li { margin-bottom: 0.625rem; }
.va-footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.va-footer__links a:hover { color: #fff; }

.va-footer__contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.va-footer__contact-item .ico {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.va-footer__contact-item .txt { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.va-footer__contact-item .txt a { color: rgba(255,255,255,0.7); }
.va-footer__contact-item .txt a:hover { color: #fff; }
.va-footer__contact-item .lbl { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 0.2rem; }

/* Italian tricolore footer bottom bar */
.va-footer__tricolore {
  height: 5px;
  background: linear-gradient(90deg, #fff 33.33%, rgba(255,255,255,0.3) 33.33%, rgba(255,255,255,0.3) 66.66%, var(--rosso) 66.66%);
}

.va-footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.va-footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.va-footer__legal { display: flex; gap: 1.5rem; }
.va-footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.va-footer__legal a:hover { color: #fff; }


/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.va-page-hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.va-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rosso) 0%, rgba(255,255,255,0.5) 50%, var(--rosso) 100%);
  opacity: 0.6;
}
.va-page-hero .va-chip { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.25); }
.va-page-hero .va-title { font-size: clamp(3rem, 8vw, 6rem); color: #fff; }
.va-page-hero p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0.5rem auto 0; }


/* ══════════════════════════════════════════════════
   PROGRAM PAGE
══════════════════════════════════════════════════ */
.va-program-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.va-program-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.va-program-text p { font-size: 1rem; margin-bottom: 1rem; white-space: pre-line; }

.va-program-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.va-program-info-card .ico {
  color: var(--verde);
  font-size: 0.9rem;
  width: 36px; height: 36px;
  background: var(--verde-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.va-program-info-card .content { font-size: 0.875rem; color: var(--text-muted); }
.va-program-info-card .content strong { color: var(--text); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.2rem; }
.va-program-info-card a { color: var(--text-muted); }
.va-program-info-card a:hover { color: var(--verde); }


/* ══════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════ */
.va-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-md);
}
.va-form-wrap h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.va-form-desc { margin-bottom: 2rem; font-size: 0.9rem; }

.va-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.va-field { display: flex; flex-direction: column; gap: 0.4rem; }
.va-field--full { grid-column: 1 / -1; }

.va-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.va-input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.va-input:focus { border-color: var(--verde); box-shadow: 0 0 0 3px rgba(0,146,70,0.12); background: var(--surface); }
.va-input::placeholder { color: var(--text-dim); }

.va-select-wrap { position: relative; }
.va-select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 6px;
  background: var(--text-dim);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.va-select-wrap select.va-input { padding-right: 2.5rem; cursor: pointer; }

.va-input-row { display: flex; gap: 0; }
.va-input-row .va-select-wrap { min-width: 130px; }
.va-input-row .va-select-wrap select { border-radius: 8px 0 0 8px; border-right: none; min-width: 130px; }
.va-input-row .va-input:not(select) { border-radius: 0 8px 8px 0; flex: 1; }

.va-form-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--verde);
  margin: 2rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--verde-mid);
}
.va-submit { margin-top: 2rem; }


/* ══════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════ */
.va-gallery-masonry { columns: 3; column-gap: 1rem; }
.va-gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.va-gallery-masonry-item img { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.va-gallery-masonry-item:hover img { transform: scale(1.04); }


/* ══════════════════════════════════════════════════
   EVENTS PAGE
══════════════════════════════════════════════════ */
.va-event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr;
  margin-bottom: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: var(--shadow-sm);
}
.va-event-card:hover { border-color: var(--verde); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.va-event-card__img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.va-event-card__body { padding: 2.5rem; }
.va-event-card__title { font-size: 2rem; font-weight: 700; margin-bottom: 1.25rem; }
.va-event-card__text { font-size: 0.95rem; line-height: 1.85; white-space: pre-line; }
.va-event-card__footer { padding: 1.25rem 2.5rem; border-top: 1px solid var(--border); background: var(--surface-2); }


/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.va-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.va-contact-info h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.va-contact-info .lead { font-size: 1rem; line-height: 1.75; margin-bottom: 2.5rem; }

.va-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.va-contact-detail:last-of-type { border-bottom: none; }
.va-contact-detail .ico {
  width: 40px; height: 40px;
  background: var(--verde-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--verde);
  flex-shrink: 0;
}
.va-contact-detail .lbl { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 0.25rem; }
.va-contact-detail .val { font-size: 0.9rem; color: var(--text); }
.va-contact-detail .val a { color: var(--text); }
.va-contact-detail .val a:hover { color: var(--verde); }

.va-contact-img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2.5rem; box-shadow: var(--shadow-md); }


/* ══════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════ */
.va-legal-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.75rem; box-shadow: var(--shadow-sm); }
.va-legal-wrap h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.875rem; color: var(--verde); }
.va-legal-wrap p { font-size: 0.9rem; }
.va-legal-wrap a { color: var(--verde); }
.va-legal-wrap a:hover { color: var(--verde-dark); }
.va-legal-section { padding-bottom: 1.75rem; margin-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.va-legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }


/* ══════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════ */
.va-fade { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.va-fade.in { opacity: 1; transform: translateY(0); }
.va-fade--d1 { transition-delay: 0.1s; }
.va-fade--d2 { transition-delay: 0.2s; }
.va-fade--d3 { transition-delay: 0.3s; }
.va-fade--d4 { transition-delay: 0.4s; }


/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .va-about { grid-template-columns: 1fr; gap: 2.5rem; }
  .va-about__img { height: 360px; }
  .va-about__badge { right: 0; bottom: -18px; width: 100px; height: 100px; }
  .va-about__badge-num { font-size: 1.75rem; }
  .va-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .va-program-layout { grid-template-columns: 1fr; }
  .va-program-img { height: 280px; }
  .va-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .va-event-card { grid-template-columns: 1fr; }
  .va-event-card__img { height: 200px; }
  .va-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .va-gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .va-nav__menu { display: none; }
  .va-burger { display: flex; }
  .va-nav { padding: 0 1rem; }
  .va-container { padding: 0 1rem; }
  .va-section { padding: 4rem 0; }
  .va-hero__title { font-size: clamp(3rem, 14vw, 5rem); }
  .va-stats { flex-direction: column; gap: 0; }
  .va-stat { border-bottom: 1px solid var(--border); }
  .va-stat:last-child { border-bottom: none; }
  .va-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .va-footer__bottom { flex-direction: column; text-align: center; }
  .va-footer__legal { justify-content: center; flex-wrap: wrap; }
  .va-form-grid { grid-template-columns: 1fr; }
  .va-form-grid .va-field--full { grid-column: auto; }
  .va-form-wrap { padding: 1.75rem; }
  .va-review-card { padding: 2rem 1.5rem; }
  .va-gallery-grid { gap: 0.5rem; }
  .va-gallery-masonry { columns: 2; }
}

@media (max-width: 480px) {
  .va-gallery-grid { grid-template-columns: 1fr 1fr; }
  .va-gallery-masonry { columns: 1; }
  .va-hero__actions { flex-direction: column; align-items: flex-start; }
  .va-input-row { flex-direction: column; }
  .va-input-row .va-select-wrap select { border-radius: 8px; border-right: 1.5px solid var(--border); }
  .va-input-row .va-input:not(select) { border-radius: 8px; }
  .va-event-card__body { padding: 1.5rem; }
  .va-event-card__footer { padding: 1rem 1.5rem; }
  .va-legal-wrap { padding: 1.5rem; }
}
