/* ==========================================================================
   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); }
}
