/* Cormorant Garamond - variabilni font (vahy 400-600), self-hosted */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #13231c;
  --ink-soft: #314239;
  --muted: #6c716b;
  --cream: #f8f3ea;
  --paper: #fffdf8;
  --stone: #eee7dc;
  --moss: #35684e;
  --moss-light: #55886c;
  --brass: #ba8a43;
  --line: rgba(19, 35, 28, 0.14);
  --hairline: rgba(19, 35, 28, 0.07);
  --white-line: rgba(255, 255, 255, 0.34);
  --topo-green: rgba(32, 63, 48, 0.105);
  --topo-green-soft: rgba(32, 63, 48, 0.07);

  --topo-fade-mask: radial-gradient(ellipse at center, #000 0 46%, rgba(0, 0, 0, 0.82) 58%, rgba(0, 0, 0, 0.28) 78%, transparent 100%);
  --shadow: 0 30px 90px rgba(21, 35, 28, 0.18);
  --radius: 8px;
  --image-radius: 14px;
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

body.is-loading {
  cursor: wait;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  /* HTML atributy width/height slouzi jen jako pomer stran pred nactenim,
     skutecnou vysku ridi CSS (aspect-ratio, height) */
  height: auto;
}

/* <picture> se nesmi projevit v layoutu - obrazek se chova jako primy potomek */
picture {
  display: contents;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: var(--cream);
  color: var(--ink);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.loader span {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-top-color: var(--brass);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.loader strong {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.is-ready .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 24px;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
  transform: translateY(-12px);
  animation: enter-down 760ms ease forwards 180ms;
}

.site-header.is-scrolled {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.site-header.is-scrolled .brand,
.site-footer .brand {
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: clamp(142px, 13vw, 184px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.brand:hover .brand-logo {
  opacity: 0.88;
  transform: translateY(-1px);
}

.site-header.is-scrolled .brand-logo,
.site-footer .brand-logo {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  color: #fff;
  background: rgba(13, 25, 20, 0.24);
  border: 1px solid var(--white-line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .site-nav {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(21, 35, 28, 0.08);
}

.site-nav a {
  position: relative;
  padding: 12px 17px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-nav a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-nav a.is-active:not(.nav-cta),
.site-nav a[aria-current="true"]:not(.nav-cta) {
  background: rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled .site-nav a:not(.nav-cta):hover {
  background: rgba(32, 63, 48, 0.08);
}

.site-header.is-scrolled .site-nav a.is-active:not(.nav-cta),
.site-header.is-scrolled .site-nav a[aria-current="true"]:not(.nav-cta) {
  color: #fff;
  background: var(--moss);
}

.nav-cta {
  color: var(--ink) !important;
  background: #fff;
}

.nav-cta.is-active,
.nav-cta[aria-current="true"] {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.34);
}

.site-header.is-scrolled .nav-cta {
  color: #fff !important;
  background: var(--moss);
}

.site-header.is-scrolled .nav-cta.is-active,
.site-header.is-scrolled .nav-cta[aria-current="true"] {
  box-shadow: 0 0 0 2px rgba(51, 76, 60, 0.2);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-video,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-video {
  z-index: -2;
}

.hero-image {
  z-index: -3;
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 49%, rgba(12, 22, 18, 0.1), rgba(12, 22, 18, 0.62) 74%),
    linear-gradient(180deg, rgba(12, 22, 18, 0.28), rgba(12, 22, 18, 0.54));
}

.hero-content {
  width: min(860px, calc(100vw - 48px));
  padding-top: 90px;
  /* rezerva na booking listu pripnutou ke spodnimu okraji hero */
  padding-bottom: clamp(160px, 22svh, 220px);
  text-align: center;
  opacity: 1;
  transform: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.2rem, 9vw, 8.4rem);
  line-height: 0.9;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero-content p {
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button,
.booking-pill button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.booking-pill button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(19, 35, 28, 0.2);
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  background: var(--cream);
}

.button-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white-line);
  backdrop-filter: blur(16px);
}

.button-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-dark,
.booking-pill button {
  color: #fff;
  background: var(--moss);
  box-shadow: 0 18px 42px rgba(32, 63, 48, 0.2);
}

.button-dark:hover,
.booking-pill button:hover {
  background: var(--moss-light);
}

.booking-pill {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(124px, 0.9fr) minmax(124px, 0.9fr) minmax(150px, 1fr) minmax(180px, 1.1fr) auto;
  gap: 8px;
  width: min(1120px, calc(100vw - 42px));
  padding: 8px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, 0);
  opacity: 1;
  transition: box-shadow 240ms ease, transform 240ms ease, background 240ms ease;
  backdrop-filter: blur(18px);
}

.booking-pill:hover,
.booking-pill:focus-within {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.22);
}

.booking-pill label,
.booking-pill .booking-field {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 9px 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-pill .field-label,
.form-field .field-label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-counter {
  display: grid;
  grid-template-columns: 32px minmax(42px, 1fr) 32px;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.guest-counter input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  outline: 0;
  appearance: textfield;
}

.guest-counter input::-webkit-outer-spin-button,
.guest-counter input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.counter-button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(19, 35, 28, 0.16);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.62);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.counter-button:hover {
  background: #fff;
  border-color: rgba(19, 35, 28, 0.28);
  transform: translateY(-1px);
}
.booking-pill input,
.booking-pill select {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  outline: 0;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 44px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.intro-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  min-height: 132px;
  padding: 4px 10px;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(18px);
  text-align: center;
  transition: opacity 620ms ease, transform 620ms ease, color 240ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.intro.is-visible .intro-item {
  opacity: 1;
  transform: none;
  transition-delay: var(--reveal-delay, 0ms);
}

.intro.is-visible .intro-item:hover {
  transition-delay: 0ms;
}

.intro-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(190, 135, 43, 0.34);
  border-radius: 999px;
  color: var(--gold);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.72), transparent 48%),
    rgba(250, 247, 239, 0.58);
  box-shadow: 0 18px 36px rgba(19, 35, 28, 0.07);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.intro-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-item:hover {
  color: var(--ink);
  transform: translateY(-5px);
}

.intro-item:hover .intro-icon {
  border-color: rgba(190, 135, 43, 0.62);
  box-shadow: 0 22px 46px rgba(19, 35, 28, 0.12);
  transform: scale(1.04);
}

.intro p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.62rem);
  line-height: 1.2;
}

.intro p span {
  display: block;
  white-space: nowrap;
}

.section {
  padding: clamp(96px, 11vw, 156px) clamp(24px, 5vw, 54px);
  position: relative;
}

.house-section,
.split-section {
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(58px, 8vw, 118px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.house-section::before,
.split-section::before,
.location-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.house-section::before {
  inset: 32px auto auto -86px;
  z-index: -1;
  width: clamp(280px, 34vw, 520px);
  height: clamp(280px, 34vw, 520px);
  background: url("assets/topographic-lines-01.svg") center / contain no-repeat;
  opacity: 0.24;
  transform: rotate(-8deg);
}

.house-section::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: 24px;
  z-index: -1;
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  background: url("assets/topographic-lines-05.svg") center / contain no-repeat;
  opacity: 0.17;
  transform: rotate(12deg);
  pointer-events: none;
}

.topo-fade,
.house-section::before,
.house-section::after,
.soft-section::before,
.soft-section::after,
.split-section::before,
.split-section::after,
.location-section::before,
.proof-section::before,
.proof-section::after,
.faq-section::before,
.contact-section::before {
  -webkit-mask-image: var(--topo-fade-mask);
  mask-image: var(--topo-fade-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.section-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 5.1rem);
  line-height: 0.98;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.section-copy p,
.section-heading p,
.steps p,
.location-grid p,
.proof-card p,
.faq-list p,
.contact-panel p,
.quiet-list {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy p {
  max-width: 560px;
  margin: 24px 0 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.fact-grid div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  transition: border-color 220ms ease, transform 220ms ease;
}

.fact-grid div:hover {
  border-color: rgba(186, 138, 67, 0.46);
  transform: translateY(-3px);
}

.fact-grid strong,
.fact-text,
.fact-text span {
  display: block;
}

.fact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(186, 138, 67, 0.26);
  border-radius: 50%;
  color: var(--brass);
  background: rgba(250, 247, 239, 0.64);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.fact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-grid div:hover .fact-icon {
  background: #fff;
  border-color: rgba(186, 138, 67, 0.54);
  transform: scale(1.04);
}

.fact-grid strong {
  color: var(--ink);
}

.fact-text span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
  row-gap: 34px;
  align-items: start;
}

figure {
  display: grid;
  gap: 9px;
  align-content: start;
  margin: 0;
}

.editorial-gallery .large {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.editorial-gallery img,
.house-visual img,
.location-grid img,
.split-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--image-radius);
  box-shadow: 0 20px 58px rgba(21, 35, 28, 0.14);
}

.editorial-gallery .large img {
  aspect-ratio: 1.85 / 1;
}

.editorial-gallery figure:not(.large) img {
  aspect-ratio: 1.18 / 1;
}

.house-visual {
  align-self: center;
}

.house-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--image-radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}

.house-visual img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--image-radius);
  box-shadow: 0 28px 78px rgba(21, 35, 28, 0.16);
}

.house-video-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(9, 18, 14, 0.08), rgba(9, 18, 14, 0.32));
  opacity: 0.82;
  transition: opacity 260ms ease;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: clamp(74px, 8vw, 104px);
  height: clamp(74px, 8vw, 104px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 58px rgba(8, 15, 12, 0.22);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.play-badge svg {
  width: 42%;
  height: 42%;
  margin-left: 4px;
  fill: currentColor;
}

.house-video-trigger:hover::after {
  opacity: 0.58;
}

.house-video-trigger:hover .play-badge {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -50%) scale(1.06);
}

.gallery-section {
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--image-radius);
  box-shadow: 0 20px 58px rgba(21, 35, 28, 0.14);
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: filter 320ms ease, transform 420ms ease;
}

.gallery-item-large img {
  min-height: 538px;
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(15, 29, 23, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.gallery-item:hover img,
.gallery-open:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.035);
}

.gallery-item::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(15, 29, 23, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  opacity: 1;
  transform: none;
}

figcaption {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.soft-section {
  background: var(--stone);
  overflow: hidden;
  isolation: isolate;
}

.soft-section::before,
.soft-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.soft-section::before {
  right: clamp(-120px, -7vw, -32px);
  top: 24px;
  width: clamp(300px, 38vw, 620px);
  height: clamp(300px, 38vw, 620px);
  background: url("assets/topographic-lines-02.svg") center / contain no-repeat;
  opacity: 0.2;
  transform: rotate(9deg);
}

.soft-section::after {
  left: clamp(-140px, -9vw, -48px);
  bottom: -120px;
  width: clamp(300px, 42vw, 680px);
  height: clamp(300px, 42vw, 680px);
  background: url("assets/topographic-lines-04.svg") center / contain no-repeat;
  opacity: 0.18;
  transform: rotate(-14deg);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading p {
  max-width: 620px;
  margin: 20px auto 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: var(--max);
  margin: 0 auto;
}

.steps article {
  min-height: 330px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid rgba(19, 35, 28, 0.1);
  border-radius: var(--radius);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.steps article:hover {
  transform: translateY(-7px);
  border-color: rgba(186, 138, 67, 0.28);
  box-shadow: 0 24px 58px rgba(19, 35, 28, 0.1);
}

.steps span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 2rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.split-section {
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 0.76fr);
}

.split-section::before {
  right: -86px;
  top: 34px;
  z-index: -1;
  width: clamp(240px, 30vw, 500px);
  height: clamp(240px, 30vw, 500px);
  background: url("assets/topographic-lines-03.svg") center / contain no-repeat;
  opacity: 0.25;
  transform: rotate(18deg);
}

.split-section::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: 18px;
  z-index: -1;
  width: clamp(190px, 24vw, 360px);
  height: clamp(190px, 24vw, 360px);
  background: url("assets/topographic-lines-01.svg") center / contain no-repeat;
  opacity: 0.15;
  transform: translateX(-50%) rotate(-10deg);
  pointer-events: none;
}

.split-photo img {
  aspect-ratio: 1.06 / 1;
}

.quiet-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  padding-left: 28px;
}

.quiet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border: 1px solid var(--brass);
  border-radius: 50%;
}


.section-divider {
  width: min(var(--max), calc(100% - 48px));
  height: 1px;
  margin: clamp(-34px, -2.5vw, -18px) auto clamp(-24px, -1.8vw, -12px);
  background: linear-gradient(90deg, transparent, rgba(32, 63, 48, 0.22), rgba(178, 128, 74, 0.28), rgba(32, 63, 48, 0.22), transparent);
}
.location-section {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.location-section::before {
  inset: 22px -92px auto auto;
  z-index: -1;
  width: min(560px, 46vw);
  height: min(560px, 46vw);
  background: url("assets/topographic-lines-05.svg") center / contain no-repeat;
  opacity: 0.27;
  transform: rotate(7deg);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.location-grid article {
  min-width: 0;
  transition: transform 260ms ease;
}

.location-grid article:hover {
  transform: translateY(-5px);
}

.location-grid img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  margin-bottom: 18px;
  object-fit: cover;
}

.location-grid h3,
.location-grid p {
  padding-inline: 4px;
}

.location-grid h3 {
  margin-top: 2px;
}

.location-grid p {
  margin-top: 10px;
}

.price-section {
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.price-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(186, 138, 67, 0.32);
  box-shadow: 0 24px 58px rgba(19, 35, 28, 0.1);
}

.price-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.82rem, 2.8vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
  white-space: nowrap;
}

.price-card p {
  margin: 0;
  color: var(--muted);
}

.price-note {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  max-width: var(--max);
  margin: 24px auto 0;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background: var(--moss);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(19, 35, 28, 0.14);
}

.price-note h3 {
  color: #fff;
}

.price-note p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.price-note-side {
  padding-left: clamp(20px, 3vw, 38px);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.proof-section {
  background: var(--moss);
  overflow: hidden;
  isolation: isolate;
}

.proof-section::before,
.proof-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.proof-section::before {
  left: -70px;
  top: -110px;
  width: clamp(320px, 40vw, 680px);
  height: clamp(320px, 40vw, 680px);
  background: url("assets/topographic-lines-04.svg") center / contain no-repeat;
  opacity: 0.24;
  transform: rotate(-6deg);
}

.proof-section::after {
  right: -90px;
  bottom: -130px;
  width: clamp(280px, 34vw, 560px);
  height: clamp(280px, 34vw, 560px);
  background: url("assets/topographic-lines-02.svg") center / contain no-repeat;
  opacity: 0.18;
  transform: rotate(16deg);
}

.proof-card {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.proof-card h2 {
  color: #fff;
}

.proof-card p {
  max-width: 700px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
}

.faq-section {
  overflow: hidden;
  isolation: isolate;
  max-width: 960px;
  margin: 0 auto;
}

.faq-section::before {
  left: 50%;
  top: 36px;
  width: min(700px, 80vw);
  height: min(700px, 80vw);
  background: url("assets/topographic-lines-03.svg") center / contain no-repeat;
  opacity: 0.14;
  transform: translateX(-50%) rotate(-4deg);
  z-index: -1;
}

.faq-list {
  display: grid;
  gap: 16px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

details:hover,
details[open] {
  border-color: rgba(186, 138, 67, 0.28);
  box-shadow: 0 18px 42px rgba(19, 35, 28, 0.08);
}

details:hover {
  transform: translateY(-2px);
}

summary {
  padding: 22px 26px;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 26px 24px;
}

.contacts-section {
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 3vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.contact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(186, 138, 67, 0.32);
  box-shadow: 0 24px 58px rgba(19, 35, 28, 0.1);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(186, 138, 67, 0.3);
  border-radius: 50%;
  color: var(--brass);
  background: rgba(250, 247, 239, 0.72);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  margin-top: 10px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card p a {
  color: var(--ink);
  font-weight: 600;
  text-decoration-color: rgba(32, 63, 48, 0.22);
  text-underline-offset: 5px;
}

.contact-card p strong {
  color: var(--ink);
  font-weight: 600;
}

.text-link {
  align-self: end;
  width: fit-content;
  color: var(--moss);
  font-weight: 600;
  text-decoration-color: rgba(32, 63, 48, 0.28);
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
  color: var(--brass);
  text-decoration-color: rgba(186, 138, 67, 0.62);
}

.map-embed {
  max-width: var(--max);
  margin: 22px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--image-radius);
  box-shadow: 0 24px 64px rgba(19, 35, 28, 0.12);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  border: 0;
}

.contact-section {
  position: relative;
  min-height: 820px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.contact-section > img,
.contact-section > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("assets/topographic-lines-01.svg") right 8% top 12% / min(720px, 64vw) auto no-repeat,
    url("assets/topographic-lines-05.svg") left -8% bottom -18% / min(620px, 58vw) auto no-repeat;
  opacity: 1;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 23, 0.68);
  opacity: 1;
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  width: min(var(--max), calc(100vw - 48px));
  padding: clamp(34px, 6vw, 72px);
  background: rgba(255, 253, 248, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-panel h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
}

.reservation-form {
  display: grid;
  gap: 16px;
}

.reservation-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(19, 35, 28, 0.24);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 180ms ease, background 180ms ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: rgba(186, 138, 67, 0.72);
  background: rgba(255, 253, 248, 0.42);
  outline: 0;
}

.reservation-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form .form-field {
  display: grid;
  gap: 6px;
}

.reservation-form .guest-counter {
  grid-template-columns: 38px minmax(54px, 1fr) 38px;
  max-width: 180px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(19, 35, 28, 0.24);
}

.reservation-form .counter-button {
  width: 34px;
  height: 34px;
  background: rgba(19, 35, 28, 0.04);
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Honeypot pro spam boty - musi zustat mimo obrazovku, ne display:none */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.reservation-form .cf-turnstile {
  min-height: 65px;
  margin: 2px 0;
}

.scroll-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 35;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(53, 104, 78, 0.9);
  color: #fff;
  box-shadow: 0 18px 44px rgba(19, 35, 28, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.94);
  cursor: pointer;
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease, background 180ms ease;
  backdrop-filter: blur(14px);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.scroll-top:hover {
  background: var(--moss-light);
  transform: translateY(-3px);
}

.cookie-bar {
  position: fixed;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 110;
  display: grid;
  gap: 18px;
  width: min(420px, calc(100vw - 36px));
  padding: clamp(20px, 3vw, 26px);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--image-radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 320ms ease, visibility 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-bar.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.cookie-text strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.15;
}

.cookie-text p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-button {
  min-height: 46px;
  padding: 12px 20px;
  font-size: 0.92rem;
}

.cookie-decline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(19, 35, 28, 0.22);
}

.cookie-decline:hover {
  background: rgba(19, 35, 28, 0.05);
  border-color: rgba(19, 35, 28, 0.34);
}

.gallery-lightbox,
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(8, 15, 12, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.gallery-lightbox.is-open,
.video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  width: min(1120px, 100%);
  max-height: calc(100svh - 80px);
  display: grid;
  gap: 14px;
}

.lightbox-figure img {
  width: 100%;
  max-height: calc(100svh - 142px);
  object-fit: contain;
  border-radius: var(--image-radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.lightbox-close {
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.lightbox-prev {
  left: clamp(14px, 3vw, 34px);
}

.lightbox-next {
  right: clamp(14px, 3vw, 34px);
}

.video-dialog {
  width: min(1180px, 100%);
}

.video-dialog video {
  display: block;
  width: 100%;
  max-height: calc(100svh - 108px);
  border-radius: var(--image-radius);
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 26px;
  align-items: center;
  padding: 34px clamp(24px, 5vw, 56px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.site-footer p a {
  color: inherit;
  text-underline-offset: 3px;
}

.site-footer p a:hover {
  color: var(--ink);
}

/* ---------- Podstranky (pravni texty) ---------- */
.legal-body {
  background: var(--cream);
}

/* hlavicka podstranek je od zacatku ve "scrolled" stavu (svetle pozadi) */
.legal-body .site-header {
  color: var(--ink);
}

.legal-body .brand-logo {
  filter: none;
}

.legal-body .site-nav {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(21, 35, 28, 0.08);
}

.legal-body .site-nav a:not(.nav-cta):hover {
  background: rgba(32, 63, 48, 0.08);
}

.legal-body .nav-cta {
  color: #fff !important;
  background: var(--moss);
}

.legal-body .nav-toggle {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
}

.legal-main {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(150px, 18vw, 190px) clamp(24px, 5vw, 54px) clamp(64px, 8vw, 110px);
}

.legal-main h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1;
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-main h2 {
  margin-top: clamp(38px, 5vw, 54px);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-main p {
  margin: 16px 0 0;
}

.legal-main ul {
  margin: 16px 0 0;
  padding-left: 24px;
  display: grid;
  gap: 8px;
}

.legal-main a {
  color: var(--moss);
  font-weight: 600;
  text-decoration-color: rgba(32, 63, 48, 0.28);
  text-underline-offset: 4px;
}

.legal-main a:hover {
  color: var(--brass);
}

.legal-main strong {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.intro.is-visible .intro-item,
.steps .reveal,
.gallery-grid .reveal,
.location-grid .reveal,
.price-grid .reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.intro.is-visible .intro-item:nth-child(2),
.steps .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2),
.location-grid .reveal:nth-child(2),
.price-grid .reveal:nth-child(2) {
  --reveal-delay: 90ms;
}

.intro.is-visible .intro-item:nth-child(3),
.steps .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3),
.location-grid .reveal:nth-child(3),
.price-grid .reveal:nth-child(3) {
  --reveal-delay: 180ms;
}

.gallery-grid .reveal:nth-child(4),
.location-grid .reveal:nth-child(4),
.price-grid .reveal:nth-child(4) {
  --reveal-delay: 270ms;
}

.gallery-grid .reveal:nth-child(5) {
  --reveal-delay: 360ms;
}

.gallery-grid .reveal:nth-child(6) {
  --reveal-delay: 450ms;
}

.faq-list.is-visible details {
  animation: fade-lift 640ms ease both;
}

.faq-list.is-visible details:nth-child(2) {
  animation-delay: 70ms;
}

.faq-list.is-visible details:nth-child(3) {
  animation-delay: 140ms;
}

.faq-list.is-visible details:nth-child(4) {
  animation-delay: 210ms;
}

.faq-list.is-visible details:nth-child(5) {
  animation-delay: 280ms;
}

.faq-list.is-visible details:nth-child(n + 6) {
  animation-delay: 350ms;
}

img {
  transition: filter 320ms ease, transform 320ms ease;
}

.editorial-gallery img:hover,
.house-video-trigger:hover img,
.location-grid img:hover {
  transform: translateY(-3px);
  filter: saturate(1.04) contrast(1.02);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(186, 138, 67, 0.45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    left: 16px;
    right: 16px;
  }

  .nav-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(13, 25, 20, 0.22);
    color: #fff;
    backdrop-filter: blur(18px);
  }

  .site-header.is-scrolled .nav-toggle {
    border-color: var(--line);
    background: rgba(255, 253, 248, 0.9);
    color: var(--ink);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: auto;
    right: 0;
    display: none;
    width: min(310px, calc(100vw - 32px));
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.96);
    border-color: var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 16px;
  }

  .nav-cta {
    color: #fff !important;
    background: var(--moss);
  }

  /* do 980px je lista v toku pod obsahem hero, aby nic neprekryvala */
  .booking-pill {
    position: static;
    grid-template-columns: 1fr 1fr;
    width: min(720px, calc(100vw - 32px));
    margin: 8px auto 24px;
    border-radius: 26px;
    transform: none;
  }

  .booking-pill button {
    grid-column: 1 / -1;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .house-section,
  .split-section,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

    .intro,
  .steps {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-note {
    grid-template-columns: 1fr;
  }

  .price-note-side {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .intro {
    gap: 14px;
  }

  .site-footer p {
    text-align: left;
  }

  .house-visual img {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-logo {
    width: 132px;
  }

  .hero {
    min-height: 820px;
    place-items: start center;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    width: calc(100vw - 42px);
    padding-top: 136px;
  }

  h1 {
    max-width: 8.8ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.32rem, 11.8vw, 3.18rem);
    line-height: 0.98;
  }

  .hero-content p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  /* na mobilu je lista soucasti toku pod obsahem, nic neprekryva */
  .booking-pill {
    position: static;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
    margin: 8px auto 18px;
    padding: 10px;
    border-radius: 26px;
    transform: none;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .booking-pill label,
  .booking-pill .booking-field {
    padding: 10px 14px;
  }

  .section {
    padding: 62px 22px;
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .fact-grid,
  .editorial-gallery,
  .gallery-grid,
  .location-grid,
  .price-grid,
  .contacts-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .editorial-gallery .large {
    grid-column: auto;
  }

  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-gallery figure {
    gap: 10px;
  }

  .location-grid article {
    display: grid;
    gap: 6px;
  }

  .location-grid img {
    margin-bottom: 8px;
  }

  .editorial-gallery .large img,
  .editorial-gallery figure:not(.large) img,
  .house-visual img,
  .gallery-item img,
  .gallery-item-large img,
  .split-photo img,
  .location-grid img {
    aspect-ratio: 1.18 / 1;
    min-height: 0;
  }

  .steps article {
    min-height: auto;
    padding: 26px;
  }

  .steps span {
    margin-bottom: 28px;
  }

  .contact-section {
    min-height: auto;
    padding: 64px 0;
  }

  .contact-panel {
    width: calc(100vw - 28px);
    padding: 24px;
  }

  .gallery-lightbox,
  .video-lightbox {
    padding: 68px 14px 24px;
  }

  .lightbox-figure {
    max-height: calc(100svh - 96px);
  }

  .lightbox-figure img {
    max-height: calc(100svh - 168px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: translateY(-2px);
  }

  .lightbox-prev {
    left: calc(50% - 54px);
  }

  .lightbox-next {
    right: calc(50% - 54px);
  }

  .video-dialog video {
    max-height: calc(100svh - 112px);
  }
}

@media (max-width: 520px), (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-image {
    z-index: -2;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes enter-down {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes enter-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes booking-enter {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes image-settle {
  to {
    transform: scale(1);
  }
}

@keyframes fade-lift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .loader {
    display: none;
  }

  .reveal,
  .site-header,
  .hero-content,
  .booking-pill {
    opacity: 1;
    transform: none;
  }
}


























