/* ========================================
   ARCHE — Values & Vision Page Styles
   ======================================== */

/* ---- HERO DECO ---- */
.vv-hero-deco {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- MISSION SECTION ---- */

.mission-section {
  background: #F9F7F4;
  padding-top: 48px;
  padding-bottom: 48px;
}

/* ---- MISSION STATEMENT BOX ---- */

.mission-statement-box {
  background: var(--white);
  border: 2px solid rgba(201,169,110,0.2);
  border-radius: 20px;
  padding: 48px 40px;
  margin-top: 32px;
  position: relative;
}

.mission-statement-box::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

.mission-statement-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ---- VALUES GRID ---- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.value-card:hover {
  border-color: rgba(201,169,110,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- VISION BLOCK ---- */

.vision-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-text h2 {
  margin-bottom: 24px;
}

.vision-text p + p {
  margin-top: 16px;
}

.vision-callout {
  background: linear-gradient(135deg, var(--charcoal), var(--navy));
  border-radius: 24px;
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.vision-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.vision-callout blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.vision-callout cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ---- CTA STRIP ---- */

.vv-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-statement-box {
    padding: 32px 24px;
  }

  .vision-callout {
    padding: 36px 28px;
  }
}
