:root {
  --accent: #A8C33B;
  --accent-dark: #7a9429;
  --dark: #1a2e1a;
  --dark-soft: #243824;
  --light: #f5f7f0;
  --light-alt: #e8edd8;
  --text-dark: #1a2e1a;
  --text-light: #f5f7f0;
  --text-muted: #4a5c4a;
  --shadow: 0 4px 24px rgba(26, 46, 26, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: var(--dark);
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  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;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
}

.nav-toggle .material-icons {
  font-size: 1.75rem;
  color: var(--accent);
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.disclaimer-bar {
  background: var(--dark-soft);
  color: var(--light-alt);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(168, 195, 59, 0.3);
}

.disclaimer-bar p {
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.45;
}

.compliance-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.compliance-notice .material-icons {
  color: var(--accent-dark);
  font-size: 2rem;
  flex-shrink: 0;
}

.compliance-notice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.compliance-notice p {
  margin: 0;
  font-size: 0.95rem;
}

.compliance-notice a {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer-legal-note {
  font-size: 0.8rem;
  color: var(--light-alt);
  margin-top: 0.5rem;
  opacity: 0.9;
}

.footer-contact {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  line-height: 1.6;
  color: var(--light-alt);
}

.footer-contact a {
  color: var(--accent);
}

.footer-business-line {
  font-size: 0.85rem;
  color: var(--light-alt);
  margin-bottom: 0.5rem;
}

.hero-carousel {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  min-height: 420px;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: flex-end;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 46, 26, 0.92) 0%, rgba(26, 46, 26, 0.4) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.25rem 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero-content p {
  color: var(--light-alt);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.hero-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
}

.section-accent .btn-outline {
  border-color: var(--dark);
  color: var(--dark);
}

.section-accent .btn-outline:hover {
  background: var(--dark);
  color: var(--text-light);
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

 

.section-dark .text-muted {
  color: var(--light-alt);
}

.section-accent {
  background: var(--accent);
  color: var(--dark);
}

.section-light-alt {
  background: var(--light-alt);
  color: var(--text-dark);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-header h2 .material-icons {
  color: var(--accent);
  font-size: 1.75rem;
}

.section-dark .section-header h2 .material-icons {
  color: var(--accent);
}

.section-accent .section-header h2 .material-icons {
  color: var(--dark);
}

.section-intro {
  font-size: 1.05rem;
  max-width: 720px;
  color: var(--text-muted);
}

.section-dark .section-intro {
  color: var(--light-alt);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.section-dark .card {
  background: var(--dark-soft);
  color: var(--text-light);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.content-block p {
  margin-bottom: 1rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(168, 195, 59, 0.12);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.section-dark .feature-item {
  background: rgba(168, 195, 59, 0.08);
}

.feature-item .material-icons {

  flex-shrink: 0;
}

.numbered-list {
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--accent);
}

.faq-list details {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-dark .faq-list details {
  background: var(--dark-soft);
}

.faq-list summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.section-dark .faq-list summary {
  color: var(--text-light);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list .faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

.section-dark .faq-list .faq-answer {
  color: var(--light-alt);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-alt);
  color: var(--text-dark);
}

.events-table th {
  background: var(--dark);
  color: var(--text-light);
}

.events-table tr:last-child td {
  border-bottom: none;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.safety-card {
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--accent);
  color: var(--text-dark);
}

.safety-card .material-icons {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background: var(--dark);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.section-accent .tag {
  background: var(--dark);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  background: rgba(168, 195, 59, 0.1);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 1.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-info-item .material-icons {
  color: var(--accent);
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--light-alt);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--dark);
  color: var(--light-alt);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--light-alt);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(168, 195, 59, 0.25);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 2000;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--light-alt);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-alt);
}

.cookie-option label {
  flex: 1;
  font-size: 0.9rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--dark);
  color: var(--text-light);
  padding: 3rem 0;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--light-alt);
  max-width: 640px;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.breadcrumb a {
  color: var(--accent);
}

.legal-content {
  padding: 3rem 0;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--dark);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content code {
  background: var(--light-alt);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--text-dark);
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.success-box {
  max-width: 520px;
}

.success-box .material-icons {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.columns-asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.icon-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}

.icon-list .material-icons {
  color: var(--accent);
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .contact-grid,
  .footer-grid,
  .columns-asymmetric,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    max-height: 400px;
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(168, 195, 59, 0.2);
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .hero-carousel,
  .hero-slides,
  .hero-slide {
    min-height: 320px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .events-table {
    font-size: 0.85rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.65rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .logo-link img {
    height: 36px;
  }

  .header-inner {
    min-height: 60px;
  }

  .main-nav {
    top: 60px;
  }

  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
}
