/* ============================================================
   Chalupa Studenec 159 — styles
   Palette: warm cream, sage/forest green, wood accent, charcoal
   ============================================================ */

:root {
  --cream: #f7f3ec;
  --cream-soft: #fcfaf6;
  --paper: #ffffff;
  --ink: #2a2722;
  --ink-soft: #5b554c;
  --forest: #43554a;
  --forest-deep: #313f37;
  --sage: #6e7f6b;
  --wood: #b08653;
  --wood-soft: #c99a6a;
  --accent: #db7a2c;
  --accent-deep: #c0641d;
  --line: rgba(42, 39, 34, 0.12);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px -20px rgba(42, 39, 34, 0.35);
  --shadow-soft: 0 10px 30px -16px rgba(42, 39, 34, 0.3);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* Fine film grain over the whole page — reads as "expensive paper", not flat digital */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 70; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.05; mix-blend-mode: soft-light;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; margin: 0; }

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section__title {
  font-size: clamp(2.1rem, 5vw, 3.9rem);
  margin: 0.2em 0 0.4em;
  color: var(--ink);
}
.section--dark .section__title { color: var(--cream); }
.section__head { max-width: 660px; margin-bottom: clamp(44px, 6vw, 76px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__intro { color: var(--ink-soft); font-size: 1.08rem; }
.section--dark .section__intro { color: rgba(247, 243, 236, 0.8); }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wood);
  margin: 0;
}
.eyebrow--light { color: var(--wood-soft); }

.section--tint { background: radial-gradient(125% 95% at 50% -10%, #fcfaf5 0%, #f4eee3 70%, #f1e9db 100%); }
.section--dark {
  color: var(--cream);
  background:
    radial-gradient(110% 85% at 50% -8%, #41544718 0%, transparent 55%),
    radial-gradient(130% 120% at 50% 0%, #41524607 0%, transparent 60%),
    linear-gradient(180deg, #344036 0%, #2a352e 60%, #283029 100%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.8em;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(219, 122, 44, 0.7); }
.btn--primary:hover { background: var(--accent-deep); box-shadow: 0 16px 30px -12px rgba(219, 122, 44, 0.7); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn--small { padding: 0.6em 1.25em; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); transition: color 0.4s var(--ease); }
.scrolled .brand { color: var(--ink); }
.brand__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--wood);
  color: #fff;
  font-family: var(--serif); font-weight: 600; font-size: 1rem;
  flex-shrink: 0;
}
.brand__logo { height: 46px; width: auto; flex-shrink: 0; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; }

.nav__list { display: flex; gap: 30px; }
.nav__list a {
  font-size: 0.92rem; font-weight: 500; color: var(--cream);
  position: relative; padding: 4px 0; transition: color 0.3s var(--ease);
}
.scrolled .nav__list a { color: var(--ink-soft); }
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--wood); transition: width 0.35s var(--ease);
}
.nav__list a:hover { color: var(--wood); }
.nav__list a:hover::after { width: 100%; }

.header__cta { color: var(--cream); border: 1px solid rgba(255,255,255,0.5); }
.header__cta { background: var(--accent); color: #fff; border-color: transparent; }
.header__cta:hover { background: var(--accent-deep); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.35s var(--ease); }
.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-out infinite alternate;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,34,29,0.45) 0%, rgba(28,34,29,0.15) 35%, rgba(28,34,29,0.65) 100%);
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -1.5%); }
}
.hero__content { padding-top: 90px; max-width: 760px; }
.hero__eyebrow {
  font-size: 0.82rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; color: var(--wood-soft); margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(3rem, 9vw, 6.2rem);
  font-weight: 500; line-height: 0.98;
  text-shadow: 0 4px 40px rgba(0,0,0,0.25);
}
.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  max-width: 560px; margin: 26px 0 38px;
  color: rgba(247,243,236,0.92);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.6); border-radius: 100px;
  display: grid; place-items: start center; padding-top: 8px;
}
.hero__scroll-dot { width: 4px; height: 8px; border-radius: 4px; background: #fff; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(10px); } }

/* ---------- Facts ---------- */
.facts {
  color: var(--cream);
  background:
    radial-gradient(90% 140% at 50% 0%, #51655742 0%, transparent 55%),
    linear-gradient(180deg, #46594d 0%, #3f4f44 100%);
}
.facts__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; padding-block: clamp(40px, 6vw, 64px);
}
.fact { text-align: center; padding: 12px; position: relative; }
.fact:not(:last-child)::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  height: 54px; width: 1px; background: rgba(255,255,255,0.18);
}
.fact__num, .fact__icon {
  display: block; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 500; line-height: 1; color: var(--wood-soft);
}
.fact__icon { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.fact__label { display: block; margin-top: 10px; font-size: 0.98rem; font-weight: 500; }
.fact__label small { color: rgba(247,243,236,0.65); font-weight: 400; font-size: 0.8rem; }

/* ---------- About ---------- */
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px); align-items: center;
}
.about__media { position: relative; }
.about__img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about__img-wrap { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about__img--main { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about__img-wrap .about__img--main { border-radius: 0; box-shadow: none; }
.about__img--accent {
  position: absolute; right: -28px; bottom: -34px;
  width: 48%; aspect-ratio: 1; object-fit: cover;
  border: 8px solid var(--cream); border-radius: var(--radius);
}
.about__text p { color: var(--ink-soft); margin: 0 0 1.2em; }
.about__points { margin: 1.4em 0 2em; display: grid; gap: 12px; }
.about__points li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.about__points li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage); color: #fff; font-size: 0.7rem;
  display: grid; place-items: center;
}

/* ---------- Amenities ---------- */
.amenities__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.amenity {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.amenity__icon {
  display: grid; place-items: center; width: 54px; height: 54px;
  border-radius: 14px; background: var(--cream); font-size: 1.5rem; margin-bottom: 18px;
}
.amenity h3 { font-size: 1.18rem; margin-bottom: 8px; }
.amenity p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { padding-block: clamp(40px, 5vh, 80px); }
.gallery .section__head { margin-bottom: clamp(18px, 2.6vh, 36px); }
.gallery .section__title { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  height: clamp(380px, 52vh, 600px);
}
.gallery__item {
  padding: 0; border: 0; overflow: hidden; border-radius: var(--radius);
  position: relative; background: var(--cream-soft); min-height: 0;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2rem; color: #fff; background: rgba(49,63,55,0); opacity: 0; transition: 0.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { background: rgba(49,63,55,0.32); opacity: 1; }

/* ---------- Trips ---------- */
.trips__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.trips__season {
  font-family: var(--sans); font-weight: 700; font-size: 1.15rem;
  color: var(--cream); padding-bottom: 16px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.trips__list li {
  display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.trips__list span { color: var(--cream); font-weight: 500; }
.trips__list em { color: var(--wood-soft); font-style: normal; font-size: 0.85rem; white-space: nowrap; }
.trips__note { color: rgba(247,243,236,0.55); font-size: 0.85rem; margin-top: 30px; }

/* ---------- Booking ---------- */
.booking__widget {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  overflow: hidden; min-height: 420px;
}
.booking__widget iframe { width: 100%; min-height: 620px; border: 0; display: block; }
.booking__placeholder {
  min-height: 420px; display: grid; place-content: center; text-align: center;
  gap: 6px; padding: 40px; color: var(--ink-soft);
  background: repeating-linear-gradient(45deg, var(--cream-soft), var(--cream-soft) 14px, var(--cream) 14px, var(--cream) 28px);
}
.booking__placeholder-icon { font-size: 2.6rem; }
.booking__placeholder-hint { font-size: 0.9rem; opacity: 0.75; }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__lead { color: var(--ink-soft); }
.contact__details { margin: 30px 0; display: grid; gap: 22px; }
.contact__details li { display: grid; gap: 4px; }
.contact__label { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wood); font-weight: 600; }
.contact__details a, .contact__details span { font-size: 1.1rem; color: var(--ink); }
.contact__details a:hover { color: var(--wood); }
.contact__social { display: flex; gap: 14px; margin-top: 8px; }
.social-link {
  padding: 0.5em 1.1em; border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; transition: 0.3s var(--ease);
}
.social-link:hover { background: var(--forest); color: var(--cream); border-color: transparent; }

.contact__form {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 18px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%; padding: 0.85em 1em; font-family: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: 10px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(110,127,107,0.15);
}
.field textarea { resize: vertical; }
.form__status { font-size: 0.9rem; margin: 14px 0 0; min-height: 1.2em; }
.form__status.ok { color: var(--forest); font-weight: 600; }
.form__status.err { color: #b4452f; }

.contact__map { margin-top: clamp(40px, 6vw, 72px); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.contact__map iframe { width: 100%; height: 380px; border: 0; display: block; filter: saturate(0.9); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 60px 0 36px; }
.footer__inner { display: grid; gap: 28px; }
.footer__brand { display: flex; align-items: center; gap: 18px; }
.footer__brand p { margin: 0; line-height: 1.4; }
.footer__brand small { color: rgba(247,243,236,0.6); }
.footer__logo { display: block; width: 160px; height: auto; flex-shrink: 0; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__nav a { font-size: 0.92rem; color: rgba(247,243,236,0.8); transition: color 0.3s var(--ease); }
.footer__nav a:hover { color: var(--wood-soft); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 14px 26px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__legal a { font-size: 0.86rem; color: rgba(247,243,236,0.72); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s var(--ease); }
.footer__legal a:hover { color: var(--wood-soft); }
.footer__copy { font-size: 0.82rem; color: rgba(247,243,236,0.5); margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 24, 21, 0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 88vw; max-height: 84vh; border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.96); transition: transform 0.4s var(--ease);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: 0;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; line-height: 1;
  display: grid; place-items: center; transition: background 0.3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal animation: blur-into-focus ---------- */
.reveal {
  opacity: 0; transform: translateY(22px); filter: blur(14px);
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease), filter 1.05s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }

/* Curtain reveal for key imagery (clip wipe + slow inner push) */
.reveal-media { clip-path: inset(0 0 100% 0); transition: clip-path 1.25s var(--ease); will-change: clip-path; }
.reveal-media.in { clip-path: inset(0 0 0% 0); }
.reveal-media img { transform: scale(1.18); transition: transform 1.6s var(--ease); }
.reveal-media.in img { transform: scale(1); }

/* Gallery: container itself doesn't fade — its tiles rise in sequence */
.gallery__grid.reveal { opacity: 1; transform: none; filter: none; }
.gallery__grid .gallery__item { opacity: 0; transform: translateY(20px) scale(0.985); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.gallery__grid.in .gallery__item { opacity: 1; transform: none; }
.gallery__grid.in .gallery__item:nth-child(1){transition-delay:.00s}
.gallery__grid.in .gallery__item:nth-child(2){transition-delay:.04s}
.gallery__grid.in .gallery__item:nth-child(3){transition-delay:.08s}
.gallery__grid.in .gallery__item:nth-child(4){transition-delay:.12s}
.gallery__grid.in .gallery__item:nth-child(5){transition-delay:.16s}
.gallery__grid.in .gallery__item:nth-child(6){transition-delay:.20s}
.gallery__grid.in .gallery__item:nth-child(7){transition-delay:.24s}
.gallery__grid.in .gallery__item:nth-child(8){transition-delay:.28s}
.gallery__grid.in .gallery__item:nth-child(9){transition-delay:.32s}
.gallery__grid.in .gallery__item:nth-child(10){transition-delay:.36s}
.gallery__grid.in .gallery__item:nth-child(11){transition-delay:.40s}
.gallery__grid.in .gallery__item:nth-child(12){transition-delay:.44s}
.gallery__grid.in .gallery__item:nth-child(13){transition-delay:.48s}
.gallery__grid.in .gallery__item:nth-child(14){transition-delay:.52s}
.gallery__grid.in .gallery__item:nth-child(15){transition-delay:.56s}

/* ---------- Intro statement ---------- */
.intro {
  padding-block: clamp(90px, 13vw, 180px);
  background: radial-gradient(80% 70% at 22% 30%, #fbf7f0 0%, transparent 60%);
}
.about { background: radial-gradient(70% 60% at 85% 15%, #faf6ee 0%, transparent 55%); }
.contact { background: radial-gradient(60% 55% at 15% 10%, #f9f5ec 0%, transparent 55%); }
.intro__inner { max-width: 940px; }
.intro__statement {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.5rem);
  line-height: 1.16; letter-spacing: -0.02em; color: var(--ink);
  margin: 0.4em 0 0.7em;
}
.intro__statement span { display: block; color: var(--sage); font-style: italic; }
.intro__text { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--ink-soft); max-width: 620px; }

/* ---------- Full-bleed break ---------- */
.break { position: relative; height: clamp(420px, 70vh, 720px); display: flex; align-items: center; overflow: hidden; }
.break--tall { height: clamp(480px, 82vh, 820px); }
.break__media { position: absolute; inset: -12% 0; z-index: -1; }
.break__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,34,29,0.32), rgba(28,34,29,0.5)); }
.break__inner { position: relative; z-index: 1; }
.break__quote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.25; color: var(--cream);
  max-width: 880px; margin: 0; text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* ---------- Day sequence ---------- */
.day { padding-bottom: clamp(40px, 7vw, 90px); }
.day__step { padding: clamp(28px, 5vw, 60px) 0; }
.day__row { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.day__step--reverse .day__media { order: 2; }
.day__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.day__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1.2s var(--ease); }
.day__step:hover .day__media img { transform: scale(1.04); }
.day__time {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--wood); margin-bottom: 14px;
}
.day__text h3 { font-size: clamp(1.5rem, 3vw, 2.3rem); margin-bottom: 0.5em; }
.day__text p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; max-width: 30em; }

/* ---------- Reviews ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; margin: 0; display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.review__stars { color: var(--wood); letter-spacing: 3px; font-size: 0.95rem; }
.review blockquote {
  margin: 0; font-family: var(--serif); font-weight: 400; font-size: 1.18rem;
  line-height: 1.5; color: var(--ink); flex: 1;
}
.review figcaption { display: flex; flex-direction: column; gap: 2px; }
.review figcaption strong { font-weight: 600; }
.review figcaption span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq__head { position: sticky; top: 110px; }
.faq__list { display: grid; gap: 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 26px 44px 26px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.6rem; font-weight: 300; color: var(--wood);
  transition: transform 0.35s var(--ease);
}
.faq__item[open] summary { color: var(--wood); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { overflow: hidden; padding: 0 44px 4px 0; animation: faqOpen 0.4s var(--ease); }
.faq__answer p { color: var(--ink-soft); margin: 0 0 24px; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Sticky mobile booking CTA ---------- */
.mobile-cta { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; height: auto; }
  .gallery__item { aspect-ratio: 1 / 1; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}

@media (max-width: 820px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(80vw, 320px);
    background: var(--cream); box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    display: flex; align-items: center; padding: 80px 36px; overflow-y: auto; }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 24px; }
  .nav__list a, .scrolled .nav__list a { color: var(--ink); font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .header__cta { display: none; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

  .about__inner { grid-template-columns: 1fr; }
  .about__img--main { aspect-ratio: 16/11; }
  .about__img--accent { width: 38%; right: 16px; bottom: -24px; }
  .contact__inner { grid-template-columns: 1fr; }
  .trips__cols { grid-template-columns: 1fr; gap: 30px; }

  .day__row { grid-template-columns: 1fr; gap: 26px; }
  .day__step--reverse .day__media { order: 0; }
  .break { background-attachment: scroll; }

  /* Sticky booking CTA appears on tablet/phone */
  .mobile-cta {
    display: flex; align-items: center; justify-content: center;
    position: fixed; left: max(16px, env(safe-area-inset-left)); right: max(16px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 95;
    padding: 1.05em 1.4em; border-radius: 100px;
    background: var(--accent); color: #fff; font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
    box-shadow: 0 12px 30px -8px rgba(219,122,44,0.65), 0 2px 8px rgba(42,39,34,0.12);
    transform: translateY(160%); opacity: 0; pointer-events: none;
    transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-cta.show { transform: none; opacity: 1; pointer-events: auto; }
  body.nav-open .mobile-cta { transform: translateY(160%); opacity: 0; pointer-events: none; }
}

@media (max-width: 560px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .fact:nth-child(2)::after { display: none; }
  .amenities__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .field--row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .lightbox__nav { width: 44px; height: 44px; }

  /* --- Tighten the vertical rhythm: desktop padding is too generous on a phone --- */
  .section { padding-block: 54px; }
  .section__head { margin-bottom: 26px; }
  .container { padding-inline: 18px; }
  .section__title { font-size: clamp(1.85rem, 7.6vw, 2.45rem); }

  /* Wordmark fits on one line next to the logo */
  .brand__logo { height: 38px; }
  .brand__name { font-size: 1.02rem; }

  /* Hero: drop the scroll cue (touch users scroll), tighten spacing */
  .hero__scroll { display: none; }
  .hero__content { padding-top: 82px; }
  .hero__lead { margin: 18px 0 28px; }

  /* Intro statement: resize down */
  .intro { padding-block: 58px; background: none; }
  .intro__statement { font-size: clamp(1.65rem, 7.2vw, 2.2rem); }

  /* O chalupě: hide the cramped overlapping accent — show one clean image */
  .about__img--accent { display: none; }
  .about__img--main { aspect-ratio: 4 / 3; }

  /* Full-bleed quote bands: much shorter on a phone, smaller quote */
  .break, .break--tall { height: 62vh; min-height: 340px; }
  .break__quote { font-size: clamp(1.35rem, 6.2vw, 1.7rem); }

  /* Day sequence + facts tighter */
  .day { padding-bottom: 8px; }
  .day__step { padding: 12px 0; }
  .day__row { gap: 20px; }
  .facts__grid { padding-block: 36px; }

  /* Map a touch shorter */
  .contact__map iframe { height: 300px; }

  /* Rezervační kalendář — více místa a pohodlnější ovládání na mobilu */
  #rezervace .container { padding-inline: 10px; }
  .booking__widget { border-radius: 12px; min-height: 0; }
  .booking__widget iframe { min-height: 480px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .reveal-media { clip-path: none; }
  .reveal-media img { transform: none; }
  .gallery__grid .gallery__item { opacity: 1; transform: none; }
  .hero__img { animation: none; }
}
