:root {
  --accent: #87c159;
  --accent-dark: #6a9d45;
  --dark: #1a2e1a;
  --dark-soft: #243824;
  --light: #f4f8f0;
  --white: #ffffff;
  --text: #1a2e1a;
  --text-muted: #3d5238;
  --text-on-dark: #f4f8f0;
  --border: #c5d9b8;
  --shadow: 0 4px 20px rgba(26, 46, 26, 0.12);
  --radius: 8px;
  --max-width: 1140px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--dark-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dark);
}

h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--dark);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--dark);
}

.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--accent);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-link img {
  width: 44px;
  height: auto;
}

.nav-toggle {
  display: none;
  background: var(--dark);
  color: var(--text-on-dark);
  border: none;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
}

.nav-toggle .ph {
  color: var(--accent);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

.disclaimer-bar {
  background: var(--dark);
  color: var(--text-on-dark);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  text-align: center;
}

.disclaimer-bar p {
  margin: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 46, 26, 0.75) 0%, rgba(26, 46, 26, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem;
  max-width: 820px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin: 0 0 1rem;
}

.hero p {
  color: var(--text-on-dark);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin: 0 0 1.5rem;
}

.hero .ph {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--dark);
  color: var(--text-on-dark);
}

.section-alt h2,
.section-alt > .container > .section-title h2,
.section-alt .card h3 {
  color: var(--white);
}

.section-alt > .container > p {
  color: var(--text-on-dark);
}

.section-alt > .container > p a {
  color: var(--accent);
  font-weight: 600;
}

.section-alt > .container > p a:hover {
  color: var(--white);
}

.section-accent {
  background: var(--accent);
  color: var(--dark);
}

.section-accent h2,
.section-accent h3 {
  color: var(--dark);
}

.section-accent a:not(.btn) {
  color: var(--dark-soft);
  font-weight: 600;
}

.section-accent .btn:hover {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
}

.section-light {
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--dark);
}

.section-title .ph {
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.section-alt .section-title .ph {
  color: var(--accent);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.section-alt .card {
  background: var(--dark-soft);
  color: var(--text-on-dark);
  border-left-color: var(--accent);
}

.section-alt .card h3 {
  color: var(--white);
}

.card .ph {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.image-block--animated {
  max-width: min(100%, 380px);
  margin: 2rem auto 0;
}

.image-block--animated img {
  animation: calm-breathe 5s ease-in-out infinite;
  will-change: transform;
}

@keyframes calm-breathe {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.04) translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-block--animated img {
    animation: none;
  }
}

.infographic {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}

.infographic-col {
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.infographic-noise {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--dark-soft);
}

.infographic-noise h3,
.infographic-noise .check-list li {
  color: var(--dark);
}

.infographic-noise .ph {
  color: var(--dark-soft);
}

.infographic-life {
  background: var(--accent);
  color: var(--dark);
}

.infographic-life h3,
.infographic-life .check-list li {
  color: var(--dark);
}

.infographic-life .ph {
  color: var(--dark);
}

.infographic-vs {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-box {
  flex: 1 1 140px;
  background: var(--dark-soft);
  color: var(--text-on-dark);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--accent);
}

.timeline li {
  padding: 0 0 1.5rem 1.5rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.section-alt .numbered-steps li {
  background: var(--dark-soft);
  color: var(--text-on-dark);
  border: 1px solid rgba(135, 193, 89, 0.35);
  box-shadow: none;
}

.section-alt .numbered-steps li strong {
  color: var(--white);
}

.section-accent .numbered-steps li {
  background: var(--white);
  color: var(--dark);
}

.section-accent .numbered-steps li strong {
  color: var(--dark);
}

.section-light .numbered-steps li {
  background: var(--white);
  color: var(--text);
}

.section-light .numbered-steps li strong {
  color: var(--dark);
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--light);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item button .ph {
  color: var(--accent);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.section-alt .faq-item {
  background: var(--dark-soft);
  border-color: rgba(135, 193, 89, 0.4);
  color: var(--text-on-dark);
}

.section-alt .faq-item button {
  background: var(--dark);
  color: var(--text-on-dark);
}

.section-alt .faq-item button:hover {
  background: var(--dark-soft);
}

.section-alt .faq-answer,
.section-alt .faq-answer p {
  color: var(--text-on-dark);
}

.section-light .faq-item {
  background: var(--white);
  color: var(--text);
}

.section-light .faq-item button {
  background: var(--light);
  color: var(--dark);
}

.section-light .faq-answer,
.section-light .faq-answer p {
  color: var(--text);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.events-table th {
  background: var(--dark);
  color: var(--text-on-dark);
}

.events-table tr:nth-child(even) td {
  background: var(--light);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(135, 193, 89, 0.15);
  font-style: italic;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.tag-list li {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.site-footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: var(--accent);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-top: 0;
}

.footer-bottom {
  border-top: 1px solid var(--dark-soft);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.form-notice {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--light);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.35rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.policy-page {
  padding: 3rem 0 4rem;
}

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-page h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.policy-page ul {
  padding-left: 1.25rem;
}

.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.policy-page th,
.policy-page td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.policy-page th {
  background: var(--dark);
  color: var(--text-on-dark);
}

.trust-panel {
  background: var(--light);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  color: var(--text);
}

.trust-panel h3 {
  margin-top: 0;
  color: var(--dark);
}

.trust-panel h3:not(:first-child) {
  margin-top: 1.25rem;
}

.trust-panel p,
.trust-panel li,
.trust-panel strong {
  color: var(--text);
}

.trust-panel a {
  color: var(--dark-soft);
  font-weight: 600;
}

.section-alt .trust-panel {
  background: var(--white);
  color: var(--text);
  border-color: var(--accent);
}

.section-alt .trust-panel h3 {
  color: var(--dark);
}

.section-alt .trust-panel p,
.section-alt .trust-panel li,
.section-alt .trust-panel strong {
  color: var(--text);
}

.section-alt .trust-panel a {
  color: var(--dark-soft);
}

.section-light .trust-panel .check-list li::before {
  color: var(--accent);
}

.source-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.source-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.source-list li:last-child {
  border-bottom: none;
}

.disclaimer-bar a {
  color: var(--accent);
  text-underline-offset: 2px;
}

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
  background: var(--light);
}

.thank-you-page h1,
.thank-you-page p {
  color: var(--text);
}

.thank-you-page .btn + .btn {
  margin-left: 0.5rem;
}

.thank-you-page .ph {
  font-size: 4rem;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--white);
  color: var(--text);
  padding: 1.25rem;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -4px 24px rgba(26, 46, 26, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p,
.cookie-banner label,
.cookie-banner em {
  color: var(--text);
}

.cookie-banner a {
  color: var(--dark-soft);
  font-weight: 600;
}

.cookie-banner a:hover {
  color: var(--accent-dark);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-banner .btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.cookie-banner .btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-settings.is-visible {
  display: block;
}

.cookie-banner .toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-banner .toggle-row label {
  flex: 1;
  padding-right: 1rem;
  color: var(--text);
}

.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #555;
  border-radius: 26px;
  cursor: pointer;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.2s;
}

.toggle input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-hero {
  min-height: 45vh;
  min-height: 45dvh;
}

.inner-intro {
  padding: 2.5rem 0;
  background: var(--white);
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .infographic {
    grid-template-columns: 1fr;
  }

  .infographic-vs {
    justify-content: center;
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--accent);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 0.9375rem;
  }

  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
  }
}
