/* =========================================================================
   Stara Kuźnia — visual refresh layer
   -------------------------------------------------------------------------
   Loaded AFTER pub/css/style.css and deliberately kept in a separate file:
   style.css is generated from pub/scss/, so anything written there would be
   lost on the next Sass build. Selectors below mirror the generated ones so
   they win on source order rather than on !important. :is() is used to group
   the four body types without changing specificity.

   Page/body map:
     index.html      body.home-page        hero .frame-1, .frame-2, .frame-3, .frame-4
     hotel.html      body.home-page        hero .frame-5, .frame-6, .frame-3, .galeria-hotel
     menu.html       body.karta-menu       hero .frame-1, .frame-2
     regulamin.html  body.regulamin-hotelu hero .frame-1, .frame-2
   ========================================================================= */

/* ------------------------------------------------------------------ tokens */

:root {
    --sk-ink:          #1E1613;
    --sk-ink-soft:     #4A3B33;
    --sk-muted:        #7C6C62;
    --sk-ember:        #A2542A;
    --sk-ember-light:  #C2814F;
    --sk-brass:        #B08E5E;
    --sk-paper:        #FBF8F4;
    --sk-paper-warm:   #F4EBE0;
    --sk-line:         rgba(30, 22, 19, 0.14);
    --sk-line-strong:  rgba(30, 22, 19, 0.26);
    --sk-line-light:   rgba(255, 255, 255, 0.22);

    --sk-display: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sk-body:    'Karla', 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --sk-section-y: clamp(4.5rem, 9vw, 8.5rem);
}

/* ------------------------------------------------------------------- base */

body {
    font-family: var(--sk-body);
    color: var(--sk-ink);
    background-color: var(--sk-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--sk-ember);
    color: #fff;
}

/* Shared editorial primitives ------------------------------------------- */

.sk-eyebrow {
    font-family: var(--sk-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--sk-ember);
    margin: 0 0 1.1rem;
    line-height: 1.4;
}

.sk-eyebrow.sk-eyebrow-light {
    color: var(--sk-brass);
}

.sk-rule {
    display: block;
    width: 56px;
    height: 1px;
    margin: 1.75rem auto;
    background: var(--sk-line-strong);
    border: 0;
}

.sk-rule-light {
    background: var(--sk-line-light);
}

/* ----------------------------------------------------------------- header */

header nav {
    background-color: rgba(24, 17, 14, 0.72) !important;
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

header nav a.navbar-brand {
    font-family: var(--sk-display);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
}

header nav a.navbar-brand span {
    letter-spacing: 0.02em;
    transform: translate3d(8px, 2px, 0);
}

header nav div.main-menu-holder ul li {
    font-family: var(--sk-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

header nav div.main-menu-holder ul li a.nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: color 0.25s ease;
}

header nav div.main-menu-holder ul li a:hover {
    color: var(--sk-ember-light);
}

header nav div.main-menu-holder ul li .dropdown-menu {
    background-color: rgba(24, 17, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0.5rem 0;
    margin-top: 0.75rem;
}

header nav div.main-menu-holder ul li .dropdown-item {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    padding: 0.6rem 1.4rem;
}

header nav div.main-menu-holder ul li .dropdown-item:hover,
header nav div.main-menu-holder ul li .dropdown-item:focus {
    background-color: rgba(162, 84, 42, 0.28);
    color: #fff;
}

/* =============================================================== HERO ==== */
/* Covers .frame-1 on index/menu/regulamin and .frame-5 on hotel.            */

body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layered scrim: darkest at top (nav legibility) and bottom, gently pooled
   behind the wordmark, so the image still reads as an image. */
body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.frame-cover {
    opacity: 1;
    background-color: transparent;
    background-image:
        radial-gradient(ellipse 78% 62% at 50% 46%, rgba(18, 12, 10, 0.68) 0%, rgba(18, 12, 10, 0.42) 55%, rgba(18, 12, 10, 0.24) 100%),
        linear-gradient(180deg, rgba(18, 12, 10, 0.86) 0%, rgba(18, 12, 10, 0.34) 24%, rgba(18, 12, 10, 0.30) 58%, rgba(18, 12, 10, 0.88) 100%);
}

body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text {
    padding-top: 5rem;
    padding-bottom: 3rem;
    text-align: center;
}

body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text img.logo {
    width: 74px;
    margin-bottom: 1.75rem;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
}

@media (min-width: 992px) {
    body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text img.logo {
        width: 108px;
        margin-bottom: 2rem;
    }
}

/* kicker above the name */
body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text h2,
body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text .h2 {
    font-family: var(--sk-body);
    font-style: normal;
    font-weight: 500;
    font-size: 0.78rem;
    line-height: 1.4;
    letter-spacing: 0.42em;
    text-indent: 0.42em; /* optical re-centring for the trailing letterspace */
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.9rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text h2,
    body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text .h2 {
        font-size: 0.85rem;
        letter-spacing: 0.5em;
        text-indent: 0.5em;
    }
}

body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text h1,
body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text .h1 {
    font-family: var(--sk-display);
    font-style: normal;
    font-weight: 500;
    font-size: clamp(3.25rem, 11vw, 8.5rem);
    line-height: 0.98;
    letter-spacing: -0.005em;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

@media (min-width: 992px) {
    body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text h1,
    body:is(.home-page, .karta-menu, .regulamin-hotelu) section.frame:is(.frame-1, .frame-5) div.intro-text .h1 {
        font-size: clamp(5rem, 8.5vw, 8.5rem);
        line-height: 0.98;
    }
}

/* official star-category badge, hotel hero only */
body section.frame.frame-5 div.intro-text .hotel-stars {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.1rem 0 0;
}

body section.frame.frame-5 div.intro-text .hotel-stars-icons {
    display: inline-flex;
    gap: 0.2rem;
}

body section.frame.frame-5 div.intro-text .hotel-stars-icons svg {
    width: 15px;
    height: 15px;
    fill: var(--sk-brass);
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
}

@media (min-width: 992px) {
    body section.frame.frame-5 div.intro-text .hotel-stars {
        margin-top: 1.35rem;
        gap: 0.75rem;
    }

    body section.frame.frame-5 div.intro-text .hotel-stars-icons svg {
        width: 17px;
        height: 17px;
    }
}

body section.frame:is(.frame-1, .frame-5) div.intro-text .hero-rule {
    display: block;
    width: 0;
    height: 1px;
    margin: 1.6rem auto 1.35rem;
    background: rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 2;
}

body section.frame:is(.frame-1, .frame-5) div.intro-text p.hero-location {
    position: relative;
    z-index: 2;
    font-family: var(--sk-body);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
    opacity: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    body section.frame:is(.frame-1, .frame-5) div.intro-text p.hero-location {
        font-size: 0.82rem;
    }
}

/* scroll cue */
body section.frame:is(.frame-1, .frame-5) a.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 2.25rem;
    transform: translateX(-50%);
    z-index: 3;
    width: 26px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    opacity: 0;
    transition: border-color 0.3s ease;
}

body section.frame:is(.frame-1, .frame-5) a.hero-scroll:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

body section.frame:is(.frame-1, .frame-5) a.hero-scroll span {
    position: absolute;
    left: 50%;
    top: 9px;
    width: 3px;
    height: 7px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.85);
    animation: sk-scroll-cue 2s ease-in-out infinite;
}

@keyframes sk-scroll-cue {
    0%   { transform: translateY(0);    opacity: 0; }
    25%  { opacity: 1; }
    70%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(14px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    body section.frame:is(.frame-1, .frame-5) a.hero-scroll span {
        animation: none;
    }
}

/* hotel carousel controls — subdue the stock Bootstrap chevrons */
body.home-page section.frame.frame-5 .carousel-control-prev,
body.home-page section.frame.frame-5 .carousel-control-next {
    opacity: 0.35;
    width: 9%;
    z-index: 3;
    transition: opacity 0.3s ease;
}

body.home-page section.frame.frame-5 .carousel-control-prev:hover,
body.home-page section.frame.frame-5 .carousel-control-next:hover {
    opacity: 0.85;
}

/* ==================================================== index: intro/steps == */

body.home-page section.frame.frame-2 {
    background-color: var(--sk-paper);
    padding-top: var(--sk-section-y) !important;
    padding-bottom: var(--sk-section-y) !important;
}

body.home-page section.frame.frame-2 h1,
body.home-page section.frame.frame-2 .h1 {
    font-family: var(--sk-display);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.4vw, 3.15rem);
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: var(--sk-ink);
    margin-bottom: 2.5rem;
    text-wrap: balance;
}

body.home-page section.frame.frame-2 h1 strong,
body.home-page section.frame.frame-2 .h1 strong {
    font-weight: 600;
    font-style: italic;
    color: var(--sk-ember);
}

body.home-page section.frame.frame-2 p {
    font-family: var(--sk-body);
    font-size: clamp(1.0313rem, 1.3vw, 1.125rem);
    line-height: 1.85;
    font-weight: 400;
    color: var(--sk-ink-soft);
    margin-bottom: 1.5rem;
    max-width: 42rem; /* fixed, not ch — keeps every paragraph on one measure */
    margin-inline: auto;
}

body.home-page section.frame.frame-2 p.sk-lead {
    font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
    line-height: 1.75;
    color: var(--sk-ink);
}

body.home-page section.frame.frame-2 p.sk-closing {
    font-family: var(--sk-display);
    font-style: italic;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1.4;
    color: var(--sk-ember);
    margin-top: 2.5rem;
    margin-bottom: 0;
}

body.home-page section.frame.frame-2 div.steps-intro {
    margin-top: clamp(4rem, 7vw, 6.5rem);
    text-align: center;
}

body.home-page section.frame.frame-2 div.steps-intro h2,
body.home-page section.frame.frame-2 div.steps-intro .h2 {
    font-family: var(--sk-display);
    font-weight: 500;
    font-size: clamp(1.6rem, 2.6vw, 2.35rem);
    line-height: 1.2;
    color: var(--sk-ink);
    margin-bottom: 0;
}

body.home-page section.frame.frame-2 div.row-123 {
    margin-top: clamp(2.5rem, 4vw, 3.75rem) !important;
    row-gap: 3.25rem;
}

body.home-page section.frame.frame-2 div.row-123 div.single-col {
    text-align: center;
    padding-left: clamp(1rem, 2.5vw, 2.5rem);
    padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

@media (min-width: 992px) {
    body.home-page section.frame.frame-2 div.row-123 div.single-col.border-right {
        border-right: 1px solid var(--sk-line);
    }
}

body.home-page section.frame.frame-2 div.row-123 span.step-num {
    display: block;
    font-family: var(--sk-display);
    font-weight: 500;
    font-size: 1.35rem;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
    color: var(--sk-ember);
    margin-bottom: 1.1rem;
}

body.home-page section.frame.frame-2 div.row-123 span.step-num::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin: 0.85rem auto 0;
    background: var(--sk-line-strong);
}

body.home-page section.frame.frame-2 div.row-123 h3,
body.home-page section.frame.frame-2 div.row-123 .h3 {
    font-family: var(--sk-display);
    font-weight: 600;
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    line-height: 1.25;
    color: var(--sk-ink);
    margin-bottom: 0.85rem;
}

body.home-page section.frame.frame-2 div.row-123 p {
    font-family: var(--sk-body);
    font-size: 0.9688rem;
    line-height: 1.7;
    color: var(--sk-muted);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    max-width: 30ch;
    margin-inline: auto;
}

/* ================================================= contact (index+hotel) == */

body.home-page section.frame.frame-3 {
    background-size: cover;
    background-position: center 50%;
    padding-top: var(--sk-section-y) !important;
    padding-bottom: var(--sk-section-y) !important;
}

@media (min-width: 992px) {
    body.home-page section.frame.frame-3 {
        background-size: cover;
    }
}

body.home-page section.frame.frame-3 div.background-cover {
    opacity: 1;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(18, 12, 10, 0.86) 0%, rgba(18, 12, 10, 0.66) 45%, rgba(18, 12, 10, 0.88) 100%);
}

body.home-page section.frame.frame-3 div.contact-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

body.home-page section.frame.frame-3 h2.contact-heading,
body.home-page section.frame.frame-3 .contact-heading {
    font-family: var(--sk-display);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.2vw, 2.85rem);
    line-height: 1.15;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    text-wrap: balance;
}

body.home-page section.frame.frame-3 div.address-column {
    justify-content: flex-start;
    gap: 2.25rem;
}

body.home-page section.frame.frame-3 div.address-column > div {
    margin-bottom: 0 !important;
}

body.home-page section.frame.frame-3 div.address-column h4,
body.home-page section.frame.frame-3 div.address-column .h4 {
    font-family: var(--sk-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--sk-brass);
    margin-bottom: 0.85rem;
}

body.home-page section.frame.frame-3 div.address-column p {
    font-family: var(--sk-body);
    font-size: 1.0313rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

body.home-page section.frame.frame-3 div.address-column p a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    transition: border-color 0.25s ease, color 0.25s ease;
}

body.home-page section.frame.frame-3 div.address-column p a:hover {
    color: #fff;
    border-bottom-color: var(--sk-ember-light);
}

body.home-page section.frame.frame-3 iframe {
    display: block;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    filter: grayscale(0.25) contrast(1.02);
}

/* ====================================================== galleries (both) == */

body.home-page section.frame:is(.frame-4, .galeria-hotel) {
    background-color: var(--sk-paper-warm);
    padding-top: var(--sk-section-y) !important;
    padding-bottom: var(--sk-section-y) !important;
}

body.home-page section.frame:is(.frame-4, .galeria-hotel) div.gallery-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

body.home-page section.frame:is(.frame-4, .galeria-hotel) h2,
body.home-page section.frame:is(.frame-4, .galeria-hotel) .h2 {
    font-family: var(--sk-display);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.2vw, 2.85rem);
    line-height: 1.15;
    color: var(--sk-ink);
    margin-bottom: 0;
    text-wrap: balance;
}

.sk-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 768px) {
    .sk-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (min-width: 1200px) {
    .sk-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.sk-gallery a.sk-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--sk-paper);
    text-decoration: none;
}

.sk-gallery a.sk-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.sk-gallery a.sk-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 12, 10, 0) 45%, rgba(18, 12, 10, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.sk-gallery a.sk-gallery-item .sk-gallery-plus {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sk-gallery a.sk-gallery-item .sk-gallery-plus::before,
.sk-gallery a.sk-gallery-item .sk-gallery-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
}

.sk-gallery a.sk-gallery-item .sk-gallery-plus::before {
    width: 15px;
    height: 1px;
    margin: 0 0 0 -7.5px;
}

.sk-gallery a.sk-gallery-item .sk-gallery-plus::after {
    width: 1px;
    height: 15px;
    margin: -7px 0 0 0;
}

.sk-gallery a.sk-gallery-item:hover img,
.sk-gallery a.sk-gallery-item:focus-visible img {
    transform: scale(1.06);
}

.sk-gallery a.sk-gallery-item:hover::after,
.sk-gallery a.sk-gallery-item:focus-visible::after {
    opacity: 1;
}

.sk-gallery a.sk-gallery-item:hover .sk-gallery-plus,
.sk-gallery a.sk-gallery-item:focus-visible .sk-gallery-plus {
    opacity: 1;
    transform: scale(1);
}

.sk-gallery a.sk-gallery-item:focus-visible {
    outline: 2px solid var(--sk-ember);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .sk-gallery a.sk-gallery-item img {
        transition: none;
    }
}

/* ------------------------------------------------------------- lightbox -- */

.lightboxOverlay {
    background-color: #120C0A;
    opacity: 0.94 !important;
    filter: none;
}

.lightbox .lb-image {
    border: none;
    border-radius: 0;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.lightbox .lb-outerContainer {
    background-color: transparent;
    border-radius: 0;
}

.lightbox .lb-dataContainer {
    background: transparent;
    border-radius: 0;
    padding-top: 0.85rem;
}

.lb-data .lb-caption {
    font-family: var(--sk-display);
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}

.lb-data .lb-number {
    font-family: var(--sk-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sk-brass);
    padding-bottom: 0.4rem;
}

.lb-data .lb-close {
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.lb-data .lb-close:hover {
    opacity: 1;
}

/* Arrows are visible without hovering (the stock white PNGs disappear over
   bright photos), drawn as chevrons on a dark chip instead. */
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    position: relative;
    background-image: none !important;
    opacity: 1 !important;
}

.lb-nav a.lb-prev::before,
.lb-nav a.lb-next::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    border-radius: 50%;
    background: rgba(18, 12, 10, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    opacity: 1;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.lb-nav a.lb-prev::after,
.lb-nav a.lb-next::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 11px;
    margin-top: -6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.lb-nav a.lb-prev::before  { left: 18px; }
.lb-nav a.lb-next::before  { right: 18px; }

.lb-nav a.lb-prev::after {
    left: 45px;
    transform: rotate(-135deg);
}

.lb-nav a.lb-next::after {
    right: 45px;
    transform: rotate(45deg);
}

.lb-nav a.lb-prev:hover::before,
.lb-nav a.lb-next:hover::before {
    background: rgba(162, 84, 42, 0.85);
}

/* ============================================ long-form pages (prose) ===== */
/* menu.html + regulamin.html frame-2, hotel.html frame-6                     */

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2,
body.home-page section.frame.frame-6 {
    background-color: var(--sk-paper);
    padding-top: var(--sk-section-y) !important;
    padding-bottom: var(--sk-section-y) !important;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 h1,
body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 .h1,
body.home-page section.frame.frame-6 h1,
body.home-page section.frame.frame-6 .h1 {
    font-family: var(--sk-display);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.4vw, 3.15rem);
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: var(--sk-ink);
    margin-bottom: 2.5rem;
    text-align: center;
    text-wrap: balance;
}

body.home-page section.frame.frame-6 h1 strong,
body.home-page section.frame.frame-6 .h1 strong {
    font-weight: 600;
    font-style: italic;
    color: var(--sk-ember);
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 h2,
body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 .h2,
body.home-page section.frame.frame-6 h2,
body.home-page section.frame.frame-6 .h2 {
    font-family: var(--sk-display);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.2;
    color: var(--sk-ink);
    margin-top: 3.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--sk-line);
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 p,
body.home-page section.frame.frame-6 p {
    font-family: var(--sk-body);
    font-size: clamp(1.0313rem, 1.3vw, 1.0938rem);
    line-height: 1.8;
    font-weight: 400;
    color: var(--sk-ink-soft);
    margin-bottom: 1.35rem;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul,
body.home-page section.frame.frame-6 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li,
body.home-page section.frame.frame-6 ul li {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--sk-body);
    font-size: 1.0313rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--sk-ink);
    padding: 0.7rem 0 0.7rem 1.35rem;
    border-bottom: 1px solid var(--sk-line);
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li,
body.home-page section.frame.frame-6 ul li {
    flex-wrap: wrap;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li span.dish,
body.home-page section.frame.frame-6 ul li span.dish {
    flex: 1 1 auto;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li span.price,
body.home-page section.frame.frame-6 ul li span.price {
    flex: 0 0 auto;
    font-family: var(--sk-display);
    font-weight: 600;
    color: var(--sk-ember);
    white-space: nowrap;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li::before,
body.home-page section.frame.frame-6 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.35rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sk-ember);
    opacity: 0.65;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li:last-child,
body.home-page section.frame.frame-6 ul li:last-child {
    border-bottom: none;
}

/* nested lists — variants of a dish, set in a quieter voice */
body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li ul,
body.home-page section.frame.frame-6 ul li ul {
    margin: 0.6rem 0 0;
    padding-left: 1rem;
    border-left: 1px solid var(--sk-line);
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li ul li,
body.home-page section.frame.frame-6 ul li ul li {
    font-family: var(--sk-display);
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--sk-muted);
    padding: 0.2rem 0 0.2rem 0;
    border-bottom: none;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 ul li ul li::before,
body.home-page section.frame.frame-6 ul li ul li::before {
    display: none;
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 a,
body.home-page section.frame.frame-6 ul a {
    color: var(--sk-ember);
    text-decoration: none;
    border-bottom: 1px solid rgba(162, 84, 42, 0.35);
}

body:is(.karta-menu, .regulamin-hotelu) section.frame.frame-2 a:hover,
body.home-page section.frame.frame-6 ul a:hover {
    border-bottom-color: var(--sk-ember);
}

/* ------------------------------------------------- hotel: accordion ------ */

body.home-page section.frame.frame-6 #accordionHotel {
    margin-top: 2.5rem;
    border-top: 1px solid var(--sk-line);
    border-bottom: 1px solid var(--sk-line);
}

body.home-page section.frame.frame-6 #accordionHotel button {
    font-family: var(--sk-display);
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 600;
    color: var(--sk-ink);
    background-color: transparent;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

body.home-page section.frame.frame-6 #accordionHotel button:hover {
    color: var(--sk-ember);
}

body.home-page section.frame.frame-6 #accordionHotel div.accordion-body p {
    padding-left: 1.25rem;
    border-left: 1px solid var(--sk-line);
}

/* ------------------------------------------------- hotel: room cards ----- */

body.home-page section.frame.frame-6 div.row-123 {
    margin-top: clamp(2.5rem, 4vw, 3.75rem) !important;
    row-gap: 3.25rem;
}

body.home-page section.frame.frame-6 div.row-123 div.single-col {
    text-align: center;
    padding-left: clamp(1rem, 2.5vw, 2.5rem);
    padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

@media (min-width: 992px) {
    body.home-page section.frame.frame-6 div.row-123 div.single-col.border-right {
        border-right: 1px solid var(--sk-line);
    }
}

body.home-page section.frame.frame-6 div.row-123 div.people-icons svg {
    height: 52px;
}

body.home-page section.frame.frame-6 div.row-123 div.people-icons svg path,
body.home-page section.frame.frame-6 div.row-123 div.people-icons svg line,
body.home-page section.frame.frame-6 div.row-123 div.people-icons svg circle {
    stroke: var(--sk-ember);
}

body.home-page section.frame.frame-6 div.row-123 h3,
body.home-page section.frame.frame-6 div.row-123 .h3 {
    font-family: var(--sk-display);
    font-weight: 600;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    line-height: 1.25;
    color: var(--sk-ink);
    margin-bottom: 0.6rem;
}

body.home-page section.frame.frame-6 div.row-123 p {
    font-family: var(--sk-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.6;
    color: var(--sk-ember);
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

/* ----------------------------------------------------------------- footer */

footer {
    background-color: var(--sk-ink);
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer a.navbar-brand {
    font-family: var(--sk-display);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

footer a.navbar-brand img.logo {
    width: 26px;
}

@media (min-width: 992px) {
    footer a.navbar-brand img.logo {
        width: 34px;
    }
}

footer p {
    font-family: var(--sk-body);
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
}

footer p a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
}

footer p a:hover {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--sk-ember-light);
}

/* ------------------------------------------------------------ loader tweak */

#loader-wrapper .loader-section {
    background-color: var(--sk-ink);
}
