/* ==========================================================================
   Prichal Theme - Main Stylesheet
   ========================================================================== */

/* ---- Tokens ---- */
:root {
    --color-navy:       #112846;
    --color-navy-deep:  #0b1c2e;
    --color-gold:       #c89968;
    --color-gold-dark:  #b18957;
    --color-cream:      #faf6f0;
    --color-cream-2:    #f6efe4;
    --color-line:       #e5dcce;
    --color-text:       #1f2733;
    --color-text-soft:  #5a6473;
    --color-muted:      #8a93a1;
    --color-white:      #ffffff;

    --font-serif:  'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --radius-sm: 6px;
    --radius:    10px;
    --radius-lg: 18px;

    --shadow-sm: 0 4px 14px rgba(11,28,46,.08);
    --shadow:    0 12px 36px rgba(11,28,46,.12);
    --shadow-lg: 0 24px 60px rgba(11,28,46,.18);

    --container: 1200px;
    --gutter: 24px;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-gold); }
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.18;
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap;
}
.skip-link {
    position: absolute;
    top: -100px; left: 8px;
    background: var(--color-navy); color: #fff;
    padding: 8px 12px; border-radius: 4px; z-index: 1000;
}
.skip-link:focus { top: 8px; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all .25s;
    cursor: pointer;
    line-height: 1;
}
.btn--primary {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
}
.btn--primary:hover { background: var(--color-gold-dark); border-color: var(--color-gold-dark); color: #fff; }
.btn--outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}
.btn--outline:hover { background: var(--color-navy); color: #fff; }
.btn--sm { padding: 11px 20px; font-size: .8rem; }
.btn--block { width: 100%; display: flex; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gold);
    font-weight: 600;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.link-arrow:hover { color: var(--color-gold-dark); }

.eyebrow {
    display: inline-block;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 26px; height: 1px;
    background: var(--color-gold);
}
.eyebrow--gold { color: var(--color-gold); }

/* ---- Header (transparent overlay over hero) ---- */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease;
}
/* When scrolled, header becomes solid */
.site-header.is-scrolled {
    position: fixed;
    background: rgba(11,28,46,.96);
    box-shadow: 0 6px 22px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.site-header.is-scrolled .topbar { display: none; }

.topbar {
    color: #fff;
    background-color: rgba(11,28,46,.85);
    font-size: .82rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 30px;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar__socials { display: flex; gap: 14px; align-items: center; }
.topbar__socials a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    transition: background .2s, color .2s;
}
.topbar__socials a svg { display: block; width: 14px; height: 14px; fill: currentColor; }
.topbar__socials a:hover { color: var(--color-gold); background: rgba(255,255,255,.22); }
.topbar__contact { display: flex; gap: 22px; align-items: center; }
.topbar__contact a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255,255,255,.4);
}
.topbar__contact a:hover { color: var(--color-gold); text-decoration-color: var(--color-gold); }
.topbar__email { letter-spacing: .04em; }
.topbar__sep { color: rgba(255,255,255,.4); }

.navbar { color: #fff; }
.navbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 90px;
    gap: 24px;
}
.brand { justify-self: start; }
.brand__text { color: #fff; display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark,
.custom-logo {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
/* WordPress custom-logo wrapper */
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}
.brand__name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.15;
    color: #fff;
    text-transform: uppercase;
}

.primary-nav { justify-self: center; }
.primary-nav .primary-menu {
    display: flex; gap: 2px; align-items: center; flex-wrap: nowrap;
}
.primary-menu li { position: relative; white-space: nowrap; }
.primary-menu a {
    display: block;
    padding: 10px 14px;
    color: #fff;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .02em;
    white-space: nowrap;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a { color: var(--color-gold); }
.primary-menu .sub-menu {
    position: absolute; top: 100%; left: 0;
    background: #fff;
    min-width: 200px;
    padding: 8px 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .25s;
}
.primary-menu li:hover > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-menu .sub-menu a { color: var(--color-text); padding: 10px 18px; }

.navbar__actions { display: flex; align-items: center; gap: 14px; justify-self: end; }

/* ---- Language switcher ---- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
}
/* Polylang генерує <li> напряму в <div> (без <ul>) - прибираємо маркер */
.lang-switcher ul,
.lang-switcher ul li,
.lang-switcher li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2px;
}
/* Явно прибираємо ::marker псевдо-елемент */
.lang-switcher li::marker,
.lang-switcher ul li::marker {
    content: '' !important;
    display: none !important;
}
/* Прапор Polylang */
.lang-switcher img {
    width: 18px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
}
.lang-switcher__item,
.lang-switcher li a {
    padding: 3px 7px;
    border-radius: 4px;
    color: rgba(255,255,255,.6);
    transition: color .2s, background .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.lang-switcher__item:hover,
.lang-switcher li a:hover { color: #fff; background: rgba(255,255,255,.12); }
.lang-switcher__item.is-active,
.lang-switcher li.current-lang a {
    color: var(--color-gold);
    background: rgba(255,255,255,.08);
    cursor: default;
    pointer-events: none;
}
.cta-link {
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 4px;
    transition: color .2s, border-color .2s;
}
.cta-link:hover { color: var(--color-gold); }
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 38px; height: 38px;
    position: relative;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    margin: 5px auto;
    transition: .3s;
}
.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); }

/* ---- Hero ---- */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 200px 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero--full { min-height: 100vh; }
.hero__inner { width: 100%; }
.hero__content { margin-bottom: 60px; max-width: 780px; }
.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #fff;
}
.hero__stars {
    color: var(--color-gold);
    font-size: 1.05rem;
    letter-spacing: 4px;
}
.hero__rating-text {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #fff;
}
.hero__title {
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(2.4rem, 6vw, 5rem);
    letter-spacing: -.01em;
    line-height: 1.05;
    max-width: 920px;
    margin-bottom: 22px;
}
.hero__subtitle {
    color: rgba(255,255,255,.92);
    font-size: 1.15rem;
    max-width: 620px;
    margin-bottom: 0;
}

/* -- Hero-contact: повноширокий бар внизу hero -- */
.hero-contact-bar {
    width: 100%;
    background: rgba(10,24,40,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.1);
}

/* .hero-contact - це container всередині бару */
.hero-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.hero-contact__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.hero-contact__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    padding: 5px 11px;
    white-space: nowrap;
}
.hero-contact__badge svg { opacity: .75; flex-shrink: 0; }

.hero-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Кнопки hero */
.btn--gold {
    background: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
    font-weight: 700;
}
.btn--gold:hover, .btn--gold:focus {
    background: #c9a227;
    border-color: #c9a227;
    color: var(--color-navy);
}
.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}
.btn--outline-white:hover, .btn--outline-white:focus {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.9);
    color: #fff;
}
.btn--lg {
    padding: 12px 24px;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Планшет: бейджі йдуть вгору, кнопки вниз */
@media (max-width: 860px) {
    .hero-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 16px 0;
    }
    .hero-contact__badges { justify-content: center; }
    .hero-contact__actions { justify-content: center; }
}

/* Мобільний: кнопки на всю ширину */
@media (max-width: 480px) {
    .hero-contact { gap: 12px; padding: 14px 0; }
    .hero-contact__actions { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-contact__actions .btn { justify-content: center; width: 100%; }
    .btn--lg { padding: 13px 20px; font-size: .9rem; }
}

.booking-bar {
    background: rgba(255,255,255,.96);
    color: var(--color-text);
    padding: 18px;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 14px;
    align-items: end;
    box-shadow: var(--shadow);
    max-width: 980px;
}
.booking-bar__field { display: flex; flex-direction: column; gap: 4px; }
.booking-bar__field label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--color-muted);
}
.booking-bar__field input,
.booking-bar__field select {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-line);
    padding: 6px 0;
    color: var(--color-text);
    outline: none;
}
.booking-bar__submit { height: 48px; }

/* Booking bar - dark, full-width hero version */
.booking-bar--dark {
    background: rgba(11,28,46,.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    padding: 24px 28px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
    gap: 22px;
    max-width: none;
    align-items: center;
}
.booking-bar--dark .booking-bar__field {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 6px;
}
.booking-bar--dark .booking-bar__field input,
.booking-bar--dark .booking-bar__field select {
    background: transparent;
    border: 0;
    color: #fff;
    padding: 12px 0 6px;
    width: 100%;
    font-size: .95rem;
    outline: none;
}
.booking-bar--dark .booking-bar__field input::placeholder { color: rgba(255,255,255,.75); }
.booking-bar--dark .booking-bar__field select { color: rgba(255,255,255,.85); appearance: none; -webkit-appearance: none; cursor: pointer; }
.booking-bar--dark .booking-bar__field--select::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    width: 8px; height: 8px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}
.booking-bar--dark .booking-bar__field input[type="date"] { color-scheme: dark; }
.booking-bar--dark .booking-bar__submit { padding: 16px 32px; height: auto; }

/* ---- Sections ---- */
.section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.section--alt { background: var(--color-cream-2); }
.section--dark {
    background-color: var(--color-navy);
    background-size: cover;
    background-position: center;
    color: rgba(255,255,255,.9);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .eyebrow { color: var(--color-gold); }
.section--dark .eyebrow::before { background: var(--color-gold); }


/* ============================================================================
   Section Media Slider - multi-photo block with dot indicators
   ════════════════════════════════════════════════════════════════════════════

   Один img    -> звичайний <img>, CSS нижче не застосовується
   2+ фото     -> .section-media--slider  з  data-section-slider

   Структура:
     <div class="section-media section-media--slider" data-section-slider>
       <figure class="section-media__slide is-active"><img></figure>
       <figure class="section-media__slide"><img></figure>
       <div class="section-media__dots">
         <button class="section-media__dot is-active" data-index="0">
         ...
       </div>
     </div>
   ════════════════════════════════════════════════════════════════════════════ */

.section-media--slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
    cursor: zoom-in;
    aspect-ratio: 4 / 3; /* fallback; overridden per context */
}
.section-media__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: opacity .7s ease;
    line-height: 0;
}
.section-media__slide.is-active {
    opacity: 1;
    z-index: 1;
}
.section-media__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Стрілки prev / next */
.section-media__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 4;
    width: 38px; height: 38px; border-radius: 50%; border: none; padding: 0;
    background: rgba(0,0,0,.42); color: #fff;
    font-size: 26px; line-height: 38px; text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .22s, background .18s, transform .18s;
    user-select: none;
    display: flex; align-items: center; justify-content: center;
}
.section-media--slider:hover .section-media__arrow {
    opacity: 1;
}
.section-media__arrow:hover {
    background: rgba(0,0,0,.68);
    transform: translateY(-50%) scale(1.1);
}
.section-media__arrow--prev { left: 10px; }
.section-media__arrow--next { right: 10px; }
/* На мобільних - завжди видимі, трохи прозоріші */
@media (max-width: 768px) {
    .section-media__arrow { opacity: .65; width: 32px; height: 32px; font-size: 22px; }
    .section-media__arrow--prev { left: 6px; }
    .section-media__arrow--next { right: 6px; }
}

/* Крапки-перемикачі */
.section-media__dots {
    position: absolute; bottom: 12px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 7px; z-index: 3;
    pointer-events: none;
}
.section-media__dot {
    width: 9px; height: 9px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.85);
    background: transparent; cursor: pointer;
    padding: 0; pointer-events: all;
    transition: background .2s, transform .2s, border-color .2s;
}
.section-media__dot.is-active,
.section-media__dot:hover {
    background: #fff; border-color: #fff;
    transform: scale(1.25);
}

/* -- Контекстні розміри: дублюємо aspect-ratio/decoration із <img> -- */

/* Story (Про нас - головна): aspect 4/5 */
.story__image .section-media--slider {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Баня та Альтанка - spa__media (4/5) і dining__media (5/4) */
.spa__media .section-media--slider {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.dining__media .section-media--slider {
    aspect-ratio: 5/4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* split__col--media (About intro): aspect 5/4 */
.split__col--media .section-media--slider {
    aspect-ratio: 5/4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* mv-card (About mission): фіксований aspect-ratio щоб не стрибало */
.mv-card .section-media--slider {
    aspect-ratio: 4 / 3;
    min-height: 220px;
}

/* contacts-split__media: фіксований aspect-ratio */
.contacts-split__media .section-media--slider {
    aspect-ratio: 4 / 3;
    min-height: 260px;
}

/* Mobile: дещо менші крапки */
@media (max-width: 767px) {
    .section-media__dot { width: 7px; height: 7px; }
    .section-media__dots { bottom: 8px; gap: 5px; }
}

/* CTA section - background image cover */
.section--has-overlay,
.section--cta {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
}
.section--has-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    pointer-events: none;
}
.section--cta .container,
.section--has-overlay .container {
    position: relative;
    z-index: 1;
}

.section__head { margin-bottom: 56px; }
.section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.section__title { margin-bottom: 12px; }
.section__title--light { color: #fff; }
.section__title-light { color: var(--color-muted); font-weight: 400; }
.section__lead { color: var(--color-text-soft); font-size: 1.05rem; }
.section__lead--light { color: rgba(255,255,255,.82); }
.section__cta { text-align: center; margin-top: 48px; }
.section__cta-text { color: var(--color-text-soft); margin-bottom: 14px; font-size: 1.05rem; }

/* ---- Story ---- */
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
}
.stats-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--color-line);
    padding-top: 28px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-navy);
    line-height: 1;
}
.stat__label {
    font-size: .82rem;
    color: var(--color-text-soft);
    letter-spacing: .04em;
}

/* ---- Cards grid ---- */
.cards-grid { display: grid; gap: 30px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---- Room type cards ---- */
.room-type-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.room-type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-type-card__media {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.room-type-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.room-type-card:hover .room-type-card__media img { transform: scale(1.05); }
.room-type-card__body { padding: 24px; }
.room-type-card__body h3 { margin-bottom: 6px; }
.room-type-card__body p { color: var(--color-text-soft); margin-bottom: 10px; }

/* ---- Room cards ---- */
.room-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.room-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.room-card:hover .room-card__media img { transform: scale(1.05); }
.room-card__media .room-card__price {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(255,255,255,.95);
    color: var(--color-navy);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
}
.room-card__media .room-card__price small { font-family: var(--font-sans); font-size: .8rem; font-weight: 400; color: var(--color-text-soft); }
.room-card__body { padding: 22px; }
.room-card__body p { color: var(--color-text-soft); }
.room-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 14px 0 18px;
    color: var(--color-text-soft);
    font-size: .82rem;
}
.room-card__amenities li {
    padding: 4px 10px;
    background: var(--color-cream-2);
    border-radius: var(--radius-sm);
}

/* ---- Spa & Dining (two-col image + content) ---- */
.spa__grid, .dining__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.spa__media img, .dining__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
    object-fit: cover;
}
.dining__media img { aspect-ratio: 5/4; }

.check-list { margin: 18px 0 24px; }
.check-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.spa__content .check-list li,
.dining__content .check-list li { border-bottom-color: rgba(255,255,255,.1); }
.section:not(.section--dark) .check-list li { border-bottom: 1px solid var(--color-line); }
.check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
}

/* ---- Features ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature { padding: 24px 0; }
.feature__num {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}
.feature__title { margin-bottom: 8px; }
.feature__desc { color: var(--color-text-soft); }

/* ---- Testimonials ---- */
.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.testimonials__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.testimonials__slider { position: relative; }
.testimonial {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--color-gold);
}
.testimonial__quote {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    line-height: 1.5;
    color: var(--color-navy);
    margin-bottom: 24px;
}
.testimonial__author { display: flex; gap: 14px; align-items: center; }
.testimonial__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial__author strong { display: block; color: var(--color-navy); }
.testimonial__author span { color: var(--color-text-soft); font-size: .85rem; }
.slider-controls { margin-top: 22px; display: flex; gap: 10px; }
.slider-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--color-cream-2);
    border: 1px solid var(--color-line);
    color: var(--color-navy);
    font-size: 1.1rem;
    transition: all .2s;
}
.slider-btn:hover { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }

/* ---- Gallery ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 3/4;
    display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ---- News cards ---- */
.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.news-card__media { display: block; aspect-ratio: 4/3; overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__body { padding: 22px; }
.news-card__date {
    display: inline-block;
    font-size: .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}
.news-card h3 { margin-bottom: 8px; }
.news-card h3 a { color: var(--color-navy); }
.news-card h3 a:hover { color: var(--color-gold); }
.news-card p { color: var(--color-text-soft); margin-bottom: 12px; }

/* ---- Contact form ---- */
.contact-form {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255,255,255,.06);
    padding: 36px;
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.1);
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 4px; }
.contact-form span {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}
.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 8px 0;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--color-gold); }
.contact-form__msgfield { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.contact-form button { margin-top: 6px; }
.contact-form__msg {
    margin-top: 14px;
    color: var(--color-gold);
}


/* ---- Reviews CTA ---- */
.trustindex-section__cta {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 40px;
}
.trustindex-section__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ---- Footer ---- */
.site-footer {
    position: relative;
    color: rgba(255,255,255,.78);
    background-size: cover;
    background-position: center;
    padding: 80px 0 30px;
}
.site-footer__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11,28,46,.85), rgba(11,28,46,.92));
}
.site-footer__inner { position: relative; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 44px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col__title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 18px;
}
.footer-col p { color: rgba(255,255,255,.7); }
.footer-list li { padding: 6px 0; }
.footer-list a { color: rgba(255,255,255,.78); font-size: .92rem; }
.footer-list a:hover { color: var(--color-gold); }
.footer-socials { display: flex; gap: 12px; margin-top: 14px; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--color-gold); color: #fff; }

.subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.subscribe-form input {
    flex: 1; min-width: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    outline: none;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,.5); }
.subscribe-form__msg { width: 100%; color: var(--color-gold); }

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255,255,255,.55);
    font-size: .85rem;
}

/* ---- Video background ---- */
.section--has-video { position: relative; overflow: hidden; }
.video-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none;
}
.video-bg.is-playing { opacity: 1; }
.video-bg__overlay {
    position: absolute; inset: 0;
    background: rgba(11,28,46,.45);
    z-index: 1;
    pointer-events: none;
}
.section--has-video > .container,
.section--has-video > div:not(.video-bg):not(.video-bg__overlay),
.section--has-video > header,
.section--has-video > nav { position: relative; z-index: 2; }
/* Mobile: video plays natively (muted + playsinline + autoplay) */
@media (max-width: 767px) {
    .video-bg { object-position: center center; }
}

/* ---- Lightbox (with prev/next navigation) ---- */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(11,28,46,.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }
.lightbox__close {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 0;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background .2s;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
/* Nav buttons */
.lightbox__nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 0;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s;
    z-index: 10;
    user-select: none;
}
.lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__nav[hidden] { display: none; }
/* Counter */
.lightbox__counter {
    position: absolute;
    bottom: 18px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: .82rem;
    letter-spacing: .08em;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
}

/* ---- Generic page / single ---- */
.page-content, .single-content {
    padding: 80px 0;
}
.page-content h1, .single-content h1 { margin-bottom: 24px; }
.entry-meta { color: var(--color-text-soft); margin-bottom: 20px; font-size: .9rem; }
.entry-thumbnail { margin-bottom: 30px; border-radius: var(--radius); overflow: hidden; }
.entry-thumbnail img { width: 100%; }
.pagination { margin: 40px 0; display: flex; gap: 10px; justify-content: center; }
.pagination a, .pagination span {
    padding: 8px 14px;
    background: #fff;
    border-radius: var(--radius-sm);
    color: var(--color-navy);
    border: 1px solid var(--color-line);
}
.pagination .current { background: var(--color-navy); color: #fff; }

/* ==========================================================================
   Rooms catalog & Single Room
   ========================================================================== */

.section--rooms-catalog { padding-top: clamp(50px, 6vw, 80px); }

.rooms-catalog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}
.room-tile {
    display: grid;
    grid-template-columns: 220px 1fr;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.room-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.room-tile__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
}
.room-tile__media-link { display: block; width: 100%; height: 100%; }
.room-tile__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.room-tile:hover .room-tile__media img { transform: scale(1.05); }
.room-tile__badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--color-gold);
    color: #fff;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}
.room-tile__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.room-tile__body h3 { margin: 0; }
.room-tile__body h3 a { color: var(--color-navy); }
.room-tile__body h3 a:hover { color: var(--color-gold); }
.room-tile__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--color-text-soft);
    font-size: .88rem;
}
.room-tile__specs li { display: inline-flex; align-items: center; gap: 6px; }
.room-tile__desc { color: var(--color-text-soft); margin: 0; }
.room-tile__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--color-line);
    gap: 12px;
    flex-wrap: wrap;
}
.room-tile__price {
    font-family: var(--font-serif);
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: 600;
}
.room-tile__price small {
    font-family: var(--font-sans);
    font-size: .78rem;
    font-weight: 400;
    color: var(--color-text-soft);
}
.room-tile__price .room-tile__price-prefix {
    margin-right: 4px;
    text-transform: lowercase;
    letter-spacing: .02em;
}
.room-tile__price .room-tile__price-unit {
    margin-left: 4px;
    white-space: nowrap;
}
.room-tile__price--ask { color: var(--color-text-soft); font-size: .95rem; font-style: italic; font-weight: 400; }

/* Single room page */
.section--room { padding-top: clamp(50px, 7vw, 90px); }
.room-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}
.room-gallery { margin-bottom: 28px; }
.room-gallery__main-wrap { position: relative; margin-bottom: 14px; }
.room-gallery__main { display: block; overflow: hidden; border-radius: var(--radius-lg); }
.room-gallery__main img { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; }
.room-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.room-gallery__thumb { display: block; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-sm); }
.room-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.room-gallery__thumb:hover img { transform: scale(1.08); }

.room-content { font-size: 1.05rem; }
.room-content p { color: var(--color-text); }

.room-amenities { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--color-line); }
.room-amenities h3 { margin-bottom: 18px; }

.room-sidebar { position: sticky; top: 110px; }
.booking-card--mobile { display: none; }
.booking-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--color-gold);
    position: relative;
}
.booking-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 18px;
    margin-bottom: 18px;
}
.booking-card__price-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-navy);
    font-weight: 600;
    line-height: 1;
}
.booking-card__price-unit { color: var(--color-text-soft); font-size: .9rem; }
.booking-card__specs { margin: 0 0 22px; }
.booking-card__specs li { padding: 8px 0; border-bottom: 1px solid var(--color-cream-2); color: var(--color-text-soft); font-size: .92rem; }
.booking-card__specs li:last-child { border-bottom: 0; }
.booking-card__specs strong { color: var(--color-navy); font-weight: 600; }
.booking-card__note { font-size: .85rem; color: var(--color-text-soft); text-align: center; margin: 14px 0 0; }
.booking-card__note a { color: var(--color-navy); font-weight: 600; }

/* ---- Pricing block (single-room sidebar) ---- */
.pricing { margin: 0 0 18px; }
.pricing__title {
    font-family: var(--font-serif);
    color: var(--color-navy);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 18px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-line);
}
.pricing > .pricing__title:first-child { margin-top: 0; }
.pricing__items { list-style: none; margin: 0 0 6px; padding: 0; }
.pricing__items li { font-size: .95rem; line-height: 1.45; padding: 4px 0; }
.pricing__check { color: var(--color-gold); font-weight: 700; margin-right: 4px; }
.pricing__label { color: var(--color-text); }
.pricing__value { color: var(--color-navy); font-weight: 600; }
.pricing__plain { color: var(--color-text); }
.pricing__note { color: #c1392b; font-weight: 500; padding: 6px 0; }
.pricing__foot { color: var(--color-text-soft); font-size: .9rem; padding: 6px 0; }
.pricing__gap { height: 4px; padding: 0; }

/* ---- Room rules accordion (single-room) ---- */
.room-rules { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--color-line); }
.room-rules h3 { margin-bottom: 18px; }
.rules-list { list-style: none; margin: 8px 0 0; padding: 0; }
.rules-list li {
    position: relative;
    padding: 8px 0 8px 26px;
    color: var(--color-text);
    line-height: 1.55;
    border-bottom: 1px dashed var(--color-line);
}
.rules-list li:last-child { border-bottom: 0; }
.rules-list li::before {
    content: '👉';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: .9rem;
}
.rules-list--forbidden li::before { content: '✕'; color: #c1392b; font-weight: 700; top: 7px; }

.page-banner--hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 180px;
    padding-bottom: 80px;
}
.page-banner--hero .page-banner__title { color: #fff; }
.page-banner--hero .page-banner__crumbs { color: rgba(255,255,255,.75); }
.page-banner--hero .page-banner__crumbs a { color: rgba(255,255,255,.85); }


/* ==========================================================================
   Gallery page
   ========================================================================== */

.section--gallery { padding-top: clamp(50px, 6vw, 80px); }

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 40px;
}
.filter-chips--type { margin-bottom: 18px; }
.filter-chips--type .chip {
    background: var(--color-cream-2);
    border-color: var(--color-cream-2);
    color: var(--color-text);
}
.filter-chips--type .chip.is-active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}
.chip {
    background: transparent;
    border: 1px solid var(--color-line);
    color: var(--color-text);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { border-color: var(--color-navy); color: var(--color-navy); }
.chip.is-active {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff;
}

.gallery-grid--masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 18px;
}
.gallery-grid--masonry .gallery-card { grid-row: span 1; }
/* Pseudo-masonry: every 5th tile spans two rows for visual interest */
.gallery-grid--masonry .gallery-card:nth-child(5n+1) { grid-row: span 2; }
.gallery-grid--masonry .gallery-card:nth-child(7n+3) { grid-column: span 2; }

.gallery-card {
    position: relative;
    background: var(--color-cream-2);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform .25s, box-shadow .25s;
}
.gallery-grid--masonry .gallery-card:nth-child(5n+1) { aspect-ratio: 4/6; }
.gallery-grid--masonry .gallery-card:nth-child(7n+3) { aspect-ratio: 16/9; }

.gallery-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.gallery-card__media {
    display: block;
    width: 100%; height: 100%;
    position: relative;
    overflow: hidden;
}
.gallery-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-card:hover .gallery-card__media img { transform: scale(1.06); }

.gallery-card__vid-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.gallery-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,28,46,.28);
    transition: background .25s;
    pointer-events: none;
}
.gallery-card__play svg {
    width: 56px; height: 56px;
    color: #fff;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    padding: 14px;
    border: 1.5px solid rgba(255,255,255,.7);
    box-sizing: content-box;
}
.gallery-card:hover .gallery-card__play { background: rgba(11,28,46,.45); }

.gallery-card__title {
    position: absolute;
    left: 16px; bottom: 16px;
    right: 16px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
    pointer-events: none;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-soft);
    padding: 40px 0;
}

.gallery-loadmore {
    text-align: center;
    margin-top: 44px;
}
.gallery-end {
    max-width: 560px;
    margin: 20px auto 0;
    padding: 24px;
    background: var(--color-cream-2);
    border-radius: var(--radius);
}
.gallery-end[hidden] { display: none; }
.gallery-end p { color: var(--color-text-soft); margin-bottom: 14px; }
.btn--insta {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 30%, #dc2743 50%, #cc2366 70%, #bc1888 100%);
    border-color: transparent;
}
.btn--insta:hover { filter: brightness(1.06); }
.gallery-loadmore .btn[disabled] { opacity: .6; cursor: not-allowed; }
.gallery-status {
    margin: 14px 0 0;
    color: var(--color-text-soft);
    font-size: .9rem;
}

/* Lightbox video player */
.lightbox--video img { display: none; }
.lightbox__player {
    width: min(960px, 100%);
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}
.lightbox__player iframe,
.lightbox__player video { width: 100%; height: 100%; display: block; border: 0; }

/* ==========================================================================
   Contacts page
   ========================================================================== */

/* Eyebrow variant with bullet on each side */
.eyebrow--dots {
    padding-left: 0;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow--dots::before,
.eyebrow--dots::after {
    content: '';
    position: static;
    width: 5px; height: 5px;
    background: var(--color-gold);
    border-radius: 50%;
}
.eyebrow--dots::before { transform: none; }

/* Edge-to-edge 50/50 split (no container) */
.contacts-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: #fff;
}
.contacts-split--alt { background: var(--color-cream-2); }
.contacts-split--reverse .contacts-split__media { order: 2; }
.contacts-split__media {
    min-height: 540px;
    overflow: hidden;
}
.contacts-split__media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.contacts-split__content {
    display: flex;
    align-items: center;
    padding: clamp(50px, 7vw, 90px) clamp(24px, 4vw, 80px);
}
.contacts-split__inner { max-width: 540px; }
.contacts-split__inner .lead {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 8px;
}
.contacts-split__inner p { color: var(--color-text-soft); }

/* Contact items */
.contact-items { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item__icon {
    flex: 0 0 auto;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--color-cream-2);
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-item__body h4 {
    margin: 0 0 4px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-navy);
    font-weight: 600;
}
.contact-item__body p { margin: 0; color: var(--color-text); }
.contact-item__body a { color: var(--color-navy); text-decoration: underline; text-underline-offset: 3px; }
.contact-item__body a:hover { color: var(--color-gold); }
.contact-item__label {
    color: var(--color-text-soft);
    margin-right: 6px;
}

/* Accordion with + / − icons */
.accordion--plus .accordion__title::after {
    content: '';
    border: 0;
    width: 22px; height: 22px;
    transform: translateY(-50%);
    top: 50%;
    background:
        linear-gradient(currentColor, currentColor) center / 14px 1.5px no-repeat,
        linear-gradient(currentColor, currentColor) center / 1.5px 14px no-repeat;
    color: var(--color-navy);
    transition: transform .25s;
}
.accordion--plus .accordion__item[open] .accordion__title::after {
    background:
        linear-gradient(currentColor, currentColor) center / 14px 1.5px no-repeat;
}

/* Map - responsive wrapper */
.contacts-map { line-height: 0; }
.contacts-map__wrap {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.contacts-map__wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: block;
    border: 0;
    filter: saturate(.9);
}

/* ==========================================================================
   About page
   ========================================================================== */

/* ---- Page banner (used by About / inner pages) ---- */
.page-banner {
    background: var(--color-navy);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 170px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,28,46,.92) 0%, rgba(17,40,70,.78) 50%, rgba(11,28,46,.92) 100%);
    z-index: -1;
}
.page-banner > * { position: relative; z-index: 1; }
.page-banner__title {
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin-bottom: 14px;
}
.page-banner__crumbs {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: .8rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.page-banner__crumbs a { color: rgba(255,255,255,.78); }
.page-banner__crumbs a:hover { color: var(--color-gold); }
.page-banner__crumbs span { margin: 0 8px; color: var(--color-gold); }

/* ---- Generic 2-col split ---- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split__col p { color: var(--color-text-soft); }
.split__col--media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 5/4;
    object-fit: cover;
}
.section--no-pad-bottom { padding-bottom: 0; }

.split--features { gap: 64px; align-items: flex-start; }

/* ---- Mission & Vision rows ---- */
.mv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.mv-row--reverse { direction: rtl; }
.mv-row--reverse > * { direction: ltr; }
.mv-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 280px;
}
.mv-card--text { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.mv-card--text h3 { margin-bottom: 12px; }
.mv-card--text p { color: var(--color-text-soft); margin-bottom: 16px; }

.check-list--light li { color: var(--color-text); border-bottom-color: var(--color-line); }
.check-list--light li::before { background: var(--color-gold); box-shadow: inset 0 0 0 2px #fff; }

/* ---- Timeline ---- */
.timeline {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
    border-top: 1px solid var(--color-line);
    padding-top: 30px;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: -4px; left: 0; right: 0;
    height: 8px;
    background:
        radial-gradient(circle, var(--color-gold) 0 4px, transparent 5px) center / calc(100% / 5) 100% repeat-x;
}
.timeline li { display: flex; flex-direction: column; gap: 6px; }
.timeline__year {
    font-family: var(--font-serif);
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: 600;
}
.timeline__label {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

/* ---- Features 2x2 (About) ---- */
.features-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 30px;
}
.feature-icon { padding: 4px 0; }
.feature-icon__svg {
    display: inline-flex;
    width: 56px; height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--color-cream-2);
    border-radius: 50%;
    color: var(--color-navy);
    margin-bottom: 16px;
}
.feature-icon h4 {
    font-family: var(--font-serif);
    color: var(--color-navy);
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
}
.feature-icon p {
    color: var(--color-text-soft);
    font-size: .92rem;
    margin: 0;
}

/* ---- Accordion ---- */
.accordion { margin: 16px 0 26px; }
.accordion__item {
    border-bottom: 1px solid var(--color-line);
}
.accordion__title {
    list-style: none;
    cursor: pointer;
    padding: 16px 30px 16px 0;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    position: relative;
}
.accordion__title::-webkit-details-marker { display: none; }
.accordion__title::after {
    content: '';
    position: absolute;
    right: 4px; top: 50%;
    width: 10px; height: 10px;
    border-right: 1.5px solid var(--color-navy);
    border-bottom: 1.5px solid var(--color-navy);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s;
}
.accordion__item[open] .accordion__title::after { transform: translateY(-20%) rotate(-135deg); }
.accordion__content { padding: 0 0 18px; color: var(--color-text-soft); }
.accordion__content p { margin: 0; }

/* ---- Founders / team (About) ---- */
.section--founders { background: var(--color-navy); }
.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    background: rgba(255,255,255,.05);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: 48px;
}
.founder-card__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1.1; }
.founder-card__body { padding: 36px 36px 36px 0; color: rgba(255,255,255,.82); }
.founder-card__body h3 { color: #fff; margin-bottom: 4px; }
.founder-card__role {
    color: var(--color-gold);
    font-size: .74rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.founder-card__body p { color: rgba(255,255,255,.78); margin-bottom: 14px; }
.founder-card__socials { display: flex; gap: 12px; margin-top: 6px; }
.founder-card__socials a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.founder-card__socials a:hover { background: var(--color-gold); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-member {
    background: rgba(255,255,255,.04);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255,255,255,.08);
}
.team-member__photo { aspect-ratio: 4/4; overflow: hidden; }
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member h4 {
    color: #fff;
    margin: 20px 0 4px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
}
.team-member span {
    display: block;
    padding: 0 0 22px;
    color: var(--color-gold);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.founders__cta {
    text-align: center;
    margin-top: 40px;
    color: rgba(255,255,255,.78);
}
.founders__cta p { margin: 4px 0; }
.founders__cta a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---- CTA actions (journey banner) ---- */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.btn--ghost-light:hover { background: #fff; color: var(--color-navy); border-color: #fff; }
.section--journey { padding: clamp(70px, 9vw, 130px) 0; }
.section--journey .section__head { text-align: center; }
.cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .primary-menu a { padding: 10px 10px; font-size: .82rem; letter-spacing: 0; }
    .brand__mark { width: 48px; height: 48px; }
    .brand__name { font-size: 1.4rem; }
}

@media (max-width: 1100px) {
    .navbar__inner { grid-template-columns: auto 1fr auto; }
    .primary-nav { justify-self: end; }
    .booking-bar--dark { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
    .booking-bar--dark .booking-bar__submit { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
    .cards-grid--3,
    .features-grid,
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .story__grid, .spa__grid, .dining__grid, .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-bar { grid-template-columns: 1fr 1fr; }
    .booking-bar__submit { grid-column: 1 / -1; }
    .booking-bar--dark { grid-template-columns: 1fr 1fr; }
    .section__head--split { flex-direction: column; align-items: flex-start; }
    .hero { padding-top: 170px; }
    .gallery-grid--masonry { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid--masonry .gallery-card:nth-child(7n+3) { grid-column: span 1; aspect-ratio: 4/3; }
    .rooms-catalog { grid-template-columns: 1fr; }
    .room-layout { grid-template-columns: 1fr; gap: 32px; }
    .room-sidebar { display: none; }
    .booking-card--mobile { display: block; margin-top: 24px; }
    .split, .split--features { grid-template-columns: 1fr; gap: 40px; }
    .mv-row, .mv-row--reverse { grid-template-columns: 1fr; direction: ltr; }
    .mv-card img { min-height: 220px; }
    .features-2col { grid-template-columns: 1fr 1fr; }
    .contacts-split { grid-template-columns: 1fr; }
    .contacts-split--reverse .contacts-split__media { order: 0; }
    .contacts-split__media { min-height: 320px; }
    .contacts-split__inner { max-width: none; }
    .founder-card { grid-template-columns: 1fr; }
    .founder-card__photo img { aspect-ratio: 16/10; }
    .founder-card__body { padding: 28px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .timeline::before { display: none; }
}

@media (max-width: 760px) {
    .topbar__contact { gap: 12px; font-size: .76rem; }
    .topbar__email { display: none; }
    .topbar { font-size: .76rem; padding: 10px 0; }
    .navbar__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 64px;
    }
    .primary-nav {
        position: fixed;
        top: 0; left: 100%;
        width: 100%; height: 100vh;
        background: var(--color-navy-deep);
        padding: 90px 30px 30px;
        transition: left .35s ease;
        overflow-y: auto;
        z-index: 40;
        justify-self: stretch;
    }
    .primary-nav.is-open { left: 0; }
    .primary-nav .primary-menu { flex-direction: column; gap: 0; align-items: stretch; }
    .primary-menu a { font-size: 1.05rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .primary-menu .sub-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 16px;
    }
    .primary-menu .sub-menu a { color: rgba(255,255,255,.7); }
    .nav-toggle { display: block; position: relative; z-index: 50; }
    .cta-link { display: none; }
    .brand__name { font-size: 1.4rem; }
    .hero { padding: 100px 0 0; min-height: 90vh; }
    .hero__content { margin-bottom: 28px; }
    .hero__rating { gap: 8px; flex-wrap: wrap; }
    .booking-bar { grid-template-columns: 1fr; }
    .booking-bar--dark { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    /* Галерея - 2 колонки на мобільному (не 1) */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .cards-grid--3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    /* Секції - менший відступ */
    .section { padding: 44px 0; }
    .section__head { margin-bottom: 28px; }
    .contact-form__row { grid-template-columns: 1fr; }
    .features-2col { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .page-banner { padding: 130px 0 40px; }
    .contacts-map__wrap { height: 380px; }
    .contact-item__icon { width: 42px; height: 42px; }
    .room-tile { grid-template-columns: 1fr; }
    .room-tile__media { aspect-ratio: 16/10; }
    .room-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid--masonry { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-grid--masonry .gallery-card,
    .gallery-grid--masonry .gallery-card:nth-child(5n+1),
    .gallery-grid--masonry .gallery-card:nth-child(7n+3) {
        grid-row: span 1; grid-column: span 1;
        aspect-ratio: 1/1;
    }
    .chip { padding: 8px 16px; font-size: .75rem; }
    .contacts-map__wrap { height: 300px; }
}

/* ==========================================================================
   480px - дрібні телефони (iPhone SE, Galaxy A, тощо)
   ========================================================================== */
@media (max-width: 480px) {

    /* Container */
    .container { padding: 0 16px; }

    /* Sections */
    .section { padding: 32px 0; }
    .section__head { margin-bottom: 22px; }

    /* Typography */
    h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
    h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    h3 { font-size: 1.15rem; }

    /* Topbar - сховати на дуже малих екранах */
    .topbar { display: none; }

    /* Brand */
    .brand__name { font-size: 1rem; }
    .brand__mark, .custom-logo {
        width: 36px !important;
        height: 36px !important;
        max-width: 36px !important;
    }

    /* Navbar */
    .navbar__inner { min-height: 58px; }

    /* Hero */
    .hero { padding: 70px 0 0; min-height: auto; }
    .hero__content { margin-bottom: 18px; }
    .hero__rating { display: none; } /* рейтинг забирає місце на маленькому */

    /* Hero contact bar */
    .hero-contact { gap: 10px; padding: 12px 0; }
    .hero-contact__badge { font-size: .65rem; padding: 4px 8px; }

    /* Buttons */
    .btn--lg { padding: 12px 16px; font-size: .88rem; gap: 6px; }

    /* Stats */
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat__num { font-size: 1.6rem; }

    /* Gallery - 1 колонка на зовсім маленьких */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid--masonry { grid-template-columns: 1fr; }
    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid--masonry { grid-template-columns: 1fr; }
    .gallery-grid--masonry .gallery-card,
    .gallery-grid--masonry .gallery-card:nth-child(3n),
    .gallery-grid--masonry .gallery-card:nth-child(5n) {
        grid-column: span 1;
    }

    /* Testimonials */
    .testimonials__track { gap: 16px; }
    .testimonial { padding: 20px 16px; }
    .testimonial__quote { font-size: 1.15rem; }
}
/* End of @media (max-width: 480px) */

/* ============================================================================
   Offers - спецпропозиція (Головна)
   ════════════════════════════════════════════════════════════════════════════ */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.offer-card {
    background: var(--color-white, #fff);
    border: 1px solid rgba(11, 28, 46, .08);
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(11, 28, 46, .06);
}

.offer-card__title {
    font-size: 1.25rem;
    margin: 0;
}

.offer-card__price {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold, #b98e4e);
    line-height: 1;
}

.offer-card__text {
    margin: 0;
    color: rgba(11, 28, 46, .65);
}

.offer-card .btn { margin-top: auto; }

@media (max-width: 900px) {
    .offers-grid { grid-template-columns: 1fr; }
}

/* -- Баня - ціни (Головна) -- */

.spa-prices {
    margin: 18px 0 24px;
    width: 100%;
}

.spa-prices__row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .15);
}

.spa-prices__row strong { white-space: nowrap; }

.spa-prices__dots { flex: 1; }

.spa-prices__note {
    margin: 10px 0 0;
    font-size: .85rem;
    opacity: .7;
}

.section--dark .spa-prices__section {
    margin: 16px 0 6px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 4px;
}

/* -- Банери сторінок з відеофоном -- */

/* .page-banner > * раніше перебивав position:absolute у відео,
   через що воно випадало в потік і зсувало заголовок */
.page-banner > .video-bg,
.page-banner > .video-bg__overlay { position: absolute; inset: 0; }
.page-banner > .video-bg          { z-index: 0; }
.page-banner > .video-bg__overlay { z-index: 1; }
.page-banner > .container         { position: relative; z-index: 2; }

/* висота банерів менша за hero головної, контент по центру */
.page-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(300px, 38vh, 420px);
}

.page-banner--hero {
    min-height: clamp(340px, 46vh, 520px);
}

/* затемнення поверх відео на банерах, щоб текст читався як на головній */
.page-banner.section--has-video .video-bg__overlay {
    background: linear-gradient(rgba(11, 28, 46, .55), rgba(11, 28, 46, .65));
}

@media (max-width: 767px) {
    .page-banner       { min-height: 240px; padding-top: 120px; }
    .page-banner--hero { min-height: 280px; }
}

/* -- Галерея кімнати: мініатюри стрічкою з гортанням -- */

.room-gallery__carousel {
    position: relative;
}

.room-gallery__carousel .room-gallery__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.room-gallery__carousel .room-gallery__thumbs::-webkit-scrollbar { display: none; }

.room-gallery__carousel .room-gallery__thumb {
    flex: 0 0 calc((100% - 30px) / 4);
    scroll-snap-align: start;
}

.room-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(11, 28, 46, .75);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, opacity .2s;
}

.room-gallery__nav:hover { background: var(--color-gold, #b98e4e); }
.room-gallery__nav--prev { left: -10px; }
.room-gallery__nav--next { right: -10px; }
.room-gallery__nav[disabled] { opacity: .35; cursor: default; }
.room-gallery__nav[disabled]:hover { background: rgba(11, 28, 46, .75); }

@media (max-width: 767px) {
    .room-gallery__carousel .room-gallery__thumb { flex-basis: calc((100% - 20px) / 3); }
    .room-gallery__nav--prev { left: 4px; }
    .room-gallery__nav--next { right: 4px; }
}

/* --- About: Activities (Services) grid ---------------------------------------- */
.about-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}
.about-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(11,28,46,.07);
    transition: box-shadow .2s, transform .2s;
}
.about-service-card:hover {
    box-shadow: 0 6px 28px rgba(11,28,46,.13);
    transform: translateY(-3px);
}
.about-service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-gold, #b98e4e);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.about-service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-heading, #0b1c2e);
    margin: 0 0 10px;
    line-height: 1.3;
}
.about-service-card p {
    font-size: 0.88rem;
    color: var(--color-text-soft, #6b6b6b);
    margin: 0;
    flex: 1;
    line-height: 1.6;
}
.about-service-card--featured {
    border: 2px solid var(--color-gold, #b98e4e);
}
.about-service-card__link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold, #b98e4e);
    text-decoration: none;
    letter-spacing: .02em;
}
.about-service-card__link:hover { text-decoration: underline; }
.btn--sm {
    padding: 6px 16px;
    font-size: 0.82rem;
}

/* --- About: Rules grid -------------------------------------------------------- */
.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}
.rules-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--color-heading, #0b1c2e);
}
.rules-col__subhead {
    margin-top: 24px;
}
/* #rules uses its own .rules-list variant (no border, overrides the room-rules style) */
#rules .rules-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
#rules .rules-list li {
    position: relative;
    padding: 6px 0 6px 22px;
    border: none;
    font-size: 0.9rem;
    color: var(--color-text, #333);
    border-bottom: 1px solid var(--color-line, #e5ddd0);
}
#rules .rules-list li:last-child { border-bottom: none; }
#rules .rules-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--color-gold, #b98e4e);
    font-weight: 700;
    font-size: 0.8rem;
}
#rules .rules-list--no li::before {
    content: '✕';
    color: #c1392b;
}

@media (max-width: 1023px) {
    .about-services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .about-services { grid-template-columns: 1fr; }
    .rules-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* -- Homepage Carousel -------------------------------------------- */
.hp-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.hp-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.hp-carousel .room-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

.hp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(30, 30, 30, 0.72);
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.32);
    transition: background .2s, box-shadow .2s, border-color .2s;
    padding: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hp-carousel-btn:hover {
    background: rgba(10, 10, 10, 0.90);
    border-color: rgba(255,255,255,0.85);
    box-shadow: 0 6px 24px rgba(0,0,0,.45);
}

.hp-carousel-btn:disabled {
    opacity: 0.25;
    cursor: default;
    box-shadow: none;
}

.hp-carousel-btn--prev { left: 12px; }
.hp-carousel-btn--next { right: 12px; }

@media (max-width: 767px) {
    .hp-carousel .room-card {
        flex: 0 0 85%;
        min-width: 85%;
    }
    .hp-carousel-btn--prev { left: 6px; }
    .hp-carousel-btn--next { right: 6px; }
}
