
:root {
  --accent: #CFCE5D;
  --bg: #f7f9ef;
  --surface: #ffffff;
  --text: #1d2418;
  --muted: #47553f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { 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.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(73, 91, 54, 0.2);
}
.logo img { width: 88px; height: auto; display: block; }
.main-nav { display: flex; gap: 1rem; }
.main-nav a { color: var(--text); font-weight: 600; }
.main-nav a.active, .main-nav a:hover { color: #5d691f; }
.menu-toggle {
  display: none;
  border: 1px solid #66752a;
  background: transparent;
  color: #66752a;
  padding: 0.5rem;
  border-radius: 8px;
}
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
}
.overlay {
  width: min(900px, 92%);
  background: rgba(255, 255, 255, 0.84);
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid rgba(93, 105, 31, 0.35);
}
.overlay h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 1rem; }
.section {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.3rem;
  padding: 3rem min(5vw, 64px);
  align-items: center;
}
.section.contrast { background: var(--surface); }
.section img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(207, 206, 93, 0.25);
}
.text h2 { margin-top: 0; color: #5d691f; }
.text h3 { color: #5d691f; margin: 1.2rem 0 0.5rem; font-size: 1.05rem; }
.text i { margin-right: 0.4rem; }
.content-lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.steps-list,
.check-list,
.info-list {
  margin: 0.8rem 0 1rem;
  padding-left: 1.2rem;
}
.steps-list li,
.check-list li,
.info-list li {
  margin-bottom: 0.45rem;
}
.tip-box {
  background: rgba(207, 206, 93, 0.28);
  border-left: 4px solid #8a9428;
  padding: 0.9rem 1rem;
  border-radius: 0 10px 10px 0;
  margin: 1rem 0;
}
.tip-box strong { color: #5d691f; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1rem;
}
.tag {
  background: rgba(207, 206, 93, 0.35);
  border: 1px solid rgba(93, 105, 31, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.event-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}
.event-table th,
.event-table td {
  border: 1px solid rgba(93, 105, 31, 0.25);
  padding: 0.55rem 0.7rem;
  text-align: left;
}
.event-table th {
  background: rgba(207, 206, 93, 0.3);
  color: #5d691f;
}
.section.cards .text,
.section.faqs .section-head {
  grid-column: 1 / -1;
}
.section.faqs .section-head { margin-bottom: 0.5rem; }
.cards, .faqs { display: block; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.card-grid article {
  background: rgba(207, 206, 93, 0.22);
  border: 1px solid rgba(93, 105, 31, 0.25);
  border-radius: 12px;
  padding: 1rem;
}
details {
  background: rgba(207, 206, 93, 0.2);
  border: 1px solid rgba(93, 105, 31, 0.25);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #1a1f19;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  border: 0;
}
.contact-form { display: grid; gap: 0.9rem; }
.contact-form label { display: grid; gap: 0.35rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(93, 105, 31, 0.35);
  background: #ffffff;
  color: var(--text);
}
.check { display: flex !important; gap: 0.6rem; align-items: flex-start; }
.map iframe { width: 100%; min-height: 320px; border-radius: 14px; }
.contact-cta, .center { display: block; text-align: center; }
.site-footer {
  padding: 2rem min(5vw, 64px);
  border-top: 1px solid rgba(93, 105, 31, 0.2);
  text-align: center;
  background: #eef3de;
}
.disclaimer {
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #ffffff;
  border: 1px solid rgba(93, 105, 31, 0.35);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  z-index: 99;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.cookie-banner h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #5d691f;
}
.cookie-banner > p {
  margin: 0 0 0.9rem;
  color: var(--text);
  max-width: 72ch;
}
.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-actions button {
  border: 1px solid rgba(93, 105, 31, 0.45);
  padding: 0.6rem 0.95rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}
.cookie-btn-accept,
.cookie-actions button[data-cookie-action="accept"],
.cookie-actions button[data-cookie-save] {
  background: var(--accent);
  color: #1a1f19;
}
.cookie-btn-decline,
.cookie-actions button[data-cookie-action="decline"] {
  background: #ffffff;
  color: #1d2418;
  border-width: 2px;
}
.cookie-btn-settings,
.cookie-actions button[data-cookie-action="settings"] {
  background: #eef3de;
  color: #1d2418;
}
.footer-cookie-settings {
  background: transparent;
  border: 0;
  color: #5d691f;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.cookie-settings {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(93, 105, 31, 0.25);
  display: grid;
  gap: 0.55rem;
}
.cookie-settings label {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}
.cookie-legal {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.cookie-modal,
.cookie-modal-card {
  display: none !important;
}
@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: #ffffff;
    border-bottom: 1px solid rgba(93, 105, 31, 0.25);
    display: none;
    flex-direction: column;
    padding: 0.7rem 1.2rem 1rem;
  }
  .main-nav.open { display: flex; }
}
@media (max-width: 320px) {
  .overlay { padding: 1rem; }
  .overlay h1 { font-size: 1.4rem; }
  .site-header { padding: 0.6rem 0.7rem; }
  .logo img { width: 72px; }
  .section { padding: 2rem 0.7rem; }
  .cookie-actions button { width: 100%; }
  .cookie-settings label {
    align-items: flex-start;
  }
}
