.hero { background: var(--white); padding: 110px 0 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 52%; height: 100%; background: var(--pastel-green-pale); clip-path: ellipse(80% 90% at 85% 50%); z-index: 0; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: var(--pastel-green-light); color: var(--navy); padding: 6px 14px; border-radius: 9999px; font-size: 12.5px; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: clamp(34px, 4.5vw, 54px); font-weight: 700; color: var(--navy); line-height: 1.25; letter-spacing: -1px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: #3D8B6F; }
.hero p { font-size: 17.5px; line-height: 1.85; max-width: 520px; }
.hero-visual { height: 350px; background-image: url('/assets/img/Harmonium_Logo.png'); background-size: contain; background-position: center; background-repeat: no-repeat; opacity: 0.05; }

.about { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.about-text p { font-size: 16.5px; line-height: 1.95; margin-bottom: 22px; }
.about-highlight { background: var(--pastel-green-main); color: var(--navy); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-deep); }
.about-highlight .quote { font-size: 18px; line-height: 1.8; font-style: italic; margin-bottom: 32px; font-weight: 500; }
.sig-block { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 24px; }
.sig-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.sig-title { font-size: 13px; }

.programs { background: var(--white); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.structure { background: var(--warm-white); }
.teams-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.join { background: var(--white); }
.join-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

@media (max-width: 768px) {
  .hero-inner, .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .programs-grid, .join-grid { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
}
