﻿:root {
  --bg: #f4efe2;
  --bg-soft: #e8f0e7;
  --surface: #ffffff;
  --text: #1d2a24;
  --muted: #4f6358;
  --line: #c5d3c9;
  --primary: #1b6f4e;
  --primary-strong: #12513a;
  --radius: 16px;
  --shadow: 0 14px 30px rgba(20, 42, 32, 0.12);
  --font-body: "Noto Sans", "Segoe UI", sans-serif;
  --font-heading: "Noto Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 80% -10%, #c9ead8 0%, transparent 70%),
    radial-gradient(900px 400px at -10% 10%, #ecd8b2 0%, transparent 70%),
    var(--bg);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

input,
textarea,
button {
  font: inherit;
}

.container {
  width: min(1100px, calc(100% - 24px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(244, 239, 226, 0.85);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-color: var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.brand img {
  width: 270px;
  height: auto;
  border-radius: 12px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 3px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--primary);
  color: #fff;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
}

.main-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px 4vw 16px;
  background: #f8f4ea;
  border-bottom: 1px solid var(--line);
}

.main-nav.open {
  display: flex;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 56px 0 32px;
}

.hero-grid {
  display: grid;
  gap: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 8px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(1.8rem, 5.8vw, 3.2rem);
}

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.16s ease, background-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 34px 0;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.video-facade {
  cursor: pointer;
  background: #000;
}

.video-facade-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.video-facade:hover .video-facade-thumb {
  opacity: 0.7;
}

.video-facade-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.15s;
}

.video-facade:hover .video-facade-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.cards {
  display: grid;
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  margin-bottom: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.gallery-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f7f7;
}

.gallery-item a {
  display: block;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-item a:hover img {
  transform: scale(1.03);
}

/* Lightbox */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lb-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.lb-img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  display: block;
}

.lb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  opacity: 0.85;
}

.lb-close:hover { opacity: 1; }

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 6px;
  opacity: 0.8;
  transition: background 0.15s, opacity 0.15s;
}

.lb-prev { left: 12px; }
.lb-next { right: 12px; }

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255,255,255,0.25);
  opacity: 1;
}

.lb-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-meta {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 600;
}

.price-groups {
  display: grid;
  gap: 12px;
}

.price-group {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}

.price-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-lines li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed #d7e2db;
}

.price-lines li:last-child {
  border-bottom: 0;
}

.price-lines span {
  color: var(--muted);
  min-width: 0;
}

.price-lines strong {
  justify-self: end;
  white-space: nowrap;
}

.price-includes {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}

.price-includes ul {
  margin: 0;
  padding-left: 18px;
}

.price-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}

.price-item h3 {
  margin-bottom: 6px;
}

.price-item p {
  margin: 0;
  color: var(--primary-strong);
  font-weight: 700;
}

.map-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
}

.map-preview {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-list {
  margin: 0 0 14px;
  padding-left: 18px;
}

.contact-list li {
  margin-bottom: 4px;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
}

.booking-form {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.booking-form label {
  font-weight: 600;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fcfcfa;
}

.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding: 12px 40px 12px 14px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: 2px solid rgba(27, 111, 78, 0.25);
  border-color: var(--primary);
}

.inline-fields {
  display: grid;
  gap: 10px;
}

.inline-fields > div {
  display: grid;
  gap: 8px;
}

.extras-fieldset {
  border: 1px solid var(--color-border, #ddd);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.extras-fieldset legend {
  padding: 0 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted, #666);
}

.extras-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.extras-row input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.consent-row input {
  margin-top: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.form-status {
  margin: 4px 0 0;
  min-height: 1.5em;
  color: var(--muted);
}

.form-status.error {
  color: #9c2d2d;
}

.form-status.success {
  color: var(--primary-strong);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 20px 0 30px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 859px) {
  .header-row {
    flex-wrap: nowrap;
  }
  .brand img {
    width: auto;
    height: 74px;
  }
  .lang-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 8px;
  }
  .lang-btn {
    text-align: center;
    padding: 4px 6px;
  }
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 14px;
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
    gap: 30px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-groups {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-card {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .inline-fields {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1120px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-groups {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-endpoint-hint {
  display: block;
  margin: 4px 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}


