/* =============================================================================
   ALPENDRA — pages/home.css
   Homepage-specific styles
   ============================================================================= */

/* ── Hero Homepage Overrides ──────────────────────────────────────────────── */

/* Ensure stats grid on homepage fills its column properly */
.hero .hero-stats {
  align-self: center;
}

/* ── About Split Section ──────────────────────────────────────────────────── */
.about-split {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background-color: var(--white);
}

/* Left column content */
.about-split-left {
  display: flex;
  flex-direction: column;
}

.about-split-left .eyebrow {
  margin-bottom: 16px;
}

.about-split-left h2 {
  margin-bottom: 20px;
  color: var(--navy);
}

.about-split-left p {
  margin-bottom: 20px;
}

.about-split-left blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
}

.about-split-left blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Right column visual */
.about-split-right {
  position: relative;
  height: 400px;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-right-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 40px
    );
}

.about-right-logo {
  width: 160px;
  opacity: 0.06;
  filter: invert(1);
  position: relative;
  z-index: 1;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-split-right {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .about-split {
    padding: 72px 24px;
  }

  .about-split-right {
    height: 220px;
  }
}
