/* ============================================================
   ABOUT.CSS
   ============================================================ */

/* ─── Page Hero ─── */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,26,0.62);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 52px;
}
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; }

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
}

/* ─── About Main ─── */
.about-main {
  padding: 110px 0;
}
.about-main .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.about-main__image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: block;
}
.about-main__text .section-tag { margin-bottom: 16px; }
.about-main__text h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  color: var(--green-deep);
  margin-bottom: 28px;
  line-height: 1.25;
}
.about-main__text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.82;
}

/* ─── Why Choose Us ─── */
.why-us {
  background: var(--parchment);
  padding: 110px 0;
}
.why-us__header {
  text-align: center;
  margin-bottom: 60px;
}
.why-us__header h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  color: var(--green-deep);
  margin-bottom: 12px;
}
.why-us__header p {
  color: var(--text-mid);
  max-width: 460px;
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
}
.why-card__icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: rgba(122,158,126,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card__icon svg {
  width: 26px; height: 26px;
  fill: var(--sage);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ─── CTA Strip ─── */
.cta-strip {
  background: var(--green-deep);
  padding: 88px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 14px;
}
.cta-strip p {
  color: rgba(245,240,232,0.68);
  margin-bottom: 36px;
  font-size: 1rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-main .container { gap: 52px; }
}

@media (max-width: 768px) {
  .page-hero { height: 320px; }
  .about-main .container { grid-template-columns: 1fr; gap: 40px; }
  .about-main__image img { height: 300px; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-card { flex-direction: column; gap: 16px; }
}
