:root {
  --forest: #2f4a3d;
  --forest-dark: #1e3129;
  --forest-light: #4a6b58;
  --terracotta: #b5622f;
  --terracotta-dark: #954e23;
  --cream: #faf6ee;
  --cream-alt: #f1e8d8;
  --charcoal: #2b2823;
  --charcoal-soft: #55503f;
  --wood: #8a5a3b;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43, 40, 35, 0.12);
  --shadow-lg: 0 20px 50px rgba(43, 40, 35, 0.22);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { margin: 0 0 1em; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-forest {
  background: var(--forest);
  color: var(--white);
}
.btn-forest:hover { background: var(--forest-dark); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,40,35,0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--forest-dark);
}
.logo .mark { font-size: 1.5rem; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--terracotta); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--forest-dark);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 24px 18px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile a {
  display: block;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(43,40,35,0.08);
}
.nav-mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,49,41,0.55) 0%, rgba(31,49,41,0.78) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}
.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--cream-alt);
  margin-bottom: 14px;
}
.hero h1 { color: var(--white); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  min-height: 46vh;
}
.page-hero .hero-content { padding: 100px 24px 50px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--cream-alt); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--charcoal-soft); font-size: 1.05rem; }

.welcome-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--charcoal-soft);
}
.welcome-text strong { color: var(--forest-dark); }
.welcome-signature {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { margin-bottom: 2px; }
.card-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-body p { color: var(--charcoal-soft); font-size: 0.95rem; flex: 1; }
.card-body .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- Gallery + Lightbox ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.gallery-grid button.thumb {
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-grid button.thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid button.thumb:hover img { transform: scale(1.06); }
.gallery-grid button.thumb::after {
  content: "\2316";
  position: absolute; right: 8px; bottom: 8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(31,49,41,0.75);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-grid button.thumb:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 18, 15, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px 16px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.28); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 0.85rem;
}
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

/* ---------- Okolí a aktivity ---------- */
.okoli-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.okoli-col {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
}
.okoli-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.okoli-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.okoli-col li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--charcoal-soft);
  border-bottom: 1px solid var(--cream-alt);
}
.okoli-col li:last-child { border-bottom: none; }
.okoli-col li::before {
  content: "\2022";
  position: absolute; left: 4px; top: 8px;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---------- Ceník ---------- */
.price-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--cream-alt);
  font-weight: 600;
}
.price-row:last-child { border-bottom: none; }
.price-row span:last-child { color: var(--terracotta); font-family: var(--font-display); font-size: 1.1rem; }
.price-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  text-align: center;
}
.season-note {
  max-width: 780px;
  margin: 0 auto 24px;
  color: var(--charcoal-soft);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .icon { transition: transform 0.2s ease; font-size: 1.2rem; color: var(--terracotta); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { padding-bottom: 20px; }
.faq-answer p { color: var(--charcoal-soft); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.contact-line {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.contact-line .ico { font-size: 1.1rem; }
.contact-line a { color: var(--terracotta); font-weight: 600; }
.contact-fine {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-alt);
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 320px; border: 0; }

.fb-embed {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  padding: 16px;
}
.fb-embed h4 { margin-bottom: 12px; }
.fb-embed-frame-wrap { line-height: 0; border-radius: 10px; overflow: hidden; }
.fb-note { font-size: 0.8rem; color: var(--charcoal-soft); margin-top: 10px; }

/* ---------- Form ---------- */
.contact-form {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--white); }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--cream-alt);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.95);
  color: var(--charcoal);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.form-consent input { margin-top: 4px; }
.form-consent a { color: var(--cream-alt); text-decoration: underline; }

/* ---------- Footer ---------- */
footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer-links a { font-weight: 600; font-size: 0.9rem; }
.footer-links a:hover { color: var(--terracotta); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 1.1rem;
}
.footer-social a:hover { background: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { text-decoration: underline; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--forest-dark);
  color: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 3000;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.9); }
.cookie-banner a { text-decoration: underline; color: var(--cream-alt); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
  padding: 0.6em 1.3em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}
.btn-cookie.accept { background: var(--terracotta); color: #fff; }
.btn-cookie.reject { background: rgba(255,255,255,0.12); color: #fff; }

/* ---------- Simple content page (GDPR) ---------- */
.legal-page { max-width: 760px; margin: 0 auto; }
.legal-page h2 { margin-top: 1.4em; }

/* ---------- Property page detail ---------- */
.detail-list {
  columns: 2;
  column-gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
}
.detail-list li {
  break-inside: avoid;
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--charcoal-soft);
}
.detail-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 6px;
  color: var(--terracotta);
  font-weight: 700;
}
@media (max-width: 640px) {
  .detail-list { columns: 1; }
}
.price-callout {
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.price-callout .big { font-family: var(--font-display); font-size: 1.6rem; color: var(--terracotta); }
