/**
 * @Name site.css
 * @Description Public styles for El Hamaquero Dark Editorial UI.
 * @Author Orion + Pixel
 * @Date 2026-06-06
 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --base:         #0A0F0A;
    --surface-1:    #111811;
    --surface-2:    #1A231A;
    --surface-3:    #1F2B1F;
    --text:         #F0E8D8;
    --text-muted:   rgba(240,232,216,0.55);
    --text-dim:     rgba(240,232,216,0.35);
    --gold:         #D4A847;
    --gold-dim:     rgba(212,168,71,0.18);
    --gold-border:  rgba(212,168,71,0.35);
    --teal:         #4EBFB0;
    --teal-dim:     rgba(78,191,176,0.15);
    --glass-bg:     rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.12);
    --radius-card:  12px;
    --radius-pill:  999px;
    --font-serif:   'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
    --font-sans:    'DM Sans', system-ui, sans-serif;
    --title-shadow: 0 3px 12px rgba(0,0,0,0.45), 0 1px 0 rgba(224,154,26,0.18);
    --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h:     72px;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--base);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;

    padding-top: var(--header-h);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }



/* Keep blur on .eh-header::before so the mobile fixed overlay uses the viewport. */
.eh-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: var(--header-h);

    transition: border-bottom var(--transition);
}

.eh-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(10, 15, 10, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition), backdrop-filter var(--transition);
}

.eh-header.is-scrolled {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.eh-header.is-scrolled::before {
    background: rgba(10, 15, 10, 0.90);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.eh-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
}

.eh-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.eh-brand-divider {
    width: 1px;
    height: 28px;
    background: rgba(240,232,216,0.25);
    display: inline-block;
    flex-shrink: 0;
}

.eh-brand-sub {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.3;
}


.eh-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.eh-nav a {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}

.eh-nav a:hover,
.eh-nav a.is-active { color: var(--text); }


.eh-book-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--gold);
    color: #0A0F0A;
    border-radius: var(--radius-pill);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
}

.eh-book-btn:hover {
    background: #c49030;
    color: #0A0F0A;
    transform: translateY(-1px);
}


.eh-lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(224,154,26,0.5);
    border-radius: var(--radius-pill);
    padding: 4px;
    background: rgba(8,18,18,0.72);
    box-shadow: 0 0 0 1px rgba(240,232,216,0.08), 0 8px 24px rgba(0,0,0,0.24);
}

.eh-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 58px;
    min-height: 30px;
    background: transparent;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    color: rgba(240,232,216,0.82);
    text-transform: uppercase;
    padding: 0 10px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    line-height: 1;
}

/* Spanish is temporarily unavailable; keep the control in markup for its later return. */
#eh-lang-es {
    display: none !important;
}

.eh-lang-btn.is-active,
.eh-lang-btn:hover {
    color: #fffaf0;
    background: rgba(224,154,26,0.16);
}

.eh-lang-btn.is-active {
    color: #0A0F0A;
    background: var(--gold);
    box-shadow: 0 4px 12px rgba(224,154,26,0.28);
}

.eh-lang-btn:hover { transform: translateY(-1px); }

.eh-lang-flag {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 14px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(10,15,10,0.18), 0 1px 2px rgba(0,0,0,0.2);
    flex: 0 0 auto;
}

.eh-lang-flag--us {
    background:
        linear-gradient(
            to bottom,
            #b22234 0 7.69%,
            #fff 7.69% 15.38%,
            #b22234 15.38% 23.07%,
            #fff 23.07% 30.76%,
            #b22234 30.76% 38.45%,
            #fff 38.45% 46.14%,
            #b22234 46.14% 53.83%,
            #fff 53.83% 61.52%,
            #b22234 61.52% 69.21%,
            #fff 69.21% 76.9%,
            #b22234 76.9% 84.59%,
            #fff 84.59% 92.28%,
            #b22234 92.28% 100%
        );
}

.eh-lang-flag--us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    height: 8px;
    background: #3c3b6e;
}

.eh-lang-flag--co {
    background:
        linear-gradient(
            to bottom,
            #fcd116 0 50%,
            #003893 50% 75%,
            #ce1126 75% 100%
        );
}

.eh-lang-code { line-height: 1; }

.eh-lang-switcher.is-disabled,
.eh-lang-switcher.is-pending {
    opacity: 0.75;
    cursor: default;
}


.eh-cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1100;
    padding: 16px 32px;
    background: rgba(17, 24, 17, 0.97);
    border-top: 1px solid rgba(212,168,71,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.eh-cookie-banner[hidden] { display: none; }

.eh-cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.eh-cookie-banner__text {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    min-width: 260px;
}

.eh-cookie-banner__text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.eh-cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.eh-cookie-btn {
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), background var(--transition);
}

.eh-cookie-btn:hover { transform: translateY(-1px); }

.eh-cookie-btn--accept {
    background: var(--gold);
    color: #0A0F0A;
}

.eh-cookie-btn--accept:hover { background: #c49030; }

.eh-cookie-btn--decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(240,232,216,0.2);
}

.eh-cookie-btn--decline:hover {
    color: var(--text);
    border-color: rgba(240,232,216,0.4);
}

@media (max-width: 640px) {
    .eh-hero-slide__content {
        left: 24px;
        right: 24px;
        bottom: 118px;
    }

    .eh-hero-slider__controls {
        left: 24px;
        right: auto;
        bottom: 28px;
        max-width: calc(100vw - 48px);
    }

    .eh-hero-slider__dots {
        max-width: 122px;
    }

    .eh-exp-rentals {
        padding: 56px 24px;
    }

    .eh-exp-rental-card {
        padding: 24px;
        min-height: auto;
    }
    .eh-cookie-banner { padding: 16px 20px; }
    .eh-cookie-banner__inner { gap: 16px; }
    .eh-cookie-banner__actions { width: 100%; justify-content: flex-end; }
}



body                        { top: 0 !important; position: static !important; }
iframe.goog-te-banner-frame { display: none !important; visibility: hidden !important; }
.goog-te-banner-frame       { display: none !important; visibility: hidden !important; }
.goog-te-balloon-frame      { display: none !important; visibility: hidden !important; }
.skiptranslate              { display: none !important; visibility: hidden !important; }
#goog-gt-tt                 { display: none !important; }
.goog-te-gadget             { display: none !important; }
.goog-te-spinner-pos        { display: none !important; }


.eh-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.eh-nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}


.eh-hero {
    position: relative;

    min-height: calc(100vh - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;

    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
}

.eh-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--surface-2);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.eh-hero.in-view .eh-hero__bg { transform: scale(1); }

.eh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,12,8,0.92) 0%,
        rgba(8,12,8,0.65) 30%,
        rgba(8,12,8,0.20) 65%,
        rgba(8,12,8,0.05) 100%
    );
}

.eh-hero__logo {
    display: block;
    width: clamp(170px, 21vw, 320px);
    height: auto;
    margin: 0 auto 14px;
    filter: brightness(0) saturate(100%) invert(96%) sepia(82%) saturate(335%) hue-rotate(330deg) brightness(107%) contrast(103%);
}

.eh-hero__content {
    position: relative;
    z-index: 2;
    align-self: center;
    width: 100%;
    max-width: 920px;
    padding: 88px 24px 40px;
    text-align: center;
}


.eh-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(212,168,71,0.45);
    border-radius: var(--radius-pill);
    background: rgba(212,168,71,0.10);
    font-family: var(--font-sans);
    font-size: 0.70rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.eh-hero__chip::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    flex-shrink: 0;
}


.eh-hero__tagline {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.98;
    letter-spacing: 0;
    margin-bottom: 24px;
    text-shadow: var(--title-shadow);
}


.eh-hero__tagline .line-solid {
    display: block;
    color: var(--text);
}


.eh-hero__tagline .line-tinted {
    display: block;
    color: var(--gold);
}

.eh-hero__tagline .line-soft {
    display: block;
    color: rgba(240,232,216,0.78);
}

.eh-hero__tagline .line-secondary {
    font-size: 0.72em;
    line-height: 0.98;
}

@media (min-width: 961px) {
    .eh-hero__tagline .line-solid,
    .eh-hero__tagline .line-tinted,
    .eh-hero__tagline .line-soft {
        white-space: nowrap;
    }
}

.eh-hero__desc {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 44px;
    line-height: 1.7;
}

.eh-hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


.eh-hero__scroll {
    position: absolute;
    bottom: 40px;
    right: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.eh-hero__scroll span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
    writing-mode: vertical-rl;
}

.eh-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.eh-home-tour {
    padding: 88px clamp(24px, 6vw, 80px);
    background: var(--surface-1);
}

.eh-home-tour__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.eh-home-tour__header {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: end;
    margin-bottom: 40px;
}

.eh-home-tour__intro {
    max-width: 400px;
}

.eh-home-tour__intro p {
    margin-bottom: 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

.eh-home-tour__highlight {
    color: var(--gold);
    font-style: normal;
}

.eh-home-tour__embed {
    overflow: hidden;
    border: 1px solid rgba(212,168,71,0.22);
    border-radius: var(--radius-card);
    background: var(--surface-2);
}

.eh-home-tour__iframe {
    display: block;
    width: 100%;
    height: clamp(360px, 50vw, 620px);
    border: 0;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50%       { opacity: 1;   transform: scaleY(1);   }
}
/* Hero editorial slider - PRT-016 */
.eh-hero-slider__track,
.eh-hero-slide {
    position: absolute;
    inset: 0;
}

.eh-hero-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 1s ease, visibility 1s ease, transform 1.6s ease;
}

.eh-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.eh-hero-slide__img,
.eh-hero-slide__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.eh-hero-slide__img {
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.eh-hero-slide.is-active .eh-hero-slide__img {
    transform: scale(1);
}

.eh-hero-slide__placeholder {
    background: #0A0F0A;
}

.eh-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8,12,8,0.94) 0%, rgba(8,12,8,0.66) 34%, rgba(8,12,8,0.22) 68%, rgba(8,12,8,0.10) 100%),
        linear-gradient(90deg, rgba(8,12,8,0.58) 0%, rgba(8,12,8,0.08) 58%, rgba(8,12,8,0.34) 100%);
}

.eh-hero-slide__content {
    position: absolute;
    left: clamp(24px, 6vw, 80px);
    right: clamp(24px, 18vw, 220px);
    bottom: clamp(88px, 12vh, 128px);
    z-index: 2;
    max-width: 860px;
}

.eh-hero-slider__controls {
    position: absolute;
    right: clamp(24px, 6vw, 80px);
    bottom: 42px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border: 1px solid rgba(240,232,216,0.16);
    border-radius: var(--radius-pill);
    background: rgba(8,18,18,0.60);
    backdrop-filter: blur(12px);
}

.eh-hero-slider__arrow,
.eh-hero-slider__dots button {
    border: 0;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.eh-hero-slider__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(240,232,216,0.08);
    color: var(--text);
    font-size: 1rem;
}

.eh-hero-slider__arrow:hover {
    background: var(--gold);
    color: #0A0F0A;
    transform: translateY(-1px);
}

.eh-hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: 168px;
    flex-wrap: wrap;
    justify-content: center;
}

.eh-hero-slider__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(240,232,216,0.32);
}

.eh-hero-slider__dots button.is-active {
    width: 24px;
    border-radius: var(--radius-pill);
    background: var(--gold);
}


.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--gold);
    color: #0A0F0A;
    border-radius: var(--radius-pill);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
    background: #c49030;
    color: #0A0F0A;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212,168,71,0.30);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

svg.btn-icon {
    display: block;
}

.btn-icon--booking {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    border-radius: 5px;
    background: #0057B8;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(240,232,216,0.4);
    border-radius: var(--radius-pill);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: border-color var(--transition), background var(--transition);
}

.btn-outline-white:hover {
    border-color: var(--text);
    background: rgba(240,232,216,0.07);
    color: var(--text);
}


.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: 0;
    color: var(--text);
    text-shadow: var(--title-shadow);
}


.section-title em,
.section-title__highlight {
    font-style: normal;
    color: var(--gold);
}

.eh-room-featured__name,
.eh-room-card__name,
.eh-room-card--cta__title,
.eh-exp-card__title,
.eh-route__title,
.eh-story-modal__title,
.eh-footer-brand__name,
.eh-tour-hero__title,
.eh-tour-fallback__title,
.eh-rooms-hero__title,
.eh-rooms-feat__name,
.eh-room-page-card__name,
.eh-exp-hero__title,
.eh-exp-detail__title,
.eh-bic-hero__title {
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-shadow: var(--title-shadow);
}

.eh-tour-hero__title em,
.eh-rooms-hero__title em,
.eh-exp-hero__title em,
.eh-exp-detail__title em,
.eh-bic-hero__title em {
    font-style: normal;
}


.eh-intro {
    background: var(--surface-1);
    padding: 88px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.eh-intro__text .section-title { margin-bottom: 24px; }

.eh-intro__text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.eh-intro__text p:last-of-type { margin-bottom: 32px; }

.eh-intro-slider {
    position: relative;
    min-height: 460px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid rgba(224,154,26,0.25);
    background: var(--surface-2);
    box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}

.eh-intro-slider__track,
.eh-intro-slide {
    position: absolute;
    inset: 0;
}

.eh-intro-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.4s ease;
}

.eh-intro-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.eh-intro-slide__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.eh-intro-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    animation: introImageCycle 18s infinite;
}

.eh-intro-slide__img:nth-child(2) { animation-delay: 6s; }
.eh-intro-slide__img:nth-child(3) { animation-delay: 12s; }


.eh-intro-slide__img--static {
    opacity: 1;
    animation: none;
    transform: scale(1.02);
    transition: transform 8s ease;
}

.eh-intro-slide.is-active .eh-intro-slide__img--static {
    transform: scale(1);
}

.eh-intro-slide__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0A0F0A;
}
@keyframes introImageCycle {
    0% {
        opacity: 0;
        transform: scale(1.04);
    }
    10% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: scale(1);
    }
    43% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.04);
    }
}

.eh-intro-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8,12,8,0.88) 0%, rgba(8,12,8,0.45) 52%, rgba(8,12,8,0.12) 100%),
        radial-gradient(circle at 18% 80%, rgba(224,154,26,0.24), transparent 42%);
}

.eh-intro-slide__content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
}

.eh-intro-slide__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border: 1px solid rgba(224,154,26,0.55);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1;
    background: rgba(10,15,10,0.45);
    backdrop-filter: blur(8px);
}

.eh-intro-slide h3 {
    max-width: 520px;
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    font-weight: 400;
    line-height: 0.95;
    text-shadow: var(--title-shadow);
}

.eh-intro-slide p {
    max-width: 520px;
    color: rgba(240,232,216,0.8);
    font-size: 1rem;
    line-height: 1.55;
}

.eh-intro-slider__controls {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border: 1px solid rgba(240,232,216,0.14);
    border-radius: var(--radius-pill);
    background: rgba(8,18,18,0.58);
    backdrop-filter: blur(12px);
}

.eh-intro-slider__arrow,
.eh-intro-slider__dots button {
    border: 0;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.eh-intro-slider__arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(240,232,216,0.08);
    color: var(--text);
    font-size: 1rem;
}

.eh-intro-slider__arrow:hover {
    background: var(--gold);
    color: #0A0F0A;
    transform: translateY(-1px);
}

.eh-intro-slider__dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.eh-intro-slider__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(240,232,216,0.32);
}

.eh-intro-slider__dots button.is-active {
    width: 22px;
    border-radius: var(--radius-pill);
    background: var(--gold);
}


.eh-rooms {
    background: var(--base);
    padding: 100px 80px;
}

.eh-rooms__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.eh-rooms__header-right {
    text-align: right;
}

.eh-rooms__header-right p {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 320px;
}

.eh-rooms__grid {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 16px;
    align-items: stretch;
}


.eh-room-featured {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    min-height: 640px;
    background: var(--surface-2);
}


.eh-rooms__secondary {
    grid-column: 2;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


.eh-room-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    min-height: 300px;
    background: var(--surface-2);
}

.eh-room-card__img,
.eh-room-featured__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--surface-2);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    max-width: none;
}

.eh-room-featured:hover .eh-room-featured__img,
.eh-room-card:hover .eh-room-card__img {
    transform: scale(1.06);
}

.eh-room-featured__overlay,
.eh-room-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,12,8,0.90) 0%,
        rgba(8,12,8,0.40) 45%,
        rgba(8,12,8,0.10) 100%
    );
    z-index: 1;
}

.eh-room-featured__glass,
.eh-room-card__glass {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 28px 32px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.eh-room-card__glass { padding: 18px 20px; }

.eh-room-featured__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.eh-room-featured__name,
.eh-room-card__name {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 8px;
}

.eh-room-card__name { font-size: 1.1rem; margin-bottom: 4px; }

.eh-room-featured__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.eh-room-featured__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.eh-room-featured__meta span {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.eh-room-card__cap {
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}


.eh-room-card--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 28px;
}

.eh-room-card--cta__title {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1rem;
    color: var(--text-muted);
}

.eh-room-card--cta__desc {
    font-size: 0.80rem;
    color: var(--text-dim);
    line-height: 1.6;
}


.eh-rooms__more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


.eh-experience {
    background: var(--surface-1);
    padding: 100px 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.eh-experience__header {
    text-align: center;
    margin-bottom: 64px;
}

.eh-experience__header .section-label {
    justify-content: center;
}

.eh-experience__header .section-label::before { display: none; }

.eh-experience__header .section-label::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.eh-experience__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.eh-exp-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    backdrop-filter: blur(12px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.eh-exp-card:hover {
    border-color: rgba(212,168,71,0.30);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}


.eh-exp-card__img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.eh-exp-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.eh-exp-card:hover .eh-exp-card__img { transform: scale(1.06); }


.eh-exp-card__body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.eh-exp-card__title {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 10px;
}

.eh-exp-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}


.eh-transport {
    background: linear-gradient(
        135deg,
        #0D1A0D 0%,
        #0A1520 40%,
        #091218 70%,
        #101A0F 100%
    );
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.eh-transport::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(78,191,176,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212,168,71,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.eh-transport__header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.eh-transport__header .section-label {
    justify-content: center;
}

.eh-transport__header .section-label::before { display: none; }

.eh-transport__header .section-label::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.eh-transport .section-label,
.eh-transport .section-title,
.eh-transport .section-title__highlight,
.eh-transport .eh-route__tag,
.eh-transport .eh-route__title,
.eh-transport .eh-route__desc,
.eh-transport .eh-route__detail-label,
.eh-transport .eh-route__detail-value {
    color: var(--text);
    text-transform: lowercase;
}

.eh-transport .eh-route__detail-label {
    color: var(--gold);
    text-transform: uppercase;
}

.eh-transport .eh-route__desc,
.eh-transport .eh-route__detail-value {
    text-transform: none;
}

.eh-transport__routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.eh-route {
    position: relative;
    padding: 48px 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.eh-route__watermark {
    position: absolute;
    top: -20px;
    right: -16px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(212,168,71,0.08);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.eh-route__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: var(--teal-dim);
    border: 1px solid rgba(78,191,176,0.25);
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}

.eh-route__title {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1.8rem;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.eh-route__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--surface-2);
    border-radius: 10px;
    margin-bottom: 24px;
}

.eh-route__desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.eh-route__details {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.eh-route__detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eh-route__detail-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.eh-route__detail-value {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.75;
}

.eh-route__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 28px 0;
}


.eh-gallery {
    background: var(--base);
    overflow: hidden;
}

.eh-gallery__strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 320px;
}

.eh-gallery__item {
    overflow: hidden;
    position: relative;
}

.eh-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--surface-2);
    transition: transform 0.6s ease;
    display: block;
    max-width: none;
}

.eh-gallery__item:hover img { transform: scale(1.08); }

.eh-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8,12,8,0.25);
    transition: background 0.3s ease;
    pointer-events: none;
}

.eh-gallery__item:hover::after { background: rgba(8,12,8,0.05); }


.eh-stories-section {
    padding: 72px clamp(24px, 6vw, 80px);
    background: var(--base);
    text-align: center;
}

.eh-stories-header { margin-bottom: 40px; }

.eh-stories {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.eh-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}


.eh-story__ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: transform var(--transition), box-shadow var(--transition);
}

.eh-story:hover .eh-story__ring {
    transform: scale(1.07);
    box-shadow: 0 0 0 3px rgba(212,168,71,0.3);
}

.eh-story__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--base);
    display: block;
}

.eh-story__label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition);
}

.eh-story:hover .eh-story__label { color: var(--text); }

.eh-stories-footer {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.eh-stories-ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border: 1px solid rgba(240,232,216,0.15);
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    transition: color var(--transition), border-color var(--transition);
}

.eh-stories-ig-link:hover {
    color: var(--text);
    border-color: rgba(240,232,216,0.35);
}


.eh-story-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.eh-story-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.eh-story-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 5, 0.92);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.eh-story-modal__card {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-1);
    border: 1px solid var(--glass-border);
    flex-direction: column;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.eh-story-modal.is-open .eh-story-modal__card { transform: scale(1); }

.eh-story-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(10,15,10,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: background var(--transition);
}

.eh-story-modal__close:hover { background: rgba(10,15,10,0.95); }


.eh-story-modal__ig-embed {
    flex: 1;
    overflow: hidden;
}

.eh-story-modal__ig-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.eh-story-modal__card.is-embed {
    max-width: 400px;
}


.eh-story-modal__local {
    flex-direction: column;
    flex: 1;
}

.eh-story-modal__img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    flex-shrink: 0;
}

.eh-story-modal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eh-story-modal__body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eh-story-modal__title {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1.3rem;
    color: var(--text);
    line-height: 1.2;
}

.eh-story-modal__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.eh-story-modal__ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    align-self: flex-start;
    transition: opacity var(--transition), transform var(--transition);
}

.eh-story-modal__ig-btn:hover { opacity: 0.9; transform: translateY(-1px); }


.eh-cta {
    background: var(--surface-1);
    padding: 120px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eh-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,71,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.eh-cta__tagline {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}


.eh-cta__highlight {
    font-style: normal;
    color: var(--gold);
}

.eh-cta__desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 44px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.eh-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}


.eh-footer {
    background: #060A06;
    position: relative;
}

.eh-footer__border {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 30%,
        #c49030 50%,
        var(--gold) 70%,
        transparent 100%
    );
}

.eh-footer__inner {
    padding: 72px 80px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.eh-footer-brand__logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.eh-footer-brand__name {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 12px;
}

.eh-footer-brand__tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 28px;
}

.eh-footer-brand__social {
    display: flex;
    gap: 12px;
}

.eh-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.eh-social-link svg { display: block; flex-shrink: 0; }

.eh-social-link:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

.eh-footer-col__title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.eh-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.eh-footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.eh-footer-col ul li a:hover { color: var(--text); }

.eh-footer-contact__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}

.eh-footer-contact__label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.eh-footer-contact__value {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.eh-footer-contact__value a { transition: color var(--transition); }
.eh-footer-contact__value a:hover { color: var(--gold); }

.eh-footer__book-block {
    margin-top: 20px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    text-align: center;
}

.eh-footer__book-block p {
    font-size: 0.80rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.eh-footer__book-block .btn-gold {
    width: 100%;
    justify-content: center;
    font-size: 0.72rem;
    padding: 12px 20px;
}


.eh-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.eh-footer__copy {
    font-size: 0.76rem;
    color: var(--text-dim);
}

.eh-footer__bottom-links {
    display: flex;
    gap: 24px;
}

.eh-footer__bottom-links a {
    font-size: 0.76rem;
    color: var(--text-dim);
    transition: color var(--transition);
}

.eh-footer__bottom-links a:hover { color: var(--text-muted); }

.eh-footer__credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-dim);
    opacity: 0.65;
}

.eh-footer__credit a { color: inherit; }

.eh-footer__motfware-logo {
    height: 18px;
    width: auto;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}



.eh-float-group {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.eh-whatsapp,
.eh-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: box-shadow 0.22s ease, transform 0.2s ease;
}


.eh-whatsapp {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1a8a45;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.40);
}

.eh-whatsapp:hover {
    background: #1faa57;
    color: #fff;
    box-shadow: 0 6px 28px rgba(0,0,0,0.50), 0 0 16px rgba(26,138,69,0.4);
    transform: scale(1.08);
}


.eh-booking-btn {
    background: transparent;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.36);
    border-radius: 12px;
}

.eh-booking-btn img {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.eh-booking-btn:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.50), 0 0 16px rgba(0,53,128,0.35);
    transform: scale(1.08);
}


.eh-legal {
    padding: 80px clamp(24px, 6vw, 80px);
}

.eh-legal__inner {
    max-width: 800px;
    margin: 0 auto;
}

.eh-legal__header {
    margin-bottom: 56px;
    border-bottom: 1px solid rgba(212,168,71,0.2);
    padding-bottom: 32px;
}

.eh-legal__header h1 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text);
    line-height: 1.1;
    margin: 8px 0 12px;
}

.eh-legal__date {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.eh-legal__section {
    margin-bottom: 40px;
}

.eh-legal__section h2 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.eh-legal__section p,
.eh-legal__section li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.eh-legal__section ul {
    padding-left: 20px;
    list-style: disc;
}

.eh-legal__section a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.eh-legal__section code {
    font-family: monospace;
    font-size: 0.85em;
    background: rgba(212,168,71,0.1);
    border: 1px solid rgba(212,168,71,0.2);
    border-radius: 4px;
    padding: 1px 6px;
    color: var(--gold);
}

.eh-legal__table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius-card);
    border: 1px solid var(--glass-border);
}

.eh-legal__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.eh-legal__table th {
    background: var(--surface-2);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
}

.eh-legal__table td {
    padding: 12px 16px;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    vertical-align: top;
    line-height: 1.5;
}

.eh-legal__table tr:hover td {
    background: rgba(255,255,255,0.03);
}

.eh-legal__cta-row {
    margin-top: 20px;
}


.eh-page-inner {
    max-width: 960px;
    padding: 80px clamp(24px, 6vw, 80px);
}

.eh-page-inner h1 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 20px;
}

.eh-page-inner .section-label { margin-bottom: 16px; }

.eh-page-inner p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}


.eh-rooms-page {
    padding: 80px clamp(24px, 6vw, 80px);
}

.eh-rooms-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}


.eh-tour-hero {
    position: relative;
    min-height: calc(60vh - var(--header-h));
    display: flex;
    align-items: flex-end;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    overflow: hidden;
}

.eh-tour-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center 30%;
}

.eh-tour-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,15,10,0.3) 0%, rgba(10,15,10,0.75) 100%);
}

.eh-tour-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(24px, 6vw, 80px) 64px;
    max-width: 720px;
}

.eh-tour-hero__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--text);
    line-height: 1.05;
    margin: 12px 0 20px;
}

.eh-tour-hero__title em { color: var(--gold); font-style: italic; }

.eh-tour-hero__desc {
    font-size: 1.05rem;
    color: rgba(240,232,216,0.8);
    max-width: 520px;
    line-height: 1.7;
}


.eh-tour-embed-section {
    padding: 64px clamp(24px, 6vw, 80px);
    background: var(--surface-1);
}

.eh-tour-embed-wrap {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.eh-tour-fallback {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    border: 1px dashed rgba(212,168,71,0.35);
    border-radius: var(--radius-card);
    padding: 64px 40px;
    background: rgba(212,168,71,0.04);
}

.eh-tour-fallback__icon { color: var(--gold); opacity: 0.7; }

.eh-tour-fallback__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text);
}

.eh-tour-fallback__sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 440px;
    line-height: 1.7;
}

.eh-tour-iframe {
    width: 100%;
    height: 540px;
    border: none;
    display: block;
}


.eh-tour-highlights {
    padding: 80px clamp(24px, 6vw, 80px);
}

.eh-tour-highlights__inner { max-width: 1100px; margin: 0 auto; }

.eh-tour-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.eh-tour-highlight {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    backdrop-filter: blur(10px);
}

.eh-tour-highlight__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.eh-tour-highlight h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 10px;
}

.eh-tour-highlight p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}


.eh-rooms-hero {
    position: relative;
    min-height: calc(55vh - var(--header-h));
    display: flex;
    align-items: flex-end;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    overflow: hidden;
}

.eh-rooms-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.eh-rooms-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,15,10,0.2) 0%, rgba(10,15,10,0.80) 100%);
}

.eh-rooms-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(24px, 6vw, 80px) 64px;
    max-width: 720px;
}

.eh-rooms-hero__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--text);
    line-height: 1.05;
    margin: 12px 0 20px;
}

.eh-rooms-hero__title em { color: var(--gold); font-style: italic; }

.eh-rooms-hero__desc {
    font-size: 1rem;
    color: rgba(240,232,216,0.75);
    max-width: 480px;
    line-height: 1.7;
}


.eh-rooms-featured-wrap {
    background: var(--surface-1);
    padding: 72px clamp(24px, 6vw, 80px);
}

.eh-rooms-feat-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.9fr);
    gap: 56px;
    align-items: center;
}

.eh-rooms-feat__img-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 16/9;
    min-height: 360px;
}

.eh-rooms-feat__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.eh-rooms-feat__img-wrap:hover .eh-rooms-feat__img { transform: scale(1); }

.eh-rooms-feat-slider {
    position: relative;
    background: #0A0F0A;
}

.eh-rooms-feat-slider .eh-rooms-feat__img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.eh-rooms-feat-slider .eh-rooms-feat__img.is-active {
    opacity: 1;
    transform: scale(1);
}

.eh-rooms-feat-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
    padding: 8px 10px;
    border-radius: var(--radius-pill);
    background: rgba(10, 15, 10, 0.58);
}

.eh-rooms-feat-slider__dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(240, 232, 216, 0.45);
    transition: width var(--transition), background var(--transition);
}

.eh-rooms-feat-slider__dots button.is-active {
    width: 24px;
    background: var(--gold);
}

.eh-rooms-feat__body { display: flex; flex-direction: column; gap: 16px; }

.eh-rooms-feat__name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--text);
    line-height: 1.1;
}

.eh-rooms-feat__desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.eh-rooms-feat__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.eh-room-fact {
    border: 1px solid rgba(216, 179, 91, 0.28);
    background: rgba(7, 20, 15, 0.72);
    border-radius: 8px;
    padding: 12px 14px;
}

.eh-room-fact span {
    display: block;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eh-room-fact strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.3;
}

.eh-rooms-feat__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}


.eh-rooms-page__header {
    text-align: center;
    margin-bottom: 0;
}

.eh-room-page-card {
    background: var(--surface-1);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.eh-room-page-card:hover,
.eh-room-page-card.is-selected {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.eh-room-page-card.is-selected {
    border-color: rgba(212,168,71,0.58);
}

.eh-room-page-card__img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.eh-room-page-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.eh-room-page-card:hover .eh-room-page-card__img { transform: scale(1.05); }

.eh-room-page-card__body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.eh-room-page-card__name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text);
}

.eh-room-page-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.eh-room-page-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.eh-room-page-card__meta span,
.eh-room-page-card__meta strong {
    border: 1px solid rgba(112, 223, 196, 0.22);
    background: rgba(20, 81, 68, 0.28);
    border-radius: 999px;
    padding: 7px 10px;
    line-height: 1;
}

.eh-room-page-card__meta strong {
    color: var(--gold);
    font-weight: 600;
}

.eh-room-page-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.eh-room-page-card__footer .btn-gold,
.eh-room-page-card__footer .btn-outline-white {
    min-height: 52px;
    padding-inline: 28px;
}


.eh-rooms-group {
    background: var(--surface-2);
    border-top: 1px solid var(--glass-border);
    padding: 80px clamp(24px, 6vw, 80px);
}

.eh-rooms-group__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.eh-rooms-group__text p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.7;
    margin-top: 12px;
}

.eh-rooms-group__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}


.eh-exp-hero {
    position: relative;
    min-height: calc(60vh - var(--header-h));
    display: flex;
    align-items: flex-end;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    overflow: hidden;
}

.eh-exp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/slider/slide-03-dive-in.jpg');
    background-size: cover;
    background-position: center 40%;
}

.eh-exp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,15,10,0.25) 0%, rgba(10,15,10,0.82) 100%);
}

.eh-exp-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(24px, 6vw, 80px) 64px;
    max-width: 720px;
}

.eh-exp-hero__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--text);
    line-height: 1.05;
    margin: 12px 0 20px;
}

.eh-exp-hero__title em { color: var(--gold); font-style: italic; }

.eh-exp-hero__desc {
    font-size: 1rem;
    color: rgba(240,232,216,0.8);
    max-width: 500px;
    line-height: 1.7;
}


.eh-exp-detail-section {
    display: flex;
    flex-direction: column;
}

.eh-exp-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 520px;
    align-items: stretch;
    overflow: hidden;
}

.eh-exp-detail--reverse .eh-exp-detail__img-wrap { order: 2; }
.eh-exp-detail--reverse .eh-exp-detail__body { order: 1; }

.eh-exp-detail__img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    aspect-ratio: 16 / 10;
    width: 100%;
    min-width: 0;
}

.eh-exp-detail > * {
    position: relative;
}

.eh-exp-detail__img,
.eh-exp-detail__media-slider .eh-exp-detail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.eh-exp-detail__media-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
}

.eh-exp-detail__media-slider .eh-exp-detail__img {
    position: absolute;
    inset: 0;
    opacity: 0;
    object-fit: cover;
}

.eh-exp-detail__media-slider .eh-exp-detail__img.is-active {
    opacity: 1;
}

.eh-exp-detail__img {
    width: 100%;
    height: 100%;
}

.eh-exp-detail__img-wrap:hover .eh-exp-detail__img { transform: scale(1.05); }

.eh-exp-detail__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 2.2rem;
    line-height: 1;
    background: rgba(10,15,10,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,168,71,0.3);
    border-radius: var(--radius-card);
    padding: 12px 14px;
}

.eh-exp-detail__body {
    background: var(--surface-1);
    padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.eh-exp-detail__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text);
    line-height: 1.05;
}

.eh-exp-detail__title em { color: var(--gold); font-style: italic; }

.eh-exp-detail__body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
}

.eh-exp-detail--banner .eh-exp-detail__img-wrap {
    aspect-ratio: 16 / 10;
    min-height: 520px;
    height: auto;
}

.eh-exp-detail--banner .eh-exp-detail__media-slider {
    min-height: 520px;
    height: 100%;
}

.eh-exp-detail--banner .eh-exp-detail__img-wrap:hover .eh-exp-detail__img {
    transform: none;
}

.eh-exp-detail--banner .eh-exp-detail__img {
    object-fit: cover;
    background: transparent;
}

.eh-exp-detail--banner .eh-exp-detail__media-slider .eh-exp-detail__img {
    object-fit: cover;
}

#mangrove-reforestation-tour .eh-exp-detail__media-slider .eh-exp-detail__img {
    object-fit: contain;
    background: #0A0F0A;
}

.eh-exp-detail__media-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(10, 15, 10, 0.55);
}

.eh-exp-detail__media-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(240, 232, 216, 0.46);
    transition: width var(--transition), background var(--transition);
}

.eh-exp-detail__media-dots button.is-active {
    width: 24px;
    background: var(--gold);
}

.eh-exp-detail__meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin: 4px 0 8px;
}

.eh-exp-meta-item { display: flex; flex-direction: column; gap: 4px; }

.eh-exp-meta-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.eh-exp-meta-value {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}
.eh-exp-detail__badge {
    min-width: 58px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--gold);
}

.eh-exp-detail__note {
    color: rgba(224,154,26,0.86) !important;
    border-left: 2px solid rgba(224,154,26,0.55);
    padding-left: 16px;
    margin-top: 2px;
}

.eh-exp-rentals {
    background: var(--base);
    padding: 96px clamp(24px, 6vw, 80px);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.eh-exp-rentals__header {
    max-width: 760px;
    margin-bottom: 44px;
}

.eh-exp-rentals__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.eh-exp-rental-card {
    background: var(--surface-1);
    border: 1px solid rgba(240,232,216,0.10);
    border-radius: var(--radius-card);
    padding: 30px;
    min-height: 330px;
}

.eh-exp-rental-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    font-weight: 400;
    line-height: 1.02;
    color: var(--text);
    margin-bottom: 18px;
    text-shadow: var(--title-shadow);
}

.eh-exp-rental-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}


.eh-bic-hero {
    position: relative;
    min-height: calc(55vh - var(--header-h));
    display: flex;
    align-items: flex-end;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    overflow: hidden;
}

.eh-bic-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/bic-bg.jpg');
    background-size: cover;
    background-position: center;
}

.eh-bic-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,15,10,0.4) 0%, rgba(10,15,10,0.85) 100%);
}

.eh-bic-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(24px, 6vw, 80px) 64px;
    max-width: 720px;
}

.eh-bic-hero__logo {
    position: absolute;
    top: 50%;
    right: clamp(24px, 8vw, 128px);
    z-index: 1;
    width: clamp(200px, 25vw, 420px);
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transform: translateY(-50%);
}

.eh-bic-hero__title {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--text);
    line-height: 1.05;
    margin: 12px 0 20px;
}

.eh-bic-hero__highlight { color: var(--gold); font-style: normal; }

.eh-bic-hero__desc {
    font-size: 1rem;
    color: rgba(240,232,216,0.8);
    max-width: 500px;
    line-height: 1.7;
}


.eh-bic-stats {
    background: var(--surface-1);
    padding: 56px clamp(24px, 6vw, 80px);
}

.eh-bic-stats__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.eh-bic-stat__num {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.eh-bic-stat__num span {
    font-size: 0.55em;
    vertical-align: super;
}

.eh-bic-stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    line-height: 1.5;
}


.eh-bic-content {
    padding: 80px clamp(24px, 6vw, 80px);
}

.eh-bic-content__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.eh-bic-block p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
    margin-top: 12px;
}

.eh-bic-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.eh-bic-pillar {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    backdrop-filter: blur(10px);
}

.eh-bic-pillar__icon { font-size: 2rem; margin-bottom: 16px; }

.eh-bic-pillar h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eh-bic-pillar p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.eh-bic-report {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.eh-bic-report p {
    font-size: 0.92rem;
    color: var(--text-muted);
}


.eh-bic-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 clamp(24px, 6vw, 80px);
    margin: 16px 0;
}

.eh-bic-divider__line {
    flex: 1;
    height: 1px;
    background: rgba(212,168,71,0.25);
}

.eh-bic-divider__label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    flex-shrink: 0;
}


.eh-bic-exp-teaser {
    background: var(--surface-2);
    border-top: 1px solid rgba(212,168,71,0.15);
    padding: 72px clamp(24px, 6vw, 80px);
}

.eh-bic-exp-teaser__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.eh-bic-exp-teaser__inner p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-top: 12px;
}

.eh-bic-exp-teaser__actions { flex-shrink: 0; }

@media (max-width: 640px) {
    .eh-hero__logo {
        width: min(52vw, 230px);
        margin-bottom: 12px;
    }

    .eh-hero-slide__content {
        left: 24px;
        right: 24px;
        bottom: 118px;
    }

    .eh-hero-slider__controls {
        left: 24px;
        right: auto;
        bottom: 28px;
        max-width: calc(100vw - 48px);
    }

    .eh-hero-slider__dots {
        max-width: 122px;
    }

    .eh-exp-rentals {
        padding: 56px 24px;
    }

    .eh-exp-rental-card {
        padding: 24px;
        min-height: auto;
    }
    .eh-bic-exp-teaser__inner { grid-template-columns: 1fr; gap: 28px; }
}


.eh-experience--page { padding-top: 40px; }

.eh-experience__intro {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 16px auto 0;
    text-align: center;
    line-height: 1.7;
}


.eh-exp-card__detail {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.76rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    font-weight: 500;
    text-transform: uppercase;
    border-top: 1px solid rgba(212,168,71,0.2);
    padding-top: 10px;
}


.fade-watch {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-watch.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1200px) {
    /* Keep blur on .eh-header::before so the mobile fixed overlay uses the viewport. */
.eh-header { padding: 0 32px; }
    .eh-hero__content { padding: 88px 48px 40px; }
    .eh-hero__scroll { right: 40px; }
    .eh-intro { padding: 72px 48px; gap: 48px; }
    .eh-rooms { padding: 80px 48px; }
    .eh-experience { padding: 80px 48px; }
    .eh-transport { padding: 80px 48px; }
    .eh-cta { padding: 100px 48px; }
    .eh-footer__inner { padding: 56px 48px 40px; gap: 40px; }
    .eh-footer__bottom { padding: 24px 48px; }
}

@media (max-width: 960px) {
    .eh-hero-slide__content {
        left: 48px;
        right: 48px;
    }

    .eh-exp-rentals__grid {
        grid-template-columns: 1fr;
    }

    .eh-tour-highlights__grid { grid-template-columns: repeat(2, 1fr); }


    .eh-rooms-feat-inner { grid-template-columns: 1fr; gap: 32px; }
    .eh-rooms-feat__img-wrap { min-height: 300px; }
    .eh-rooms-group__inner { grid-template-columns: 1fr; gap: 32px; }


    .eh-bic-stats__inner { grid-template-columns: repeat(3, 1fr); }
    .eh-bic-pillars { grid-template-columns: 1fr; gap: 16px; }


    .eh-header .eh-lang-switcher { display: none; }

    .eh-nav {
        display: none;
        gap: 24px;
    }

    .eh-nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,15,10,0.97);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        z-index: 999;
        padding-top: var(--header-h);
        gap: 8px;
    }


    .eh-nav.is-open > a {
        font-size: 1.2rem;
        letter-spacing: 0.16em;
        padding: 12px 0;
        color: var(--text);
    }


    .eh-nav.is-open .eh-lang-switcher {
        display: flex;
        margin-top: 14px;
        border-color: rgba(224,154,26,0.55);
        padding: 5px;
    }

    .eh-nav.is-open .eh-lang-btn {
        min-width: 72px;
        min-height: 38px;
        font-size: 0.8rem;
        padding: 0 12px;
    }


    .eh-nav-toggle { display: flex; z-index: 1001; }


    .eh-nav-toggle span { transition: transform var(--transition), opacity var(--transition); }

    .eh-nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    .eh-nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .eh-nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .eh-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .eh-intro-slider {
        min-height: 420px;
    }

    .eh-rooms__grid {
        grid-template-columns: 1fr;
    }

    .eh-room-featured {
        grid-row: auto;
        min-height: 420px;
    }

    .eh-rooms__secondary {
        grid-column: 1;
        grid-row: auto;
    }

    .eh-rooms__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .eh-rooms__header-right { text-align: left; }

    .eh-experience__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eh-transport__routes {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .eh-gallery__strip { grid-template-columns: repeat(3, 1fr); }
    .eh-gallery__item:nth-child(4),
    .eh-gallery__item:nth-child(5) { display: none; }

    .eh-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .eh-footer-brand { grid-column: 1 / -1; }

    .eh-rooms-page__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .eh-hero-slide__content {
        left: 24px;
        right: 24px;
        bottom: 118px;
    }

    .eh-hero-slider__controls {
        left: 24px;
        right: auto;
        bottom: 28px;
        max-width: calc(100vw - 48px);
    }

    .eh-hero-slider__dots {
        max-width: 122px;
    }

    .eh-exp-rentals {
        padding: 56px 24px;
    }

    .eh-exp-rental-card {
        padding: 24px;
        min-height: auto;
    }
    :root { --header-h: 60px; }

    /* Keep blur on .eh-header::before so the mobile fixed overlay uses the viewport. */
.eh-header { padding: 0 20px; }

    .eh-hero__content { padding: 76px 24px 32px; }
    .eh-hero__scroll { display: none; }

    .eh-intro,
    .eh-rooms,
    .eh-experience,
    .eh-transport,
    .eh-cta { padding-left: 24px; padding-right: 24px; }

    .eh-intro__stats { grid-template-columns: 1fr; gap: 16px; }

    .eh-intro-slider {
        min-height: 460px;
    }

    .eh-intro-slide__content {
        left: 22px;
        right: 22px;
        bottom: 28px;
    }

    .eh-intro-slide h3 {
        font-size: clamp(2rem, 13vw, 3.2rem);
    }

    .eh-intro-slide p {
        font-size: 0.94rem;
    }

    .eh-intro-slider__controls {
        top: 18px;
        right: 18px;
    }

    .eh-rooms__secondary { grid-template-columns: 1fr; }

    .eh-experience__grid { grid-template-columns: 1fr; }

    .eh-gallery__strip { height: 200px; }

    .eh-footer__inner {
        grid-template-columns: 1fr;
        padding: 48px 24px 32px;
    }

    .eh-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 24px;
    }

    .eh-footer__bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }


    .eh-exp-detail { grid-template-columns: 1fr; min-height: auto; }
    .eh-exp-detail--reverse .eh-exp-detail__img-wrap { order: 1; }
    .eh-exp-detail--reverse .eh-exp-detail__body { order: 2; }
    .eh-exp-detail__img-wrap { aspect-ratio: 16/9; }
    .eh-exp-detail--banner .eh-exp-detail__img-wrap,
    .eh-exp-detail--banner .eh-exp-detail__media-slider { min-height: 340px; }
    .eh-exp-detail__body { padding: 40px 24px; }


    .eh-tour-highlights__grid { grid-template-columns: 1fr; }
    .eh-tour-fallback { min-height: 320px; padding: 40px 24px; }


    .eh-rooms-page__grid { grid-template-columns: 1fr; }
    .eh-rooms-featured-wrap { padding: 48px 24px; }
    .eh-rooms-feat__img-wrap { aspect-ratio: 16/10; min-height: 240px; }
    .eh-rooms-group { padding: 56px 24px; }
    .eh-rooms-group__actions { flex-direction: column; width: 100%; }


    .eh-bic-stats__inner { grid-template-columns: 1fr; gap: 28px; }
    .eh-bic-content { padding: 48px 24px; }
    .eh-bic-divider { padding: 0 24px; }
}

.eh-hero-slide__content .eh-hero__tagline .line-solid,
.eh-hero-slide__content .eh-hero__tagline .line-tinted,
.eh-hero-slide__content .eh-hero__tagline .line-soft {
    white-space: normal;
}

@media (max-width: 640px) {
    .eh-float-group {
        top: auto;
        right: 14px;
        bottom: 18px;
        transform: none;
        gap: 8px;
    }

    .eh-whatsapp,
    .eh-booking-btn img {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .eh-bic-hero__logo {
        top: 112px;
        right: 24px;
        width: min(42vw, 220px);
        transform: none;
    }

    .eh-home-tour {
        padding: 64px 24px;
    }

    .eh-home-tour__header {
        display: block;
        margin-bottom: 28px;
    }

    .eh-home-tour__intro {
        max-width: none;
        margin-top: 24px;
    }

    .eh-home-tour__iframe {
        height: min(68vw, 480px);
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .eh-rooms-feat__facts {
        grid-template-columns: 1fr;
    }

    .eh-room-page-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .eh-room-page-card__footer .btn-gold,
    .eh-room-page-card__footer .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}
