
/* ── Page Hero ───────────────────────────────── */
.about-hero {
  background-color: var(--green-400);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 60px)
    clamp(64px, 8vw, 100px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(53, 64, 36, 0.08) 20%,
        rgba(44, 33, 16, 0.55) 50%,
        rgba(44, 33, 16, 0.82) 100%
    );
    }

.about-hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(214, 230, 176, 0.06);
}

.about-hero::after {
  content: "";
  position: absolute;
  right: 60px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(214, 230, 176, 0.04);
}

.about-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero-text .eyebrow {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin-bottom: 18px;
}

.about-hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-100);
  line-height: 1.08;
  margin-bottom: 20px;
}

.about-hero-text p {
  color: var(--cream-50);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.75;
}

.about-hero-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.about-hero-photo img,
.about-hero-photo .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Timeline ─────────────────────────────────── */
.timeline-section {
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 60px);
  max-width: 1160px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  margin-bottom: 72px;
}

.timeline-header h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  margin-bottom: 10px;
}

.timeline-header h2 em {
  font-style: italic;
  color: var(--green-300);
}

.timeline-header p {
  color: var(--brown-50);
  max-width: 440px;
  margin: 0 auto;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--cream-200) 8%,
    var(--cream-200) 92%,
    transparent
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 0;
  margin-bottom: 60px;
  align-items: start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item-left {
  padding-right: 48px;
  text-align: right;
}

.timeline-item-right {
  padding-left: 48px;
}

.timeline-dot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.timeline-dot-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 2px solid var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--green-300);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(53, 64, 36, 0.08);
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(53, 64, 36, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.timeline-card:hover {
  box-shadow: 0 8px 40px rgba(53, 64, 36, 0.1);
  transform: translateY(-2px);
}

.timeline-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown-50);
}

/* Even items: card on right, empty left */
.timeline-item.right .timeline-item-left {
  display: none;
}
.timeline-item.right .timeline-item-right {
  grid-column: 3;
}
.timeline-item.right .timeline-dot {
  grid-column: 2;
}

/* For alternating: left/right handled via class */
.timeline-item.left .timeline-item-right {
  display: none;
}
.timeline-item.left .timeline-item-left {
  grid-column: 1;
}
.timeline-item.left .timeline-dot {
  grid-column: 2;
}

/* ── Approach ─────────────────────────────────── */
.approach-section {
  background-color: var(--cream-100);
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 60px);
}

.approach-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.approach-sidebar {
  position: sticky;
  top: 100px;
}

.approach-sidebar h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.1;
}

.approach-sidebar h2 em {
  font-style: italic;
  color: var(--green-300);
}

.approach-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.approach-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid var(--cream-200);
}

.approach-pillar-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.approach-pillar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--brown-100);
  margin-bottom: 2px;
}

.approach-pillar-desc {
  font-size: 13px;
  color: var(--brown-50);
  line-height: 1.6;
}

.approach-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--brown-50);
  margin-bottom: 24px;
}

.approach-content p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }
  .about-hero-photo {
    max-width: 320px;
  }

  .timeline::before {
    left: 28px;
  }
  .timeline-item {
    grid-template-columns: 56px 1fr;
  }
  .timeline-dot {
    padding-top: 4px;
  }
  .timeline-dot-inner {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .timeline-item-left {
    display: none !important;
  }
  .timeline-item-right {
    display: block !important;
    grid-column: 2 !important;
    padding-left: 24px !important;
  }
  .timeline-item.right .timeline-dot,
  .timeline-item.left .timeline-dot {
    grid-column: 1 !important;
  }
  .timeline-item.right .timeline-item-right {
    grid-column: 2 !important;
  }

  .approach-inner {
    grid-template-columns: 1fr;
  }
  .approach-sidebar {
    position: static;
  }
}
