/* ==========================================================================
   Ubytování Hasina — style.css
   Klidný, "domácký" rustikální web. Bez frameworků, čisté CSS.
   ========================================================================== */

/* ---- Design tokeny ---- */
:root {
  /* barvy — pískovec, zeleň, teplá bílá (inspirace Kokořínskem) */
  --color-cream: #FBF6EC;
  --color-paper: #FFFDF8;
  --color-sand-light: #EDDDBF;
  --color-sand: #D8B788;
  --color-sand-dark: #A9855A;
  --color-clay: #B2703F;
  --color-clay-dark: #8F5730;
  --color-green: #57724A;
  --color-green-dark: #37492E;
  --color-green-deep: #2A3A24;
  --color-ink: #2B2620;
  --color-ink-soft: #5C5347;
  --color-ink-faint: #8A8072;
  --color-border: #E4D6BE;
  --color-white: #FFFFFF;

  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', 'Segoe Print', cursive;

  --container-w: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 10px 30px rgba(43, 38, 32, 0.08);
  --shadow-card: 0 14px 40px rgba(43, 38, 32, 0.10);

  --dur-fast: 180ms;
  --dur-base: 280ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 78px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-green-deep); margin: 0 0 0.5em; line-height: 1.2; font-weight: 600; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

section[id] { scroll-margin-top: var(--header-h); }

.icon-sprite { display: none; }
.icon { flex-shrink: 0; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--color-green-deep);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--color-clay);
  outline-offset: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-clay);
  color: var(--color-white);
  box-shadow: 0 8px 22px rgba(143, 87, 48, 0.35);
}
.btn-primary:hover { background: var(--color-clay-dark); box-shadow: 0 12px 26px rgba(143, 87, 48, 0.4); }

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

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--header-h);
  z-index: 500;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), height var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(43, 38, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: color var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled .logo { color: var(--color-green-deep); }
.logo-dot { color: var(--color-clay); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  align-self: center;
}

.nav { margin-inline-start: auto; }
.nav ul { display: flex; gap: 30px; }
.nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--color-white);
  padding: 8px 2px;
  position: relative;
  transition: color var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled .nav a { color: var(--color-ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transition: right var(--dur-base) var(--ease-out);
}
.nav a:hover::after { right: 0; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 9px 16px;
  border-radius: 999px;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.site-header.is-scrolled .header-phone {
  color: var(--color-green-deep);
  border-color: var(--color-green-deep);
}
.header-phone:hover { background: var(--color-clay); border-color: var(--color-clay); color: var(--color-white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
  margin-inline: auto;
}
.site-header.is-scrolled .nav-toggle span { background: var(--color-ink); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-open .site-header.is-scrolled .nav-toggle span,
.nav-open .nav-toggle span { background: var(--color-ink); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-green-deep);
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1400ms ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide .ph { position: absolute; inset: 0; border-radius: 0; border: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 58, 36, 0.55) 0%, rgba(42, 58, 36, 0.35) 45%, rgba(24, 32, 20, 0.78) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  color: var(--color-sand-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--color-white);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.hero-claim {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-seasons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  margin-top: 48px;
  padding-bottom: 40px;
}
.hero-season-btn {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 40px;
  transition: background-color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.hero-season-btn:hover { background: rgba(255,255,255,0.22); }
.hero-season-btn.is-active { background: var(--color-clay); border-color: var(--color-clay); }

.hero-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
}
.hero-scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--color-white);
  border-radius: 50%;
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 0; transform: translateY(16px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue span { animation: none; }
}

/* ---- Sekce obecně ---- */
.section { padding: 108px 0; }
.section:nth-of-type(even) { background: var(--color-paper); }

.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-eyebrow {
  color: var(--color-clay-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-lead { color: var(--color-ink-soft); font-size: 1.08rem; max-width: 560px; }

/* ---- reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
/* bez JS ať je vše rovnou vidět */
.no-js .reveal { opacity: 1; transform: none; }

/* ---- Placeholder fotky ---- */
.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: linear-gradient(150deg, var(--color-sand-light), var(--color-sand) 60%, var(--color-sand-dark));
  border: 2px dashed rgba(43, 38, 32, 0.25);
  border-radius: var(--radius-md);
  color: var(--color-green-deep);
  overflow: hidden;
}
.ph-icon { opacity: 0.65; }
.ph-label {
  font-weight: 700;
  font-size: 0.95rem;
  padding-inline: 12px;
}
.ph-label small {
  display: block;
  font-weight: 500;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  opacity: 0.7;
  margin-top: 4px;
}

.ph--hero {
  border-radius: 0;
  border: none;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 90px 28px 28px;
}
.ph--hero .ph-icon { display: none; }
.ph--hero .ph-label {
  color: var(--color-white);
  background: rgba(24, 32, 20, 0.45);
  backdrop-filter: blur(4px);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-align: left;
}
.ph--hero .ph-label small { opacity: 0.85; }

.ph--tall { aspect-ratio: 4 / 5; }
.ph--square { aspect-ratio: 1 / 1; }

/* ---- O objektu ---- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.stat-badges {
  display: flex;
  gap: 12px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
  padding-inline: 16px;
  flex-wrap: wrap;
}
.stat-badge {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.stat-badge strong { display: block; font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-clay-dark); }
.stat-badge span { font-size: 0.78rem; color: var(--color-ink-soft); }

.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--color-green-dark); }

/* ---- Vybavení ---- */
.amenities-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}
.amenity-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.amenity-card-title {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--color-sand-light);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.amenity-card-title--spaced { margin-top: 28px; }
.amenity-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  color: var(--color-ink-soft);
  line-height: 1.5;
}
.amenity-list .icon { color: var(--color-green); margin-top: 2px; }

.amenities-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.amenities-gallery .ph-label { font-size: 0.78rem; }

.amenities-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-deep);
  color: var(--color-sand-light);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.tag-pill .icon { color: var(--color-sand); }

/* ---- Ceník ---- */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 48px;
  max-width: 640px;
  margin-inline: auto;
  border-top: 6px solid var(--color-clay);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.price-row:first-of-type { padding-top: 0; }
.price-row-label { display: flex; flex-direction: column; }
.price-row-label strong { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-green-deep); }
.price-row-label span { font-size: 0.85rem; color: var(--color-ink-faint); }
.price-row-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-clay-dark);
  white-space: nowrap;
}
.price-row-value small { font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: var(--color-ink-faint); }

.price-note-list { margin: 26px 0 32px; }
.price-note-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
  margin-bottom: 8px;
}
.price-note-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}
.pricing-cta { width: 100%; }

/* ---- Okolí / tipy ---- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tip-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.tip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tip-icon { color: var(--color-clay); margin-bottom: 14px; }
.tip-title { font-size: 1.15rem; margin-bottom: 8px; }
.tip-text { color: var(--color-ink-soft); font-size: 0.94rem; margin: 0; }

/* ---- Kniha hostů ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  margin: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 34px 34px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transform: rotate(var(--tilt, 0deg));
}
.reviews-grid .review-card:nth-child(1) { --tilt: -0.6deg; }
.reviews-grid .review-card:nth-child(2) { --tilt: 0.5deg; }
.reviews-grid .review-card:nth-child(3) { --tilt: 0.4deg; }
.reviews-grid .review-card:nth-child(4) { --tilt: -0.5deg; }
.review-quote-icon { color: var(--color-sand); margin-bottom: 6px; }
.review-quote {
  font-family: var(--font-hand);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-ink);
  margin-bottom: 14px;
}
.review-meta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-green-dark);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-meta span { font-weight: 500; color: var(--color-ink-faint); }

/* ---- Kontakt ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-base) var(--ease-out);
}
a.info-card:hover { transform: translateX(4px); }
.info-icon { color: var(--color-clay); }
.info-card strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-ink-faint); }
.info-card span { font-weight: 600; color: var(--color-ink); }

.map-embed {
  margin-top: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-links { display: flex; gap: 18px; margin-top: 10px; flex-wrap: wrap; }
.map-links a { font-size: 0.88rem; font-weight: 600; color: var(--color-clay-dark); }
.map-links a:hover { text-decoration: underline; }

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: var(--color-green-deep); }
.form-input {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: var(--color-cream);
  color: var(--color-ink);
  min-height: 48px;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.form-input:focus {
  outline: none;
  border-color: var(--color-clay);
  box-shadow: 0 0 0 4px rgba(178, 112, 63, 0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; }
.form-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-green-dark);
  min-height: 1.2em;
}

/* ---- Footer ---- */
.site-footer { background: var(--color-green-deep); color: var(--color-sand-light); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 40px;
}
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); font-weight: 700; }
.footer-tagline { color: rgba(237, 221, 191, 0.75); margin-top: 10px; font-size: 0.92rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.94rem; transition: color var(--dur-fast) var(--ease-out); }
.footer-links a:hover { color: var(--color-white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.94rem; }
.footer-contact a:hover { color: var(--color-white); }
.footer-bottom { border-top: 1px solid rgba(237, 221, 191, 0.18); padding: 20px 24px; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(237, 221, 191, 0.65); text-align: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .amenities-gallery { grid-template-columns: repeat(3, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--color-cream); padding: 32px 24px; transform: translateX(100%); transition: transform var(--dur-base) var(--ease-out); overflow-y: auto; }
  .nav-open .nav { transform: translateX(0); }
  .nav ul { flex-direction: column; gap: 6px; }
  .nav a { color: var(--color-ink); font-size: 1.15rem; display: block; padding: 14px 6px; border-bottom: 1px solid var(--color-border); }
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .header-phone { padding: 10px; }

  .amenities-columns { grid-template-columns: 1fr; }
  .amenities-gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .hero-title { font-size: clamp(2.8rem, 16vw, 4.5rem); }
  .tips-grid { grid-template-columns: 1fr; }
  .amenities-gallery { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { padding: 30px 24px; }
  .price-row { flex-wrap: wrap; }
  .contact-form { padding: 28px 22px; }
  .stat-badges { margin-top: 16px; }
}

/* ==========================================================================
   Pískovcová identita — odkaz na původní web (zeď + zlatá HASINA + slunečnice),
   zmodernizováno: procedurální pískovcová textura a "rozhýbané" plovoucí kameny.
   ========================================================================== */
:root {
  /* jemný pískovcový grain generovaný SVG šumem (bez obrázkových souborů) */
  --sandstone-grain: 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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Zlatý nápis HASINA + slunečnice ---- */
.brand-gold {
  background: linear-gradient(180deg, #F7D583 0%, #EBAE38 46%, #CE8C1E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #EBAE38;
  -webkit-text-fill-color: transparent;
}
.logo-flower { align-self: center; flex-shrink: 0; }
.footer-logo { display: inline-flex; align-items: center; gap: 6px; }

.hero-title { position: relative; display: inline-block; }
.hero-title-inner { display: inline-block; }
.hero-flower {
  position: absolute;
  top: clamp(-6px, -1vw, -2px);
  right: clamp(-30px, -4vw, -18px);
  width: clamp(38px, 6vw, 64px);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transform-origin: 50% 50%;
  animation: flowerSpin 30s linear infinite;
}
@keyframes flowerSpin { to { transform: rotate(360deg); } }

/* pískovcová textura i na placeholderech fotek */
.ph {
  background-image: var(--sandstone-grain),
    linear-gradient(150deg, var(--color-sand-light), var(--color-sand) 60%, var(--color-sand-dark));
  background-blend-mode: soft-light, normal;
  background-size: 150px 150px, cover;
}

/* ---- Plovoucí pískovce ("kameny co se hýbou") ---- */
.stones {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.stones--hero { z-index: 2; }
.stones--section { z-index: 0; opacity: 0.55; }

.stone {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: calc(96px * var(--s, 1));
  aspect-ratio: 1.3 / 1;
  will-change: transform;
}
.stone__rock {
  position: absolute;
  inset: 0;
  background-image: var(--sandstone-grain),
    linear-gradient(148deg, #E7D0A2 0%, #D3AF7C 52%, #B78D5E 100%);
  background-blend-mode: overlay, normal;
  background-size: 88px 88px, cover;
  border-radius: 20% 22% 20% 22% / 26% 24% 26% 24%;
  box-shadow:
    inset 0 5px 10px rgba(255, 246, 226, 0.45),
    inset 0 -14px 24px rgba(110, 76, 38, 0.5),
    inset 8px 0 18px rgba(110, 76, 38, 0.22),
    inset -6px 0 14px rgba(255, 246, 226, 0.18),
    0 18px 34px rgba(54, 40, 22, 0.3);
  animation: stoneFloat var(--dur, 9s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
/* diagonální plocha = dojem otesaného kamene */
.stone__rock::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(122deg,
    rgba(255, 250, 236, 0.35) 0 32%,
    transparent 34% 62%,
    rgba(96, 66, 33, 0.28) 66% 100%);
  mix-blend-mode: soft-light;
}
/* každý kámen trochu jinak otesaný – ať nevypadají stejně */
.stones .stone:nth-child(1) .stone__rock { border-radius: 18% 26% 20% 24% / 30% 22% 28% 24%; }
.stones .stone:nth-child(2) .stone__rock { border-radius: 26% 18% 24% 20% / 22% 30% 22% 30%; }
.stones .stone:nth-child(3) .stone__rock { border-radius: 22% 24% 16% 28% / 28% 20% 30% 22%; }
.stones .stone:nth-child(4) .stone__rock { border-radius: 24% 20% 28% 18% / 24% 28% 20% 28%; }
@keyframes stoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50% { transform: translateY(-16px) rotate(2.5deg); }
}

/* hero obsah musí zůstat nad kameny */
.hero-content { z-index: 3; }
.hero-seasons { z-index: 3; }
.hero-scroll-cue { z-index: 3; }

.surroundings { position: relative; overflow: hidden; }
.surroundings .container { position: relative; z-index: 1; }

/* ---- Pískovcová zeď (pás mezi hero a obsahem) ---- */
.stone-band {
  position: relative;
  min-height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(0deg, rgba(120, 84, 42, 0.16) 0 2px, transparent 2px 52px),
    repeating-linear-gradient(90deg, rgba(120, 84, 42, 0.12) 0 2px, transparent 2px 104px),
    linear-gradient(160deg, #E6CFA2 0%, #D4B180 58%, #C29A69 100%);
  box-shadow:
    inset 0 12px 26px rgba(120, 84, 42, 0.28),
    inset 0 -12px 26px rgba(120, 84, 42, 0.28);
}
/* posunuté spáry v lichých řadách = realističtější kamenná vazba */
.stone-band__grain {
  position: absolute;
  inset: 0;
  background-image: var(--sandstone-grain),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(120, 84, 42, 0.12) 52px 54px);
  background-blend-mode: soft-light, normal;
  background-size: 160px 160px, 104px 104px;
  background-position: 0 0, 52px 52px;
  opacity: 0.8;
  pointer-events: none;
}
.stone-band__text {
  margin: 0;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  color: #9C7742;
  letter-spacing: 0.03em;
  /* vyrytý/vytesaný dojem */
  text-shadow: 0 1px 0 rgba(255, 249, 235, 0.65), 0 -1px 1px rgba(74, 48, 20, 0.5);
  will-change: transform;
}
.stone-band__flower { filter: drop-shadow(0 2px 3px rgba(74, 48, 20, 0.4)); }

/* ---- Tlačítko Booking.com ---- */
.btn-icon { flex-shrink: 0; }
.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0071c2;
  color: #fff;
  border: 1px solid #0071c2;
  box-shadow: 0 10px 26px rgba(0, 113, 194, 0.32);
}
.btn-booking:hover {
  background: #00558f;
  border-color: #00558f;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 113, 194, 0.4);
}
.btn-booking .btn-icon { color: #fff; }

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.pricing-actions .pricing-cta { margin-top: 0; }

@media (max-width: 520px) {
  .pricing-actions { flex-direction: column; }
  .pricing-actions .btn { width: 100%; }
}

/* ---- Karty tipů jako pískovcové tabulky ---- */
.tip-card {
  background: linear-gradient(160deg, #FBF4E6, #F3E7CF);
  border: 1px solid #E7D3AC;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 30px rgba(120, 84, 42, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .hero-flower, .stone__rock { animation: none; }
  .stone { transform: none !important; }
}

@media (max-width: 640px) {
  /* na mobilu kameny jen do horních rohů, ať neruší čtení textu v hero.
     --x/--y jsou inline, proto je tu potřeba !important pro přepsání. */
  .stones--hero .stone:nth-child(3),
  .stones--hero .stone:nth-child(4) { display: none; }
  .stones--hero .stone:nth-child(1) { --x: -3% !important; --y: 4% !important; --s: 0.7 !important; }
  .stones--hero .stone:nth-child(2) { --x: 74% !important; --y: 2% !important; --s: 0.82 !important; }
  .stone-band { min-height: 120px; }
  .stone-band__text { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* ==========================================================================
   V2 — Vícestránkový web + SKUTEČNÁ pískovcová zeď + reálné fotky
   ========================================================================== */

/* ---- Pískovcová zeď: dlaždice s vazbou na střídačku (running bond) ----
   Kresleno v SVG (data-URI), takže žádné obrázky navíc a ostré na retině. */
:root {
  --wall-tile: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ecd6aa'/%3E%3Cstop offset='1' stop-color='%23c9a675'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='120' height='120' fill='%23e6d4b0'/%3E%3Crect x='3' y='3' width='114' height='53' rx='5' fill='url(%23g)'/%3E%3Crect x='3' y='3' width='114' height='3' fill='%23f4e6c0' opacity='0.55'/%3E%3Crect x='3' y='51' width='114' height='5' rx='2' fill='%239c7a4c' opacity='0.4'/%3E%3Crect x='-57' y='63' width='114' height='53' rx='5' fill='url(%23g)'/%3E%3Crect x='63' y='63' width='114' height='53' rx='5' fill='url(%23g)'/%3E%3Crect x='-57' y='63' width='114' height='3' fill='%23f4e6c0' opacity='0.55'/%3E%3Crect x='63' y='63' width='114' height='3' fill='%23f4e6c0' opacity='0.55'/%3E%3Crect x='-57' y='111' width='114' height='5' rx='2' fill='%239c7a4c' opacity='0.4'/%3E%3Crect x='63' y='111' width='114' height='5' rx='2' fill='%239c7a4c' opacity='0.4'/%3E%3C/svg%3E");
}
.wall-surface {
  background-color: #E7D6B4;
  background-image: var(--sandstone-grain), var(--wall-tile);
  background-size: 150px 150px, 120px 120px;
  background-blend-mode: soft-light, normal;
}

/* ---- Hlavička: pevná (solid) varianta pro podstránky ---- */
.site-header--solid {
  background: rgba(251, 246, 236, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(43, 38, 32, 0.08);
}
.site-header--solid .logo { color: var(--color-green-deep); }
.site-header--solid .nav a { color: var(--color-ink); }
.site-header--solid .header-phone { color: var(--color-green-deep); border-color: var(--color-green-deep); }
.site-header--solid .nav-toggle span { background: var(--color-ink); }

/* aktivní stránka v navigaci */
.nav a.is-current { color: var(--color-clay); }
.nav a.is-current::after { right: 0; background: var(--color-clay); }

/* ---- Záhlaví podstránky = pískovcová zeď s vytesaným názvem ---- */
.page-header {
  position: relative;
  padding: calc(var(--header-h) + clamp(44px, 8vh, 78px)) 0 clamp(46px, 8vh, 76px);
  text-align: center;
  overflow: hidden;
  background-color: #E7D6B4;
  background-image: var(--sandstone-grain), var(--wall-tile);
  background-size: 150px 150px, 120px 120px;
  background-blend-mode: soft-light, normal;
  box-shadow: inset 0 -16px 32px rgba(120, 84, 42, 0.28), inset 0 16px 30px rgba(120, 84, 42, 0.18);
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 45%, rgba(249, 243, 233, 0.62), rgba(249, 243, 233, 0) 72%);
  pointer-events: none;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header__eyebrow {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.76rem; color: #8A5E2B; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.page-header__title {
  font-size: clamp(2.1rem, 5vw, 3.3rem); color: #7C5A2E; margin: 0;
  text-shadow: 0 1px 0 rgba(255, 250, 236, 0.6), 0 -1px 1px rgba(74, 48, 20, 0.5);
}
.page-header__sub { color: #6B5028; max-width: 620px; margin: 14px auto 0; font-size: 1.06rem; }

/* ---- Domů: sezónní banner (fotky mají vlastní napálené logo HASINA) ---- */
.hero-banner {
  position: relative;
  height: clamp(380px, 70vh, 640px);
  overflow: hidden;
  background: #2A3A24;
}
.hero-banner__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s var(--ease-out);
}
.hero-banner__slide.is-active { opacity: 1; }
.hero-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 26%, rgba(43,58,36,0.22) 100%);
}
.hero-banner .hero-seasons {
  position: absolute; left: 0; right: 0; bottom: 22px; top: auto; transform: none;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; z-index: 2;
}

/* ---- Uvítací zeď na Domů (zeď + plaketa) ---- */
.wall-welcome {
  position: relative;
  padding: clamp(56px, 9vh, 92px) 0;
  overflow: hidden;
  text-align: center;
  box-shadow: inset 0 16px 30px rgba(120, 84, 42, 0.18), inset 0 -16px 30px rgba(120, 84, 42, 0.2);
}
.wall-welcome__engraved {
  font-family: var(--font-heading); font-weight: 600; margin: 0 0 28px;
  font-size: clamp(1.7rem, 4.4vw, 2.8rem); color: #7C5A2E;
  text-shadow: 0 1px 0 rgba(255, 250, 236, 0.6), 0 -1px 1px rgba(74, 48, 20, 0.5);
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.plaque {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, #FFFDF8, #F6EAD2);
  border: 1px solid #E4D0A8;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(90, 60, 30, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  max-width: 720px; margin-inline: auto; padding: clamp(30px, 5vw, 48px);
}
.plaque h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.plaque p { color: var(--color-ink-soft); font-size: 1.08rem; margin-bottom: 26px; }
.plaque-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Reálné fotky (nahrazují .ph placeholdery) ---- */
.media {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--color-sand-light);
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 3 / 2; }
.media--square { aspect-ratio: 1 / 1; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery .media { aspect-ratio: 1 / 1; }
.gallery .media--big { grid-column: span 2; grid-row: span 2; }

/* outline tlačítko na světlém pozadí */
.btn-outline--dark { background: transparent; border-color: var(--color-clay); color: var(--color-clay-dark); }
.btn-outline--dark:hover { background: var(--color-clay); color: #fff; border-color: var(--color-clay); }

/* ---- Info boxy (storno, rezervace, kudy k nám) ---- */
.info-box {
  background: var(--color-white); border-radius: var(--radius-md);
  padding: 28px 30px; box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border); margin-top: 22px;
}
.info-box h3 { font-size: 1.18rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.info-box h3 .icon { color: var(--color-clay); }
.info-box p:last-child, .info-box ul:last-child { margin-bottom: 0; }
.info-box ul li { padding: 6px 0 6px 22px; position: relative; color: var(--color-ink-soft); }
.info-box ul li::before {
  content: ""; position: absolute; left: 2px; top: 13px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--color-clay);
}

/* zvýrazněné řádky ceníku (víkend / týden) */
.price-row--highlight { background: linear-gradient(120deg, rgba(178,112,63,0.08), rgba(178,112,63,0.02)); border-radius: var(--radius-sm); }

/* jednoduchý "proč Hasina" pruh na Domů */
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.perk { text-align: center; padding: 8px; }
.perk .icon { color: var(--color-green); }
.perk strong { display: block; font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-green-deep); margin: 10px 0 4px; }
.perk span { color: var(--color-ink-soft); font-size: 0.96rem; }

/* CTA pruh */
.cta-band { text-align: center; }
.cta-band .btn-booking { margin-top: 6px; }

@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .media--big { grid-column: span 2; grid-row: auto; aspect-ratio: 3/2; }
  .perks { grid-template-columns: 1fr; gap: 14px; }
}

/* Mobil: telefon jen jako ikona, ať se vejde hamburger menu */
@media (max-width: 560px) {
  .header-phone { font-size: 0; padding: 11px; gap: 0; }
  .header-phone .icon { width: 18px; height: 18px; }
}

/* ==========================================================================
   Doladění v3 — čitelná hlavička, ostřejší banner, realističtější pískovec,
   světlo sledující kurzor po zdi.
   ========================================================================== */

/* --- Průhledná hlavička nad fotkou: tmavý přechod + stín textu --- */
.site-header:not(.is-scrolled):not(.site-header--solid)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,24,14,0.6) 0%, rgba(18,24,14,0.12) 68%, transparent 100%);
}
.site-header:not(.is-scrolled):not(.site-header--solid) .logo,
.site-header:not(.is-scrolled):not(.site-header--solid) .nav a,
.site-header:not(.is-scrolled):not(.site-header--solid) .header-phone {
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* --- Nižší banner: fotky 960px se tolik neroztáhnou = ostřejší --- */
.hero-banner { height: clamp(300px, 42vh, 440px); }

/* --- Realističtější pískovec: barevně proměnlivé kvádry + zrno + žilkování --- */
:root {
  --wall-tile: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23e9d3a4'/%3E%3Cstop offset='1' stop-color='%23c6a06e'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23f0e1bd'/%3E%3Cstop offset='1' stop-color='%23d3b98a'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23e0cca3'/%3E%3Cstop offset='1' stop-color='%23bd9f73'/%3E%3C/linearGradient%3E%3Cfilter id='t'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0.6 0.6 0 0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='120' height='120' fill='%23e3d0ab'/%3E%3Crect x='3' y='3' width='114' height='53' rx='3' fill='url(%23a)'/%3E%3Crect x='-57' y='63' width='114' height='53' rx='3' fill='url(%23b)'/%3E%3Crect x='63' y='63' width='114' height='53' rx='3' fill='url(%23c)'/%3E%3Crect x='3' y='3' width='114' height='2.5' fill='%23f6e8c4' opacity='0.5'/%3E%3Crect x='-57' y='63' width='114' height='2.5' fill='%23f6e8c4' opacity='0.5'/%3E%3Crect x='63' y='63' width='114' height='2.5' fill='%23f6e8c4' opacity='0.5'/%3E%3Crect x='3' y='51.5' width='114' height='4.5' rx='2' fill='%23926f45' opacity='0.42'/%3E%3Crect x='-57' y='111.5' width='114' height='4.5' rx='2' fill='%23926f45' opacity='0.42'/%3E%3Crect x='63' y='111.5' width='114' height='4.5' rx='2' fill='%23926f45' opacity='0.42'/%3E%3Crect width='120' height='120' filter='url(%23t)' opacity='0.34'/%3E%3C/svg%3E");
  --wall-veins: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='v'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='2' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.42 0 0 0 0 0.30 0 0 0 0 0.16 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23v)'/%3E%3C/svg%3E");
}
.wall-surface, .page-header {
  position: relative;
  background-color: #e3d0ab;
  background-image: var(--wall-veins), var(--wall-tile);
  background-size: 320px 320px, 120px 120px;
  background-blend-mode: multiply, normal;
}

/* --- Světlo sledující kurzor po zdi (hover animace) --- */
.wall-surface, .page-header { --mx: 50%; --my: 50%; }
.wall-surface::after, .page-header::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(255,247,216,0.6), rgba(255,247,216,0) 66%);
  opacity: 0; transition: opacity 0.45s var(--ease-out); mix-blend-mode: soft-light;
}
.wall-surface:hover::after, .page-header:hover::after { opacity: 1; }
.wall-surface > .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .wall-surface::after, .page-header::after { display: none; }
}

/* ==========================================================================
   v4 — SKUTEČNÁ pískovcová zeď (fotka z původního webu ubytovanihasina.cz)
   Nahrazuje kreslenou zeď fotorealistickou texturou.
   ========================================================================== */
.wall-surface, .page-header {
  background-color: #cdb083;
  background-image:
    linear-gradient(rgba(252,247,236,0.30), rgba(252,247,236,0.30)),
    url('images/piskovec.jpg');
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: normal;
}

/* světlo za kurzorem – teplý sluneční odlesk na kameni */
.wall-surface::after, .page-header::after {
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(255,231,178,0.6), rgba(255,231,178,0) 68%);
  mix-blend-mode: overlay;
}

/* jemnější vinětace – textura je světlá, nemusíme ji tolik zesvětlovat */
.page-header::before {
  background: radial-gradient(120% 100% at 50% 42%, rgba(250,244,234,0.32), rgba(250,244,234,0) 70%);
}

/* plovoucí kameny také ze skutečné textury */
.stone__rock {
  background-image: url('images/piskovec.jpg');
  background-size: 200px auto;
  background-position: center;
  background-blend-mode: normal;
}

/* ==========================================================================
   v5 — čitelnost nápisů na skutečné (teplé) pískovcové zdi
   ========================================================================== */
/* ztmavení zdi za nadpisem pro kontrast světlého vyrytého písma */
.page-header::before {
  background: radial-gradient(120% 120% at 50% 44%, rgba(46,30,12,0.5), rgba(46,30,12,0.08) 72%);
}
.page-header__title,
.wall-welcome__engraved {
  color: #FCF4E3;
  text-shadow: 0 2px 4px rgba(35,22,8,0.6), 0 1px 0 rgba(0,0,0,0.3);
}
.page-header__eyebrow { color: #FBEAC6; text-shadow: 0 1px 4px rgba(35,22,8,0.65); }
.page-header__sub { color: #F6E9CD; text-shadow: 0 1px 4px rgba(35,22,8,0.6); }

/* uvítací zeď na Domů: jemné ztmavení pod vyrytý nápis */
.wall-welcome::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 46%;
  background: radial-gradient(90% 100% at 50% 30%, rgba(46,30,12,0.42), rgba(46,30,12,0) 70%);
  pointer-events: none; z-index: 0;
}

/* logo Hasina v průhledné hlavičce (nad fotkou) – výrazně čitelnější */
.site-header:not(.is-scrolled):not(.site-header--solid)::before {
  background: linear-gradient(180deg, rgba(16,22,12,0.78) 0%, rgba(16,22,12,0.28) 62%, transparent 100%);
}
.site-header:not(.is-scrolled):not(.site-header--solid) .logo {
  color: #FFF6E2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* ==========================================================================
   COOL PRVKY — lightbox, sezónní efekt, prohlídka (hotspoty), mapa výletů
   ========================================================================== */

/* --- Lightbox galerie --- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: rgba(20, 16, 10, 0.92); backdrop-filter: blur(6px);
  padding: 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox__stage { margin: 0; max-width: 90vw; max-height: 88vh; text-align: center; }
.lightbox__img {
  max-width: 90vw; max-height: 80vh; width: auto; height: auto;
  border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__cap { color: #f3e8d2; font-family: var(--font-heading); font-size: 1.05rem; margin-top: 14px; }
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,0.12); color: #fff;
  border: none; border-radius: 50%; width: 54px; height: 54px; font-size: 2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.lightbox__btn:hover { background: rgba(255,255,255,0.28); transform: scale(1.08); }
.lightbox__close { top: 20px; right: 24px; font-size: 2.2rem; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 640px) { .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; } .lightbox__btn { width: 46px; height: 46px; } }

/* --- Sezónní efekt (canvas nad bannerem) --- */
.season-fx { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* --- Prohlídka domečku (hotspoty na fotce) --- */
.tour-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); max-width: 940px; margin-inline: auto;
}
.tour-photo img { width: 100%; display: block; }
.hotspot {
  position: absolute; left: var(--hx); top: var(--hy); transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%; border: 3px solid #fff;
  background: var(--color-clay); color: #fff; font-size: 1.2rem; font-weight: 700;
  display: grid; place-items: center; cursor: pointer; z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  animation: hotspotPulse 2.4s ease-out infinite;
}
@keyframes hotspotPulse {
  0% { box-shadow: 0 4px 14px rgba(0,0,0,0.4), 0 0 0 0 rgba(178,112,63,0.55); }
  70% { box-shadow: 0 4px 14px rgba(0,0,0,0.4), 0 0 0 16px rgba(178,112,63,0); }
  100% { box-shadow: 0 4px 14px rgba(0,0,0,0.4), 0 0 0 0 rgba(178,112,63,0); }
}
.hotspot__label {
  position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #2a2019; color: #fff; padding: 9px 14px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600; white-space: nowrap; width: max-content; max-width: 240px;
  opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35); z-index: 3;
}
.hotspot__label::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: #2a2019;
}
.hotspot:hover .hotspot__label, .hotspot:focus .hotspot__label, .hotspot:focus-visible .hotspot__label {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.hotspot:hover, .hotspot:focus { animation: none; background: var(--color-clay-dark); }

/* --- Mapa výletů --- */
.trip-map { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: stretch; }
.trip-map__stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
  background:
    radial-gradient(120% 90% at 50% 120%, #9db97e 0%, #c9d9ac 40%, #e8ecc9 100%);
  box-shadow: var(--shadow-card); border: 1px solid var(--color-border);
}
.trip-map__stage svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.trip-center {
  position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 3;
}
.trip-center span {
  background: #fff; color: var(--color-green-deep); font-family: var(--font-heading);
  font-weight: 700; font-size: 0.9rem; padding: 4px 12px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.trip-pin {
  position: absolute; left: var(--px); top: var(--py); transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: none; border: none; padding: 0; z-index: 2; color: var(--color-green-deep);
}
.trip-pin__dot {
  width: 20px; height: 20px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--color-clay); border: 2px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.trip-pin__name {
  font-size: 0.78rem; font-weight: 700; background: rgba(255,255,255,0.9);
  padding: 2px 8px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-soft);
}
.trip-pin:hover .trip-pin__dot, .trip-pin.is-active .trip-pin__dot {
  transform: rotate(-45deg) scale(1.35); background: var(--color-clay-dark);
}
.trip-info {
  background: var(--color-white); border-radius: var(--radius-lg); padding: 30px 32px;
  box-shadow: var(--shadow-card); border: 1px solid var(--color-border);
  display: flex; flex-direction: column; justify-content: center;
}
.trip-info__eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-clay-dark); font-weight: 700; margin-bottom: 8px; }
.trip-info__title { font-size: 1.6rem; margin-bottom: 6px; }
.trip-info__dist { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--color-green); margin-bottom: 14px; }
.trip-info__desc { color: var(--color-ink-soft); margin: 0; }
.trip-hint { text-align: center; color: var(--color-ink-faint); font-size: 0.9rem; margin-top: 14px; }
@media (max-width: 820px) {
  .trip-map { grid-template-columns: 1fr; }
  .trip-map__stage { min-height: 360px; }
}

/* ==========================================================================
   v6 — pískovcová textura jako POZADÍ horní lišty (navbaru)
   ========================================================================== */
.site-header.is-scrolled,
.site-header--solid {
  background-color: #cdb083;
  background-image:
    linear-gradient(rgba(252,247,236,0.30), rgba(252,247,236,0.30)),
    url('images/piskovec.jpg');
  background-size: auto, 300px auto;
  background-position: center, center;
  background-repeat: repeat, repeat;
  backdrop-filter: none;
  box-shadow: 0 4px 16px rgba(28,18,8,0.4);
}
/* tmavý pískovec → světlý čitelný text v liště */
.site-header--solid .logo,
.site-header.is-scrolled .logo { color: #FBEFD6; text-shadow: 0 1px 5px rgba(0,0,0,0.55); }
.site-header--solid .header-phone,
.site-header.is-scrolled .header-phone { color: #FBEFD6; border-color: rgba(255,246,226,0.55); }
.site-header--solid .header-phone:hover,
.site-header.is-scrolled .header-phone:hover { background: var(--color-clay); border-color: var(--color-clay); color: #fff; }
.site-header--solid .nav-toggle span,
.site-header.is-scrolled .nav-toggle span { background: #FBEFD6; }

/* nav odkazy světlé jen na desktopu (na mobilu jsou v krémovém menu → tmavé) */
@media (min-width: 1081px) {
  .site-header--solid .nav a,
  .site-header.is-scrolled .nav a { color: #F1E6CD; }
  .site-header--solid .nav a.is-current,
  .site-header.is-scrolled .nav a.is-current { color: #F2B84E; }
  .site-header--solid .nav a.is-current::after,
  .site-header.is-scrolled .nav a.is-current::after { background: #F2B84E; }
}

/* na Domů je lišta plná (pískovcová) → banner posadíme pod ni */
body.home main { padding-top: var(--header-h); }

/* světlejší pískovec → textu v liště přidáme jemný stín pro čitelnost */
@media (min-width: 1081px) {
  .site-header--solid .nav a,
  .site-header.is-scrolled .nav a { text-shadow: 0 1px 4px rgba(0,0,0,0.45); }
}

/* ještě světlejší pískovec → silnější stín textu pro čitelnost */
.page-header__title, .wall-welcome__engraved {
  text-shadow: 0 1px 2px rgba(28,17,6,0.9), 0 3px 10px rgba(28,17,6,0.5);
}
.page-header__eyebrow, .page-header__sub {
  text-shadow: 0 1px 3px rgba(28,17,6,0.9);
}
@media (min-width: 1081px) {
  .site-header--solid .nav a,
  .site-header.is-scrolled .nav a { text-shadow: 0 1px 3px rgba(18,10,3,0.75); }
}
.site-header--solid .logo, .site-header.is-scrolled .logo { text-shadow: 0 1px 5px rgba(0,0,0,0.65); }

/* ==========================================================================
   v7 — SVĚTLÝ pískovec (lišta i zeď) + tmavý čitelný text (vyrytý se světlým lemem)
   ========================================================================== */
/* lišta: tmavý text na světlém kameni */
.site-header--solid .logo,
.site-header.is-scrolled .logo { color: var(--color-green-deep); text-shadow: 0 1px 2px rgba(255,250,238,0.65); }
.site-header--solid .header-phone,
.site-header.is-scrolled .header-phone { color: var(--color-green-deep); border-color: var(--color-green-deep); }
.site-header--solid .nav-toggle span,
.site-header.is-scrolled .nav-toggle span { background: var(--color-ink); }
@media (min-width: 1081px) {
  .site-header--solid .nav a,
  .site-header.is-scrolled .nav a { color: var(--color-ink); text-shadow: 0 1px 2px rgba(255,250,238,0.7); }
  .site-header--solid .nav a.is-current,
  .site-header.is-scrolled .nav a.is-current { color: var(--color-clay-dark); }
  .site-header--solid .nav a.is-current::after,
  .site-header.is-scrolled .nav a.is-current::after { background: var(--color-clay-dark); }
}
/* zeď: vyrytý tmavý nadpis se světlým lemem */
.page-header__title,
.wall-welcome__engraved {
  color: #43331c;
  text-shadow: 0 1px 0 rgba(255,250,240,0.65), 0 2px 7px rgba(255,248,234,0.4);
}
.page-header__eyebrow { color: #8a5a26; text-shadow: 0 1px 2px rgba(255,250,240,0.6); }
.page-header__sub { color: #4a3a26; text-shadow: 0 1px 2px rgba(255,250,240,0.55); }
/* světlejší vinětace, ať střed zdi není tmavý */
.page-header::before {
  background: radial-gradient(120% 120% at 50% 44%, rgba(255,250,240,0.30), rgba(255,250,240,0) 72%);
}
.wall-welcome::before { display: none; }
