/* ========================================================
   HOME PAGE – home.css
   ======================================================== */

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 115px);
    min-height: 480px;
    overflow: hidden;
    background: #0d0704;
}

/* Video fills the section */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Veil used for frame-fade transitions */
.hero-frame-veil {
    position: absolute;
    inset: 0;
    background: #0d0704;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
    will-change: opacity;
}

.hero-frame-veil.hero-veil--in {
    opacity: 1;
}

/* Dark overlay over entire video */
.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
    z-index: 2;
}

/* Bottom gradient for text readability */
.hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 5, 2, 0.88) 0%,
        rgba(10, 5, 2, 0.45) 40%,
        transparent 68%
    );
    pointer-events: none;
    z-index: 3;
}

/* Top-left weather widget */
.hero-weather {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    color: #fff;
    pointer-events: none;
}

.hero-weather-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
    line-height: 1;
}

.hero-weather-row {
    display: flex;
    align-items: flex-start;
}

.hero-weather-temp {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-weather-deg {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 1.1rem;
    margin-top: 4px;
    opacity: 0.8;
}

/* Top-right video toggle button */
.hero-video-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-video-btn:hover {
    background: rgba(201, 160, 122, 0.22);
    border-color: rgba(201, 160, 122, 0.55);
    color: #c9a07a;
}

/* Text block – desktop: bottom-right */
.hero-text {
    position: absolute;
    bottom: 210px;
    right: 70px;
    z-index: 4;
    max-width: 900px;
    width: max-content;
    text-align: right;

}

.hero-h1 {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero-h1-sub {
    display: block;
    font-size: 0.62em;
    letter-spacing: 0.1em;
    opacity: 0.75;
}

.hero-h2 {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: clamp(0.7rem, 0.95vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    text-transform: uppercase;
    margin-bottom: 1.8rem;


}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    background: #003580;
    color: #fff;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.22s, transform 0.18s;
}

.hero-cta:hover {
    background: #0071c2;
    transform: translateY(-2px);
}

/* ── Scroll hint ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-scroll-line {
    display: block;
    width: 1.5px;
    height: 52px;
    background: linear-gradient(to top, rgba(255,255,255,0.75), transparent);
    animation: heroScrollPulse 1.8s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes heroScrollPulse {
    0%   { transform: scaleY(0); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-section { height: calc(100vh - 84px); }

    .hero-text {
        bottom: auto;
        right: auto;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 86vw;
        width: 86vw;
    }

    .hero-h1 {
        white-space: normal;
        font-size: clamp(2rem, 5vw, 3.2rem);
    }


    .hero-h2 { font-size: clamp(0.8rem, 1.6vw, 1rem); }

    .hero-cta { font-size: 0.85rem; padding: 15px 36px; margin-left: auto; margin-right: auto; }


    .hero-overlay-bottom {
        background: linear-gradient(
            to top,
            rgba(10, 5, 2, 0.75) 0%,
            rgba(10, 5, 2, 0.55) 50%,
            rgba(10, 5, 2, 0.2) 80%,
            transparent 100%
        );
    }
}

@media (max-width: 600px) {
    .hero-section { height: calc(100vh - 70px); }

    .hero-text {
        bottom: auto;
        right: auto;
        top: 55%;
        left: 0;
        transform: translateY(-50%);
        text-align: start;
        max-width: 100%;
        width: 100%;
        padding: 0 28px;
    }

    .hero-video-btn { top: 16px; right: 16px; }

    .hero-h2 { font-size: clamp(0.65rem, 2.8vw, 0.8rem); }
    .hero-cta { font-size: 0.72rem; padding: 12px 26px; }
}


/* ── ZEMUN SECTION ── */
.zemun-section {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    height: 74vh;
    min-height: 500px;
    max-height: 820px;
    overflow: hidden;
    width: 100%;
}

.zemun-panel {
    position: relative;
    overflow: hidden;
}

.zemun-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.zemun-panel--side:hover img {
    transform: scale(1.05);
}

.zemun-panel--center {
    position: relative;
    z-index: 1;
}

.zemun-panel--center img {
    transform: none !important;
}

.zemun-panel--center::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 1;
    pointer-events: none;
}

.zemun-center-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2.8rem;
    text-align: center;
}

.zemun-title {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.26em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.1rem;
}

.zemun-title-line {
    width: 48px;
    height: 2px;
    background: #c9a07a;
    margin: 0 auto 1.4rem;
    flex-shrink: 0;
}

.zemun-desc {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: clamp(0.6rem, 0.9vw, 0.82rem);
    line-height: 2;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    max-width: 320px;
}

.zemun-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'CaviarDreams', serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: #1c1008;
    border: 1.5px solid rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 18px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.zemun-cta-btn:hover {
    background: #2e1d0f;
    border-color: rgba(201,160,122,0.5);
    color: #e8c99a;
    transform: translateY(-2px);
}

/* ── TICKER ── */
.ticker-strip {
    background: #3e2a1c;
    overflow: hidden;
    height: 46px;
    display: flex;
    align-items: center;
    border-top: 2px solid #c9a07a;
    border-bottom: 1px solid rgba(201, 160, 122, 0.25);
    position: relative;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 36s linear infinite;
    will-change: transform;
}

.ticker-strip:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a07a;
    padding: 0 0.6rem;
}

.ticker-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(201, 160, 122, 0.45);
    margin: 0 1.4rem;
    flex-shrink: 0;
    vertical-align: middle;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (min-width: 901px) {
    .zemun-title { font-size: clamp(2.2rem, 3.8vw, 4rem); }
    }

.hm-parking-banner {
    padding: 4.5rem 3rem 0rem 3rem;
}
.hm-parking-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.hm-parking-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #3e2a1c;
    margin: 0 0 .65rem;
}
.hm-parking-text {
    font-size: .95rem;
    line-height: 1.75;
    color: #5a3e2b;
    margin: 0;
}
@media (max-width: 768px) {
    .hm-parking-banner { padding: 30px 0 0 0; margin: 0 -10px;}
    .hm-parking-inner  { text-align: start; }
    .hm-parking-title  { font-size: 1rem; }
    .hm-parking-text   { font-size: .88rem; }
}

.amen-section {
    background: radial-gradient(ellipse 65% 55% at 5% 25%, rgba(201,160,122,0.22) 0%, transparent 65%),
                radial-gradient(ellipse 50% 45% at 95% 50%, rgba(201,160,122,0.16) 0%, transparent 60%),
                #fff;
    padding: 6rem 0 7rem;
    border-top: 1px solid #ede8e1;
}

.amen-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.amen-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.amen-eyebrow {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #c9a07a;
    margin-bottom: 0.5rem;
}

.amen-heading {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1208;
}

.amen-sub {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    color: #5a4a38;
    line-height: 1.8;
    max-width: 500px;
    flex-shrink: 0;
}

/* ── Portrait cards row ── */
.amen-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.amen-card {
    opacity: 0;
    transform: translateY(36px);
    will-change: transform, opacity;
}

.amen-card.amen-visible {
    opacity: 1;
    transform: none;
    will-change: auto;
    transition: opacity 0.65s ease var(--d, 0ms), transform 0.65s ease var(--d, 0ms);
}

.amen-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.1rem;
    background: #f0ebe4;
}

.amen-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}

.amen-card:hover .amen-card-img img { transform: scale(1.06); }

.amen-card-body { padding: 0 4px; }

.amen-card-num {
    display: block;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: #c9a07a;
    margin-bottom: 0.7rem;
}

.amen-card-line {
    width: 28px;
    height: 1.5px;
    background: #c9a07a;
    margin-bottom: 0.75rem;
    transition: width 0.3s ease;
}

.amen-card:hover .amen-card-line { width: 48px; }

.amen-card-name {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1208;
    margin-bottom: 0.55rem;
}

.amen-card-desc {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 0.78rem;
    color: #5a4a38;
    line-height: 1.7;
}

/* ── Stagger offset so cards appear at slightly different heights ── */
.amen-card:nth-child(2) { margin-top: 40px; }
.amen-card:nth-child(4) { margin-top: 40px; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .amen-inner { padding: 0 24px; }
    .amen-section { padding: 4.5rem 0 5rem; }
    .amen-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .amen-sub { max-width: 100%; }

    /* 2-col grid, alternating offset for visual rhythm */
    .amen-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .amen-card:nth-child(2),
    .amen-card:nth-child(4) { margin-top: 0; }
    .amen-card:nth-child(1),
    .amen-card:nth-child(3) { margin-top: 0; }
    .amen-card:nth-child(2) { margin-top: 48px; }
    .amen-card:nth-child(4) { margin-top: 48px; }
    .amen-card-img { aspect-ratio: 2 / 3; }
}

@media (max-width: 600px) {
    .amen-section { padding: 3.5rem 0 4rem; }

    /* Horizontal scroll — shows 1.25 cards to hint there's more */
    .amen-cards {
        display: flex;
        grid-template-columns: unset;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 0 24px 1.5rem;
        margin: 0 -40px;
        scrollbar-width: none;
    }
    .amen-cards::-webkit-scrollbar { display: none; }

    .amen-card {
        flex: 0 0 68vw;
        scroll-snap-align: center;
        margin-top: 0 !important;
    }
    .amen-card-img { aspect-ratio: 3 / 4; }
    .amen-inner { padding: 0 40px; }
}

/* ── LANDMARKS SECTION ── */
.landmarks-section {
    background: #130b04;
    padding: 5rem 0 5.5rem;
}

.landmarks-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.landmarks-eyebrow {
    text-align: center;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #c9a07a;
    margin-bottom: 0.6rem;
}

.landmarks-heading {
    text-align: center;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 3.2rem;
}

/* Slider wrapper */
.landmarks-slider-wrap {
    position: relative;
}

/* Controls row: arrows flanking dots */
.lm-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.lm-arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(201, 160, 122, 0.1);
    border: 1px solid rgba(201, 160, 122, 0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s, opacity 0.22s;
}

.lm-arrow:hover {
    background: rgba(201, 160, 122, 0.24);
    border-color: rgba(201, 160, 122, 0.65);
}

.lm-arrow svg {
    fill: #c9a07a;
    pointer-events: none;
}

.lm-arrow.lm-disabled {
    opacity: 0.22;
    pointer-events: none;
}

/* Track */
.landmarks-track-outer {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 10px;
}

.landmarks-track-outer::-webkit-scrollbar { display: none; }

.landmarks-track {
    display: flex;
    gap: 18px;
}

/* Cards */
.landmark-card {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 0;
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #1e1108;
    cursor: default;
    transition: border-color 0.3s, transform 0.3s;
}

.landmark-card:hover {
    border-color: rgba(201, 160, 122, 0.28);
    transform: translateY(-3px);
}

.landmark-img-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
    background: linear-gradient(135deg, #2a1a0d 0%, #4a2e18 100%);
}

.landmark-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.landmark-card:hover .landmark-img {
    transform: scale(1.06);
}

/* Fallback when image is missing */
.landmark-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a1a0d 0%, #4a2e18 100%);
}

.landmark-img-placeholder span {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 160, 122, 0.35);
}

.landmark-info {
    padding: 1.1rem 1.3rem 1.3rem;
    border-top: 1px solid rgba(201, 160, 122, 0.12);
}

.landmark-name {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.35rem;
}

.landmark-distance {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a07a;
}

/* Dots */
.lm-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.lm-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 160, 122, 0.22);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.lm-dot.active {
    background: #c9a07a;
    transform: scale(1.35);
}

/* ── RESPONSIVE ── */

/* ── TABLET (601px – 900px): 2 columns, no right panel ── */
@media (min-width: 601px) and (max-width: 900px) {
    .zemun-section {
        grid-template-columns: 1fr 1.3fr;
        grid-template-rows: 1fr;
        height: 56vw;
        min-height: 340px;
        max-height: 520px;
    }

    .zemun-section .zemun-panel--side:last-child {
        display: none;
    }

    .zemun-desc {
        font-size: 0.62rem;
        max-width: 270px;
        line-height: 1.8;
    }

    .landmark-card {
        flex: 0 0 calc(50% - 9px);
    }

    .lm-arrow {
        display: none;
    }
}

/* ── MOBILE (≤600px): 2 rows stacked, no right panel ── */
@media (max-width: 600px) {
    .zemun-section {
        grid-template-columns: 1fr;
        grid-template-rows: 100vw 110vw;
        height: auto;
        max-height: none;
        min-height: auto;
    }

    .zemun-section .zemun-panel--side:last-child {
        display: none;
    }

    .zemun-title {
        letter-spacing: 0.18em;
    }

    .zemun-desc {
        font-size: 0.75rem;
        max-width: 90vw;
        line-height: 1.75;
        text-align:start;
    }

    .landmark-card {
        flex: 0 0 calc(82% - 9px);
        scroll-snap-align: center;
    }

    .landmarks-track-outer {
        scroll-snap-type: x mandatory;
    }

    .landmarks-section {
        padding: 3.5rem 0 4rem;
    }

    .landmarks-inner {
        padding: 0 16px;
    }

    .lm-arrow {
        display: none;
    }
}

/* ════════════════════════════════════════
   HOME ROOMS SECTION
   ════════════════════════════════════════ */
.hm-rooms-section {
    background: #faf8f5;
    padding: 5.5rem 0 6rem;
}

.hm-rooms-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.hm-rooms-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.hm-rooms-eyebrow {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a07a;
    margin-bottom: 0.5rem;
}

.hm-rooms-heading {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1208;
    margin-bottom: 0.9rem;
}

.hm-rooms-sub {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: clamp(0.85rem, 1vw, 0.98rem);
    color: #3a2a1a;
    line-height: 1.8;
    width: 100%;
}

.hm-rooms-sub strong { color: #c9a07a; }

.hm-rooms-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: #1a1208;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 50px;
    white-space: nowrap;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.18s;
}

.hm-rooms-link:hover { background: #3a2a1a; transform: translateY(-2px); }

/* ── Custom room cards ── */
.hm-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.hm-room-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(26, 18, 8, 0.07);
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.hm-room-card.hm-room-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease var(--d, 0ms), transform 0.6s ease var(--d, 0ms);
}

.hm-room-card.hm-room-shown {
    opacity: 1;
    transform: none;
    will-change: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hm-room-card.hm-room-shown:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 18, 8, 0.14);
}

.hm-room-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.hm-room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

.hm-room-card:hover .hm-room-card-img img {
    transform: scale(1.06);
}

.hm-room-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 8, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hm-room-card:hover .hm-room-card-overlay { opacity: 1; }

.hm-room-card-view {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.7);
    padding: 9px 22px;
    border-radius: 30px;
}

.hm-room-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c9a07a;
    color: #fff;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.hm-room-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.3rem 1.4rem 1.4rem;
}

.hm-room-card-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #c9a07a;
    margin-bottom: 0.5rem;
}

.hm-room-card-name {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #1a1208;
    margin-bottom: 0.5rem;
}

.hm-room-card-desc {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 0.8rem;
    color: #4a3a28;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}

.hm-room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0ebe4;
    padding-top: 0.9rem;
    margin-top: auto;
}

.hm-room-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hm-room-card-price .price-main,
.hm-room-card-price .price-disc {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 1rem;
    font-weight: 900;
    color: #1a1208;
}

.hm-room-card-price .price-orig {
    font-size: 0.78rem;
    color: #b0a090;
    text-decoration: line-through;
}

.hm-room-card-price .price-per-night {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 0.7rem;
    color: #7a6a58;
}

.hm-room-card-cta {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 1.3rem;
    color: #c9a07a;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}

.hm-room-card:hover .hm-room-card-cta { transform: translateX(4px); }

.hm-room-card:hover .hm-room-card-cta { color: #a07040; }

.hm-room-card.hm-room-hidden { display: none; }

/* ── Load more toggle ── */
.hm-rooms-toggle-wrap {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0;
}

.hm-rooms-toggle {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: #1a1208;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, transform 0.18s;
}

.hm-rooms-toggle:hover { background: #3a2a1a; transform: translateY(-2px); }

/* ── SEO text below rooms ── */
.hm-rooms-seo {
    border-top: 1px solid #e8e0d5;
    padding-top: 2.5rem;
    text-align: left;
}

.hm-rooms-seo p {
    font-family: 'CaviarDreamsBold', Georgia, serif;
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    color: #4a3a28;
    line-height: 1.85;
}

.hm-rooms-seo strong { color: #c9a07a; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hm-rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
    .hm-rooms-header { flex-direction: column; align-items: flex-start; }
    .hm-rooms-inner { padding: 0 24px; }
}

@media (max-width: 600px) {
    .hm-rooms-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .hm-rooms-section { padding: 4rem 0 5rem; }
}

/* ════════════════════════════════════════
   HOME CONTACT SECTION
   ════════════════════════════════════════ */
.hm-contact-section {
    background: #130b04;
    padding: 5.5rem 0 6rem;
    border-top: 1px solid rgba(201, 160, 122, 0.12);
}

.hm-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

/* ── Info column ── */
.hm-contact-eyebrow {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c9a07a;
    margin-bottom: 0.8rem;
}

.hm-contact-title {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.1rem;
}

.hm-contact-sub {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.8rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 2.2rem;
}

.hm-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.hm-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.hm-detail-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 160, 122, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a07a;
    margin-top: 1px;
}

.hm-detail-label {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a07a;
    margin-bottom: 0.2rem;
}

.hm-detail-value {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.hm-detail-value a {
    color: inherit;
    transition: color 0.2s;
}

.hm-detail-value a:hover {
    color: #c9a07a;
}

.hm-contact-socials {
    margin-top: 0.4rem;
}

.hm-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 0.7rem;
}

.hm-social-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 160, 122, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    padding: 6px;
}

.hm-social-link:hover {
    border-color: rgba(201, 160, 122, 0.6);
    background: rgba(201, 160, 122, 0.1);
}

.hm-social-link svg {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.hm-social-link:hover svg {
    color: #c9a07a;
}

/* ── Form column ── */
.hm-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hm-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hm-label {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 160, 122, 0.75);
}

.hm-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #fff;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.82rem;
    padding: 11px 14px;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}

.hm-input:focus {
    outline: none;
    border-color: rgba(201, 160, 122, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.hm-input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.hm-textarea {
    resize: vertical;
    min-height: 130px;
}

.hm-select {
    appearance: none;
    cursor: pointer;
}

.hm-select option {
    background: #1e1108;
    color: #fff;
}

.hm-service-select {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hm-service-check-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
}

.hm-service-check-row input[type="checkbox"] {
    display: none;
}

.hm-check-box {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 160, 122, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.hm-service-check-row input:checked + .hm-check-box {
    background: #c9a07a;
    border-color: #c9a07a;
}

.hm-service-check-row input:checked + .hm-check-box::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid #1c1008;
    border-bottom: 2px solid #1c1008;
    transform: translateY(-1px) rotate(-45deg);
    display: block;
}

.hm-check-text {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
}

.hm-form-error {
    font-size: 0.72rem;
    color: #e07070;
    min-height: 1rem;
    letter-spacing: 0.04em;
}

.hm-submit {
    align-self: flex-start;
    background: transparent;
    border: 1px solid #c9a07a;
    color: #c9a07a;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 13px 36px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.4rem;
}

.hm-submit:hover:not(:disabled) {
    background: #c9a07a;
    color: #1c1008;
}

.hm-submit:disabled {
    opacity: 0.5;
    cursor: default;
}

@keyframes hmSpin {
    to { transform: rotate(360deg); }
}

#hmSubmitSpinner {
    animation: hmSpin 0.9s linear infinite;
}

.hm-result-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1.2rem;
}

.hm-result-icon svg {
    width: 56px;
    height: 56px;
}

.hm-result-msg {
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05em;
    line-height: 1.7;
    max-width: 360px;
}

.hm-result-msg--err { color: #e07070; }

.hm-result-btn {
    background: transparent;
    border: 1px solid rgba(201, 160, 122, 0.4);
    color: #c9a07a;
    font-family: 'CaviarDreams', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.hm-result-btn:hover { background: rgba(201, 160, 122, 0.12); }
.hm-result-btn--err { border-color: rgba(224,112,112,0.4); color: #e07070; }

@media (max-width: 900px) {
    .hm-contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 28px;
    }
    .hm-contact-section { padding: 4rem 6vw 9rem; }
}

@media (max-width: 600px) {
    .hm-contact-inner { padding: 0 18px; }
    .hm-form-row { grid-template-columns: 1fr; }
    .hm-submit { align-self: stretch; justify-content: center; }
}

/* ════════════════════════════════════════
   GALLERY PREVIEW SECTION (collage)
   ════════════════════════════════════════ */
.hm-gal-section {
    padding: clamp(56px, 8vw, 96px) 0;
    background: #faf8f5;
    overflow: hidden;
}

.hm-gal-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

/* ── Text side ── */
.hm-gal-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hm-gal-eyebrow {
    font-family: 'CaviarDreams', serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c9a07a;
    margin: 0;
}

.hm-gal-heading {
    font-family: 'CaviarDreams', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: #3e2a1c;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-stroke: 0.4px #3e2a1c;
    margin: 0;
    line-height: 1.1;
}

.hm-gal-desc {
    font-size: 0.95rem;
    color: #6b5a4e;
    line-height: 1.8;
    margin: 0;
    max-width: 420px;
}

.hm-gal-cta {
    display: inline-block;
    align-self: flex-start;
    font-family: 'CaviarDreams', serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: #3e2a1c;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    -webkit-text-stroke: 0.2px #fff;
    transition: background 0.25s, transform 0.2s;
}
.hm-gal-cta:hover { background: #997a61; transform: translateY(-2px); }

/* ── Collage side ── */
.hm-gal-collage {
    position: relative;
    height: clamp(340px, 42vw, 520px);
}

.hm-gal-photo {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 12px 36px rgba(0,0,0,0.22), 0 3px 8px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}
.hm-gal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hm-gal-photo:hover {
    box-shadow: 0 20px 52px rgba(0,0,0,0.3);
    z-index: 10 !important;
}

/* Photo positions & rotations */
.hm-gal-photo--1 {
    width: 58%;
    height: 72%;
    top: 0;
    left: 0;
    transform: rotate(-4deg);
    z-index: 2;
}
.hm-gal-photo--2 {
    width: 50%;
    height: 60%;
    top: 6%;
    right: 0;
    transform: rotate(3deg);
    z-index: 3;
}
.hm-gal-photo--3 {
    width: 44%;
    height: 52%;
    bottom: 0;
    left: 8%;
    transform: rotate(2deg);
    z-index: 4;
}
.hm-gal-photo--4 {
    width: 46%;
    height: 54%;
    bottom: 2%;
    right: 4%;
    transform: rotate(-3deg);
    z-index: 1;
}

.hm-gal-photo--1:hover { transform: rotate(-4deg) scale(1.04); }
.hm-gal-photo--2:hover { transform: rotate(3deg)  scale(1.04); }
.hm-gal-photo--3:hover { transform: rotate(2deg)  scale(1.04); }
.hm-gal-photo--4:hover { transform: rotate(-3deg) scale(1.04); }

@media (max-width: 860px) {
    .hm-gal-inner {
        grid-template-columns: 1fr;
    }
    .hm-gal-collage {
        height: clamp(280px, 70vw, 420px);
    }
    .hm-gal-cta { align-self: stretch; text-align: center; }
}

@media (max-width: 500px) {
    .hm-gal-photo { border-width: 3px; }
}

/* ════════════════════════════════════════
   REVIEWS SECTION
   ════════════════════════════════════════ */
.rev-section {
    background: #1c1008;
    padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
    overflow: hidden;
}

.rev-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
}

/* Header */
.rev-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(28px, 4vw, 48px);
    flex-wrap: wrap;
}

.rev-eyebrow {
    font-family: 'CaviarDreams', serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c9a07a;
    margin: 0 0 10px;
}

.rev-heading {
    font-family: 'CaviarDreams', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-stroke: 0.4px #fff;
    margin: 0;
    line-height: 1.1;
}

/* Carousel */
.rev-track-outer {
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}
.rev-track-outer::-webkit-scrollbar { display: none; }
.rev-track-outer:active { cursor: grabbing; }

.rev-track {
    display: flex;
    gap: 20px;
    padding-bottom: 6px;
}

/* Card */
.rev-card {
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,160,122,0.2);
    border-radius: 14px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.25s, background 0.25s;
}
.rev-card:hover {
    border-color: rgba(201,160,122,0.5);
    background: rgba(255,255,255,0.08);
}

.rev-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rev-score {
    font-family: 'CaviarDreams', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #c9a07a;
    line-height: 1;
    -webkit-text-stroke: 0.2px #c9a07a;
}

.rev-stars-row {
    display: flex;
    gap: 2px;
    align-items: center;
}

.rev-star {
    font-size: 0.85rem;
    color: rgba(201,160,122,0.22);
    line-height: 1;
}
.rev-star.filled { color: #c9a07a; }

.rev-headline {
    font-family: 'CaviarDreams', serif;
    font-size: 0.88rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
    -webkit-text-stroke: 0.15px #fff;
}

.rev-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rev-translate-btn {
    align-self: flex-start;
    font-family: 'CaviarDreams', serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(201,160,122,0.35);
    color: rgba(201,160,122,0.7);
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.rev-translate-btn:hover:not(:disabled) {
    border-color: #c9a07a;
    color: #c9a07a;
    background: rgba(201,160,122,0.08);
}
.rev-translate-btn:disabled { opacity: 0.4; cursor: default; }

.rev-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
}

.rev-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a07a, #997a61);
    color: #fff;
    font-family: 'CaviarDreams', serif;
    font-size: 0.85rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rev-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.rev-name {
    font-family: 'CaviarDreams', serif;
    font-size: 0.8rem;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 0.1px #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rev-country {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
}

.rev-flag-img {
    width: 18px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}

.rev-date {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'CaviarDreams', serif;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Controls */
.rev-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    justify-content: center;
}

.rev-ctrl {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.rev-ctrl svg { fill: currentColor; }
.rev-ctrl:hover:not(.lm-disabled) { background: rgba(201,160,122,0.2); border-color: #c9a07a; }
.rev-ctrl.lm-disabled { opacity: 0.3; cursor: default; }

.rev-ctrl-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.rev-dot-btn {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.rev-dot-btn.active {
    background: #c9a07a;
    transform: scale(1.3);
}

/* Attribution */
.rev-attribution {
    text-align: center;
    margin-top: 20px;
    font-family: 'CaviarDreams', serif;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    padding-bottom:70px;
}
.rev-attribution a {
    color: rgba(201,160,122,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.rev-attribution a:hover { color: #c9a07a; }

/* Responsive */
@media (max-width: 960px) {
    .rev-card { flex: 0 0 calc((100% - 20px) / 2); }
}

@media (max-width: 600px) {
    .rev-card { flex: 0 0 82vw; scroll-snap-align: center; }
    .rev-header { flex-direction: column; align-items: flex-start; }
    .rev-track-outer { scroll-snap-type: x mandatory; }
}

/* ── Hero text entrance ── */
@keyframes hero-up { from { opacity:0; transform:translateY(24px) } to { opacity:1; transform:none } }

.hero-text .hero-h1,
.hero-text .hero-h2,
.hero-text .hero-cta { opacity: 0; }

.hero-text.hero-anim .hero-h1  { animation: hero-up 0.7s cubic-bezier(0.22,0.8,0.4,1) 0ms   both; }
.hero-text.hero-anim .hero-h2  { animation: hero-up 0.7s cubic-bezier(0.22,0.8,0.4,1) 0.2s  both; }
.hero-text.hero-anim .hero-cta { animation: hero-up 0.7s cubic-bezier(0.22,0.8,0.4,1) 0.38s both; }

@media (prefers-reduced-motion: reduce) {
    .hero-text .hero-h1,
    .hero-text .hero-h2,
    .hero-text .hero-cta { opacity: 1 !important; animation: none; }
}
