/* =========================================================================
   Ubytovanie u Havlíčkov — style.css
   Identita: POHĽADNICA + PEČIATKA. Teplá zemitá paleta vytiahnutá priamo
   z domu (vínovo-tehlová strecha, okrová fasáda, espresso drevo).
   Jeden systémový font. Čisté CSS, bez frameworkov.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokeny
   ------------------------------------------------------------------------- */
:root {
    /* papier / podklad */
    --paper:      #e7ddc9;   /* teplé plátno — pozadie stránky */
    --paper-2:    #ddd0b6;   /* hlbšie plátno */
    --surface:    #f6efe0;   /* krémová karta */
    --surface-2:  #fbf7ec;   /* najsvetlejšia karta */

    /* text */
    --ink:        #2c2118;   /* espresso */
    --ink-soft:   #6a5b49;
    --muted:      #9a8a72;

    /* akcenty z domu */
    --brick:      #9a4132;   /* vínovo-tehlová (strecha) — PRIMÁRNA */
    --brick-deep: #7c3226;
    --ochre:      #c1873f;   /* okrová fasáda — SEKUNDÁRNA */
    --ochre-deep: #a06b2a;
    --sand:       #e7d3aa;   /* svetlý piesok */
    --wood:       #3a2a1e;   /* tmavé drevo — pásy */
    --wood-deep:  #2a1d14;

    /* linky a tiene */
    --line:       rgba(44, 33, 24, 0.16);
    --line-soft:  rgba(44, 33, 24, 0.09);
    --dash:       rgba(44, 33, 24, 0.28);
    --shadow-sm:  0 2px 10px rgba(44, 33, 24, 0.08);
    --shadow-md:  0 16px 34px -18px rgba(44, 33, 24, 0.42);
    --shadow-lg:  0 34px 60px -26px rgba(44, 33, 24, 0.52);

    /* rozmery */
    --radius-sm:  8px;
    --radius:     16px;
    --radius-lg:  24px;
    --container:  1180px;
    --header-h:   82px;

    --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* -------------------------------------------------------------------------
   2. Reset / základ
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--paper);
    background-image:
        radial-gradient(1200px 640px at 84% -8%, #efe7d6, transparent 60%),
        radial-gradient(900px 560px at -8% 4%, #efe6d3, transparent 55%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* jemné papierové zrno cez celú stránku */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-header, main, .site-footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
    font-family: var(--font);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.022em;
    color: var(--ink);
}

:focus-visible { outline: 2px solid var(--brick); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--brick); color: #fff; }

.skip-link {
    position: absolute; left: -9999px; top: 10px; z-index: 200;
    background: var(--brick); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; }

/* -------------------------------------------------------------------------
   3. Layout pomôcky
   ------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: clamp(56px, 8vw, 100px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* Eyebrow ako „poštová pečiatka" s vodiacou linkou */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brick);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 30px; height: 2px;
    background: var(--ochre);
    display: inline-block;
}
.section-head--center .eyebrow { justify-content: center; }

.section-title { font-size: clamp(1.9rem, 4vw, 2.75rem); margin-bottom: 14px; }
.section-sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 55ch; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* -------------------------------------------------------------------------
   4. Tlačidlá
   ------------------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 26px;
    border-radius: 999px;
    font-weight: 650;
    font-size: 1rem; line-height: 1;
    border: 1.5px solid transparent;
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 11px 18px; font-size: 0.92rem; }
.btn-lg { padding: 17px 30px; font-size: 1.04rem; }

.btn-primary {
    background: var(--brick); color: #fbf3e8;
    box-shadow: 0 8px 16px -12px rgba(44, 33, 24, 0.45);
}
.btn-primary:hover { background: var(--brick-deep); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--brick); color: var(--brick); background: var(--surface-2); }

.btn-gold, .btn-ochre {
    background: var(--ochre); color: #2c2118;
    box-shadow: 0 8px 16px -12px rgba(44, 33, 24, 0.4);
}
.btn-gold:hover, .btn-ochre:hover { background: var(--ochre-deep); color: #fff; }

.ico-inline { width: 1.1em; height: 1.1em; flex: none; }

.arrow-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; color: var(--brick);
}
.arrow-link .ico { width: 20px; height: 20px; transition: transform .2s ease; }
.arrow-link:hover .ico { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   5. Pečiatka (signature) + pohľadnica + poštová známka
   ------------------------------------------------------------------------- */
.seal { color: var(--brick); display: inline-block; }
.seal-svg { width: 100%; height: 100%; display: block; }
.seal-text {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3.5px;
}
.seal-word {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 3px;
}

/* Pohľadnicový rám fotky */
.postcard {
    position: relative;
    background: #fff;
    padding: 14px 14px 0;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(44,33,24,.06);
}
.postcard img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; display: block; }
.postcard-cap {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 12px 4px 14px;
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
}
.postcard-cap span:last-child { color: var(--ochre-deep); font-weight: 700; letter-spacing: 0.14em; }

/* Poštová známka (cena) */
.stamp {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 12px 16px;
    background: var(--surface-2);
    color: var(--ink);
    border: 2px dashed var(--brick);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    line-height: 1.1;
}
.stamp-price { font-size: 1.5rem; font-weight: 800; color: var(--brick); letter-spacing: -0.02em; }
.stamp-sub { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* -------------------------------------------------------------------------
   6. Header / navigácia
   ------------------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(231, 221, 201, 0.86);
    backdrop-filter: saturate(1.3) blur(12px);
    -webkit-backdrop-filter: saturate(1.3) blur(12px);
    border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 26px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: clamp(42px, 4.4vw, 56px); width: auto; display: block; }
.brand-mark {
    display: grid; place-items: center; width: 46px; height: 46px; flex: none;
    border-radius: 12px;
    background: linear-gradient(155deg, var(--brick), var(--brick-deep));
    color: var(--sand);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-ico { width: 27px; height: 27px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
    font-weight: 800; font-size: 1.24rem; letter-spacing: 0.02em;
    text-transform: uppercase; color: var(--ink);
}
.brand-sub {
    font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); margin-top: 3px; white-space: nowrap;
}

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
    position: relative; display: inline-block; padding: 8px 13px;
    font-weight: 550; font-size: 0.97rem; color: var(--ink-soft);
    border-radius: 8px; transition: color .16s ease;
}
.nav-link::after {
    content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px;
    background: var(--ochre); border-radius: 2px;
    transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { color: var(--ink); font-weight: 700; }
.nav-link.is-active::after, .nav-link:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.header-phone-ico { width: 20px; height: 20px; color: var(--brick); }
.header-phone:hover { color: var(--brick); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
    align-items: center; justify-content: center; border-radius: 10px;
    border: 1px solid var(--line); background: var(--surface-2);
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   7. Hero — jedna fotka domu ako pohľadnica + známka + pečiatka
   ------------------------------------------------------------------------- */
.hero { position: relative; overflow: clip; padding-top: clamp(40px, 6vw, 74px); padding-bottom: clamp(48px, 7vw, 92px); }
.hero-inner { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.hero-content { max-width: 560px; }
.hero-title { font-size: clamp(2.3rem, 5.2vw, 3.7rem); line-height: 1.07; letter-spacing: -0.03em; margin: 6px 0 22px; }
.hero-desc { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-meta { display: flex; flex-direction: column; gap: 10px; }
.hero-meta li { display: flex; align-items: center; gap: 12px; font-size: 0.96rem; color: var(--ink-soft); }
.hero-meta .ico { width: 19px; height: 19px; color: var(--ochre-deep); flex: none; }

/* média */
.hero-media { position: relative; }
.hero-postcard { transform: rotate(-1.6deg); aspect-ratio: 4 / 3.1; }
.hero-postcard img { aspect-ratio: 4 / 3; }
.hero-media .stamp { position: absolute; top: -14px; left: -18px; z-index: 3; transform: rotate(-7deg); }
.hero-media .seal {
    position: absolute; right: 8px; bottom: 18px; z-index: 4;
    width: 120px; height: 120px; transform: rotate(-9deg);
    color: #fbf3e8; opacity: 0.96;
    filter: drop-shadow(0 4px 8px rgba(44,33,24,.45));
}
.hero-blob { display: none; }

/* -------------------------------------------------------------------------
   8. Feature strip — „lístok" s perforáciou
   ------------------------------------------------------------------------- */
.features { margin-top: clamp(4px, 2vw, 20px); }
.feature-strip {
    display: grid; grid-template-columns: repeat(5, 1fr);
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.feature { display: flex; align-items: center; gap: 15px; padding: 24px 22px; border-left: 1.5px dashed var(--dash); }
.feature:first-child { border-left: none; }
.feature-ico { display: grid; place-items: center; width: 44px; height: 44px; flex: none; color: var(--brick); }
.feature-ico .ico { width: 29px; height: 29px; }
.feature-title { font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.feature-sub { font-size: 0.86rem; color: var(--muted); }

/* -------------------------------------------------------------------------
   9. Welcome — osobná časť
   ------------------------------------------------------------------------- */
.welcome-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.welcome-text { max-width: 560px; }
.welcome-text p { color: var(--ink-soft); margin-bottom: 14px; }
.welcome-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 26px; }
.welcome-fact { display: flex; gap: 12px; align-items: flex-start; }
.welcome-fact .ico { width: 22px; height: 22px; color: var(--ochre-deep); flex: none; margin-top: 3px; }
.welcome-fact strong { display: block; color: var(--ink); font-weight: 700; }
.welcome-fact span { font-size: 0.92rem; color: var(--muted); }
.welcome-media { position: relative; }
.welcome-media .postcard { transform: rotate(1.4deg); }
.welcome-media .postcard img { aspect-ratio: 5 / 4; }

/* -------------------------------------------------------------------------
   10. Izby — karty
   ------------------------------------------------------------------------- */
.rooms-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 42px; flex-wrap: wrap; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room-card {
    display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-media img { transform: scale(1.05); }
.room-price-tag {
    position: absolute; top: 13px; right: 13px;
    padding: 6px 12px; background: var(--surface-2);
    border: 1.5px dashed var(--brick); border-radius: 4px;
    font-size: 0.82rem; font-weight: 700; color: var(--ink);
}
.room-price-tag strong { color: var(--brick); }
.room-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.room-name { font-size: 1.32rem; margin-bottom: 8px; }
.room-tagline { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.room-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.room-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px; background: var(--paper-2); border-radius: 999px;
    font-size: 0.82rem; font-weight: 600; color: var(--wood);
}
.chip .ico { width: 14px; height: 14px; color: var(--brick); }

/* -------------------------------------------------------------------------
   11. CTA band — teplý drevený pás
   ------------------------------------------------------------------------- */
.cta-band { background: linear-gradient(160deg, var(--wood), var(--wood-deep)); color: #e8ddc7; position: relative; overflow: hidden; }
.cta-band::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(760px 440px at 82% -25%, rgba(255,255,255,.035), transparent 62%);
}
.cta-inner { position: relative; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 44px; align-items: center; padding-block: clamp(44px, 6vw, 74px); }
.cta-title { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 20px; }
.cta-lines { display: flex; flex-direction: column; gap: 9px; font-size: 1.05rem; }
.cta-line { display: flex; align-items: center; gap: 12px; color: #d9cdb6; }
.cta-line .ico { width: 20px; height: 20px; color: var(--sand); flex: none; }
.cta-lines a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.price-card {
    position: relative;
    background: rgba(255,255,255,.06);
    border: 1.5px dashed rgba(231, 211, 170, 0.5);
    border-radius: var(--radius-lg);
    padding: 30px 30px 28px;
}
.price-card-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 14px; }
.price-card-room { font-size: 1.04rem; color: #e8ddc7; }
.price-card-amount { font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.3rem); color: #fff; line-height: 1; margin: 6px 0 22px; letter-spacing: -0.03em; }
.price-card-amount span { font-size: 0.42em; font-weight: 650; color: #c9bda3; letter-spacing: 0; }
.price-card .btn { width: 100%; }

/* -------------------------------------------------------------------------
   12. Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--wood-deep); color: #b6a891; margin-top: auto; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr; gap: 40px; padding-block: clamp(48px, 6vw, 72px); }
.brand--footer .brand-name { color: #f2ead9; }
.brand--footer .brand-sub { color: #8c7f68; }
.footer-note { margin-top: 18px; max-width: 34ch; color: #94876f; font-size: 0.95rem; }
.footer-seal { width: 96px; height: 96px; margin-top: 24px; color: var(--ochre); opacity: 0.5; }
.footer-title { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: #d6c9ad; margin-bottom: 20px; }
.footer-links li + li { margin-top: 11px; }
.footer-links a { color: #b6a891; transition: color .15s ease; }
.footer-links a:hover { color: var(--ochre); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; line-height: 1.5; }
.footer-ico { width: 20px; height: 20px; color: var(--ochre); flex: none; margin-top: 2px; }
.footer-contact a:hover { color: var(--ochre); }
.footer-cta { margin-top: 8px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; padding-block: 20px; font-size: 0.85rem; color: #7d715c; flex-wrap: wrap; }

.scroll-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 90;
    display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
    background: var(--brick); color: #f6eada; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-ico { width: 22px; height: 22px; transform: rotate(-90deg); }
.scroll-top:hover { background: var(--brick-deep); }

/* -------------------------------------------------------------------------
   13. Vnútorné stránky — page hero
   ------------------------------------------------------------------------- */
.page-hero { padding-block: clamp(48px, 6vw, 78px) clamp(20px, 3vw, 34px); text-align: center; }
.page-hero-title { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: 16px; }
.page-hero-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; margin-inline: auto; }
.breadcrumb { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--brick); }
.breadcrumb span { color: var(--line); margin-inline: 8px; }

/* -------------------------------------------------------------------------
   14. Ubytovanie — rozšírené karty
   ------------------------------------------------------------------------- */
.rooms-full { display: grid; gap: 26px; }
.room-row {
    display: grid; grid-template-columns: 1.05fr 1fr;
    background: var(--surface); border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.room-row:nth-child(even) { grid-template-columns: 1fr 1.05fr; }
.room-row:nth-child(even) .room-row-media { order: 2; }
.room-row-media { position: relative; min-height: 320px; overflow: hidden; }
.room-row-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-row-body { padding: clamp(28px, 4vw, 46px); display: flex; flex-direction: column; justify-content: center; }
.room-row-body .room-name { font-size: clamp(1.55rem, 2.6vw, 2rem); }
.room-row-desc { color: var(--ink-soft); margin: 6px 0 20px; }
.room-row-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
.room-row-price { font-weight: 800; font-size: 1.5rem; color: var(--brick); letter-spacing: -0.02em; }
.room-row-price span { font-size: 0.86rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.info-note {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--surface); border: 1px solid var(--line-soft);
    border-left: 4px solid var(--ochre);
    border-radius: var(--radius); padding: 20px 24px; margin-top: 32px; color: var(--wood);
}
.info-note .ico { width: 24px; height: 24px; color: var(--brick); flex: none; margin-top: 2px; }

/* -------------------------------------------------------------------------
   15. Cenník
   ------------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.price-panel { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.price-panel--accent { box-shadow: var(--shadow-md); border-color: transparent; }
.price-panel-head { padding: 22px 28px; border-bottom: 1.5px dashed var(--dash); background: var(--surface-2); }
.price-panel--accent .price-panel-head { background: linear-gradient(155deg, var(--brick), var(--brick-deep)); border-bottom-color: transparent; }
.price-panel-head h3 { font-size: 1.28rem; }
.price-panel--accent .price-panel-head h3 { color: #fff; }
.price-panel-head .tag { font-size: 0.82rem; color: var(--muted); }
.price-panel--accent .price-panel-head .tag { color: var(--sand); }
.price-list { padding: 12px 28px 20px; }
.price-item { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.price-item:last-child { border-bottom: none; }
.price-item-name { color: var(--ink-soft); }
.price-item-val { font-weight: 800; font-size: 1.1rem; color: var(--ink); white-space: nowrap; }
.price-panel--accent .price-item-val { color: var(--brick); }

.price-extra { margin-top: 26px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px 28px; }
.price-extra h3 { font-size: 1.08rem; margin-bottom: 14px; }
.price-extra-list { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.price-extra-item { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); }
.price-extra-item strong { color: var(--ink); }
.price-extra-item .ico { width: 18px; height: 18px; color: var(--ochre-deep); }

.checkin-bar { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 26px; padding: 20px 28px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.checkin-item { display: flex; align-items: center; gap: 12px; }
.checkin-item .ico { width: 22px; height: 22px; color: var(--brick); }
.checkin-item span { color: var(--muted); font-size: 0.88rem; display: block; }
.checkin-item strong { color: var(--ink); font-size: 1.02rem; }

/* -------------------------------------------------------------------------
   16. Galéria
   ------------------------------------------------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 9px 19px; border-radius: 999px; border: 1.5px solid var(--line); background: transparent; font-weight: 600; font-size: 0.93rem; color: var(--ink-soft); transition: all .18s ease; }
.filter-btn:hover { border-color: var(--brick); color: var(--brick); }
.filter-btn.is-active { background: var(--brick); border-color: var(--brick); color: #f6eada; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); cursor: zoom-in; background: var(--paper-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(44,33,24,.34)); opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.is-hidden { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(26, 19, 13, 0.93); backdrop-filter: blur(4px); }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 5px solid #fff; }
.lightbox-caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #e8ddc7; font-size: 0.94rem; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; transition: background .18s ease; }
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-btn .ico { width: 26px; height: 26px; }
.lb-prev { left: 20px; } .lb-prev .ico { transform: rotate(180deg); }
.lb-next { right: 20px; }
.lb-close { top: 20px; right: 20px; transform: none; }
.lb-close .ico { width: 24px; height: 24px; }

/* -------------------------------------------------------------------------
   17. Okolie
   ------------------------------------------------------------------------- */
.okolie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.okolie-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.okolie-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.okolie-ico { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--paper-2); color: var(--brick); margin-bottom: 18px; }
.okolie-ico .ico { width: 26px; height: 26px; }
.okolie-card h3 { font-size: 1.24rem; margin-bottom: 6px; }
.okolie-dist { font-size: 0.82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ochre-deep); margin-bottom: 12px; }
.okolie-card p { color: var(--ink-soft); font-size: 0.97rem; }

.map-wrap { margin-top: 42px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-md); aspect-ratio: 16 / 7; background: var(--paper-2); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* -------------------------------------------------------------------------
   18. Kontakt
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.contact-card-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--paper-2); color: var(--brick); flex: none; }
.contact-card-ico .ico { width: 24px; height: 24px; }
.contact-card h3 { font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 700; }
.contact-card p, .contact-card a { font-size: 1.06rem; color: var(--ink); line-height: 1.5; }
.contact-card a:hover { color: var(--brick); }
.contact-meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 8px; font-size: 0.88rem; color: var(--muted); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-md); min-height: 420px; height: 100%; background: var(--paper-2); }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* -------------------------------------------------------------------------
   19. Rôzne
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------
   20. Responzívne
   ------------------------------------------------------------------------- */
@media (max-width: 1080px) {
    .feature-strip { grid-template-columns: repeat(3, 1fr); }
    .feature:nth-child(4), .feature:nth-child(5) { border-top: 1.5px dashed var(--dash); }
    .feature:nth-child(4) { border-left: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .welcome-inner { gap: 40px; }
}

@media (max-width: 900px) {
    :root { --header-h: 70px; }
    .header-phone, .header-cta { display: none; }
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
        background: var(--surface); border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        transform: translateY(-12px); opacity: 0; visibility: hidden;
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
        max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    }
    .main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px 20px; }
    .nav-link { padding: 14px 12px; font-size: 1.05rem; border-radius: 10px; }
    .nav-link::after { display: none; }
    .nav-link.is-active { background: var(--paper-2); }
    .nav-list li:last-child { margin-top: 8px; }

    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: none; }
    .hero-media { max-width: 520px; margin-inline: auto; width: 100%; }
    .hero-media .seal { width: 108px; height: 108px; right: -10px; }
    .hero-media .stamp { left: -8px; }

    .welcome-inner { grid-template-columns: 1fr; gap: 40px; }
    .welcome-media { max-width: 520px; margin-inline: auto; width: 100%; }

    .cta-inner { grid-template-columns: 1fr; gap: 30px; }
    .price-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 340px; }
    .okolie-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .room-grid { grid-template-columns: 1fr; }
    .room-row, .room-row:nth-child(even) { grid-template-columns: 1fr; }
    .room-row:nth-child(even) .room-row-media { order: 0; }
    .room-row-media { min-height: 230px; }
    .feature-strip { grid-template-columns: 1fr 1fr; }
    .feature:nth-child(3) { border-left: none; border-top: 1.5px dashed var(--dash); }
    .feature:nth-child(5) { grid-column: 1 / -1; }
    .welcome-facts { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
    .gallery-item.wide { grid-column: auto; }
    .okolie-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .rooms-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { padding-inline: 18px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-media .seal { width: 92px; height: 92px; bottom: 12px; }
    .feature-strip { grid-template-columns: 1fr; }
    .feature { border-left: none; border-top: 1.5px dashed var(--dash); }
    .feature:first-child { border-top: none; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.tall { grid-row: auto; }
    .brand-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-postcard, .welcome-media .postcard, .hero-media .seal, .hero-media .stamp { transform: none; }
}
