/* =====================================================================
   VILLICANA TRANSPORTATION · index.css
   Valley to Door · Family + Salinas + Bilingual
   Five sections: Hero, Lanes, Fleet & Family, Manifest, Move With Us
   ===================================================================== */

/* ============================================================
   SHARED — Section header pattern
   ============================================================ */
.villi-section-head {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding-bottom: 2rem;
  margin-bottom: clamp(3rem, 6vh, 4.5rem);
  border-bottom: 1px solid var(--rule);
}
.villi-section-head--center {
  grid-template-columns: 1fr;
  text-align: left;
  border-bottom: 1px dashed rgba(244,239,227,0.25);
}
.villi-section-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 14ch;
}
.villi-section-title em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}
.villi-section-title-spanish {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.45em;
  color: var(--leaf-2);
  letter-spacing: 0.01em;
  opacity: 0.85;
}
.villi-section-lede {
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 46ch;
  padding-bottom: 0.5rem;
}

/* ============================================================
   1. HERO  — white bg, popping green, CA highway map
   ============================================================ */
.villi-hero-section {
  position: relative;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--rule);
}

/* Background video — sits behind everything, faded behind a white wash */
.villi-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  filter: grayscale(0.35) saturate(0.85) brightness(1.05);
}
.villi-hero-section.use-video .villi-hero-video { opacity: 1; }

/* White wash overlay — keeps the hero predominantly white but lets the video peek through edges */
.villi-hero-wash {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 35%, rgba(255,255,255,0.82) 70%, rgba(255,255,255,0.78) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(255,255,255,0.65) 100%);
}

/* Background topographical contour pattern — subtle bright-green hint over the wash */
.villi-hero-topo {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.07;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%234A9F2D' stroke-width='1'%3E%3Cpath d='M0,80 Q150,40 300,80 T600,80'/%3E%3Cpath d='M0,140 Q150,100 300,140 T600,140'/%3E%3Cpath d='M0,200 Q150,160 300,200 T600,200'/%3E%3Cpath d='M0,260 Q150,220 300,260 T600,260'/%3E%3Cpath d='M0,320 Q150,280 300,320 T600,320'/%3E%3Cpath d='M0,380 Q150,340 300,380 T600,380'/%3E%3Cpath d='M0,440 Q150,400 300,440 T600,440'/%3E%3Cpath d='M0,500 Q150,460 300,500 T600,500'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px 600px;
}

.villi-hero-container {
  position: relative; z-index: 4;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2.75rem, 6vh, 5rem) var(--gutter) clamp(3rem, 6vh, 4.5rem);
}

/* Pulse — used for the eyebrow dot and map hub */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,181,48,0.4); }
  50%      { box-shadow: 0 0 0 9px rgba(232,181,48,0); }
}

/* Main content grid — mobile-first */
.villi-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1rem, 3vh, 2rem) 0 clamp(2rem, 5vh, 3.5rem);
}
@media (min-width: 900px) {
  .villi-hero-content {
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    padding: clamp(2rem, 6vh, 4rem) 0 clamp(2rem, 5vh, 3.5rem);
  }
}

/* LEFT — eyebrow, title, tagline, CTA */
.villi-hero-left { display: flex; flex-direction: column; gap: 1.75rem; }
@media (min-width: 900px) { .villi-hero-left { gap: 2rem; } }

/* Bright green chip — the new pop */
.villi-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  align-self: flex-start;
  background: var(--forest);
  color: #fff;
  padding: 0.55rem 0.95rem 0.5rem;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 4px 4px 0 var(--forest-deep);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), box-shadow 0.3s var(--ease);
}
.villi-hero-eyebrow:hover { box-shadow: 6px 6px 0 var(--forest-deep); }
.villi-hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(232,181,48,0.4);
  animation: pulse 2.4s ease-in-out infinite;
}
.villi-hero-section.animated .villi-hero-eyebrow { opacity: 1; transform: translateY(0); }
@media (min-width: 600px) { .villi-hero-eyebrow { font-size: 11.5px; padding: 0.6rem 1.1rem 0.55rem; } }

.villi-hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 14ch;
  text-wrap: balance;
}
.villi-hero-title em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}
.villi-hero-title strong {
  font-weight: 500;
  color: var(--forest);
  font-style: normal;
}

.villi-hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.villi-hero-section.animated .villi-hero-title .word { opacity: 1; transform: translateY(0); }
.villi-hero-section.animated .villi-hero-title .word:nth-child(1) { transition-delay: 0.10s; }
.villi-hero-section.animated .villi-hero-title .word:nth-child(2) { transition-delay: 0.18s; }
.villi-hero-section.animated .villi-hero-title .word:nth-child(3) { transition-delay: 0.26s; }
.villi-hero-section.animated .villi-hero-title .word:nth-child(4) { transition-delay: 0.34s; }
.villi-hero-section.animated .villi-hero-title .word:nth-child(5) { transition-delay: 0.42s; }
.villi-hero-section.animated .villi-hero-title .word:nth-child(6) { transition-delay: 0.50s; }
.villi-hero-section.animated .villi-hero-title .word:nth-child(7) { transition-delay: 0.58s; }
.villi-hero-section.animated .villi-hero-title .word:nth-child(n+8) { transition-delay: 0.65s; }

.villi-hero-spanish {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--leaf-2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.villi-hero-section.animated .villi-hero-spanish {
  opacity: 0.85; transform: translateY(0); transition-delay: 0.85s;
}

.villi-hero-tagline-block {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.villi-hero-section.animated .villi-hero-tagline-block {
  opacity: 1; transform: translateY(0); transition-delay: 1.0s;
}
.villi-hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.villi-hero-tagline strong { color: var(--forest); font-weight: 500; font-style: italic; }
.villi-hero-tagline-spanish {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--leaf-2);
  opacity: 0.85;
}

.villi-hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.villi-hero-section.animated .villi-hero-actions {
  opacity: 1; transform: translateY(0); transition-delay: 1.15s;
}
.villi-hero-link-secondary {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.villi-hero-link-secondary:hover { color: var(--forest); border-bottom-color: var(--forest); }
.villi-hero-link-secondary i { color: var(--gold); font-size: 13px; }

/* RIGHT — California highway map */
.villi-hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  order: -1;  /* map appears above title on mobile */
  opacity: 0; transform: translateY(30px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
@media (min-width: 900px) { .villi-hero-right { order: 0; } }
.villi-hero-section.animated .villi-hero-right {
  opacity: 1; transform: translateY(0); transition-delay: 0.4s;
}

/* Map stack: real CA outline (img) + overlay SVG with markers */
.villi-hero-map-stack {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 100 / 115;
  filter: drop-shadow(0 18px 28px rgba(15,20,10,0.10));
}
@media (min-width: 900px) {
  .villi-hero-map-stack { max-width: 500px; }
}

.villi-hero-map-base {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}

.villi-hero-map-overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* Highway lanes (drawn in 0-100 / 0-115 viewBox space) */
.villi-hero-map-overlay .ca-lane {
  fill: none;
  stroke: var(--forest);
  stroke-width: 0.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1.4 1;
  animation: lane-flow 2.4s linear infinite;
}
@keyframes lane-flow {
  to { stroke-dashoffset: -7.2; }
}

/* Highway shields */
.villi-hero-map-overlay .ca-shield-text {
  font-family: var(--f-mono);
  font-size: 1.7px;
  font-weight: 700;
  letter-spacing: 0.02em;
  fill: var(--forest);
}

/* Cities */
.villi-hero-map-overlay .ca-city circle {
  fill: #FFFFFF;
  stroke: var(--ink);
  stroke-width: 0.4;
}
.villi-hero-map-overlay .ca-city--border circle {
  fill: #FFFFFF;
  stroke: var(--forest);
  stroke-width: 0.5;
}
.villi-hero-map-overlay .ca-city--border text {
  fill: var(--forest);
  font-weight: 600;
}
.villi-hero-map-overlay .ca-city--hub circle {
  fill: var(--gold);
  stroke: var(--forest);
  stroke-width: 0.55;
}
.villi-hero-map-overlay .ca-city--hub-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.4;
  opacity: 0.7;
  transform-origin: center; transform-box: fill-box;
  animation: hub-pulse 2.4s ease-out infinite;
}
@keyframes hub-pulse {
  0%   { r: 1.5;  opacity: 0.7; }
  100% { r: 4.5;  opacity: 0;   }
}
.villi-hero-map-overlay .ca-city text {
  font-family: var(--f-mono);
  font-size: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--ink);
  font-weight: 500;
}
.villi-hero-map-overlay .ca-city--hub text {
  fill: var(--forest);
  font-weight: 700;
  font-size: 2.4px;
  letter-spacing: 0.10em;
}

/* Region / landmark labels */
.villi-hero-map-overlay .ca-region {
  font-family: var(--f-mono);
  font-size: 1.7px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  fill: var(--ink-2);
  opacity: 0.45;
  font-weight: 500;
}
.villi-hero-map-overlay .ca-region--accent {
  fill: var(--gold-2);
  opacity: 0.85;
  font-size: 1.85px;
  font-weight: 600;
}

/* Compass */
.villi-hero-map-overlay .ca-compass line {
  stroke: var(--ink);
  opacity: 0.45;
}
.villi-hero-map-overlay .ca-compass-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.2px;
  fill: var(--forest);
  font-weight: 500;
}

/* Hero counter strip — mobile-first */
.villi-hero-counter {
  position: relative; z-index: 4;
  background: var(--ink);
  color: var(--bone);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.villi-hero-counter-item {
  padding: 1.4rem var(--gutter);
  border-right: 1px solid rgba(244,239,227,0.18);
  border-bottom: 1px solid rgba(244,239,227,0.18);
  display: flex; flex-direction: column; gap: 0.4rem;
  position: relative;
}
.villi-hero-counter-item:nth-child(2n) { border-right: 0; }
.villi-hero-counter-item:nth-last-child(-n+2) { border-bottom: 0; }
.villi-hero-counter-item::before {
  content: ""; position: absolute; left: var(--gutter); top: 1.4rem;
  width: 18px; height: 1px; background: var(--gold); opacity: 0.85;
}
.villi-hero-counter-num {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--bone);
  margin-top: 0.6rem;
}
.villi-hero-counter-num em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.villi-hero-counter-label {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--bone-2); opacity: 0.78;
}

@media (min-width: 900px) {
  .villi-hero-counter { grid-template-columns: repeat(4, 1fr); }
  .villi-hero-counter-item {
    padding: 1.6rem var(--gutter);
    border-bottom: 0;
    border-right: 1px solid rgba(244,239,227,0.18);
  }
  .villi-hero-counter-item:nth-child(2n) { border-right: 1px solid rgba(244,239,227,0.18); }
  .villi-hero-counter-item:last-child { border-right: 0; }
}

/* ============================================================
   2. THE LANES — Road Story (3 milestones)
   ============================================================ */
.villi-lanes-section {
  position: relative;
  background: var(--bone);
  color: var(--ink);
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 11vh, 8rem);
  overflow: hidden;
  isolation: isolate;
}

/* Soft agricultural backdrop */
.villi-lanes-backdrop {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
}
.villi-lanes-backdrop img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) saturate(0.6);
}

/* White wash on top so text stays clean */
.villi-lanes-wash {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.95) 100%);
}

.villi-lanes-container {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Section header */
.villi-lanes-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.villi-lanes-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
  text-wrap: balance;
}
.villi-lanes-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.villi-lanes-lede {
  font-family: var(--f-body);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-2);
  font-weight: 450;
  max-width: 38ch;
}

/* The road */
.villi-lanes-road {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vh, 4.5rem);
}
@media (min-width: 900px) {
  .villi-lanes-road {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
  /* Connecting dashed gold rule between milestones, behind the photos */
  .villi-lanes-road::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 14%;
    right: 14%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 12px, transparent 12px 24px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  }
}

.villi-lane-milestone {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.villi-lane-milestone.animate { opacity: 1; transform: translateY(0); }

.villi-lane-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(2.6rem, 3.6vw, 3.2rem);
  font-weight: 500;
  color: var(--gold-2);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative;
  background: var(--bone);
  padding: 0 1rem;
}

.villi-lane-photo {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 1.85rem;
  position: relative;
}
.villi-lane-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: contrast(1.05) saturate(0.85) brightness(0.97);
}
.villi-lane-milestone:hover .villi-lane-photo img {
  transform: scale(1.05);
}

.villi-lane-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.85rem;
  max-width: 18ch;
  text-wrap: balance;
}
.villi-lane-body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 450;
  max-width: 36ch;
}

/* ============================================================
   3. FLEET & FAMILY — Merged section
   ============================================================ */
.villi-fleet-section {
  background: var(--field);
  color: var(--ink);
  padding: clamp(4rem, 9vh, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.villi-fleet-container {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* Top grid: family voice + photo */
.villi-fleet-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vh, 5rem);
  margin-bottom: clamp(3rem, 6vh, 5rem);
  border-bottom: 1px dashed var(--rule);
}

.villi-fleet-prose { display: flex; flex-direction: column; gap: 1.75rem; }

.villi-fleet-quote {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 0;
  text-wrap: balance;
}
.villi-fleet-quote em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}
.villi-fleet-quote::first-letter {
  font-family: var(--f-display);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.15em 0 -0.04em;
  color: var(--gold-2);
  font-weight: 600;
  font-style: italic;
}

.villi-fleet-attribution {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.villi-fleet-attribution-dash { width: 32px; height: 1px; background: var(--gold); }
.villi-fleet-attribution strong { color: var(--forest); font-weight: 500; }

/* Right — photo with caption + stamp */
.villi-fleet-photo {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background: var(--forest);
}
.villi-fleet-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.95) sepia(0.04);
  transform: scale(1.02);
  transition: transform 1.4s var(--ease);
}
.villi-fleet-photo:hover img { transform: scale(1.06); }
.villi-fleet-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 90%, rgba(46,74,28,0.35), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(20,24,14,0.4));
  pointer-events: none;
}

.villi-fleet-caption {
  position: absolute;
  bottom: -12px; left: -12px;
  background: var(--ink);
  color: var(--bone);
  padding: 0.85rem 1.1rem;
  max-width: 260px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.55;
}
.villi-fleet-caption strong { color: var(--gold); font-weight: 500; }

/* "Hecho en Salinas" stamp */
.villi-fleet-stamp {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 110px; height: 110px;
  z-index: 3;
  transform: rotate(-12deg);
  filter: drop-shadow(0 4px 12px rgba(20,24,14,0.25));
}

/* Numbered features grid below */
.villi-fleet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: 0;
}

.villi-fleet-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.villi-fleet-feature.animate { opacity: 1; transform: translateY(0); }
.villi-fleet-feature:nth-last-child(-n+2) { border-bottom: 0; }

.villi-fleet-feature-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--gold-2);
  line-height: 1;
  letter-spacing: -0.02em;
  align-self: start;
  padding-top: 0.25rem;
  min-width: 50px;
}

.villi-fleet-feature-content { display: flex; flex-direction: column; gap: 0.5rem; }
.villi-fleet-feature-title {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.villi-fleet-feature-title em { color: var(--forest); font-style: italic; font-weight: 400; }
.villi-fleet-feature-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
}

/* Bottom proof bar */
.villi-fleet-proof {
  margin-top: clamp(3rem, 6vh, 5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--forest);
  color: var(--bone);
  border-radius: 0;
}
.villi-fleet-proof-item {
  padding: 1.85rem var(--gutter);
  border-right: 1px solid rgba(244,239,227,0.18);
  position: relative;
}
.villi-fleet-proof-item:last-child { border-right: 0; }
.villi-fleet-proof-num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.villi-fleet-proof-num em {
  font-style: italic;
  color: var(--bone);
  font-weight: 400;
  font-size: 0.6em;
  margin-left: 0.15em;
}
.villi-fleet-proof-label {
  margin-top: 0.6rem;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.78);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .villi-fleet-intro { grid-template-columns: 1fr; gap: 3rem; }
  .villi-fleet-photo { aspect-ratio: 4/3; }
  .villi-fleet-features { grid-template-columns: 1fr; }
  .villi-fleet-feature:nth-last-child(2) { border-bottom: 1px solid var(--rule); }
  .villi-fleet-proof { grid-template-columns: repeat(2, 1fr); }
  .villi-fleet-proof-item:nth-child(2) { border-right: 0; }
  .villi-fleet-proof-item:nth-child(1),
  .villi-fleet-proof-item:nth-child(2) { border-bottom: 1px solid rgba(244,239,227,0.18); }
}

/* ============================================================
   4. THE MANIFEST — FAQ
   ============================================================ */
.villi-manifest-section {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(4rem, 9vh, 7rem) 0;
}
.villi-manifest-container {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
}

.villi-manifest-accordion {
  display: flex; flex-direction: column;
  border-top: 2px solid var(--ink);
  counter-reset: faq;
}

.villi-manifest-item {
  border-bottom: 1px solid var(--rule);
  position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.villi-manifest-item.animate { opacity: 1; transform: translateY(0); }

.villi-manifest-question {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.85rem 0;
  cursor: pointer;
  transition: padding 0.35s var(--ease);
}
.villi-manifest-item:hover .villi-manifest-question { padding-left: 0.5rem; }
.villi-manifest-question::before {
  content: "Q." counter(faq, decimal-leading-zero);
  counter-increment: faq;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 500;
}

.villi-manifest-q-text {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.villi-manifest-q-text em { font-style: italic; color: var(--forest); font-weight: 400; }

.villi-manifest-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--ink);
  justify-self: end;
  transition: transform 0.45s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.villi-manifest-item.active .villi-manifest-toggle {
  transform: rotate(180deg);
  background: var(--forest);
  color: var(--gold);
  border-color: var(--forest);
}

.villi-manifest-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.villi-manifest-item.active .villi-manifest-answer { max-height: 600px; }
.villi-manifest-answer-text {
  padding: 0 calc(80px + 1.5rem) 1.85rem calc(80px + 1.5rem);
  font-size: 1rem; line-height: 1.65;
  color: var(--ink-2);
  max-width: 70ch;
}
.villi-manifest-answer-text strong { color: var(--forest); font-weight: 600; }
.villi-manifest-answer-text em { color: var(--leaf-2); font-style: italic; }

@media (max-width: 700px) {
  .villi-manifest-question { grid-template-columns: 50px 1fr 36px; gap: 0.85rem; padding: 1.4rem 0; }
  .villi-manifest-answer-text { padding: 0 0 1.5rem calc(50px + 0.85rem); }
}

/* ============================================================
   5. MOVE WITH US — CTA + dispatch
   ============================================================ */
.villi-cta-section {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(4rem, 10vh, 8rem) 0 clamp(3rem, 8vh, 6rem);
  position: relative;
  overflow: hidden;
}
.villi-cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(107,157,59,0.18), transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(232,181,48,0.14), transparent 50%);
  pointer-events: none;
}
.villi-cta-section::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F4EFE3' stroke-width='1'%3E%3Cpath d='M0,80 Q150,40 300,80 T600,80'/%3E%3Cpath d='M0,140 Q150,100 300,140 T600,140'/%3E%3Cpath d='M0,200 Q150,160 300,200 T600,200'/%3E%3Cpath d='M0,260 Q150,220 300,260 T600,260'/%3E%3Cpath d='M0,320 Q150,280 300,320 T600,320'/%3E%3Cpath d='M0,380 Q150,340 300,380 T600,380'/%3E%3Cpath d='M0,440 Q150,400 300,440 T600,440'/%3E%3Cpath d='M0,500 Q150,460 300,500 T600,500'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px 600px;
}

.villi-cta-container {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
}

.villi-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.villi-cta-headline {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--bone);
  text-wrap: balance;
  max-width: 14ch;
}
.villi-cta-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.villi-cta-spanish {
  display: block;
  margin-top: 1rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.4em;
  font-weight: 400;
  color: var(--gold-soft);
  opacity: 0.85;
  letter-spacing: 0.01em;
}

.villi-cta-right {
  display: flex; flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.villi-cta-text {
  font-family: var(--f-body);
  font-size: 1.05rem; line-height: 1.6;
  color: var(--bone-2);
  max-width: 38ch;
}
.villi-cta-btn {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  padding: 1.1rem 1.8rem;
  font-size: 12px;
}
.villi-cta-btn::before { background: var(--bone); }
.villi-cta-btn:hover { color: var(--ink); border-color: var(--bone); }

/* Dispatch contact card */
.villi-cta-dispatch {
  margin-top: clamp(3rem, 6vh, 5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px dashed rgba(244,239,227,0.25);
  border-bottom: 1px dashed rgba(244,239,227,0.25);
}
.villi-cta-dispatch-item {
  padding: 1.85rem var(--gutter) 1.85rem 0;
  border-right: 1px dashed rgba(244,239,227,0.25);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.villi-cta-dispatch-item:last-child { border-right: 0; }
.villi-cta-dispatch-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.5rem;
}
.villi-cta-dispatch-label::before { content: ""; width: 18px; height: 1px; background: currentColor; }
.villi-cta-dispatch-value {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.villi-cta-dispatch-value a { transition: color 0.3s var(--ease); }
.villi-cta-dispatch-value a:hover { color: var(--gold); }
.villi-cta-dispatch-note {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: rgba(244,239,227,0.7);
  font-style: italic;
}

@media (max-width: 900px) {
  .villi-cta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .villi-cta-dispatch { grid-template-columns: 1fr; }
  .villi-cta-dispatch-item {
    border-right: 0;
    border-bottom: 1px dashed rgba(244,239,227,0.25);
    padding: 1.4rem 0;
  }
  .villi-cta-dispatch-item:last-child { border-bottom: 0; }
}
