/* =========================================================
   Apartmány u Čalouníků — styly
   ========================================================= */
:root {
  --clay: #b06a4f;
  --clay-dark: #8f5238;
  --clay-soft: #d99f86;
  --sage: #7a8471;
  --gold: #c9a86a;
  --cream: #f7f2ea;
  --cream-2: #efe7da;
  --explore-bg: #e7ebe3;
  --ink: #2c2722;
  --ink-soft: #55504a;
  --muted: #6f665c;
  --line: #e3d8c7;
  --white: #ffffff;
  --shadow-sm: 0 6px 20px rgba(44, 39, 34, 0.07);
  --shadow: 0 18px 50px rgba(44, 39, 34, 0.12);
  --radius: 18px;
  --radius-lg: 26px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  position: relative;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--clay-soft); color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: min(1140px, 90vw); margin: 0 auto; }
.container--narrow { width: min(820px, 90vw); }
.section { padding: 104px 0; position: relative; background: var(--cream); }
.section--alt { background: var(--cream-2); }
.section--explore { background: var(--explore-bg); }

/* Přechod mezi sekcemi jako záložka v diáři — výraznější odskok (levá část výš,
   pravá níž), pozvolná vlnka, a kousek pod hranou obšitá niť (stehy). */
.section::before, .section::after {
  content: ""; position: absolute; top: -38px; left: 0; right: 0; height: 44px; pointer-events: none;
}
/* Barevný odskok — sekce „vystrčí" svou barvu nahoru ve tvaru záložky */
.section::before {
  background: inherit;
  /* drobné stínování hrany — záložka vrhá jemný stín na předchozí sekci */
  filter: drop-shadow(0 -1.5px 2.5px rgba(43, 38, 34, 0.16));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='44' viewBox='0 0 200 44' preserveAspectRatio='none'%3E%3Cpath d='M0 44 L0 6 L46 6 C92 6 108 34 154 34 L200 34 L200 44 Z' fill='%23fff'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='44' viewBox='0 0 200 44' preserveAspectRatio='none'%3E%3Cpath d='M0 44 L0 6 L46 6 C92 6 108 34 154 34 L200 34 L200 44 Z' fill='%23fff'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
/* Niť obšitá z obou stran hrany odskoku — steh nad linkou i pod ní (kopíruje stejný tvar) */
.section::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='44' viewBox='0 0 1200 44' preserveAspectRatio='none'%3E%3Cpath d='M0 1 L276 1 C552 1 648 29 924 29 L1200 29' fill='none' stroke='%23b06a4f' stroke-width='1.6' stroke-dasharray='6 5' stroke-linecap='round'/%3E%3Cpath d='M0 12 L276 12 C552 12 648 40 924 40 L1200 40' fill='none' stroke='%23b06a4f' stroke-width='1.6' stroke-dasharray='6 5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  opacity: 0.6;
}

/* Dekorace: ze švu nad kontaktní sekcí visí plná niť do jehly (u pravého okraje stránky) */
.needle-deco { position: absolute; top: -4px; left: min(91%, calc(100% - 140px)); width: 130px; height: 105px; z-index: 3; pointer-events: none; }
.needle-deco svg { width: 100%; height: 100%; display: block; overflow: visible; filter: drop-shadow(0 1.5px 2px rgba(43, 38, 34, 0.28)); }
@media (max-width: 880px) { .needle-deco { display: none; } }
/* Šev u sekce „Kontakt" končí tam, kde začíná niť (dál nepokračuje) */
#kontakt::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='44' viewBox='0 0 1200 44' preserveAspectRatio='none'%3E%3Cpath d='M0 1 L276 1 C552 1 648 29 924 29 L1099 29' fill='none' stroke='%23b06a4f' stroke-width='1.6' stroke-dasharray='6 5' stroke-linecap='round'/%3E%3Cpath d='M0 12 L276 12 C552 12 648 40 924 40 L1099 40' fill='none' stroke='%23b06a4f' stroke-width='1.6' stroke-dasharray='6 5' stroke-linecap='round'/%3E%3C/svg%3E"); }
/* Vystřídání strany záložky pro efekt více štítků pod sebou */
#explore::before, #explore::after, #sluzby::before, #sluzby::after,
#okoli::before, #okoli::after, #faq::before, #faq::after { transform: scaleX(-1); }

/* Obsah nad dekorativní nití */
.section > .container, .footer .container, .hero__content { position: relative; z-index: 2; }
/* Niť schovaná ZA kontaktní sekcí s formulářem a patičkou (ať neruší) */
.section--contact, .footer { position: relative; z-index: 2; }

.section__eyebrow {
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--clay); font-weight: 600; margin-bottom: 14px;
}
.section__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.05;
  margin-bottom: 22px; color: var(--ink); letter-spacing: -0.01em;
}
.section__intro { max-width: 62ch; color: var(--muted); font-size: 1.1rem; margin-bottom: 52px; }

/* ---------- Navigace ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 242, 234, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: min(1140px, 90vw); margin: 0 auto; position: relative;
  display: flex; align-items: center; justify-content: space-between; padding: 14px 0;
}
.nav__brand { display: flex; flex-direction: column; line-height: 1.15; }
.nav__brand-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; }
.nav__brand-sub { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 0.95rem; color: var(--muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { background: var(--clay); color: var(--white) !important; padding: 10px 20px; border-radius: 100px; font-weight: 500; }
.nav__cta:hover { background: var(--clay-dark); }

/* ---------- Přepínač jazyků ---------- */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; margin-left: 8px; }
.lang-switch a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted);
  padding: 4px 7px; border-radius: 7px; transition: all 0.2s ease;
}
.lang-switch a:hover { color: var(--ink); background: var(--cream-2); }
.lang-switch a.is-active { color: var(--clay-dark); background: var(--cream-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background:
    linear-gradient(120deg, rgba(30,26,22,0.62), rgba(30,26,22,0.18)),
    url("Fotky/1.jpg") center/cover no-repeat;
  color: var(--white);
}
.hero__content { width: min(1140px, 90vw); margin: 0 auto; padding: 80px 0; }
.hero__eyebrow {
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.85rem;
  font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.hero__unesco {
  background: var(--gold); color: #34280f; font-weight: 700; letter-spacing: 0.14em;
  padding: 4px 11px; border-radius: 6px; font-size: 0.72rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(3rem, 8vw, 6rem); line-height: 0.96; margin-bottom: 26px; letter-spacing: -0.01em;
}
.hero__lead {
  max-width: 56ch; font-size: 1.22rem; font-weight: 300; line-height: 1.6;
  margin-bottom: 40px; color: rgba(255,255,255,0.95);
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 1.5rem; opacity: 0.8; animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 100px;
  font-weight: 500; font-size: 1rem; cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.2s ease;
}
.btn--primary { background: var(--clay); color: var(--white); box-shadow: 0 10px 24px rgba(176,106,79,0.32); }
.btn--primary:hover { background: var(--clay-dark); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

/* ---------- O nás ---------- */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.about__text p { max-width: 60ch; color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 18px; }
.about__text strong { color: var(--ink); font-weight: 600; }
.about__badges { list-style: none; display: grid; gap: 16px; }
.about__badges li {
  display: flex; gap: 16px; align-items: center; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  box-shadow: var(--shadow-sm); transition: transform 0.2s;
}
.about__badges li:hover { transform: translateX(4px); }
.about__badges span { font-size: 1.7rem; }
.about__badges strong { color: var(--ink); font-weight: 600; }
.about__badges div { font-size: 0.92rem; color: var(--muted); }

/* ---------- Vítejte (uvítací intro) ---------- */
.welcome { max-width: 760px; margin-bottom: 56px; }
.welcome__lead p { color: var(--ink-soft); font-size: 1.14rem; margin-bottom: 18px; }
.welcome__lead strong { color: var(--ink); font-weight: 600; }
.welcome__divider { text-align: center; margin: 8px 0 36px; }
.welcome__subtitle { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin-bottom: 6px; }
.welcome__subintro { color: var(--muted); font-size: 1rem; max-width: 54ch; margin: 0 auto; }

/* ---------- Filtry tipů ---------- */
.tip-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.tip-filter {
  font-family: var(--sans); font-size: 0.92rem; cursor: pointer;
  background: var(--white); border: 1px solid var(--line); color: var(--ink-soft);
  padding: 9px 18px; border-radius: 100px; transition: all 0.2s ease;
}
.tip-filter:hover { border-color: var(--clay-soft); color: var(--ink); }
.tip-filter.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- Dlaždice tipů ---------- */
.tips { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.tip {
  display: flex; flex-wrap: wrap; align-items: center; column-gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 0 0 14px; overflow: hidden; transition: all 0.2s ease; box-shadow: var(--shadow-sm);
}
.tip:hover { transform: translateY(-3px); border-color: var(--clay-soft); }
.tip:hover .tip__photo { transform: scale(1.06); }
.tip__photo {
  flex: 0 0 100%; width: 100%; height: 124px; margin-bottom: 12px;
  background-size: cover; background-position: center; transition: transform 0.5s ease; background-color: var(--cream-2);
}
.tip__icon {
  font-size: 1.2rem; width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center;
  background: var(--cream-2); border-radius: 12px; margin-left: 14px;
}
.tip__body { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.tip__body strong { font-weight: 600; color: var(--ink); }
.tip__body small { font-size: 0.82rem; color: var(--muted); }
.tip__go { color: var(--clay); font-size: 1.1rem; flex: 0 0 auto; margin-right: 14px; }
.tip.is-hidden { display: none; }

/* ---------- Showcase (Proč u nás) ---------- */
.showcase { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: stretch; }
.showcase__tabs { display: flex; flex-direction: column; gap: 14px; }
.showcase__tab {
  display: flex; align-items: center; gap: 16px; text-align: left;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; cursor: pointer; font-family: var(--sans);
  transition: all 0.2s ease; color: var(--ink);
}
.showcase__tab:hover { border-color: var(--clay-soft); transform: translateX(3px); }
.showcase__tab.is-active {
  background: var(--white); color: var(--ink);
  border-color: var(--clay); box-shadow: inset 0 0 0 1px var(--clay), 0 8px 22px rgba(176,106,79,0.16);
}
.showcase__tab.is-active small { color: var(--clay-dark); }
.showcase__tab-icon {
  font-size: 1.5rem; width: 52px; height: 52px; flex: 0 0 52px;
  display: grid; place-items: center; background: var(--cream-2); border-radius: 14px;
  transition: background 0.2s;
}
.showcase__tab.is-active .showcase__tab-icon { background: var(--clay-soft); }
.showcase__tab span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.showcase__tab strong { font-weight: 600; font-size: 1.02rem; }
.showcase__tab small { color: var(--muted); font-size: 0.85rem; }

.showcase__stage { position: relative; }
.panel {
  display: none; background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); height: 100%;
  grid-template-rows: auto 1fr;
}
.panel.is-active { display: grid; animation: fade 0.4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.panel__carousel { position: relative; aspect-ratio: 16 / 10; background: #ddd center/cover no-repeat; cursor: zoom-in; }
.carousel-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.5s ease;
}
.carousel-slide.is-active { opacity: 1; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.85); color: var(--ink); font-size: 1.3rem;
  display: grid; place-items: center; transition: background 0.2s; z-index: 2;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn--prev { left: 14px; }
.carousel-btn--next { right: 14px; }
.carousel-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.55); transition: background 0.2s, transform 0.2s;
}
.carousel-dots button.is-active { background: #fff; transform: scale(1.25); }
/* Galerie v záložkách „Prohlédněte si víc" mají hodně fotek — bez teček, jen šipky */
.panel__carousel .carousel-dots { display: none; }
.panel__info { padding: 30px 34px 34px; }
.panel__info h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin-bottom: 8px; }
.panel__info p { color: var(--ink-soft); font-size: 1.02rem; }
.panel__meta {
  display: inline-block; background: var(--cream-2); color: var(--clay-dark);
  font-size: 0.9rem; font-weight: 500; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px !important;
}

/* ---------- Karty apartmánů ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform 0.25s ease;
}
.card:hover { transform: translateY(-5px); }
.card--featured { outline: 2px solid var(--clay); outline-offset: 0; }
.card--soon { opacity: 0.7; filter: grayscale(1); pointer-events: none; }
.card--soon:hover { transform: none; }
.card__media { height: 210px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.card__media[data-images] { cursor: zoom-in; }
.card__media .card__badge { z-index: 3; }
.card__media .carousel-btn, .card__media .carousel-dots { z-index: 4; }
.card__media-hint {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  background: rgba(247,242,234,0.92); color: var(--clay-dark);
  font-size: 0.72rem; font-weight: 600; padding: 5px 10px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px; pointer-events: none;
}
.card--soon .card__media { filter: grayscale(0.25); }
.card__media--mirek { background-image: linear-gradient(rgba(0,0,0,0.12),rgba(0,0,0,0.12)), url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=800&q=80"); }
.card__media--jarmila { background-image: linear-gradient(rgba(0,0,0,0.12),rgba(0,0,0,0.12)), url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=800&q=80"); }
.card__media--lada { background-image: linear-gradient(rgba(0,0,0,0.12),rgba(0,0,0,0.12)), url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?auto=format&fit=crop&w=800&q=80"); }
.card__badge {
  position: absolute; top: 16px; left: 16px; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700; padding: 6px 14px; border-radius: 100px;
}
.card__badge--available { background: #4f7a52; color: #fff; }
.card__badge--soon { background: rgba(247,242,234,0.94); color: var(--clay-dark); }
.card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-bottom: 14px; }
.card__specs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.card__desc { color: var(--ink-soft); font-size: 0.99rem; margin-bottom: 16px; }
.card__desc strong { color: var(--ink); font-weight: 600; }
.card__more { margin-bottom: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
.card__more summary { cursor: pointer; font-weight: 500; color: var(--clay-dark); font-size: 0.95rem; list-style: none; }
.card__more summary::-webkit-details-marker { display: none; }
.card__more summary::before { content: "＋ "; }
.card__more[open] summary::before { content: "－ "; }
.card__more-body { padding-top: 12px; }
.card__more-body p { font-size: 0.92rem; color: var(--muted); margin-bottom: 10px; }
.card__more-body strong { color: var(--ink); }
.card__link { color: var(--clay); font-weight: 600; align-self: flex-start; margin-top: auto; }
.card__link:hover { color: var(--clay-dark); }

/* ---------- Služby ---------- */
.service {
  display: flex; gap: 30px; align-items: center; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.service__icon {
  font-size: 2.6rem; width: 92px; height: 92px; flex: 0 0 92px; display: grid; place-items: center;
  background: var(--cream-2); border-radius: 22px;
}
.service__text h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; margin-bottom: 10px; }
.service__text p { color: var(--ink-soft); max-width: 70ch; margin-bottom: 8px; }
.service__contact { font-size: 0.98rem; }
.service__contact a { color: var(--clay-dark); border-bottom: 1px solid var(--clay-soft); }
.service__media {
  flex: 0 0 320px; height: 220px; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: zoom-in; background: var(--cream-2); box-shadow: var(--shadow-sm);
}
.service__media .carousel-btn, .service__media .carousel-dots { z-index: 4; }

/* Tipy: jeden řádek + tlačítko Zobrazit více */
.tip.is-row-hidden { display: none; }
.tips-more { text-align: center; margin-top: 24px; }
.tips-more button {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500; cursor: pointer;
  background: var(--white); color: var(--clay-dark); border: 1.5px solid var(--clay-soft);
  padding: 11px 26px; border-radius: 100px; transition: all 0.2s ease;
}
.tips-more button:hover { background: var(--clay); color: #fff; border-color: var(--clay); }

/* ---------- Galerie okolí ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.gallery__item {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.25s ease;
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item:hover .gallery__img { transform: scale(1.05); }
.gallery__img { height: 200px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.gallery__item figcaption { padding: 22px 24px 26px; }
.gallery__item h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; margin-bottom: 6px; }
.gallery__item p { color: var(--muted); font-size: 0.95rem; }
.gallery__note { margin-top: 24px; color: var(--sage); font-size: 0.95rem; }

/* ---------- Praktické info ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.info-card__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.info-card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 4px; }
.info-card__muted { font-size: 0.85rem !important; color: var(--sage) !important; }
.maps-link { color: var(--clay-dark); font-weight: 500; border-bottom: 1px solid var(--clay-soft); }
.maps-link:hover { color: var(--clay); }

/* ---------- Kontakt ---------- */
.section--contact { background: var(--ink); color: var(--cream); }
.section--contact .section__title { color: var(--white); }
.section--contact .section__intro { color: rgba(247,242,234,0.75); }
.section--contact .section__eyebrow { color: var(--clay-soft); }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: 44px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-pill {
  display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 16px 18px;
  transition: all 0.2s ease;
}
.contact-pill:hover { background: rgba(255,255,255,0.11); border-color: var(--clay); transform: translateX(3px); }
.contact-pill__icon {
  font-size: 1.3rem; width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); border-radius: 12px;
}
.contact-pill__body { display: flex; flex-direction: column; line-height: 1.35; }
.contact-pill__body small { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay-soft); }
.contact-pill__body strong { font-weight: 500; font-size: 1.02rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: rgba(247,242,234,0.8); }
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: var(--sans); font-size: 1rem; color: var(--white);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 12px 14px; width: 100%;
}
.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { color: #2c2722; }
.contact-form input::-webkit-calendar-picker-indicator { filter: invert(0.8); cursor: pointer; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--clay); background: rgba(255,255,255,0.12);
}
.contact-form input.invalid, .contact-form textarea.invalid { border-color: #e08a6e; background: rgba(224,138,110,0.12); }
.contact-form .btn { align-self: flex-start; margin-top: 6px; }
.form-consent { flex-direction: row !important; align-items: center; gap: 10px !important; font-size: 0.82rem; cursor: pointer; }
.form-consent input { width: auto; flex: 0 0 auto; accent-color: var(--clay); }
.form-status { font-size: 0.92rem; margin: 4px 0 0; min-height: 1.2em; }
.form-status--success { color: #9fd6a0; }
.form-status--error { color: #f0a98e; }

/* ---------- Footer ---------- */
.footer { background: #221e1a; color: rgba(247,242,234,0.7); padding: 52px 0; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.footer__brand { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); }
.footer__muted { font-size: 0.88rem; }
.footer__contact { font-size: 0.95rem; text-align: right; }
.footer__contact a:hover { color: var(--cream); }
.footer__copy { width: 100%; font-size: 0.82rem; text-align: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ---------- Lightbox (galerie apartmánů) ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(20,17,14,0.93);
  display: flex; align-items: center; justify-content: center;
  animation: fade 0.25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 88vw; max-height: 82vh; border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}
.lightbox__nav, .lightbox__close {
  position: absolute; border: none; cursor: pointer; color: #fff;
  background: rgba(255,255,255,0.14); display: grid; place-items: center;
  transition: background 0.2s; backdrop-filter: blur(4px);
}
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 58px; height: 58px; border-radius: 50%; font-size: 2rem; }
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(255,255,255,0.3); }
.lightbox__prev { left: 4vw; }
.lightbox__next { right: 4vw; }
.lightbox__close { top: 22px; right: 26px; width: 50px; height: 50px; border-radius: 50%; font-size: 1.7rem; }
.lightbox__counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: 0.06em;
}

/* ---------- Dekorativní „niť" čalouníka ---------- */
#thread { position: absolute; top: 0; left: 0; width: 100%; height: 0; pointer-events: none; z-index: 1; overflow: hidden; }
#thread-svg { display: block; width: 100%; height: 100%; }
#thread-path {
  stroke: var(--clay); stroke-width: 2; stroke-dasharray: 6 5;
  stroke-linecap: round; stroke-linejoin: round; opacity: 0.5; vector-effect: non-scaling-stroke;
}

/* ---------- Nadpisy: úzký rámec textu (niť je obšívá — viz app.js) ---------- */
.section__title, .welcome__subtitle { position: relative; display: inline-block; }

/* ---------- Ceny u apartmánů ---------- */
.card__pricing { border-top: 1px solid var(--line); margin: 4px 0 14px; padding-top: 14px; }
.card__price-from { font-size: 1.05rem; color: var(--muted); margin-bottom: 10px; }
.card__price-from strong { font-size: 1.5rem; color: var(--ink); }
.card__seasons { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.card__seasons li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 0.9rem; color: var(--muted);
}
.card__seasons li span { display: flex; flex-direction: column; line-height: 1.25; }
.card__seasons li small { color: var(--sage); font-size: 0.78rem; }
.card__seasons li b { color: var(--ink); font-weight: 600; white-space: nowrap; }
.card__access { font-size: 0.84rem; color: var(--muted); margin-bottom: 16px; }
.apartments-note { color: var(--muted); font-size: 0.92rem; max-width: 72ch; margin-top: 28px; }

/* ---------- Welcome signoff ---------- */
.welcome__signoff { margin-top: 22px; color: var(--muted); font-size: 1.02rem; }
.welcome__signoff strong { color: var(--ink); }

/* ---------- Ikona (kamera apod.) v nadpisu karty ---------- */
.info-card__title .ico { width: 22px; height: 22px; color: var(--clay); vertical-align: -4px; margin-right: 6px; }

/* ---------- Adresa: šipka na stejném řádku ---------- */
.maps-link { display: inline; }
.maps-link__arrow { white-space: nowrap; }

/* ---------- Ceník ---------- */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 6px;
}
.price-card--featured { outline: 2px solid var(--clay); }
.price-card__tag {
  align-self: flex-start; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; padding: 5px 12px; border-radius: 100px; background: #4f7a52; color: #fff; margin-bottom: 8px;
}
.price-card__tag--soon { background: var(--cream-2); color: var(--clay-dark); }
.price-card h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.price-card__price { font-size: 1.1rem; color: var(--muted); margin-bottom: 8px; }
.price-card__price strong { font-size: 1.5rem; color: var(--ink); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; font-size: 0.92rem; color: var(--muted); margin: 6px 0 18px; }
.price-card .btn, .price-card .card__link { margin-top: auto; align-self: flex-start; }
.pricing__note { margin-top: 22px; color: var(--muted); font-size: 0.9rem; max-width: 70ch; }

.booking-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.booking-badges > span { color: var(--muted); font-size: 0.95rem; }
.booking-badge {
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 20px; font-weight: 600; color: var(--ink); transition: all 0.2s ease;
}
.booking-badge:hover { border-color: var(--clay); color: var(--clay-dark); transform: translateY(-2px); }

/* ---------- Recenze ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); margin-bottom: 14px; }
.review figcaption { color: var(--muted); font-size: 0.9rem; }
.review--soon { text-align: center; max-width: 560px; margin: 0 auto; background: var(--cream-2); }
.review--soon blockquote { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "＋"; color: var(--clay); font-weight: 400; font-size: 1.3rem; flex: 0 0 auto; }
.faq__item[open] summary::after { content: "－"; }
.faq__item p { color: var(--ink-soft); padding: 0 0 18px; font-size: 0.98rem; }

/* ---------- Mapa ---------- */
.map-embed { margin-top: 36px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- Popisek fotky (carousel + lightbox) ---------- */
.carousel-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; pointer-events: none;
  padding: 22px 16px 12px; color: #fff; font-size: 0.88rem;
  background: linear-gradient(to top, rgba(20,17,14,0.78), rgba(20,17,14,0));
}
.lightbox__figure { margin: 0; display: flex; flex-direction: column; align-items: center; }
.lightbox__caption { color: rgba(255,255,255,0.92); font-size: 0.95rem; margin-top: 14px; text-align: center; max-width: 88vw; }

/* ---------- Mobilní menu (hamburger) ---------- */
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Zpět nahoru ---------- */
.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--clay); color: #fff; font-size: 1.3rem; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--clay-dark); }

/* ---------- Cookies lišta ---------- */
.cookie {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 90; margin: 0 auto; max-width: 720px;
  background: var(--ink); color: var(--cream); border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 18px; box-shadow: var(--shadow);
}
.cookie[hidden] { display: none; }
.cookie p { font-size: 0.9rem; flex: 1; }
.cookie a { color: var(--clay-soft); text-decoration: underline; }
.cookie__btn { padding: 10px 22px; flex: 0 0 auto; }

/* ---------- Odhalování při scrollu ---------- */
.reveal { opacity: 0; transition: opacity 0.6s ease; }
.reveal.is-visible { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transition: none; } }

/* ---------- Responsivita ---------- */
@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; gap: 36px; }
  .showcase { grid-template-columns: 1fr; }
  .showcase__tabs { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .showcase__tab { flex: 1 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 5vw 18px; box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .nav__links.is-open { max-height: 80vh; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .nav__links a.nav__cta { margin-top: 12px; text-align: center; border-bottom: none; }
  .section { padding: 76px 0; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer__contact { text-align: left; }
  .service { flex-direction: column; text-align: center; padding: 30px 24px; }
  .service__media { flex-basis: auto; width: 100%; }
  .showcase__tab small { display: none; }
}
