:root {
  --green:     #0a7a52;
  --green-d:   #065438;
  --gold:      #c99a0d;
  --ink:       #0f1c11;
  --muted:     #60706a;
  --white:     #ffffff;
  --off:       #f3f6f2;
  --border:    rgba(0,0,0,.09);
  --r:         12px;
  --tr:        .28s ease;
  --serif:     "Playfair Display", Georgia, serif;
  --sans:      "Inter", system-ui, sans-serif;
  --shadow-lg: 0 16px 48px rgba(0,0,0,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); background: var(--off); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }

/* Hero */
.page-hero {
  background: linear-gradient(140deg, #051c0f 0%, #0d5e3c 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.ph-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ph-label::before { content: ""; width: 22px; height: 2px; background: currentColor; flex-shrink: 0; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 12px;
}
.page-hero > p:not(.ph-label) {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255,255,255,.74);
  font-size: 1rem;
  line-height: 1.72;
}

/* Sections */
.about-section { background: var(--white); }
.about-section--alt { background: var(--off); }
.about-wrap { max-width: 960px; margin: 0 auto; padding: 64px 40px; }

.sec-lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sec-lbl::before { content: ""; width: 18px; height: 2px; background: currentColor; flex-shrink: 0; }

.about-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.12;
}
.about-lead {
  font-size: 1.03rem;
  line-height: 1.76;
  color: var(--ink);
  max-width: 720px;
  margin-bottom: 14px;
}
.about-sub {
  font-size: .95rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 680px;
}

/* 3-col cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,122,82,.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-card h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0;
}
.about-card p { color: var(--muted); font-size: .91rem; line-height: 1.65; margin: 0; flex: 1; }
.about-link {
  display: inline-block;
  font-size: .79rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
  transition: color var(--tr);
}
.about-link:hover { color: var(--green-d); }

/* CTA */
.about-cta {
  background: linear-gradient(140deg, #051c0f 0%, #0d5e3c 100%);
  text-align: center;
  color: #fff;
}
.about-cta .about-wrap { padding: 72px 40px; }
.about-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.about-cta p {
  color: rgba(255,255,255,.7);
  font-size: .98rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}
.about-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-ab-solid {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 26px;
  border-radius: 8px;
  background: #fff;
  color: var(--green-d);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--tr), color var(--tr);
}
.btn-ab-solid:hover { background: var(--off); color: var(--green-d); }
.btn-ab-outline {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.38);
  color: rgba(255,255,255,.86);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.btn-ab-outline:hover { border-color: rgba(255,255,255,.68); color: #fff; background: rgba(255,255,255,.07); }

@media (max-width: 768px) {
  .about-wrap { padding: 44px 20px; }
  .about-cards { grid-template-columns: 1fr; max-width: 440px; }
  .about-cta .about-wrap { padding: 56px 20px; }
}
