/* ─── PAGE HERO (matches site standard) ─── */
.page-hero {
  background: linear-gradient(135deg, #1e4a22 0%, #2d6635 40%, #398141 100%);
  color: #fff;
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

/* Split inner layout for image + text */
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sg-hero-text {
  text-align: left;
}
.page-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #c8e6c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
  text-align: left;
}
.page-hero h1 em {
  font-style: normal;
  color: #9ed9a0;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}
.sg-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3;
}
.sg-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─── INTRO ─── */
.sg-intro {
  background: var(--cream);
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}
.sg-intro-inner {
  max-width: 760px;
  margin: 0 auto;
}
.sg-intro p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── SHARED SECTION LABELS ─── */
.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 16px;
}

/* ─── PILLARS ─── */
.sg-pillars {
  background: var(--white);
  padding: 80px 24px;
}
.sg-pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.sg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sg-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}
.sg-card-icon svg {
  width: 22px;
  height: 22px;
}
.sg-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.sg-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── PHILOSOPHY ─── */
.sg-philosophy {
  background: var(--cream);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sg-philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
}
.sg-philosophy p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 720px;
}
.sg-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.sg-principle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
}
.sg-principle-icon {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}
.sg-principle-icon svg {
  width: 100%;
  height: 100%;
}
.sg-principle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* ─── RAISING A CONCERN ─── */
.sg-concern {
  background: var(--white);
  padding: 80px 24px;
}
.sg-concern-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sg-concern-text p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.sg-cta-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  margin-top: 8px;
  transition: background 0.18s, transform 0.15s;
}
.sg-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.sg-promise {
  background: linear-gradient(135deg, #1e4a22 0%, #398141 100%);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: #fff;
}
.sg-promise-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #9ed9a0;
  margin-bottom: 20px;
}
.sg-promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.sg-promise-list li {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.sg-promise-list li::before {
  content: "✓";
  color: #9ed9a0;
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ─── CTA BANNER ─── */
.sg-cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.sg-cta-banner-inner {
  max-width: 640px;
  margin: 0 auto;
}
.sg-cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}
.sg-cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 36px;
}
.sg-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--green-dark) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  display: inline-block;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.15s;
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sg-hero-img {
    max-height: 280px;
    aspect-ratio: auto;
  }
  .page-hero h1,
  .page-hero p {
    text-align: center;
  }
  .sg-hero-text {
    text-align: center;
  }
  .sg-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sg-principles {
    justify-content: center;
  }
  .sg-concern-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .sg-grid {
    grid-template-columns: 1fr;
  }
  .sg-principles {
    justify-content: center;
  }
  .sg-principle {
    padding: 7px 12px;
    gap: 7px;
  }
  .sg-principle-icon {
    width: 16px;
    height: 16px;
  }
  .sg-principle-label {
    font-size: 12px;
  }
}
