:root {
  --accent: #DF695B;
  --accent-dark: #c4564a;
  --green: #2d5a3d;
  --green-light: #4a7c59;
  --bg: #f0f7f1;
  --surface: #ffffff;
  --surface-alt: #dceee0;
  --text: #142318;
  --muted: #3d5244;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--green); text-decoration: none; font-weight: 600; }
a:hover { color: var(--accent-dark); text-decoration: underline; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 2px solid rgba(45, 90, 61, 0.2);
}
.logo img { width: 47px; height: auto; display: block; }
.main-nav { display: flex; flex-wrap: wrap; gap: 0.9rem 1.1rem; }
.main-nav a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.main-nav a.active,
.main-nav a:hover { color: var(--accent-dark); }
.menu-toggle {
  display: none;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.4rem;
}
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 61, 42, 0.55), rgba(223, 105, 91, 0.25));
}
.overlay {
  position: relative;
  z-index: 1;
  width: min(920px, 92%);
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgba(45, 90, 61, 0.3);
  color: var(--text);
}
.overlay h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
  color: var(--green);
}
.overlay p { margin: 0 0 1.2rem; color: var(--muted); }
.section {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.5rem;
  padding: 3rem min(5vw, 64px);
  align-items: center;
}
.section.contrast { background: var(--surface-alt); }
.section.dark { background: var(--green); color: #f4faf5; }
.section.dark h2,
.section.dark h3,
.section.dark a { color: #fff; }
.section.dark p,
.section.dark li { color: #e8f5e9; }
.section.dark i { color: var(--accent); }
.section img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(45, 90, 61, 0.2);
}
.text h2 {
  margin-top: 0;
  color: var(--green);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.text h3 { color: var(--green-light); margin: 1rem 0 0.4rem; }
.text i.ph { color: var(--accent); margin-right: 0.35rem; vertical-align: -2px; }
.content-lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.steps-list,
.check-list,
.route-list,
.info-list {
  margin: 0.8rem 0 1rem;
  padding-left: 1.25rem;
}
.steps-list li,
.check-list li,
.route-list li,
.info-list li { margin-bottom: 0.5rem; }
.tip-box {
  background: rgba(223, 105, 91, 0.15);
  border-left: 4px solid var(--accent);
  padding: 0.9rem 1rem;
  border-radius: 0 10px 10px 0;
  margin: 1rem 0;
}
.tip-box strong { color: var(--accent-dark); }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1rem;
}
.tag {
  background: rgba(45, 90, 61, 0.12);
  border: 1px solid rgba(45, 90, 61, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}
.event-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}
.event-table th,
.event-table td {
  border: 1px solid rgba(45, 90, 61, 0.3);
  padding: 0.55rem 0.7rem;
  text-align: left;
}
.event-table th {
  background: rgba(45, 90, 61, 0.15);
  color: var(--green);
}
.section.cards,
.section.faqs,
.section.timeline { display: block; }
.section.cards .section-head,
.section.faqs .section-head,
.section.timeline .section-head {
  margin-bottom: 1rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.card-grid article {
  background: var(--surface);
  border: 2px solid rgba(45, 90, 61, 0.2);
  border-radius: 12px;
  padding: 1.1rem;
}
.card-grid article h3 { margin-top: 0; color: var(--green); }
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--accent);
}
.timeline-list li {
  padding: 0 0 1.2rem 1.2rem;
  position: relative;
}
.timeline-list li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--surface);
}
.split-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.split-blocks article {
  background: var(--surface);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 90, 61, 0.25);
}
details {
  background: var(--surface);
  border: 1px solid rgba(45, 90, 61, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
}
details summary { cursor: pointer; font-weight: 600; color: var(--green); }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
}
.contact-form { display: grid; gap: 0.9rem; }
.contact-form label { display: grid; gap: 0.35rem; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(45, 90, 61, 0.4);
  background: #fff;
  color: var(--text);
  font: inherit;
}
.check {
  display: flex !important;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400;
}
.map iframe {
  width: 100%;
  min-height: 320px;
  border-radius: 14px;
  border: 0;
}
.center { display: block; text-align: center; }
.contact-cta {
  display: block;
  text-align: center;
  grid-template-columns: 1fr;
}
.contact-cta .text { max-width: 720px; margin: 0 auto; }
.policy-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem min(5vw, 32px) 4rem;
}
.policy-page h1 { color: var(--green); }
.policy-page h2 {
  color: var(--green-light);
  margin-top: 2rem;
  font-size: 1.2rem;
}
.success-box {
  text-align: center;
  padding: 4rem min(5vw, 32px);
  max-width: 600px;
  margin: 0 auto;
}
.success-box i { font-size: 3rem; color: var(--accent); }
.site-footer {
  padding: 2rem min(5vw, 64px);
  border-top: 2px solid rgba(45, 90, 61, 0.2);
  text-align: center;
  background: #dceee0;
}
.disclaimer {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 35, 24, 0.45);
  z-index: 98;
}
.cookie-backdrop[hidden] {
  display: none;
}
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid rgba(45, 90, 61, 0.45);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  z-index: 99;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  color: var(--green);
}
.cookie-banner > p,
.cookie-banner-desc {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: stretch;
}
.cookie-actions-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}
.cookie-actions-secondary {
  margin-top: 0;
}
.cookie-actions button {
  border: 2px solid rgba(45, 90, 61, 0.45);
  padding: 0.65rem 0.95rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  min-height: 44px;
}
.cookie-btn-accept,
.cookie-actions button[data-cookie-action="accept"],
.cookie-actions-settings button[data-cookie-save],
.cookie-actions button[data-cookie-save] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-dark);
}
.cookie-btn-decline,
.cookie-actions button[data-cookie-action="decline"] {
  background: #fff;
  color: var(--green);
  border-color: var(--green);
}
.cookie-btn-decline:hover,
.cookie-actions button[data-cookie-action="decline"]:hover {
  background: var(--surface-alt);
}
.cookie-btn-settings,
.cookie-actions button[data-cookie-action="settings"] {
  background: var(--surface-alt);
  color: var(--text);
  width: 100%;
}
.footer-cookie-settings {
  background: transparent;
  border: 0;
  color: var(--green);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.cookie-settings {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(45, 90, 61, 0.25);
  display: grid;
  gap: 0.55rem;
}
.cookie-settings label {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-weight: 400;
}
.cookie-legal {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
@media (max-width: 920px) {
  .section { grid-template-columns: 1fr; }
  .section img { max-height: 300px; }
}
@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 2px solid rgba(45, 90, 61, 0.25);
    display: none;
    flex-direction: column;
    padding: 0.8rem 1.2rem 1rem;
  }
  .main-nav.open { display: flex; }
  .site-header { position: relative; flex-wrap: wrap; }
}
@media (max-width: 320px) {
  .overlay { padding: 1rem; }
  .overlay h1 { font-size: 1.35rem; }
  .site-header { padding: 0.55rem 0.65rem; }
  .logo img { width: 72px; }
  .section { padding: 1.75rem 0.65rem; }
  .cookie-actions-primary { grid-template-columns: 1fr; }
  .cookie-actions button { width: 100%; }
  .main-nav a { font-size: 0.95rem; }
  .btn { width: 100%; text-align: center; }
}
