:root {
  --bg: #090c0a;
  --bg-2: #101511;
  --card: #141a16;
  --line: rgba(235, 232, 225, 0.1);
  --fg: #efece4;
  --muted: #9b978c;
  --accent: #8fba78;
  --accent-2: #6f8f62;
  --danger: #c45b4a;
  --occupied: #d4a15a;
  --closed: #6e6a62;
  --pending: #c9a25a;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --font: "Manrope", "Noto Sans SC", sans-serif;
  --display: "Manrope", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(9, 12, 10, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  min-width: 0;
}
.brand-mark i {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.brand small {
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.nav-links a.is-current { color: var(--fg); }
.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}
.nav-links a:hover { color: var(--fg); }
.lang {
  display: flex;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}
.lang button {
  background: transparent;
  border: 0;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
}
.lang button.is-on { background: var(--accent); color: #10200f; font-weight: 700; }
.nav-cta {
  background: var(--accent);
  color: #10200f;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,12,10,0.18) 0%, rgba(9,12,10,0.28) 40%, rgba(9,12,10,0.92) 100%),
    linear-gradient(90deg, rgba(9,12,10,0.55), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 88px;
  width: min(820px, 100%);
}
.eyebrow {
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1, .display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  margin: 0 0 18px;
}
.hero h1 i, .brand-hero i {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.page-hero { min-height: 58vh; }
.page-hero .hero-copy { padding-bottom: 64px; }
.page-hero h1 { font-size: clamp(36px, 6vw, 72px); }
.lede {
  font-size: 18px;
  color: #d8d3c8;
  max-width: 560px;
}
.hero-actions, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.chips li {
  border: 1px solid var(--line);
  background: rgba(9, 12, 10, 0.45);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #d8d3c8;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--accent); color: #10200f; }
.btn-ghost { background: transparent; border-color: rgba(239,236,228,0.28); color: var(--fg); }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 10px 28px rgba(143, 186, 120, 0.28); }

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: -36px auto 80px;
  position: relative;
  z-index: 3;
}
.trust article {
  background: var(--bg-2);
  padding: 22px 24px;
}
.trust strong { display: block; font-size: 22px; }
.trust span { color: var(--muted); font-size: 13px; }

section { padding: 84px 0; }
.section-head { max-width: 680px; margin-bottom: 36px; }
h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.muted { color: var(--muted); }

.grid-2, .grid-3, .cards { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.grid-3, .cards { grid-template-columns: repeat(3, 1fr); }
.card, .offer, .faq-item, .quote, .step, .who-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .offer:hover, .quote:hover, .step:hover, .who-card:hover {
  border-color: rgba(143, 186, 120, 0.22);
}
.media-frame {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(9,12,10,0.7);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.doors a.card {
  display: block;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.doors a.card:hover {
  border-color: rgba(143, 186, 120, 0.28);
}
.page-link { margin-top: 22px; }
.page-link a { color: var(--accent); font-weight: 700; }
.prose p { max-width: 66ch; margin: 0 0 16px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 14px; }

.problem { background: linear-gradient(180deg, transparent, rgba(143,186,120,0.04)); }
.split-list { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.split-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.split-list strong { display: block; }

.offer h3, .card h3, .step h3 { margin: 0 0 8px; font-size: 22px; }
.why-num {
  display: block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 10px;
}
.strength-offer { margin-top: 18px; }
.arrive {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: var(--muted);
}
.arrive li {
  padding: 8px 0 8px 18px;
  position: relative;
}
.arrive li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 15px;
}
.cta-band {
  background: linear-gradient(180deg, rgba(143, 186, 120, 0.08), transparent);
  border-block: 1px solid var(--line);
}
.price {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.price-num {
  margin: 8px 0 12px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.price-num small {
  display: inline-block;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}
.offer ul { padding-left: 18px; color: var(--muted); }

.steps { counter-reset: step; }
.step { position: relative; padding-top: 28px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  border-radius: 20px;
}
.gallery .tall { min-height: 500px; grid-row: span 2; }

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  background: #1a1f1b;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

.calendar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.cal-weeks {
  display: grid;
  gap: 22px;
}
.cal-week h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cal-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 6px;
}
.cal-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(92px, 1fr));
  gap: 8px;
  min-width: 700px;
}
.month-grid .day { min-height: 120px; }
.day.is-empty { border: 0; background: transparent; }
.slot.unavailable {
  background: rgba(255,255,255,0.04);
  color: #8a847a;
  cursor: not-allowed;
  text-transform: none;
}
.map-note { margin: 0 0 16px; max-width: 62ch; }
.meet-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 8px 0 28px;
}
.google-pane {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1a1f1b;
}
.google-pane iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
.map-kicker {
  margin: 14px 16px 0;
  font-weight: 700;
}
.map-sub { margin: 4px 16px 12px; }
.gmaps-open {
  display: block;
  padding: 12px 16px 14px;
  color: var(--accent);
  font-size: 14px;
}
.weather-note { margin-top: 18px; max-width: 66ch; }
.cal-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.cal-switch button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}
.cal-switch button.is-on {
  background: var(--accent);
  color: #10200f;
  border-color: transparent;
}
.wx {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 8px;
}
.wx.is-rain { color: #8fb4c9; }
.slot.weather { color: #8fb4c9; }
.dot.rain { background: #8fb4c9; }
.gmaps-open {
  display: block;
  padding: 12px 16px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.gmaps-open:hover { text-decoration: underline; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.spot-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.spot-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.spot-list li:hover { transform: translateY(-2px); border-color: rgba(143, 186, 120, 0.35); }
.spot-list li.is-on { border-color: var(--accent); background: rgba(143, 186, 120, 0.08); }
.spot-list li p { margin: 6px 0 0; }
.season-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0 22px;
}
.season-grid figure { margin: 0; }
.season-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.6s ease;
}
.season-grid figure { overflow: hidden; }
.season-grid figure:hover img { transform: scale(1.04); }
.season-grid figcaption { color: var(--muted); font-size: 13px; margin-top: 8px; }
.papers { padding-left: 18px; color: var(--muted); }
.papers a { color: var(--accent); }
.cal-dow {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.day {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  background: #101510;
}
.day strong { display: block; font-size: 13px; margin-bottom: 6px; }
.day.muted-day { opacity: 0.35; }
.day.is-today {
  border-color: rgba(143, 186, 120, 0.45);
  background: #162016;
}
.day.is-past { opacity: 0.72; }
.slot {
  display: block;
  width: 100%;
  border: 0;
  background: rgba(143,186,120,0.16);
  color: var(--accent);
  border-radius: 8px;
  padding: 6px 6px;
  margin-bottom: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.slot:hover:not(:disabled) {
  background: rgba(143,186,120,0.28);
}
.slot.occupied, .slot.pending {
  background: rgba(212, 161, 90, 0.16);
  color: var(--occupied);
  cursor: not-allowed;
}
.slot.pending { color: var(--pending); }
.slot.closed, .slot.weather {
  background: rgba(255,255,255,0.045);
  color: var(--closed);
  cursor: not-allowed;
}
.legend { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 13px; margin-top: 14px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.dot.ok { background: var(--accent); }
.dot.busy { background: var(--occupied); }
.dot.wait { background: var(--pending); }
.dot.closed { background: var(--closed); }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  display: none;
  place-items: center;
  z-index: 40;
  padding: 20px;
}
.modal.open { display: grid; }
.modal-card {
  width: min(520px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

label { display: block; font-size: 13px; color: var(--muted); margin: 12px 0 6px; }
input, select, textarea {
  width: 100%;
  background: #0d120e;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; }

.faq-item + .faq-item { margin-top: 10px; }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--fg);
  font-weight: 700;
  cursor: pointer;
}
.faq-item p { display: none; color: var(--muted); margin: 10px 0 0; }
.faq-item.open p { display: block; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 80px;
  color: var(--muted);
  font-size: 13px;
}
.site-footer i {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 18;
  display: none;
}
.sticky-cta:hover { transform: translateX(-50%) translateY(-2px); }

.reveal {
  opacity: 1;
  transform: none;
}
.rise { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: up 0.9s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .rise {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--d, 0ms);
  }
  .rise.in { opacity: 1; transform: none; }
}
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }

@keyframes up {
  to { opacity: 1; transform: none; }
}

.kammer-body { min-height: 100vh; }
.kammer-login, .kammer-app {
  width: min(1080px, calc(100% - 32px));
  margin: 48px auto;
}
.kammer-login {
  width: min(420px, calc(100% - 32px));
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.hidden { display: none !important; }
.status { font-size: 14px; margin-top: 10px; }
.status.ok { color: var(--accent); }
.status.err { color: var(--danger); }

@media (max-width: 960px) {
  .menu-btn { display: block; }
  .nav-links, .nav .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(9,12,10,0.96);
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }
  .trust, .grid-2, .grid-3, .cards, .gallery, .season-grid, .spot-list, .meet-board { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .sticky-cta { display: block; }
  section { padding: 64px 0; }
}
