/* ============================================
   V-CONTACT-VILLAGE — Message a village representative
   Quiet, inviting card on dark ground.
   Three conversation-starters lower the threshold;
   a membership note sets transparent expectations.
   ============================================ */

/* ── Scene ── */
.v-contact-village {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--color-midnight);
  position: relative;
}

.v-contact-village.is-hidden {
  display: none;
}

/* ── Card ── */
.v-contact-village__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  background: linear-gradient(
    155deg,
    rgba(236, 245, 239, 1) 0%,
    rgba(224, 238, 229, 1) 40%,
    rgba(232, 238, 231, 1) 65%,
    rgba(242, 233, 228, 1) 100%
  );
  border-radius: 14px;
  border: 2px solid rgba(45, 106, 63, 0.35);
  box-shadow:
    0 4px 12px rgba(10, 22, 40, 0.12),
    0 16px 48px rgba(10, 22, 40, 0.16),
    0 22px 64px rgba(10, 22, 40, 0.18);
  position: relative;
}

/* ── Header ── */
.v-contact-village__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.v-contact-village__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(45, 106, 63, 0.85);
  margin-bottom: var(--space-xl);
}

.v-contact-village__label::before,
.v-contact-village__label::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(45, 106, 63, 0.15);
}

.v-contact-village__title {
  font-family: 'Glacial Indifference', var(--font-display), sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: rgba(45, 106, 63, 0.92);
  margin: 0 0 var(--space-md);
}

.v-contact-village__intro {
  font-family: 'Cormorant Garamond', var(--font-display), serif;
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.15rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(10, 22, 40, 0.55);
  max-width: 52ch;
  margin: 0 auto;
}

/* ── Prompt cards ── */
.v-contact-village__prompts {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.v-contact-village__prompt {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: calc(var(--space-md) + 2px) var(--space-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(45, 106, 63, 0.12);
  border-radius: 14px;
  text-decoration: none;
  color: var(--color-text-primary, #1a1a1a);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.v-contact-village__prompt:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(45, 106, 63, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.08);
}

.v-contact-village__prompt:focus-visible {
  outline: 2px solid rgba(45, 106, 63, 0.7);
  outline-offset: 2px;
}

.v-contact-village__prompt-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: rgba(45, 106, 63, 0.45);
}

.v-contact-village__prompt-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.v-contact-village__prompt-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9375rem);
  line-height: 1.5;
}

.v-contact-village__prompt-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(45, 106, 63, 0.35);
  transition: transform 0.3s ease, color 0.3s ease;
}

.v-contact-village__prompt-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.v-contact-village__prompt:hover .v-contact-village__prompt-arrow {
  transform: translateX(4px);
  color: rgba(45, 106, 63, 0.7);
}

/* ── Membership note ── */
.v-contact-village__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(10, 22, 40, 0.42);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin: 0;
}

.v-contact-village__note-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.v-contact-village__note-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .v-contact-village {
    padding: var(--space-2xl) var(--space-md);
  }

  .v-contact-village__inner {
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
  }

  .v-contact-village__header {
    margin-bottom: var(--space-lg);
  }

  .v-contact-village__label {
    margin-bottom: var(--space-lg);
    gap: var(--space-md);
  }

  .v-contact-village__label::before,
  .v-contact-village__label::after {
    max-width: 40px;
  }

  .v-contact-village__prompt {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  .v-contact-village__inner {
    padding: var(--space-lg) var(--space-md) var(--space-md);
  }

  .v-contact-village__prompt {
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
  }

  .v-contact-village__prompt-icon {
    display: none;
  }

  .v-contact-village__title {
    font-size: clamp(1.3rem, 1.1rem + 1vw, 1.6rem);
  }

  .v-contact-village__note {
    font-size: 0.6875rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .v-contact-village__prompt {
    transition: none;
  }

  .v-contact-village__prompt-arrow {
    transition: none;
  }
}
