
:root{
  --bg:#f6f3ea;
  --white:#ffffff;
  --ink:#17251c;
  --muted:#5f6c63;
  --green:#1f5a44;
  --green-2:#2d7a56;
  --gold:#c89b43;
  --line:#dfd8ca;
  --soft:#efe8d8;
  --card:#fbfaf6;
  --shadow:0 16px 45px rgba(22,42,31,.08);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px, calc(100% - 40px));margin:0 auto}

.site-header{
  position:sticky;top:0;z-index:100;
  backdrop-filter: blur(10px);
  background:rgba(246,243,234,.82);
  border-bottom:1px solid rgba(120,120,120,.08);
}
.nav{
  min-height:84px;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.brand{display:flex;align-items:center;gap:14px}
.brand-logo{width:54px;height:54px}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text strong{font-size:1.2rem;color:var(--green)}
.brand-text span{font-size:.8rem;color:var(--muted);max-width:320px}
.menu{display:flex;gap:24px;align-items:center}
.menu a{color:#33433a;font-weight:500}
.menu a:hover{color:var(--green)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 22px;border-radius:999px;background:var(--green);
  color:#fff;font-weight:700;box-shadow:var(--shadow);transition:.25s ease;
}
.btn:hover{transform:translateY(-2px);background:var(--green-2)}
.btn-secondary{background:transparent;color:var(--green);border:1.5px solid var(--green);box-shadow:none}
.btn-outline{background:transparent;color:var(--green);border:1px solid rgba(31,90,68,.25);box-shadow:none}
.btn-small{padding:11px 16px;font-size:.95rem}

.hero{
  position:relative;
  overflow:hidden;
  padding:76px 0 72px;
}
.hero-grid{
  display:grid;grid-template-columns:1.15fr .85fr;gap:42px;align-items:center;
  position:relative;z-index:1;
}
.eyebrow,.section-kicker{
  display:inline-block;
  color:var(--green);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.76rem;
  margin-bottom:16px;
}
.hero h1{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(2.4rem,5vw,4.6rem);
  line-height:1.06;
  margin:0 0 18px;
  letter-spacing:-.03em;
}
.lead{font-size:1.08rem;color:#445248;max-width:760px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:28px 0}
.hero-tags{display:flex;gap:10px;flex-wrap:wrap}
.hero-tags span{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,90,68,.1);
  padding:10px 14px;border-radius:999px;color:#314338;font-size:.92rem
}
.hero-card{display:flex;flex-direction:column;gap:18px}
.hero-panel,.stat-card,.info-card,.program-card,.map-card,.contact-cta{
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}
.hero-panel{padding:28px}
.panel-label{color:var(--green);font-weight:800;text-transform:uppercase;font-size:.75rem;letter-spacing:.08em}
.hero-panel h3{margin:8px 0 10px;font-size:1.45rem;line-height:1.25}
.stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.stat-card{padding:18px}
.stat-card strong{display:block;color:var(--green);font-size:1.2rem;margin-bottom:6px}
.stat-card span{color:var(--muted);font-size:.95rem}

.hero-bg{
  position:absolute;border-radius:50%;filter:blur(10px);opacity:.5;pointer-events:none
}
.hero-bg-1{width:420px;height:420px;background:#d8e7cf;right:-120px;top:-90px}
.hero-bg-2{width:360px;height:360px;background:#f1d8a3;left:-100px;bottom:-140px}

.section{padding:92px 0}
.section-light{background:#fcfbf8}
.section-accent{background:linear-gradient(180deg,#f2ecdf 0%, #f8f5ee 100%)}
.split{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:40px;align-items:start
}
h2{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.15;margin:0 0 14px
}
.section-head{max-width:780px;margin-bottom:32px}
.section-head.center,.center{text-align:center;margin-left:auto;margin-right:auto}
.section-head p,.split p,.contact-panel p{color:var(--muted)}
.narrow{max-width:760px}

.cards.four{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px
}
.info-card{
  padding:24px;min-height:220px;
}
.info-card h3,.program-card h3,.contact-cta h3{margin:0 0 10px;font-size:1.15rem}
.info-card p,.program-card p,.timeline-item p{color:var(--muted);margin:0}

.program-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px
}
.program-card{padding:24px;min-height:190px}

.timeline{
  display:grid;gap:18px;max-width:980px;margin:0 auto
}
.timeline-item{
  display:grid;grid-template-columns:80px 1fr;gap:22px;align-items:start;
  padding:24px;border-radius:20px;background:var(--white);border:1px solid var(--line)
}
.timeline-item span{
  width:64px;height:64px;border-radius:18px;background:var(--green);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.15rem
}
.timeline-item h3{margin:0 0 8px}

.quote-block{
  background:linear-gradient(135deg,#1f5a44 0%, #244f3f 100%);
  color:#fff;border-radius:28px;padding:40px;box-shadow:var(--shadow)
}
.quote{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(1.4rem,2vw,2rem);
  line-height:1.45;margin:0;text-align:center
}

.contact-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start
}
.contact-panel{padding-right:14px}
.contact-list{display:grid;gap:18px;margin-top:24px}
.contact-item{
  padding:20px 22px;background:var(--white);border:1px solid var(--line);border-radius:20px
}
.contact-item h4{margin:0 0 8px;color:var(--green)}
.contact-item p{margin:0}
.contact-item a{color:var(--green);font-weight:600}
.map-card{overflow:hidden}
.map-card iframe{width:100%;height:420px;border:0;display:block}
.contact-cta{padding:24px;margin-top:18px}

.site-footer{
  background:#15392c;color:#e7f1eb;padding:24px 0;margin-top:20px
}
.footer-wrap{display:flex;justify-content:space-between;gap:18px;align-items:center}
.footer-wrap p{margin:0;color:#d5dfd9}
.footer-wrap strong{font-size:1.1rem}

@media (max-width: 1080px){
  .cards.four{grid-template-columns:repeat(2,1fr)}
  .program-grid{grid-template-columns:repeat(2,1fr)}
  .hero-grid,.split,.contact-grid{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .menu{display:none}
  .nav{min-height:76px}
  .hero{padding-top:48px}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .stats-grid,.cards.four,.program-grid{grid-template-columns:1fr}
  .timeline-item{grid-template-columns:1fr}
  .timeline-item span{width:56px;height:56px}
  .quote-block{padding:28px}
  .footer-wrap{flex-direction:column;align-items:flex-start}
}
