:root {
  --bg: #f7fbf7;
  --surface: #ffffff;
  --surface-soft: #edf7ef;
  --ink: #10241d;
  --muted: #5f746b;
  --line: rgba(16, 36, 29, .12);
  --primary: #0f6f5b;
  --primary-dark: #064a3c;
  --accent: #f4bf55;
  --lake: #2e9ac8;
  --shadow: 0 24px 70px rgba(10, 58, 49, .14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 50;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 251, 247, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(247, 251, 247, .92); }
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--lake));
  color: white;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 10px 30px rgba(15, 111, 91, .28);
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: .98rem; }
.brand-text span { color: var(--muted); font-size: .78rem; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #30463d;
  font-weight: 650;
  font-size: .94rem;
}
.main-nav a:hover { background: rgba(15, 111, 91, .08); color: var(--primary-dark); }
.main-nav .nav-cta { background: var(--ink); color: white; padding-inline: 18px; }
.main-nav .nav-cta:hover { background: var(--primary-dark); color: white; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 999px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(46, 154, 200, .22), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .77rem;
  color: var(--primary);
}
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: -.05em; }
h1 { font-size: clamp(3.1rem, 7vw, 6.3rem); max-width: 9.6em; }
h2 { font-size: clamp(2.2rem, 4vw, 4.15rem); }
h3 { font-size: 1.25rem; letter-spacing: -.03em; }
.hero-lead { font-size: clamp(1.1rem, 1.7vw, 1.32rem); max-width: 660px; color: var(--muted); margin: 24px 0 0; }
.hero-actions, .mini-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 14px 28px rgba(15, 111, 91, .25); }
.btn-secondary { background: white; border-color: var(--line); color: var(--ink); }
.btn-light { background: white; color: var(--primary-dark); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: white; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 600px; margin: 42px 0 0; }
.hero-stats div { background: rgba(255,255,255,.74); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px; }
.hero-stats dt { font-weight: 850; font-size: 1.45rem; }
.hero-stats dd { margin: 0; color: var(--muted); font-size: .9rem; }

.hero-card { position: relative; min-height: 620px; }
.lake-visual {
  position: absolute;
  inset: 16px 0 0;
  border-radius: 46px;
  overflow: hidden;
  background: linear-gradient(180deg, #cceff2 0%, #e9f7db 50%, #cfe6ba 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
}
.sun { position: absolute; width: 94px; height: 94px; top: 58px; right: 78px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 26px rgba(244,191,85,.19); }
.hill { position: absolute; bottom: 210px; width: 80%; height: 250px; border-radius: 50% 50% 0 0; opacity: .9; }
.hill-one { left: -22%; background: #7fbf83; }
.hill-two { right: -22%; background: #5aaa77; bottom: 190px; }
.lake { position: absolute; left: 8%; right: 8%; bottom: 96px; height: 250px; border-radius: 55% 45% 48% 52%; background: linear-gradient(135deg, #167db5, #63c9de); box-shadow: inset 0 20px 40px rgba(255,255,255,.25); }
.path { position: absolute; left: -12%; right: 10%; bottom: 56px; height: 72px; transform: rotate(-5deg); border-radius: 999px; background: rgba(244, 191, 85, .56); }
.ball { position: absolute; width: 54px; height: 54px; left: 18%; bottom: 310px; border-radius: 50%; background: white; box-shadow: inset 16px -8px 0 rgba(15,111,91,.22), 0 14px 28px rgba(0,0,0,.1); }
.floating-card {
  position: absolute;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 18px 50px rgba(16, 36, 29, .16);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 16px 18px;
  display: grid;
  gap: 2px;
  max-width: 260px;
}
.floating-card span { color: var(--muted); font-size: .9rem; }
.card-weather { top: 74px; left: -20px; }
.card-access { right: -10px; bottom: 84px; }

.section { padding: 96px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: radial-gradient(circle at 10% 15%, rgba(46,154,200,.28), transparent 28%), linear-gradient(135deg, #0d2d25, #10241d); color: white; }
.section-dark .eyebrow { color: #88e4cf; }
.section-dark p { color: rgba(255,255,255,.74); }
.split-grid, .visit-grid, .price-layout, .map-grid, .contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 44px; align-items: center; }
.section-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.section-dark .section-copy p:not(.eyebrow) { color: rgba(255,255,255,.75); }
.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  background: rgba(255,255,255,.74);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-list article, .visit-cards article, .price-card, .contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(16,36,29,.06);
}
.feature-list article { min-height: 230px; }
.feature-list .icon { font-size: 2rem; display: inline-block; margin-bottom: 24px; }
.feature-list p, .visit-cards p { color: var(--muted); margin-bottom: 0; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.sport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sport-grid a {
  min-height: 110px;
  display: flex;
  align-items: end;
  border-radius: var(--radius-lg);
  padding: 20px;
  background: linear-gradient(135deg, white, #eef8f5);
  border: 1px solid var(--line);
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(16,36,29,.06);
}
.sport-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.visit-grid { grid-template-columns: .86fr 1.14fr; }
.visit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.visit-cards article { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.13); box-shadow: none; }
.visit-cards span { color: #88e4cf; font-weight: 900; }
.visit-cards h3 { margin-top: 34px; }
.price-layout { grid-template-columns: .72fr 1fr; align-items: start; }
.price-card-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.price-card-head span { color: var(--muted); font-weight: 700; white-space: nowrap; }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li { display: flex; justify-content: space-between; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.price-list li:last-child { border-bottom: 0; }
.price-list span { color: var(--muted); }
.price-list strong { font-size: 1.08rem; }
.map-grid { grid-template-columns: 1fr .9fr; }
.map-card {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(255,255,255,.25) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(135deg, #bde2c7, #74b7cc);
  box-shadow: var(--shadow);
}
.map-line { position: absolute; left: -10%; top: 55%; width: 120%; height: 44px; transform: rotate(-12deg); background: rgba(255,255,255,.65); border-radius: 999px; }
.pin { position: absolute; left: 54%; top: 38%; width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: white; font-size: 2rem; box-shadow: 0 18px 38px rgba(15,111,91,.28); }
.map-label { position: absolute; left: 44%; top: 59%; background: white; border-radius: 18px; padding: 14px 16px; box-shadow: 0 18px 38px rgba(16,36,29,.15); font-weight: 800; }
.coordinate-box { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; padding: 12px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); max-width: 440px; }
.coordinate-box code { font-size: 1.05rem; font-weight: 800; flex: 1; }
.coordinate-box button { border: 0; border-radius: 999px; background: var(--ink); color: white; padding: 10px 16px; cursor: pointer; font-weight: 800; }
.small-note { font-size: .95rem !important; }
.contact-grid { align-items: start; }
.contact-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.contact-links a { padding: 9px 13px; background: white; border: 1px solid var(--line); border-radius: 999px; font-weight: 750; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; color: var(--ink); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfefc;
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(15,111,91,.18); border-color: var(--primary); }
.form-note { margin: 0; color: var(--muted); }
.site-footer { background: #071711; color: white; padding: 54px 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 34px; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.68); }
.footer-grid h2 { font-size: 1rem; letter-spacing: 0; margin-bottom: 12px; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .brand-text span { color: rgba(255,255,255,.55); }
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cookie-banner p { margin: 0; color: var(--muted); }
.cookie-banner.is-hidden { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    grid-template-columns: 1fr;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .hero-grid, .split-grid, .visit-grid, .price-layout, .map-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 520px; }
  .feature-list, .visit-cards { grid-template-columns: 1fr; }
  .sport-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 74px; }
  .brand-text span { display: none; }
  .hero { padding: 54px 0 58px; }
  .hero-stats, .sport-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 420px; }
  .floating-card { position: absolute; max-width: 220px; }
  .card-weather { left: 8px; top: 44px; }
  .card-access { right: 8px; bottom: 48px; }
  .section { padding: 68px 0; }
  .price-card-head, .price-list li, .cookie-banner { align-items: flex-start; flex-direction: column; }
  .cookie-banner { left: 12px; right: 12px; }
}
