:root {
  --accent: #BD613C;
  --accent-dark: #9a4f30;
  --green-base: #C9D46C;
  --green-dark: #5c6b2e;
  --green-mid: #C9D46C;
  --green-mid-deep: #a8b85a;
  --green-light: #f2f5dc;
  --green-pale: #f7f9ec;
  --cream: #faf8f4;
  --text: #2a3018;
  --text-muted: #4d5630;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(92, 107, 46, 0.14);
  --radius: 12px;
  --max: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::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);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--green-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; margin: 0 0 0.5rem; color: var(--green-dark); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 0;
}

.site-header {
  background: var(--green-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.logo-link img {
  width: 42px;
  height: 42px;
}

.nav-plain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.nav-plain a {
  color: var(--green-pale);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.35rem 0;
}

.nav-plain a:hover,
.nav-plain a[aria-current="page"] {
  color: var(--white);
  border-bottom: 2px solid var(--accent);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--green-light);
  color: var(--white);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.25rem;
}

.menu-toggle i {
  color: var(--accent);
  vertical-align: middle;
}

.disclaimer-bar {
  background: #3d2918;
  color: #f5ebe4;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  text-align: center;
}

.disclaimer-bar p {
  margin: 0;
}

.disclaimer-bar a {
  color: #f5c4a8;
  text-decoration: underline;
}

.trust-box {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  box-shadow: var(--shadow);
}

.trust-box h3 {
  margin-top: 0;
}

.trust-strip {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.trust-strip .grid-3 {
  margin-top: 0.75rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.hero-split__text {
  background: var(--green-mid);
  color: var(--text);
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-split__text h1 {
  color: var(--text);
}

.hero-split__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-split__media {
  position: relative;
  min-height: 280px;
}

.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.site-header .btn-outline {
  color: var(--white);
  border-color: var(--green-light);
}

.site-header .btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--green-mid);
  color: var(--white);
}

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--cream { background: var(--cream); color: var(--text); }
.section--pale { background: var(--green-pale); color: var(--text); }
.section--mid { background: var(--green-mid); color: var(--text); }
.section--mid h2,
.section--mid h3,
.section--mid h4 { color: var(--text); }
.section--mid p,
.section--mid li { color: var(--text-muted); }
.section--dark { background: var(--green-dark); color: var(--green-light); }
.section--dark h2 { color: var(--white); }
.section--accent { background: #f0e4dc; color: var(--text); }

.section-header {
  margin-bottom: 1.75rem;
}

.section-header .icon-wrap {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section--mid .icon-wrap {
  color: var(--accent);
}
.section--dark .icon-wrap {
  color: #f5c4a8;
}

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: var(--text);
}

.section--mid .card {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
}

.section--mid .card h3 {
  color: var(--text);
}

.section--dark .card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--green-light);
}

.section--dark .card h3 {
  color: var(--white);
}

.media-block {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.media-block--reverse {
  direction: rtl;
}

.media-block--reverse > * {
  direction: ltr;
}

.media-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.stat-pill {
  background: var(--white);
  color: var(--green-dark);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 4px solid var(--accent);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.number-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.number-list li {
  counter-increment: step;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  position: relative;
  color: var(--text);
}

.number-list li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #dce3b8;
  color: var(--text);
}

th {
  background: var(--green-dark);
  color: var(--white);
}

.faq-item {
  border-bottom: 1px solid #d4ddb0;
  padding: 1rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before {
  content: "+ ";
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::before {
  content: "− ";
}

.section--mid .faq-item {
  border-bottom-color: rgba(42, 48, 24, 0.2);
}

.section--mid .faq-item summary,
.section--mid .faq-item p {
  color: var(--text);
}

.section--mid .faq-item p {
  color: var(--text-muted);
}

.events-list {
  list-style: none;
  padding: 0;
}

.events-list li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.event-date {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.page-hero {
  background: var(--green-mid);
  color: var(--text);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.page-hero h1 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 42rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.contact-info a {
  color: var(--accent);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--green-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid #c5d4a0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.checkbox-label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
}

.site-footer {
  background: var(--green-dark);
  color: var(--green-light);
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 1.5rem;
}

.site-footer a {
  color: #f5c4a8;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

.compliance-note {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.site-footer .compliance-note a {
  color: #f5c4a8;
}

.content-notice {
  font-size: 0.9rem;
  background: var(--white);
  border: 1px solid #dce3b8;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.policy-content {
  max-width: 720px;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
}

.policy-content li {
  margin-bottom: 0.35rem;
}

.success-box {
  text-align: center;
  padding: 4rem 1rem;
}

.success-box .icon-wrap {
  font-size: 4rem;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cookie-actions .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.cookie-modal {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-modal.is-open {
  display: block;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.toggle-row input[type="checkbox"]:disabled {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .hero-split,
  .media-block,
  .grid-2,
  .grid-3,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .media-block--reverse {
    direction: ltr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 85vw);
    height: 100vh;
    background: var(--green-dark);
    padding: 4rem 1.5rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .nav-wrap.is-open {
    right: 0;
  }

  .nav-plain {
    flex-direction: column;
    gap: 0;
  }

  .nav-plain a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.is-visible {
    display: block;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(100% - 1rem, var(--max));
  }

  .logo-link span {
    font-size: 0.75rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
  }
}
