#what-vanalok {
  padding: clamp(4rem, 12vh, 8rem) 2rem;
  background: var(--void, #030e04); /* Dark forest background */
  color: #0a5c16;
  display: flex;
  justify-content: center;
}

.wv-container {
  max-width: 1200px;
  width: 100%;
}

/* The Grid System */
.wv-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stacked on mobile */
  gap: 4rem;
  align-items: center;
}

/* Side-by-Side for Desktop */
@media (min-width: 1024px) {
  .wv-grid {
    grid-template-columns: 1fr 1fr; /* Equal split |Who We Are| |What We Do| */
    gap: 6rem;
  }
}

.wv-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Labels (Small headers) */
.wv-label {
  font-family: "DM Mono", monospace;
  font-size: 1.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold, #e8b84b);
}

/* Typography for "Who We Are" */
.wv-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 3.6vw, 2.75rem);
  line-height: 1.1;
  color: #0a5c1b;
}

.wv-text {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.5rem, 1.94vw, 1.5rem);
  line-height: 1.8;
  color: rgba(25, 95, 12, 0.8);
  max-width: 500px; /* Prevents lines from getting too long/tight */
}

.wv-link {
    margin-top: 1.5rem;
}

.wv-link a {
    font-family: "Fraunces", serif;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(25, 95, 12, 0.8);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;

    transition: color 0.3s ease;
}

/* Underline animation */
.wv-link a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #05541d;

    transition: width 0.35s ease;
}

/* Hover effect */
.wv-link a:hover {
    color: #f0c674; /* subtle accent */
}

.wv-link a:hover::after {
    width: 100%;
}

/* Action Card for "What We Do" */
.wv-action-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(82, 168, 98, 0.2);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.wv-action-card:hover {
  border-color: var(--sage, #52a862);
  background: rgba(82, 168, 98, 0.05);
  transform: translateY(-8px);
}

.wv-highlight {
  color: var(--gold, #e8b84b);
  font-weight: 700;
}

/* Responsive centering for Mobile */
@media (max-width: 1023px) {
  .wv-grid {
    text-align: center;
  }
  .wv-column {
    align-items: center;
  }
  .wv-text {
    margin: 0 auto;
  }
}