:root {
  --accent: #EDD600;
  --accent-dark: #c4b000;
  --green-900: #0f2419;
  --green-800: #1a3d2e;
  --green-700: #2d5a45;
  --green-500: #3d7a5c;
  --green-100: #dcedc8;
  --green-50: #f1f8e9;
  --cream: #f7faf5;
  --text-on-dark: #f5f7f2;
  --text-on-light: #1a2e24;
  --text-muted: #4a6356;
  --shadow: 0 8px 32px rgba(15, 36, 25, 0.18);
  --radius: 12px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--cream);
  min-width: 320px;
}

body:has(#cookie-banner.is-visible) {
  padding-bottom: 7rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-700);
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--green-800);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.trust-strip {
  background: var(--green-900);
  color: #c8e6c9;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid var(--accent);
}

.trust-strip a {
  color: var(--accent);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 61, 46, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--accent);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: var(--green-900);
  border-color: var(--accent-dark);
}

.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--green-900);
}

.btn--outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--green-900);
}

.btn--dark {
  background: var(--green-800);
  color: var(--text-on-dark);
  border-color: var(--green-500);
}

.btn--dark:hover {
  background: var(--green-700);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--text-on-dark);
  background: var(--green-800);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 36, 25, 0.92) 0%, rgba(26, 61, 46, 0.88) 45%, rgba(45, 90, 69, 0.75) 100%),
    url("../image/picture8.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero__content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  color: var(--text-on-dark);
}

.hero__content .lead {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  color: var(--green-100);
}

.hero__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--accent);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__signup {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 36, 25, 0.65);
  border-radius: var(--radius);
  border: 1px solid var(--green-500);
  max-width: 420px;
}

.hero__signup label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.hero__signup .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__signup input[type="email"] {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 2px solid var(--green-100);
  font: inherit;
  background: var(--cream);
  color: var(--text-on-light);
}

.hero__signup .btn {
  flex: 0 0 auto;
}

.page-hero {
  background: var(--green-700);
  color: var(--text-on-dark);
  padding: 2.5rem 0;
  border-bottom: 4px solid var(--accent);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
}

.page-hero p {
  margin: 0;
  max-width: 65ch;
  color: var(--green-100);
}

.section {
  padding: 3rem 0;
}

.section--dark {
  background: var(--green-800);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--text-on-dark);
}

.section--dark p,
.section--dark li {
  color: var(--green-100);
}

.section--dark .text-muted {
  color: #c5e1a5;
}

.section--alt {
  background: var(--green-50);
  color: var(--text-on-light);
}

.section--cream {
  background: var(--cream);
}

.section--accent-band {
  background: linear-gradient(90deg, var(--accent) 0%, #f9e651 100%);
  color: var(--green-900);
}

.section--accent-band h2 {
  color: var(--green-900);
}

.section--accent-band p {
  color: var(--green-800);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--green-800);
}

.section--dark h2 {
  color: var(--accent);
}

.prose {
  max-width: 70ch;
}

.prose p {
  margin: 0 0 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 2px solid var(--green-100);
  box-shadow: 0 4px 16px rgba(26, 61, 46, 0.08);
}

.section--dark .card {
  background: var(--green-900);
  border-color: var(--green-500);
  color: var(--text-on-dark);
}

.section--dark .card p,
.section--dark .card li {
  color: var(--green-100);
}

.card h3 {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--green-800);
}

.section--dark .card h3 {
  color: var(--accent);
}

.card .ri {
  font-size: 1.5rem;
  color: var(--accent-dark);
}

.section--dark .card .ri {
  color: var(--accent);
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.icon-list .ri {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--green-700);
  font-size: 1.35rem;
}

.section--dark .icon-list .ri {
  color: var(--accent);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--green-900);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.section--dark .steps li::before {
  background: var(--accent);
  color: var(--green-900);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(237, 214, 0, 0.12);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section--dark .quote-block {
  background: rgba(15, 36, 25, 0.5);
  border-left-color: var(--accent);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section--dark .tag {
  background: var(--green-700);
  color: var(--accent);
}

.disclaimer {
  font-size: 0.88rem;
  line-height: 1.55;
  padding: 1rem 1.25rem;
  background: var(--green-900);
  color: #c8e6c9;
  border-radius: var(--radius);
  border: 1px solid var(--green-500);
  margin-top: 2rem;
}

.disclaimer strong {
  color: var(--accent);
}

.site-footer {
  background: var(--green-900);
  color: var(--green-100);
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
  border-top: 4px solid var(--accent);
}

.site-footer a {
  color: var(--accent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--accent);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--green-700);
  font-size: 0.9rem;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--green-900);
  color: var(--text-on-dark);
  padding: 1rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  border-top: 3px solid var(--accent);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  max-width: 75ch;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings-panel {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--green-800);
  border-radius: var(--radius);
  border: 1px solid var(--green-500);
}

.cookie-settings-panel.is-open {
  display: block;
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--green-700);
}

.cookie-row:last-child {
  border-bottom: none;
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--green-700);
  border-radius: 26px;
  transition: 0.2s;
}

.switch-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--cream);
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .switch-slider {
  background: var(--accent);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .switch-slider {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-block {
  max-width: 560px;
}

.form-block label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--green-800);
}

.form-block input,
.form-block textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--green-100);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 1rem;
  background: #fff;
  color: var(--text-on-light);
}

.form-block textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.35rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--green-100);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.spotlight-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--accent);
}

.spotlight-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (min-width: 901px) {
  .split.split--flip > :first-child {
    order: 2;
  }

  .split.split--flip > :last-child {
    order: 1;
  }
}

table.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-top: 1rem;
}

.calendar-table th,
.calendar-table td {
  border: 1px solid var(--green-100);
  padding: 0.65rem;
  text-align: left;
  vertical-align: top;
}

.section--dark .calendar-table th,
.section--dark .calendar-table td {
  border-color: var(--green-500);
}

.calendar-table th {
  background: var(--green-100);
  color: var(--green-900);
}

.section--dark .calendar-table th {
  background: var(--green-700);
  color: var(--accent);
}

.faq-item {
  border-bottom: 1px solid var(--green-100);
  padding: 1rem 0;
}

.section--dark .faq-item {
  border-color: var(--green-500);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--green-800);
}

.section--dark .faq-item h3 {
  color: var(--accent);
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

.section--dark .faq-item p {
  color: var(--green-100);
}

.section--accent-band .faq-item {
  border-color: rgba(26, 46, 36, 0.25);
}

.section--accent-band .faq-item h3 {
  color: var(--green-900);
}

.section--accent-band .faq-item p {
  color: var(--green-800);
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  .main-nav a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--green-500);
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }

  .section {
    padding: 2.25rem 0;
  }

  .hero__grid {
    padding: 2rem 0 1.5rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}
