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

:root {
  --green: #005534;
  --green-light: #006b42;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --white: #ffffff;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── HEADER ── */
header {
  background-color: var(--green);
  padding: 18px 40px 0;
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: flex-end;
}

.logo-overhang {
  display: block;
  height: 132px;
  width: 160px;
  object-fit: contain;
  transform: translateY(50%);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.22));
}

/* ── MAIN ── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 60px;
  text-align: center;
}

.icon-wrap {
  width: 72px;
  height: 72px;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.icon-wrap svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

main h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.divider {
  width: 56px;
  height: 3px;
  background-color: var(--green);
  margin: 0 auto 28px;
  border-radius: 2px;
}

main p {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 40px;
}

.badge {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 3px;
}

/* ── FOOTER ── */
footer {
  background-color: var(--green);
  color: rgba(255,255,255,0.85);
  padding: 24px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

footer .footer-name {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

footer .footer-contact a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

footer .footer-contact a:hover {
  color: var(--white);
}

footer .footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 600px) {
  header { padding: 16px 20px 0; min-height: 56px; }
  .logo-overhang { height: 132px; width: 160px; }
  main { padding: 110px 20px 48px; }
  footer { padding: 20px; flex-direction: column; align-items: flex-start; }
  footer .footer-copy { text-align: left; }
}
