@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a3a1a;
  --green-mid:    #224d22;
  --green-accent: #5cb85c;
  --green-hover:  #4aa94a;
  --green-light:  #d4edda;
  --green-muted:  #8fc98f;
  --border:       #2e5c2e;
  --white:        #ffffff;
}

/* ── Base ── */
body {
  font-family: 'Lato', sans-serif;
  background: var(--green-dark);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
header {
  background: var(--green-accent);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 52px;
  gap: 12px;
}

header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 18.4px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ── Nav ── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Services dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #111111;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 7px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 0.15s;
}
.dropdown-toggle:hover { background: #f5f5f5; color: #111111; }
.dropdown-toggle:focus, .dropdown-toggle:active { color: #111111; outline: none; }
.dropdown.open .dropdown-toggle { color: #111111; }

.dropdown-toggle svg {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  align-self: center;
  transition: transform 0.2s;
}
.dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  min-width: 180px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
}
.dropdown.open .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #111111;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  border-bottom: 1px solid #eeeeee;
  transition: background 0.12s, color 0.12s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #000000;
}

/* Header call button */
.btn-header-call {
  background: var(--white);
  color: #111111;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.75rem, 2.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 7px 14px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.btn-header-call:hover { background: var(--green-light); color: #111111; }
.btn-header-call:focus, .btn-header-call:active { color: #111111; outline: none; }

/* ── Hero ── */
.hero {
  background: var(--green-mid);
  padding: clamp(48px, 9vw, 80px) clamp(24px, 6vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(92,184,92,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(92,184,92,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  position: relative;
}

.hero h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  font-weight: 300;
  color: var(--green-light);
  line-height: 1.9;
  margin-bottom: 2px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero p strong {
  color: var(--green-accent);
  font-weight: 700;
}

.hero .qa {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(0,0,0,0.2);
  border-left: 3px solid var(--green-accent);
  border-radius: 2px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.84rem, 2vw, 0.92rem);
  color: var(--green-muted);
  font-style: italic;
  line-height: 1.6;
  text-align: left;
  position: relative;
}

.hero .qa .answer {
  display: block;
  color: var(--green-light);
  font-style: normal;
  font-weight: 400;
  margin-top: 3px;
  margin-bottom: 14px;
}

/* ── Main ── */
main {
  flex: 1;
  padding: clamp(36px, 5vw, 60px) clamp(20px, 5vw, 28px);
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

section {
  margin-bottom: 48px;
}

section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

section h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Buttons ── */
.btn {
  display: block;
  width: 100%;
  padding: clamp(14px, 3.2vw, 18px) 20px;
  text-align: center;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.88rem, 2.4vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--green-accent);
  color: var(--white);
  border: 2px solid var(--green-accent);
  box-shadow: 0 4px 14px rgba(92,184,92,0.35);
}
.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  box-shadow: 0 4px 18px rgba(92,184,92,0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.05);
  color: var(--green-light);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: rgba(92,184,92,0.12);
  border-color: var(--green-accent);
  color: var(--white);
}

/* ── Contact buttons ── */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.services-grid .btn {
  font-size: clamp(0.8rem, 2.2vw, 0.88rem);
  padding: clamp(12px, 2.8vw, 15px) 10px;
}

/* ── Note ── */
.note {
  font-size: clamp(0.76rem, 1.9vw, 0.82rem);
  color: var(--green-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  font-style: italic;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 24px 20px;
  font-size: clamp(0.7rem, 1.8vw, 0.76rem);
  color: var(--green-muted);
  border-top: 1px solid var(--border);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 360px) {
  .services-grid { grid-template-columns: 1fr; }
}
