:root {
  --green: #1b5e43;
  --green-dark: #124533;
  --green-light: #e8f2ed;
  --navy: #1d3557;
  --navy-dark: #142844;
  --ink: #1f2933;
  --gray: #5b6770;
  --gray-light: #f5f7f8;
  --white: #ffffff;
  --radius: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e5e9ec;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem; color: var(--green);
  text-decoration: none; letter-spacing: -0.01em;
}
.logo svg { flex-shrink: 0; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--gray); font-weight: 500; font-size: 0.95rem;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 600; }
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s ease;
  border: none; cursor: pointer; font-size: 1rem;
}
.btn:hover { background: var(--navy-dark); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green-light); }
.nav .btn { padding: 10px 18px; font-size: 0.92rem; }
.nav-links a.btn { color: var(--white); }
.nav-links a.btn:hover { color: var(--white); }

/* Hero (homepage) */
.hero {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--white) 100%);
  padding: 72px 0 64px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--white);
  border: 1px solid #d7e3dc;
  color: var(--green);
  font-size: 0.82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.9rem; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 18px;
}
h1 span { color: var(--green); }
.hero p.lead { font-size: 1.15rem; color: var(--gray); margin-bottom: 28px; max-width: 34em; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone { margin-top: 16px; color: var(--gray); font-size: 0.95rem; }
.hero-phone strong { color: var(--ink); }

.hero-art {
  background: var(--white);
  border: 1px solid #dfe7e2;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(18, 69, 51, 0.08);
}
.hero-art h3 { font-size: 1.05rem; margin-bottom: 14px; color: var(--green-dark); }
.check-list { list-style: none; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; color: var(--ink); font-size: 0.98rem;
}
.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--white) 100%);
  padding: 56px 0 44px;
}
.page-hero h1 { font-size: 2.3rem; margin-bottom: 10px; }
.page-hero p { color: var(--gray); font-size: 1.1rem; max-width: 44em; }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--gray-light); }
.section-head { text-align: center; max-width: 42em; margin: 0 auto 44px; }
.section-head h2 { font-size: 2rem; letter-spacing: -0.015em; margin-bottom: 10px; }
.section-head p { color: var(--gray); font-size: 1.05rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--white);
  border: 1px solid #e5e9ec;
  border-radius: var(--radius);
  padding: 26px 24px;
}
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 1.3rem;
}
.card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.card p { color: var(--gray); font-size: 0.94rem; }

/* Service detail rows (services page) */
.service-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  background: var(--white);
  border: 1px solid #e5e9ec;
  border-radius: var(--radius);
  padding: 26px 24px;
  margin-bottom: 16px;
}
.service-row .icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.service-row h3 { font-size: 1.15rem; margin-bottom: 6px; }
.service-row p { color: var(--gray); font-size: 0.97rem; margin-bottom: 8px; }
.service-row .takes { color: var(--ink); font-size: 0.93rem; }
.service-row .takes strong { color: var(--green-dark); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--white);
  border: 1px solid #e5e9ec;
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--gray); font-size: 0.94rem; }

/* Service area */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.area-wrap h2 { font-size: 2rem; letter-spacing: -0.015em; margin-bottom: 12px; }
.area-wrap > div > p { color: var(--gray); margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--white);
  border: 1px solid #d7e3dc;
  color: var(--green-dark);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
}

/* About / owner */
.owner-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.owner-photo {
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: var(--green-light);
  border: 1px solid #d7e3dc;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
}
.owner-photo .initials {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; letter-spacing: 0.02em;
}
.owner-photo .photo-note { color: var(--gray); font-size: 0.85rem; }
.owner-wrap h2 { font-size: 2rem; letter-spacing: -0.015em; margin-bottom: 14px; }
.owner-wrap .owner-text p { color: var(--ink); margin-bottom: 14px; font-size: 1.02rem; }
.owner-sign { color: var(--green-dark); font-weight: 600; margin-top: 6px; }
.owner-sign span { display: block; color: var(--gray); font-weight: 400; font-size: 0.9rem; }

/* Values (about page) */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details {
  background: var(--white);
  border: 1px solid #e5e9ec;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-list summary {
  font-weight: 600; cursor: pointer; font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--green); font-size: 1.3rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { color: var(--gray); padding-top: 10px; font-size: 0.97rem; }

/* Contact cards */
.team-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 24px; justify-content: center; }
.team-card {
  background: var(--white);
  border: 1px solid #e5e9ec;
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.team-card .avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 14px;
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { color: var(--gray); font-size: 0.92rem; margin-bottom: 14px; }
.team-card .phone {
  display: inline-block;
  color: var(--green-dark); font-weight: 700; font-size: 1.15rem;
  text-decoration: none; margin-bottom: 16px;
}
.team-card .phone:hover { text-decoration: underline; }
.team-card .btn { display: block; }

/* CTA band */
.cta-band {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { font-size: 2.1rem; letter-spacing: -0.015em; margin-bottom: 10px; }
.cta-band p { color: #cfe3da; margin-bottom: 26px; font-size: 1.08rem; }
.cta-band .btn { font-size: 1.08rem; padding: 15px 32px; }
.cta-band .sub { margin-top: 14px; font-size: 0.9rem; color: #a9c9bc; }

/* Footer */
footer {
  background: var(--green-dark);
  color: #b9d2c8;
  padding: 36px 0;
  font-size: 0.9rem;
}
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; }
footer a { color: var(--white); text-decoration: none; }
footer .foot-logo { font-weight: 700; color: var(--white); font-size: 1.02rem; }
.foot-nav { display: flex; flex-direction: column; gap: 4px; }

@media (max-width: 800px) {
  h1 { font-size: 2.15rem; }
  .page-hero h1 { font-size: 1.9rem; }
  .hero { padding: 48px 0 44px; }
  .hero-grid, .area-wrap { grid-template-columns: 1fr; gap: 32px; }
  .cards, .steps, .values { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  section { padding: 52px 0; }
  .owner-wrap { grid-template-columns: 1fr; gap: 28px; }
  .owner-photo { max-width: 260px; margin: 0 auto; }
  .team-cards { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
}
