/* ─── PAGE BANNER ────────────────────────────────── */
.page-banner {
  height: 380px;
  background: url('/images/lib/banner-about-1920w.webp') center 15%/cover no-repeat;
}

.page-banner::after {
  background: linear-gradient(
    to right,
    rgba(10,24,16,0.82) 0%,
    rgba(10,24,16,0.60) 40%,
    rgba(10,24,16,0.22) 70%,
    rgba(10,24,16,0.05) 100%
  );
}

/* ─── INTRO SECTION ──────────────────────────────── */
.about-intro {
  background: var(--linen);
  padding: 80px 80px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 20px;
}

.intro-text p:first-of-type { margin-top: 24px; }

.intro-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-portrait-frame {
  width: 100%;
  position: relative;
}

.intro-portrait-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid var(--gold);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.intro-portrait-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
}

.intro-portrait-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.5;
  text-align: center;
  margin-top: 28px;
}

.intro-portrait .pull-attr {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-style: normal;
  margin-top: 12px;
  display: block;
  text-align: center;
}

.commitment-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.philosophy-inner > .reveal:first-child { text-align: center; }

/* ─── WHAT SETS US APART ─────────────────────────── */
.apart-section {
  background: var(--cream);
  padding: 80px 80px 88px;
}

.apart-header {
  text-align: center;
  margin-bottom: 56px;
}

.apart-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.apart-item {
  background: var(--linen);
  padding: 36px 28px 32px;
  border-top: 2px solid var(--gold);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.apart-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(46,102,71,0.10);
}

.apart-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.apart-icon svg { width: 20px; height: 20px; }

.apart-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}

.apart-item p {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── PHILOSOPHY SECTION ─────────────────────────── */
.philosophy-section {
  background: var(--cream-dark);
  padding: 80px 80px 88px;
  position: relative;
  overflow: hidden;
}

.philosophy-watercolor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 52% 62% at 50% 52%, rgba(72,185,178,0.18) 0%, rgba(72,185,178,0.06) 50%, transparent 75%),
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(160,200,175,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-inner { position: relative; z-index: 1; }

.philosophy-tagline {
  text-align: center;
  margin: 32px 0 48px;
}

.philosophy-tagline p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 1px;
}

.philosophy-tagline .tag-dot { color: var(--gold); margin: 0 10px; }

.philosophy-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.philosophy-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.commitment-list { list-style: none; margin-top: 8px; }

.commitment-list li {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
  position: relative;
}

.commitment-list li:last-child { border-bottom: none; }

.commitment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

/* ─── MISSION SECTION ────────────────────────────── */
.mission-section {
  background: var(--green-deep);
  padding: 72px 80px;
  text-align: center;
}

.mission-section .section-eyebrow { color: var(--gold-pale); }

.mission-section .section-title {
  color: #fff;
  max-width: 680px;
  margin: 0 auto;
}

.mission-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 640px;
  margin: 24px auto 0;
}

.mission-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.mission-ornament-line { width: 56px; height: 1px; background: rgba(201,168,76,0.4); }

/* ─── WHY CHOOSE SECTION ─────────────────────────── */
.why-section {
  background: var(--linen);
  padding: 80px 80px 88px;
  text-align: center;
}

.why-body { max-width: 640px; margin: 24px auto 0; }

.why-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.why-closing {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
  margin-top: 8px;
}

.why-cta { margin-top: 40px; }

.why-cta-script {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  font-weight: 600;
  color: var(--green-deep);
  display: block;
  margin-bottom: 28px;
}

/* ─── CONTACT SECTION OVERRIDE ───────────────────── */
.contact-section { padding: 14px 80px; gap: 32px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .intro-portrait-frame img { height: 340px; object-position: center 15%; }
  .intro-portrait-frame::before { display: none; }
  .apart-section { padding: 56px 24px; }
  .apart-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .philosophy-section { padding: 56px 24px; }
  .philosophy-body { grid-template-columns: 1fr; gap: 32px; }
  .mission-section { padding: 56px 24px; }
  .why-section { padding: 56px 24px; }
}

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