:root {
  --deep: #4F6A55;
  --sage: #7D9982;
  --light: #D9E2D4;
  --pale: #EEF2EA;
  --cream: #F8F5EF;
  --clay: #C3A98B;
  --ink: #3B3A34;
  --muted: #6E6C62;
  --white: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
}
h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; font-weight: 500; line-height: 1.25; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
a { color: var(--deep); }
img { max-width: 100%; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 245, 239, .96);
  border-bottom: 1px solid #E7E2D7;
  backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.brand img { height: 34px; display: block; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; color: var(--ink); font-size: 15px; }
.nav a:hover { color: var(--deep); }
.nav a.active { color: var(--deep); font-weight: 500; }
.btn {
  display: inline-block; background: var(--deep); color: var(--white) !important;
  padding: 11px 24px; border-radius: 999px; text-decoration: none;
  font-size: 15px; font-weight: 500; border: 1.5px solid var(--deep);
  transition: background .2s;
}
.btn:hover { background: #3E5644; }
.btn.ghost { background: transparent; color: var(--deep) !important; }
.btn.ghost:hover { background: var(--pale); }
.btn.big { padding: 14px 32px; font-size: 16px; }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; }

/* Hero */
.hero { padding: 84px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; color: var(--sage); font-weight: 500; margin-bottom: 14px; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); margin: 20px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  background: var(--light); border-radius: 24px; min-height: 320px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-visual img { width: 62%; max-width: 300px; }

/* Sections */
.section { padding: 64px 0; }
.section.alt { background: var(--white); }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head p { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card {
  background: var(--white); border: 1px solid #EAE5DA; border-radius: 16px;
  padding: 26px 26px 22px;
}
.section.alt .card { background: var(--cream); }
.card h3 { color: var(--deep); }
.card p { font-size: 15px; color: var(--muted); margin-bottom: 0; }
.icon-dot {
  width: 44px; height: 44px; border-radius: 50%; background: var(--pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  color: var(--deep); font-size: 20px;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 18px 0 0; }
.pill-list li {
  background: var(--pale); color: var(--deep); border-radius: 999px;
  padding: 7px 18px; font-size: 14px;
}

/* Team */
.team-card { text-align: left; }
.avatar {
  width: 84px; height: 84px; border-radius: 50%; background: var(--deep);
  color: var(--cream); font-family: 'Lora', serif; font-size: 34px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.team-card .cred { font-size: 13.5px; color: var(--sage); font-weight: 500; letter-spacing: .5px; margin-bottom: 12px; }
.team-card p { margin-bottom: 12px; }
.tag-row { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.tag-row strong { color: var(--ink); font-weight: 500; }

/* CTA band */
.cta-band { background: var(--deep); padding: 60px 0; }
.cta-band .inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-band h2, .cta-band p { color: var(--cream); }
.cta-band .btn { background: var(--cream); color: var(--deep) !important; border-color: var(--cream); }
.cta-band .btn:hover { background: var(--white); }

/* FAQ */
.faq-item { border-bottom: 1px solid #E7E2D7; padding: 6px 0; }
.faq-item summary {
  cursor: pointer; font-family: 'Lora', serif; font-size: 1.1rem;
  padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--sage); font-size: 1.4rem; font-family: 'Poppins', sans-serif; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer { padding: 0 0 18px; color: var(--muted); font-size: 15.5px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start; }
.contact-list { list-style: none; }
.contact-list li { margin-bottom: 18px; padding-left: 34px; position: relative; }
.contact-list li::before { content: "•"; color: var(--sage); position: absolute; left: 10px; }
.map-frame { border: 0; width: 100%; height: 380px; border-radius: 16px; }
.notice {
  background: var(--pale); border-left: 4px solid var(--sage);
  padding: 16px 20px; border-radius: 0 12px 12px 0; font-size: 14.5px; color: var(--muted);
}

/* Footer */
.site-footer { background: #33402F; color: #D8DDD2; padding: 48px 0 28px; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.site-footer h4 { color: var(--cream); font-size: 1.05rem; margin-bottom: 12px; }
.site-footer a { color: #C8D2C0; }
.site-footer .brand-foot img { height: 30px; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid #4A5846; padding-top: 20px; text-align: center; font-size: 13px; color: #A9B4A0; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid, .grid-3, .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .hero-visual { min-height: 220px; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid #E7E2D7;
    flex-direction: column; padding: 18px 24px; align-items: flex-start;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
}
