/* ============================================================
   VILLA ALLENDE — Design System
   ============================================================ */

:root {
    /* Colors */
    --c-sea-900: #0a2540;
    --c-sea-800: #143659;
    --c-sea-700: #1e4a73;
    --c-sea-500: #3a7ca5;
    --c-gold: #c9a96e;
    --c-gold-dark: #a88a4a;
    --c-sand: #f5ede0;
    --c-sand-light: #fbf7f0;
    --c-white: #ffffff;
    --c-text: #2c3e50;
    --c-text-soft: #5a6c7d;
    --c-line: #e6dfd2;
    --c-icon-phone: #c4a87a;
    --c-icon-wa: #5a9e6e;
    --c-icon-tg: #5a96b8;
    /* Brand */
    --c-brand-green: #00782f;

    /* Typography */
    --f-serif: 'Cormorant Garamond', Georgia, serif;
    --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --s-section: 120px;
    --s-section-sm: 80px;

    /* Effects */
    --shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 10px 30px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    font-family: var(--f-sans);
    font-size: 16px;
    width: 100%;
    position: relative;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-sand-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul { list-style: none; }

em { font-style: normal; }

/* ============ TYPOGRAPHY ============ */
.title {
    font-family: var(--f-serif);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--c-sea-900);
    letter-spacing: -0.01em;
}
.title em { font-style: normal; color: var(--c-gold-dark); font-weight: 500; }

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold-dark);
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 38px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--c-gold);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--c-text);
    margin-top: 1.25rem;
}
.lead strong { color: var(--c-sea-900); }
.lead em { color: var(--c-gold-dark); font-style: normal; font-weight: 500; }

/* ============ LAYOUT ============ */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.section {
    padding: var(--s-section) 0;
    position: relative;
}

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section__head .eyebrow { padding-left: 38px; padding-right: 38px; }
.section__head .eyebrow::before { left: 0; }
.section__head .eyebrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--c-gold);
}
.section__lead {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
    color: var(--c-text-soft);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--f-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--c-gold);
    color: var(--c-white);
    border-color: var(--c-gold);
}
.btn--primary:hover {
    background: var(--c-gold-dark);
    border-color: var(--c-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(201, 169, 110, 0.35);
}
.btn--outline {
    background: transparent;
    color: var(--c-sea-900);
    border-color: var(--c-sea-900);
}
.btn--outline:hover {
    background: var(--c-sea-900);
    color: var(--c-white);
}
.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
}
.btn--ghost:hover {
    background: var(--c-white);
    color: var(--c-sea-900);
    border-color: var(--c-white);
}
.btn--lg { padding: 18px 36px; font-size: 0.9375rem; }
.btn--full { width: 100%; }

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 0;
    transition: all var(--transition);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transition: transform var(--transition);
}
.logo:hover { transform: scale(1.04); }
.logo__img {
    height: 84px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
    transition: filter var(--transition), height var(--transition);
}
.header.is-scrolled .logo__img {
    height: 72px;
    filter: none;
}
.logo__img--lg { height: 96px; }

.nav {
    display: flex;
    gap: 36px;
}
.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-white);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--c-gold);
    transition: width var(--transition);
}
.nav__link:hover { color: var(--c-gold); }
.nav__link:hover::after { width: 100%; }

.header.is-scrolled .nav__link { color: var(--c-sea-900); }
.header.is-scrolled .nav__link:hover { color: var(--c-gold-dark); }

.header__cta { padding: 12px 22px; }

/* Language switcher */
.lang { position: relative; }
.lang__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: var(--c-white);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.05);
}
.lang__toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
.lang__toggle:hover { background: rgba(255, 255, 255, 0.15); border-color: var(--c-gold); }
.lang.is-open .lang__toggle svg { transform: rotate(180deg); }

.header.is-scrolled .lang__toggle {
    color: var(--c-sea-900);
    border-color: rgba(10, 37, 64, 0.15);
    background: transparent;
}
.header.is-scrolled .lang__toggle:hover { background: rgba(10, 37, 64, 0.05); border-color: var(--c-gold); }

.lang__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: var(--c-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 110;
}
.lang.is-open .lang__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang__menu li { list-style: none; }
.lang__menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 4px;
    color: var(--c-text);
    font-size: 0.875rem;
    font-weight: 500;
    /* Centered text keeps the menu visually consistent for both LTR (Srpski,
       English, Deutsch…) and RTL (العربية, עברית) language labels. */
    text-align: center;
    unicode-bidi: plaintext;
    transition: all 0.15s ease;
}
.lang__menu a:hover { background: var(--c-sand-light); color: var(--c-gold-dark); }
.lang__menu a.is-active {
    background: var(--c-sea-900);
    color: var(--c-white);
    font-weight: 600;
}
.lang__menu a.is-active:hover { background: var(--c-sea-900); color: var(--c-white); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--c-white);
    transition: all var(--transition);
}
.header.is-scrolled .burger span { background: var(--c-sea-900); }
/* Header right-side actions group (lang + quick + cta + burger) */
.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Quick-contact icon buttons (mobile header) */
.quick-contacts {
    display: none;
    align-items: center;
    gap: 6px;
}
.quick-contacts__btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.15);
}
.quick-contacts__btn svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: var(--c-white);
}
.quick-contacts__btn--call { background: var(--c-icon-phone); }
.quick-contacts__btn--wa { background: var(--c-icon-wa); }
.quick-contacts__btn--tg { background: var(--c-icon-tg); }
.quick-contacts__btn:hover {
    opacity: 0.9;
    transform: scale(1.06);
}

/* Mobile-nav close button + contacts section (hidden on desktop) */
.nav__close,
.nav__contacts { display: none; }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--c-white);
    overflow: hidden;
    padding: 120px 0 140px;
    border-bottom-left-radius: 50% 110px;
    border-bottom-right-radius: 50% 110px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__slider .hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.8s ease-in-out, transform 12s linear;
    will-change: opacity, transform;
}
.hero__slider .hero__slide.is-active {
    opacity: 1;
    transform: scale(1.1);
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 37, 64, 0.55) 0%,
        rgba(10, 37, 64, 0.35) 40%,
        rgba(10, 37, 64, 0.7) 100%
    );
    z-index: 1;
}
.hero__content {
    z-index: 2;
    text-align: center;
}
.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-gold);
    padding: 10px 20px;
    border: 1px solid rgba(201, 169, 110, 0.5);
    border-radius: 40px;
    margin-bottom: 28px;
    animation: fadeUp 1s ease-out;
}
.hero__brand {
    font-family: var(--f-serif);
    font-weight: 500;
    font-size: clamp(3.5rem, 11vw, 9rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
    animation: fadeUp 1s ease-out 0.15s both;
}
.hero__brand em {
    font-style: normal;
    font-weight: 500;
    color: var(--c-gold);
    display: inline-block;
}

.hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 320px;
    margin: 0 auto 24px;
    animation: fadeUp 1s ease-out 0.25s both;
}
.hero__divider span:not(.hero__divider-star) {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.hero__divider-star {
    color: var(--c-gold);
    font-size: 0.95rem;
    flex-shrink: 0;
    letter-spacing: 6px;
    padding-left: 6px;
}

.hero__tagline {
    font-family: var(--f-serif);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    opacity: 0.95;
    animation: fadeUp 1s ease-out 0.35s both;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    max-width: 580px;
    margin: 0 auto 40px;
    opacity: 0.85;
    line-height: 1.6;
    animation: fadeUp 1s ease-out 0.45s both;
}
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeUp 1s ease-out 0.55s both;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    animation: fadeUp 1s ease-out 0.7s both;
}
.stat__value {
    font-family: var(--f-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--c-gold);
    line-height: 1;
}
.stat__value span {
    font-size: 1rem;
    margin-left: 2px;
    color: var(--c-white);
    opacity: 0.7;
}
.stat__label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-top: 6px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    z-index: 3;
    transition: opacity var(--transition);
}
.hero__scroll::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--c-white);
    border-radius: 2px;
    animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ============ ABOUT ============ */
.about {
    background: var(--c-sand-light);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}
.highlight:hover { transform: translateX(6px); }
.highlight svg {
    width: 24px;
    height: 24px;
    color: var(--c-gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}
.highlight strong {
    display: block;
    color: var(--c-sea-900);
    font-size: 1rem;
    margin-bottom: 2px;
}
.highlight span {
    font-size: 0.875rem;
    color: var(--c-text-soft);
}

.about__media {
    position: relative;
    aspect-ratio: 1 / 1.1;
}
.about__img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img--main {
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
}
.about__img--small {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border: 8px solid var(--c-sand-light);
}
.about__badge {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    background: var(--c-sea-900);
    color: var(--c-white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}
.about__badge-value {
    font-family: var(--f-serif);
    font-size: 2.25rem;
    color: var(--c-gold);
    display: block;
    line-height: 1;
}
.about__badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
    display: block;
    line-height: 1.3;
}

.about__text p { margin-top: 1rem; color: var(--c-text-soft); }
.about__text p:first-of-type { margin-top: 1.25rem; }

/* ============ ROOMS ============ */
.rooms { background: var(--c-white); }

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.room {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.room:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.room__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.room__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room:hover .room__img img { transform: scale(1.08); }
.room__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--c-white);
    color: var(--c-sea-900);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
}
.room__badge--gold { background: var(--c-gold); color: var(--c-white); }
.room__body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.room__title {
    font-family: var(--f-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-sea-900);
    margin-bottom: 8px;
}
.room__desc {
    font-size: 0.9375rem;
    color: var(--c-text-soft);
    margin-bottom: 20px;
}
.room__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.room__features li {
    font-size: 0.75rem;
    color: var(--c-text-soft);
    padding: 6px 12px;
    background: var(--c-sand-light);
    border-radius: 4px;
    border: 1px solid var(--c-line);
}
.room .btn { margin-top: auto; }

/* ============ AMENITIES ============ */
.amenities {
    background: var(--c-sea-900);
    color: var(--c-white);
    position: relative;
    overflow: hidden;
}
.amenities::before, .amenities::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
}
.amenities::before {
    top: -300px;
    left: -200px;
    background: radial-gradient(circle, rgba(58, 124, 165, 0.15) 0%, transparent 70%);
}
.amenities::after {
    bottom: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}
.amenities .title { color: var(--c-white); }
.amenities .section__lead { color: rgba(255, 255, 255, 0.7); }

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.amenity {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.amenity:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(201, 169, 110, 0.3);
}
.amenity__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    transition: all var(--transition);
}
.amenity:hover .amenity__icon {
    background: var(--c-gold);
    color: var(--c-white);
    transform: scale(1.1) rotate(-5deg);
}
.amenity__icon svg { width: 28px; height: 28px; }
.amenity h3 {
    font-family: var(--f-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--c-white);
}
.amenity p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* ============ LOCATION ============ */
.location { background: var(--c-sand-light); }
.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.distances {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.distance {
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
    background: var(--c-white);
    border-left: 3px solid var(--c-gold);
    border-radius: 4px;
    transition: all var(--transition);
}
.distance:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}
.distance__value {
    font-family: var(--f-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-sea-900);
    line-height: 1;
}
.distance__label {
    font-size: 0.8125rem;
    color: var(--c-text-soft);
    margin-top: 4px;
}
.location__note {
    margin-top: 28px;
    padding: 16px 20px;
    background: rgba(201, 169, 110, 0.1);
    border-left: 3px solid var(--c-gold);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--c-text);
}
.location__map {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.location__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(1.1);
}

/* ============ GALLERY ============ */
.gallery { background: var(--c-white); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: zoom-in;
    background: var(--c-sand);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.6));
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* ============ BOOKING ============ */
.booking {
    background: var(--c-sand-light);
    padding-top: 80px;
    padding-bottom: 80px;
}
.booking__widget {
    max-width: 1270px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--c-white);
    /* Containing block for any position:fixed Exely descendants — keeps the
       widget within our site shell on mobile instead of going fullscreen. */
    position: relative;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.booking__widget #be-search-form iframe,
.booking__widget #be-booking-form iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    border: 0;
}
.booking__widget #block-search {
    box-shadow: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.booking__widget #be-search-form {
    min-height: 80px;
    display: flex;
    align-items: center;
}
.booking__widget #be-search-form > a[href*="exely.com"] {
    font-size: 0.75rem;
    color: var(--c-text-soft);
    opacity: 0.5;
    text-decoration: none;
}
.booking__widget #be-booking-form:not(:empty) {
    border-top: 1px solid var(--c-line);
    padding: 0;
}

/* ============ CTA BAND ============ */
.cta-band {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: var(--c-white);
    text-align: center;
}
.cta-band__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-band__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.55));
    z-index: 1;
}
.cta-band__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.cta-band h2 {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-band p {
    font-size: 1.125rem;
    opacity: 0.92;
    margin-bottom: 32px;
}

/* ============ REVIEWS ============ */
.reviews {
    background: linear-gradient(180deg, #eaf1f6 0%, #dde7ef 100%);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(10, 37, 64, 0.05), inset 0 -1px 0 rgba(10, 37, 64, 0.05);
}

.reviews__sources {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0 auto 48px;
    max-width: 800px;
}
.reviews__source {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--c-sea-900);
}
.reviews__source:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-gold);
}
.reviews__source-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reviews__source-logo svg { width: 22px; height: 22px; display: block; }
.reviews__source-logo--booking { background: #003580; color: var(--c-white); font-weight: 800; font-size: 0.9rem; letter-spacing: -0.5px; }
.reviews__source-logo--google { background: var(--c-white); border: 1px solid var(--c-line); }
.reviews__source-info { display: flex; flex-direction: column; line-height: 1.25; }
.reviews__source-score {
    font-family: var(--f-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--c-sea-900);
}
.reviews__source-count { font-size: 0.8125rem; color: var(--c-text-soft); }

.reviews__scroller {
    position: relative;
    margin: 0 -24px;
}
.reviews__scroller::before,
.reviews__scroller::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 30px;
    width: 36px;
    pointer-events: none;
    z-index: 3;
}
.reviews__scroller::before { left: 0; background: linear-gradient(90deg, #e3ecf3, rgba(227, 236, 243, 0)); }
.reviews__scroller::after { right: 0; background: linear-gradient(270deg, #e0eaf2, rgba(224, 234, 242, 0)); }
.reviews__track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 24px 24px 44px;
    scrollbar-width: thin;
    scrollbar-color: var(--c-gold) transparent;
    -webkit-overflow-scrolling: touch;
}
.reviews__track::-webkit-scrollbar { height: 6px; }
.reviews__track::-webkit-scrollbar-track { background: transparent; }
.reviews__track::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 3px; }

.review {
    flex: 0 0 360px;
    max-width: 360px;
    scroll-snap-align: start;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 26px 26px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-line);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.review:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-gold);
}
.review__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.review__source {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review__source svg { width: 18px; height: 18px; display: block; }
.review__source--google { background: var(--c-white); border: 1px solid var(--c-line); }
.review__source--booking { background: #003580; color: var(--c-white); font-weight: 800; font-size: 0.75rem; }
.review__stars {
    color: #f5b400;
    letter-spacing: 2px;
    font-size: 0.95rem;
}
.review__text {
    color: var(--c-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
    quotes: "“" "”";
}
.review__text::before { content: open-quote; color: var(--c-gold); font-family: var(--f-serif); font-size: 1.6rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.review__text::after { content: close-quote; color: var(--c-gold); font-family: var(--f-serif); font-size: 1.6rem; line-height: 0; vertical-align: -0.5em; margin-left: 2px; }
.review__foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--c-line);
}
.review__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
    color: var(--c-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--f-serif);
    font-size: 1.125rem;
    flex-shrink: 0;
}
.review__name {
    font-weight: 600;
    color: var(--c-sea-900);
    font-size: 0.9375rem;
    line-height: 1.2;
}
.review__country {
    font-size: 0.8125rem;
    color: var(--c-text-soft);
    margin-top: 2px;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--c-line);
    background: var(--c-white);
    color: var(--c-sea-900);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 5;
}
.reviews__nav:hover { background: var(--c-gold); color: var(--c-white); border-color: var(--c-gold); }
.reviews__nav--prev { left: 8px; }
.reviews__nav--next { right: 8px; }

@media (max-width: 768px) {
    .review { flex: 0 0 86%; max-width: 86%; padding: 22px; }
    .reviews__nav { display: none; }
    .reviews__sources { gap: 12px; margin-bottom: 32px; }
    .reviews__source { padding: 12px 16px; gap: 10px; }
    .reviews__source-score { font-size: 1.25rem; }
}

[dir="rtl"] .review__text::before { margin-right: 0; margin-left: 4px; }
[dir="rtl"] .review__text::after { margin-left: 0; margin-right: 2px; }
[dir="rtl"] .reviews__nav--prev { left: auto; right: 8px; }
[dir="rtl"] .reviews__nav--next { right: auto; left: 8px; }

/* ============ CONTACT ============ */
.contact { background: var(--c-sand-light); }
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact__list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact__list svg {
    width: 22px;
    height: 22px;
    color: var(--c-gold-dark);
    flex-shrink: 0;
    margin-top: 3px;
}
.contact__list strong {
    display: block;
    color: var(--c-sea-900);
    font-size: 0.9375rem;
    margin-bottom: 2px;
}
.contact__list span, .contact__list a {
    font-size: 0.9375rem;
    color: var(--c-text-soft);
}
.contact__list a:hover { color: var(--c-gold-dark); }

.contact__socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.contact__socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--c-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-sea-900);
    transition: all var(--transition);
}
.contact__socials a:hover {
    background: var(--c-sea-900);
    color: var(--c-white);
    border-color: var(--c-sea-900);
    transform: translateY(-3px);
}
.contact__socials svg { width: 18px; height: 18px; }
.contact__socials a[aria-label="WhatsApp"] svg { fill: var(--c-icon-wa); }
.contact__socials a[aria-label="Telegram"] svg { fill: var(--c-icon-tg); }

[dir="rtl"] .nav__close {
    right: auto;
    left: 14px;
}

.contact__form {
    background: var(--c-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact__form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact__form span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--c-sea-900);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact__form input,
.contact__form textarea {
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--c-text);
    padding: 12px 14px;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    background: var(--c-sand-light);
    transition: all var(--transition);
    resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--c-gold);
    background: var(--c-white);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}
.form__note {
    font-size: 0.875rem;
    color: var(--c-gold-dark);
    min-height: 1.2em;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--c-sea-900);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer__brand p {
    margin-top: 20px;
    max-width: 320px;
    line-height: 1.6;
    font-size: 0.9375rem;
}
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__cols h4 {
    font-family: var(--f-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--c-white);
    margin-bottom: 20px;
}
.footer__cols a, .footer__cols span {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    transition: color var(--transition);
}
.footer__cols a:hover { color: var(--c-gold); }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}
.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__bottom span { font-size: 0.8125rem; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer__legal a:hover { color: var(--c-gold); }

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.95);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}
.lightbox__img {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
    position: absolute;
    color: var(--c-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 1;
    backdrop-filter: blur(6px);
}
.lightbox__close {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    line-height: 1;
}
.lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 2.5rem;
    line-height: 1;
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover,
.lightbox__nav:hover {
    background: var(--c-gold);
    transform: scale(1.1);
}
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.1); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    :root {
        --s-section: 80px;
        --s-section-sm: 60px;
    }
    .about__grid,
    .location__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about__media {
        max-width: 500px;
        margin: 0 auto;
    }
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    .amenities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .header__inner { gap: 12px; }
    .header__actions { gap: 8px; }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 86%;
        max-width: 340px;
        height: 100vh;
        background: var(--c-white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 70px 26px 26px;
        box-shadow: var(--shadow-lg);
        /* Use transform instead of negative offset so the closed menu doesn't
           create horizontal overflow that mobile browsers may not fully clip. */
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 99;
        overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__link {
        color: var(--c-sea-900);
        font-size: 1.0625rem;
        padding: 14px 0;
        border-bottom: 1px solid var(--c-line);
    }
    .nav__link::after { display: none; }

    .nav__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 0;
        background: var(--c-sand-light);
        color: var(--c-sea-900);
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 102;
    }
    .nav__close:hover { background: var(--c-gold); color: var(--c-white); }
    .nav__close svg { width: 18px; height: 18px; }

    .nav__contacts {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: auto;
        padding-top: 24px;
        border-top: 2px solid var(--c-line);
    }
    .nav__contact {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        font-size: 0.9375rem;
        color: var(--c-sea-900);
        font-weight: 500;
        padding: 4px 0;
        transition: color var(--transition);
    }
    .nav__contact:hover { color: var(--c-gold-dark); }
    .nav__contact-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--c-white);
        box-shadow: 0 2px 8px rgba(10, 37, 64, 0.12);
    }
    .nav__contact-icon svg {
        width: 18px;
        height: 18px;
        display: block;
        fill: var(--c-white);
    }
    .nav__contact--call .nav__contact-icon { background: var(--c-icon-phone); }
    .nav__contact--wa .nav__contact-icon { background: var(--c-icon-wa); }
    .nav__contact--tg .nav__contact-icon { background: var(--c-icon-tg); }
    .nav__contact--mail .nav__contact-icon { background: var(--c-icon-phone); }
    .nav__contact--mail .nav__contact-icon svg {
        fill: none;
        stroke: var(--c-white);
        stroke-width: 2;
    }

    .nav.is-open + .header__actions .burger {
        visibility: hidden;
        pointer-events: none;
    }

    .burger { display: flex; z-index: 101; }
    .header__cta { display: none; }
    .logo__img { height: 66px; }
    .header.is-scrolled .logo__img { height: 60px; }
    .logo__img--lg { height: 84px; }
    .lang__toggle { padding: 6px 10px; font-size: 0.75rem; }
    .lang__menu { right: 0; left: auto; }
    .quick-contacts { display: flex; }

    .hero {
        /* Container ~15% taller than the bare content height — the content
           remains compact, but the hero "breathes" a bit more vertically. */
        min-height: 80vh;
        padding: 96px 0 72px;
        border-bottom-left-radius: 50% 60px;
        border-bottom-right-radius: 50% 60px;
    }
    .hero__eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        padding: 6px 14px;
        margin-bottom: 14px;
    }
    .hero__brand {
        font-size: clamp(2.5rem, 13vw, 5rem);
        margin-bottom: 12px;
    }
    .hero__divider { margin-bottom: 14px; }
    .hero__tagline {
        font-size: clamp(1.05rem, 4.5vw, 1.5rem);
        margin-bottom: 8px;
    }
    .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 22px;
        gap: 10px;
    }
    .hero__actions .btn { padding: 12px 20px; font-size: 0.875rem; }
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 12px 10px;
        gap: 8px;
        max-width: 100%;
    }
    .stat__value { font-size: 1.25rem; }
    .stat__value span { font-size: 0.75rem; }
    .stat__label { font-size: 0.65rem; letter-spacing: 0.05em; margin-top: 2px; }
    .hero__scroll { display: none; }

    .section__head { margin-bottom: 48px; }
    .section__head .eyebrow::after { display: none; }
    .section__head .eyebrow { padding-right: 0; }

    .about__highlights { gap: 12px; }
    .about__badge { padding: 16px 18px; }
    .about__badge-value { font-size: 1.75rem; }

    .distances { grid-template-columns: 1fr; }
    .location__map { aspect-ratio: 1 / 0.8; }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }
    .gallery__item--lg,
    .gallery__item--tall { grid-column: auto; grid-row: auto; }

    .booking__widget { padding: 24px; }

    .form__row { grid-template-columns: 1fr; }
    .contact__form { padding: 28px; }

    .footer__cols {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .lightbox__nav { width: 44px; height: 44px; font-size: 2rem; }
    .lightbox__nav--prev { left: 12px; }
    .lightbox__nav--next { right: 12px; }
}

@media (max-width: 480px) {
    .hero { min-height: 82vh; padding: 88px 0 60px; }
    .hero__eyebrow { font-size: 0.6rem; padding: 5px 12px; margin-bottom: 10px; }
    .hero__brand { font-size: clamp(2.25rem, 14vw, 3.5rem); margin-bottom: 10px; }
    .hero__divider { margin-bottom: 10px; max-width: 240px; }
    .hero__tagline { font-size: 1rem; margin-bottom: 6px; }
    .hero__subtitle { font-size: 0.85rem; margin-bottom: 16px; }
    .hero__actions { margin-bottom: 16px; }
    .hero__actions .btn { padding: 11px 16px; font-size: 0.825rem; }
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 10px 6px;
        gap: 4px;
    }
    .stat__value { font-size: 1.05rem; }
    .stat__value span { font-size: 0.625rem; }
    .stat__label { font-size: 0.55rem; letter-spacing: 0.02em; }

    .footer__cols { grid-template-columns: 1fr; }
    .room__features { gap: 6px; }

    .header__actions { gap: 6px; }
    .quick-contacts { gap: 4px; }
    .quick-contacts__btn { width: 34px; height: 34px; }
    .quick-contacts__btn svg { width: 14px; height: 14px; }
    .lang__toggle { padding: 5px 8px; }
    .logo__img { height: 56px; }
    .header.is-scrolled .logo__img { height: 50px; }
}

@media (max-width: 380px) {
    .lang__current { display: none; }
    .lang__toggle { padding: 6px; }
    .lang__toggle svg { width: 12px; height: 12px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    .hero__slider .hero__slide {
        transition: opacity 0.3s linear;
        transform: none;
    }
    .hero__slider .hero__slide.is-active {
        transform: none;
    }
}

/* ============ PRINT ============ */
@media print {
    .header, .hero__scroll, .lightbox, .booking { display: none; }
    body { color: #000; }
}
