/* ============================================================
   Apartmán de luxe — VARIANTA 2 „Oblá"
   Hlboká zelená / krémová / medený akcent, zaoblené tvary
   ============================================================ */

:root {
  --pine: #1e453e;
  --pine-deep: #16332e;
  --pine-soft: #2a564d;
  --cream: #f3efe6;
  --cream-2: #ece6d9;
  --card: #fdfcf8;
  --copper: #c07a42;
  --copper-soft: #d99a63;
  --copper-tint: #f4e4d3;
  --ink: #22302c;
  --muted: #66726d;
  --muted-light: #b9c4bf;
  --line: rgba(34, 48, 44, 0.1);
  --line-dark: rgba(253, 252, 248, 0.16);
  --head: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--head); font-weight: 600; line-height: 1.2; }

section { padding: 96px 0; }

/* ---------- Štítok + nadpis sekcie ---------- */

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--copper-tint);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.section-head { text-align: center; margin-bottom: 56px; }

.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  text-wrap: balance;
  color: var(--ink);
}

.section-lead {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16.5px;
  text-wrap: pretty;
}

.section-head.left { text-align: left; }
.section-head.left .section-lead { margin-left: 0; }

/* ---------- Placeholder fotky ---------- */

.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.05) 0 14px,
      rgba(255, 255, 255, 0) 14px 28px
    ),
    linear-gradient(160deg, #34594f 0%, #1e453e 55%, #16332e 100%);
}

/* ---------- Hlavička ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 12px 10px 24px;
  border-radius: 999px;
  background: rgba(22, 51, 46, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 1021px) {
  .nav { margin-left: max(24px, calc((100% - var(--maxw)) / 2)); margin-right: max(24px, calc((100% - var(--maxw)) / 2)); }
}

.site-header.scrolled .nav {
  background: rgba(22, 51, 46, 0.92);
  box-shadow: 0 10px 30px rgba(22, 51, 46, 0.25);
}

.brand {
  font-family: var(--head);
  font-weight: 600;
  font-size: 17px;
  color: #fdfcf8;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--copper-soft);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark svg { width: 100%; height: 100%; display: block; }

.brand .star { color: var(--copper-soft); font-size: 12px; letter-spacing: 0.18em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: rgba(253, 252, 248, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
}

.nav-links a:hover { color: #fff; background: rgba(253, 252, 248, 0.1); }

.nav-cta {
  background: var(--copper);
  color: #fff !important;
}

.nav-cta:hover { background: var(--copper-soft) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fdfcf8;
  margin: 5px 0;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 0;
}

.hero-card {
  position: relative;
  min-height: 100svh;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fdfcf8;
  padding: 140px 24px 150px;
}

.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 51, 46, 0.75) 0%,
    rgba(22, 51, 46, 0.65) 45%,
    rgba(22, 51, 46, 0.88) 100%
  );
}

.hero-inner { position: relative; z-index: 1; max-width: 840px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fdfcf8;
  background: rgba(253, 252, 248, 0.14);
  border: 1px solid rgba(253, 252, 248, 0.22);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 600;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(16px, 1.9vw, 18px);
  color: rgba(253, 252, 248, 0.88);
  max-width: 560px;
  margin: 0 auto 34px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}

.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-soft); transform: translateY(-1px); }

/* Plávajúce CTA tlačidlo (iba mobil) */
.mobile-cta { display: none; }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}

.btn-ghost:hover { background: #e8e2d6; border-color: #e8e2d6; transform: translateY(-1px); }

/* Stats lišta prekrývajúca spodok hero */

.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: -76px auto 0;
  padding: 0 24px;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 8px;
  background: var(--pine-deep);
  border-radius: 24px;
  padding: 26px 34px;
  box-shadow: 0 24px 50px rgba(22, 51, 46, 0.28);
}

.hstat { color: #fdfcf8; }

.hstat b {
  display: block;
  font-family: var(--head);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.hstat b small { font-size: 15px; font-weight: 500; color: #fff; }

.hstat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.hstat-score {
  text-align: center;
  background: var(--copper);
  border-radius: 18px;
  padding: 12px 20px;
  color: #fff;
}

.hstat-score b {
  display: block;
  font-family: var(--head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.hstat-score span { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }

/* ---------- O apartmáne ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-photos {
  position: relative;
  padding-bottom: 70px;
  padding-right: 18px;
}

.about-photo-main {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.about-photo-small {
  position: absolute;
  right: -22px;
  bottom: 0;
  width: 58%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 6px solid var(--cream);
  box-shadow: 0 24px 44px rgba(22, 51, 46, 0.24);
}

.about-copy p { color: var(--muted); margin-bottom: 16px; text-wrap: pretty; }
.about-copy p strong { color: var(--ink); }

.about-checks {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.about-checks li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}

.about-checks .check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--copper-tint);
  color: var(--copper);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

/* ---------- Vybavenie ---------- */

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.amenity {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px;
}

.amenity:hover { box-shadow: 0 14px 32px rgba(34, 48, 44, 0.1); transform: translateY(-2px); }

.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--copper-tint);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.amenity svg {
  width: 24px;
  height: 24px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity h3 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }

.amenity p { font-size: 13.5px; color: var(--muted); }

/* ---------- Galéria ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery a {
  position: relative;
  display: block;
  height: 100%;
  cursor: zoom-in;
  border-radius: var(--r-md);
  overflow: hidden;
}

.gallery a.gallery-extra { display: none; }

.gallery-more {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: rgba(22, 51, 46, 0.62);
  color: #fdfcf8;
  font-family: var(--head);
  text-align: center;
  pointer-events: none;
}

.gallery-more b { font-size: 28px; font-weight: 600; line-height: 1; }
.gallery-more span { font-size: 13px; font-weight: 600; color: var(--copper-soft); }

.gallery a:hover { opacity: 0.9; }
.gallery a .ph { height: 100%; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery a:first-child { grid-column: span 2; grid-row: span 2; }

/* Video */

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 24px 50px rgba(22, 51, 46, 0.28);
  background: var(--pine-deep);
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 31, 28, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 56px;
}

.lightbox.open { display: flex; }

.lightbox-frame {
  width: min(960px, 100%);
  aspect-ratio: 3 / 2;
  max-height: calc(100vh - 140px);
  border-radius: var(--r-md);
  overflow: hidden;
}

.lightbox-frame .ph { height: 100%; }

.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(253, 252, 248, 0.75);
  font-size: 14px;
}

.lightbox button {
  position: absolute;
  background: rgba(253, 252, 248, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: #fdfcf8;
  font-size: 20px;
  line-height: 1;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.lightbox button:hover { background: var(--copper); border-color: var(--copper); color: var(--pine-deep); }

.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Aktivity ---------- */

.section-tint { background: var(--cream-2); }

.seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.season {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.season-photo { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; display: block; }

.season-body { padding: 30px 32px 36px; }

.season-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--copper-tint);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 10px;
}

.season-body h3 { font-size: 24px; margin-bottom: 14px; }

.season-body ul { list-style: none; display: grid; gap: 11px; }

.season-body li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--muted);
  font-size: 15px;
}

.season-body li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  transform: translateY(-1px);
}

.season-body li strong { color: var(--ink); font-weight: 700; }

/* ---------- Dostupnosť ---------- */

.calendar-shell {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 10px;
}

.calendar-shell iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  border-radius: var(--r-md);
  background: var(--cream-2);
}

.calendar-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}

/* ---------- Rezervácia ---------- */

.booking-panel {
  background: var(--pine);
  border-radius: var(--r-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  color: #fdfcf8;
}

.booking-aside .tag { background: rgba(253, 252, 248, 0.12); color: var(--copper-soft); }

.booking-aside h2 { color: #fdfcf8; font-size: clamp(26px, 3vw, 36px); text-wrap: balance; }

.booking-aside p { color: var(--muted-light); margin-top: 14px; text-wrap: pretty; }

.booking-points { list-style: none; margin-top: 26px; display: grid; gap: 13px; }

.booking-points li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: rgba(253, 252, 248, 0.9);
}

.booking-points .check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(192, 122, 66, 0.25);
  color: var(--copper-soft);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.booking-form {
  background: var(--card);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 16px; /* min. 16px — iOS Safari nezoomuje pri fokuse */
  line-height: 1.4; /* explicitne — zabraňuje rozdielnym výškam naprieč typmi inputov */
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  width: 100%;
}

.field textarea { resize: vertical; min-height: 110px; }

/* Normalizácia date inputov na iOS Safari — explicitná výška zabraňuje
   tomu, aby iOS Safari renderoval date input vyššie ako text input */
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  height: 50px;
  box-sizing: border-box;
}

/* Jednotné štýlovanie selectu aj na Safari / iOS */
.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2322302c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 13px;
  padding-right: 42px;
}
.field select::-ms-expand { display: none; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(192, 122, 66, 0.18);
}

.booking-form .btn { grid-column: 1 / -1; width: 100%; }

.form-status {
  grid-column: 1 / -1;
  font-size: 15px;
  margin: 0;
}

.form-status:empty { display: none; }

.form-status.ok {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  text-align: left;
  padding: 6px 0;
}

.form-status.ok .status-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--copper-tint);
  color: var(--copper);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
}

.form-status.err {
  color: #b4452f;
  text-align: center;
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #c0392b;
}

.field.error input:focus,
.field.error select:focus,
.field.error textarea:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.field-error {
  font-size: 12px;
  color: #b4452f;
  font-weight: 600;
}

/* ---------- Hodnotenia ---------- */

.reviews-carousel { position: relative; }

.reviews {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
  margin: -4px -2px;
}

.reviews::-webkit-scrollbar { display: none; }

.review {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--pine);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.carousel-btn:hover { background: var(--copper); border-color: var(--copper); color: var(--pine-deep); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; }
.carousel-btn:disabled:hover { background: var(--card); border-color: var(--line); color: var(--pine); }

.carousel-dots { display: flex; align-items: center; gap: 9px; }

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--muted-light);
  cursor: pointer;
}

.carousel-dots .dot.on { background: var(--copper); transform: scale(1.3); }

.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-stars { color: var(--copper); font-size: 14px; letter-spacing: 0.2em; }

.review blockquote {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
  flex: 1;
}

.review figcaption { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--copper-soft);
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-weight: 600;
  font-size: 15px;
  flex: 0 0 auto;
}

.review-meta b { display: block; font-size: 14.5px; }
.review-meta span { font-size: 13px; color: var(--muted); }

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-list { list-style: none; display: grid; gap: 14px; }

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
}

.contact-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--copper-tint);
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list .k {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list .v { font-size: 16px; font-weight: 600; }
.contact-list .v a { color: var(--ink); text-decoration: none; }
.contact-list .v a:hover { color: var(--copper); }

.map-shell {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 10px;
}

.map-shell iframe,
.map-shell .map-ph {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--r-md);
}

/* ---------- Pätička ---------- */

.site-footer {
  background: var(--pine-deep);
  color: var(--muted-light);
  padding: 48px 0;
  margin-top: 20px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p { font-size: 13.5px; }

/* ---------- Hover prechody — až po prvom vykreslení ---------- */

.ready .nav { transition: background 0.3s ease, box-shadow 0.3s ease; }
.ready .nav-links a { transition: background 0.2s, color 0.2s; }
.ready .btn { transition: background 0.25s, transform 0.15s; }
.ready .amenity { transition: box-shadow 0.25s, transform 0.25s; }
.ready .gallery a { transition: opacity 0.25s; }
.ready .lightbox button { transition: background 0.2s, border-color 0.2s, color 0.2s; }
.ready .field input,
.ready .field select,
.ready .field textarea { transition: border-color 0.2s, box-shadow 0.2s; }
.ready .contact-list .v a { transition: color 0.2s; }
.ready .carousel-btn { transition: background 0.2s, border-color 0.2s, color 0.2s; }
.ready .carousel-dots .dot { transition: background 0.2s, transform 0.2s; }

/* ---------- Reveal animácie ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responzivita ---------- */

@media (max-width: 1020px) {
  .nav { margin: 0 14px; }

  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(22, 51, 46, 0.97);
    border-radius: var(--r-md);
    padding: 14px;
    display: none;
    box-shadow: 0 18px 40px rgba(22, 51, 46, 0.35);
  }

  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 13px 16px; font-size: 15px; }
  .nav-links .nav-cta { text-align: center; }

  .site-header .nav { background: rgba(22, 51, 46, 0.92); }
}

@media (max-width: 980px) {
  section { padding: 72px 0; }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 24px;
  }

  .hstat-score { grid-column: 1 / -1; }

  .hstat { text-align: center; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }

  .about-photos { padding-right: 0; padding-bottom: 60px; width: 100%; max-width: 520px; margin: 0 auto; }
  .about-photo-main { width: 87%; }
  .about-photo-small { right: 0; bottom: 0; width: 53%; }

  .booking-panel { grid-template-columns: 1fr; padding: 40px 32px; gap: 40px; }

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

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }

  .seasons { grid-template-columns: 1fr; }

  .reviews .review { flex-basis: calc((100% - 22px) / 2); }
  .gallery a:first-child { grid-column: auto; grid-row: auto; }

  .map-shell .map-ph, .map-shell iframe { min-height: 320px; }
}

@media (max-width: 720px) {
  .hero-card { padding: 130px 20px 170px; }

  .hero-stats { margin-top: -120px; padding: 0 18px; }

  .booking-form { padding: 26px 20px; grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr; }
  .gallery a:first-child { grid-column: auto; grid-row: auto; }

  .reviews .review { flex-basis: 100%; }

  .lightbox { padding: 64px 14px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }

  .amenities { grid-template-columns: 1fr 1fr; gap: 12px; }
  .amenity { padding: 20px 16px; }

  .hero-actions .btn { width: 100%; text-align: center; }
  /* Floating mobile-cta nahrádza toto tlačidlo na mobile */
  .hero-actions .btn-copper { display: none; }

  .booking-panel { padding: 32px 22px; }

  /* Plávajúce CTA tlačidlo */
  body { padding-bottom: 78px; }
  .mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 60;
    display: block;
    text-align: center;
    background: var(--copper);
    color: #fff;
    font-family: var(--body);
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: 0.01em;
    padding: 16px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(22, 51, 46, 0.34);
    text-decoration: none;
  }
}

@media (max-width: 460px) {
  .amenities { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
}
