:root {
  --green: #5CB85C;
  --green-light: #e8f5e8;
  --green-dark: #3d8b3d;
  --gray-metal: #6b6b6b;
  --gray-dark: #3c3c3c;
  --gray-text: #4a4a4a;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --border: #e0e0e0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav-static {
  position: static;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.nav-logo { height: 42px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--gray-dark);
  font-size: .925rem; font-weight: 500;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green);
  transition: width .25s;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-back {
  font-size: .9rem; font-weight: 500; color: var(--gray-dark);
  display: flex; align-items: center; gap: .4rem;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--gray-dark);
  margin: 6px 0; transition: .3s;
}

/* ── HERO ── */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 120px 2rem 80px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(92,184,92,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(107,107,107,.04) 0%, transparent 50%),
    var(--white);
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-light); color: var(--green-dark);
  padding: .4rem 1rem; border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--gray-dark); line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--green); }
.hero p {
  font-size: 1.1rem; color: var(--gray-metal);
  max-width: 480px; margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .25s;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover {
  background: var(--green-dark); color: #fff;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(92,184,92,.3);
}
.btn-outline {
  background: transparent; color: var(--gray-dark);
  border: 1.5px solid var(--border); margin-left: .75rem;
}
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-graphic {
  width: 100%; max-width: 440px; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-light) 0%, rgba(92,184,92,.06) 100%);
  border-radius: 32px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-graphic::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(92,184,92,.04) 20px, rgba(92,184,92,.04) 21px
  );
}
.hero-icon { font-size: 6rem; opacity: .18; position: relative; z-index: 1; }
.stat-float {
  position: absolute; background: var(--white);
  padding: 1rem 1.25rem; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  font-size: .85rem;
}
.stat-float strong { display: block; font-size: 1.4rem; color: var(--gray-dark); }
.stat-float.s1 { top: 12%; right: -10%; }
.stat-float.s2 { bottom: 15%; left: -8%; }
.stat-float .green { color: var(--green); }

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--off-white); }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--green); margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gray-dark); margin-bottom: .75rem; line-height: 1.2;
}
.section-sub { color: var(--gray-metal); max-width: 560px; margin-bottom: 3rem; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; transition: all .3s;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(92,184,92,.08);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.1rem; color: var(--gray-dark); margin-bottom: .5rem; }
.service-card p { font-size: .92rem; color: var(--gray-metal); line-height: 1.6; }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image {
  background: linear-gradient(135deg, var(--green-light), rgba(107,107,107,.08));
  border-radius: 20px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; opacity: .2; position: relative; overflow: hidden;
}
.about-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--green), var(--gray-metal));
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--gray-dark); margin-bottom: 1rem; line-height: 1.2;
}
.about-text p { margin-bottom: 1rem; }
.about-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.fact {
  padding: 1rem; background: var(--off-white); border-radius: 10px; text-align: center;
}
.fact strong {
  display: block; font-size: 1.6rem; color: var(--green);
  font-family: 'Playfair Display', serif;
}
.fact span { font-size: .82rem; color: var(--gray-metal); }

/* ── CTA ── */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--gray-dark) 0%, #2a2a2a 100%);
  color: #fff; text-align: center;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .75rem;
}
.cta-section p {
  color: rgba(255,255,255,.65); margin-bottom: 2rem;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-section .btn-primary { font-size: 1rem; padding: 1rem 2.5rem; }

/* ── FOOTER ── */
.footer {
  background: var(--off-white); border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-logo { height: 36px; }
.footer-brand p {
  font-size: .88rem; color: var(--gray-metal); margin-top: .75rem; max-width: 320px;
}
.footer h4 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-dark); margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a {
  text-decoration: none; color: var(--gray-metal); font-size: .88rem; transition: color .2s;
}
.footer ul a:hover { color: var(--green); }
.footer-bottom {
  max-width: 1120px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--gray-metal);
}
.footer-bottom a {
  color: var(--gray-metal); text-decoration: none; margin-left: 1.5rem;
}
.footer-bottom a:hover { color: var(--green); }

.footer-mini {
  background: var(--off-white); border-top: 1px solid var(--border);
  padding: 1.5rem 2rem; text-align: center;
  font-size: .8rem; color: var(--gray-metal);
}
.footer-mini a { color: var(--gray-metal); margin: 0 .75rem; }
.footer-mini a:hover { color: var(--green); }

/* ── LEGAL PAGES ── */
.content {
  max-width: 760px; margin: 0 auto; padding: 4rem 2rem 6rem;
}
.content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gray-dark); margin-bottom: 2rem;
}
.content h2 { font-size: 1.1rem; color: var(--gray-dark); margin: 2rem 0 .5rem; }
.content h3 { font-size: 1rem; color: var(--gray-dark); margin: 1.5rem 0 .4rem; }
.content p, .content address, .content ul { margin-bottom: 1rem; }
.content address { font-style: normal; }
.content ul { padding-left: 1.5rem; }
.content li { margin-bottom: .3rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; }
  .hero-graphic { max-width: 280px; }
  .stat-float { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 280px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .footer-bottom a { margin-left: 0; margin-right: 1rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
  }
  .btn-outline { margin-left: 0; margin-top: .5rem; }
}
