:root {
  --green: #2f6b4f;
  --green-dark: #234f3b;
  --cream: #faf7f0;
  --ink: #1c2620;
  --muted: #5d6b63;
  --accent: #d98a3d;
  --line: #e4ded2;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(30, 50, 40, 0.10);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

a { color: var(--green); }

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; color: var(--green-dark); text-decoration: none; }
.brand .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.96rem; }
.nav-links a:hover { color: var(--green); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--green-dark); }

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20,38,28,0.55), rgba(20,38,28,0.65)),
    linear-gradient(135deg, #3a7a59, #234f3b);
  color: #fff;
  text-align: center;
  padding: 96px 20px 104px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 0 0 14px; line-height: 1.1; }
.hero p.lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); max-width: 720px; margin: 0 auto 30px; color: #eef3ef; }
.btn {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  padding: 13px 28px; border-radius: 999px; font-weight: 600; transition: transform .15s, background .2s;
}
.btn:hover { transform: translateY(-2px); background: #c87a2e; }
.btn.secondary { background: transparent; border: 2px solid #fff; margin-left: 10px; }

/* Sections */
section { padding: 72px 0; }
section h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: var(--green-dark); margin: 0 0 12px; }
.section-intro { color: var(--muted); max-width: 720px; margin-bottom: 40px; }

.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card .ico { font-size: 1.8rem; margin-bottom: 10px; }
.card h3 { margin: 0 0 8px; color: var(--green-dark); font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.97rem; }

.alt { background: #f1ede3; }

/* Facts strip */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.fact .num { font-size: 2.1rem; font-weight: 800; color: var(--accent); }
.fact .lbl { color: var(--muted); font-size: 0.92rem; }

/* Visiting list */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .k { font-weight: 700; color: var(--green-dark); min-width: 150px; }

/* FAQ */
details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; }
details summary { cursor: pointer; font-weight: 600; color: var(--green-dark); }
details p { color: var(--muted); margin: 10px 0 0; }

/* Footer */
.site-footer { background: var(--green-dark); color: #dfe8e2; padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; }
.site-footer a { color: #dfe8e2; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 36px; padding-top: 20px; font-size: 0.88rem; color: #aebcb4; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 20px 80px; }
.legal h1 { color: var(--green-dark); }
.legal h2 { color: var(--green-dark); margin-top: 34px; font-size: 1.35rem; }
.legal p, .legal li { color: #38453d; }
.legal .updated { color: var(--muted); font-size: 0.9rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal th, .legal td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; font-size: 0.93rem; }
.legal th { background: #f1ede3; }
.back { display: inline-block; margin-bottom: 20px; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: calc(100% - 36px); max-width: 880px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(20,40,30,0.22);
  padding: 22px 24px; z-index: 999;
  display: none; gap: 18px; align-items: center; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; flex: 1 1 360px; color: var(--muted); font-size: 0.94rem; }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner button {
  border: 0; border-radius: 999px; padding: 11px 22px; font-weight: 600; cursor: pointer; font-size: 0.92rem;
}
.btn-accept { background: var(--green); color: #fff; }
.btn-accept:hover { background: var(--green-dark); }
.btn-reject { background: #ece7db; color: var(--ink); }
.btn-reject:hover { background: #ddd6c6; }
.btn-link { background: transparent; color: var(--green); text-decoration: underline; padding: 11px 8px; }

@media (max-width: 860px) {
  .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: 18px 20px; border-bottom: 1px solid var(--line); gap: 14px; }
}
