/* Base styles */
:root {
  --green-700: #0a5e2a;
  --green-600: #117a37;
  --green-100: #e9f5ee;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-200: #e2e8f0;
  --white: #ffffff;
  --radius-2xl: 1.25rem;
  --shadow-lg: 0 10px 25px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: var(--ink-900);
  line-height: 1.6;
  background: #f8fafc;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 .5rem;
}

h1 { font-size: clamp(2rem, 2.5vw + 1rem, 3rem); }
h2 { font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem); margin-bottom: .75rem; }
h3 { font-size: 1.125rem; }

p { margin: 0 0 1rem; color: var(--ink-700); }
.lead { font-size: 1.125rem; color: var(--ink-700); }

a { color: var(--green-700); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(255,255,255,.8);
  border-bottom: 1px solid var(--ink-200);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; }

.logo { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--ink-900); }
.logo-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 12px; background: var(--green-700); color: var(--white); box-shadow: var(--shadow-lg);
  font-weight: 800;
}
.logo-text { letter-spacing: .5px; }

.nav-toggle { display: none; background: none; border: 0; padding: .25rem; }
.nav-toggle-bar { display: block; width: 28px; height: 3px; background: var(--ink-900); margin: 5px 0; border-radius: 99px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.nav-menu { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.nav-menu a { display: inline-block; padding: .5rem .75rem; border-radius: .75rem; }
.nav-menu a:hover { background: var(--green-100); text-decoration: none; }

/* Hero */
.hero {
  position: relative; overflow: hidden; min-height: 62vh; display: grid; align-items: center;
  background: linear-gradient(180deg, rgba(10,94,42,.08), rgba(10,94,42,.02));
}
.hero-media {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(10,94,42,.55), rgba(10,94,42,.25)),
    url('https://images.pexels.com/photos/248159/pexels-photo-248159.jpeg?auto=compress&cs=tinysrgb&w=2000');
  background-size: cover; background-position: center;
  filter: saturate(110%);
}
.hero-content { padding: 5rem 0; color: var(--white); }
.hero h1 { color: var(--white); text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.hero .lead { color: #f0fdf4; max-width: 60ch; }
.disclaimer-banner { margin-top: 1rem; font-size: .9rem; opacity: .95; }

.hero-ctas { display: flex; gap: .75rem; margin-top: 1.25rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .65rem 1rem; border-radius: var(--radius-2xl);
  border: 1px solid transparent; font-weight: 600; cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green-700); color: var(--white); }
.btn-primary:hover { background: #0c6d31; }
.btn-ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.link { color: var(--green-700); font-weight: 600; }
.link:hover { text-decoration: underline; }

/* Sections */
.section { padding: 3.5rem 0; background: #fff; }
.section.alt { background: #f5faf7; }

.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1rem;
}
.card {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-2xl);
  padding: 1rem; box-shadow: var(--shadow-lg); transition: transform .12s ease;
}
.card:hover { transform: translateY(-2px); }
.card-icon { color: var(--green-700); }

.checklist { padding-left: 1.2rem; }
.checklist li { margin-bottom: .5rem; }

.grid.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.penalty-box {
  border: 1px dashed var(--ink-200); border-radius: 1rem; padding: 1rem; background: #fff;
}
.penalty-step { padding: .5rem 0; border-bottom: 1px solid var(--ink-200); }
.penalty-step:last-child { border-bottom: 0; }
.step-label { font-weight: 700; color: var(--ink-900); }
.step-desc { color: var(--ink-700); }

.contact-card {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-2xl); padding: 1rem; box-shadow: var(--shadow-lg);
}
.contact-media {
  min-height: 220px; border-radius: var(--radius-2xl);
  background-image:
    linear-gradient(135deg, rgba(17,122,55,.25), rgba(17,122,55,.05)),
    url('https://images.pexels.com/photos/1108099/pexels-photo-1108099.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover; background-position: center;
  border: 1px solid var(--ink-200);
}

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--ink-200); border-radius: 1rem; padding: .75rem 1rem; margin-bottom: .75rem; }
.faq-item summary { cursor: pointer; font-weight: 600; }
.faq-item[open] { box-shadow: var(--shadow-lg); }

/* Footer */
.site-footer { background: #0b3d1d; color: #e6f4ea; padding: 2rem 0; }
.site-footer a { color: #c7f0d3; }
.footer-inner { display: grid; gap: .75rem; }
.disclaimer { margin: 0; }
.footer-nav { display: flex; gap: 1rem; align-items: center; }
.footer-nav .link, .footer-nav a, .footer-nav button { color: #c7f0d3; background: none; border: 0; cursor: pointer; }

/* Cookie banner */
.cookie-banner {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  background: #0c4a2f; color: #eafff1; padding: 1rem 0; display: none;
  border-top: 3px solid #0a5e2a;
}
.cookie-inner { width: min(1100px, 92%); margin: 0 auto; display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: space-between; }
.cookie-actions { display: flex; gap: .5rem; }

/* Privacy modal */
.privacy-modal {
  width: min(720px, 92%);
  border: 0;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
}
.privacy-modal::backdrop { background: rgba(0,0,0,.4); }

/* Utilities */
.skip-link {
  position: absolute; left: -999px; top: auto;
}
.skip-link:focus { left: .5rem; top: .5rem; background: #fff; padding: .5rem .75rem; border-radius: .5rem; box-shadow: var(--shadow-lg); }

/* Responsive */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .grid.two { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-menu {
    position: absolute; right: 1rem; top: 62px;
    background: #ffffff; border: 1px solid var(--ink-200); border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: .5rem; display: none; flex-direction: column;
  }
  .nav-menu.show { display: flex; }
}
