*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background: #071217; */
    color: #fff;
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   PAGE BANNER SECTION
============================================================ */

.page-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

/* Background image */
.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.52) saturate(0.75);
}

/* Bottom-to-top dark overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgb(9, 30, 36) 0%,
            rgba(9, 30, 36, 0.836) 35%,
            rgba(9, 30, 36, 0.18) 65%,
            rgba(9, 30, 36, 0.08) 100%);
    mix-blend-mode: normal;
}

/* ── Content — bottom left ── */
.banner-content {
    position: absolute;
    bottom: 13vh;
    left: 80px;
    z-index: 10;
    max-width: 680px;
}

.banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.banner-eyebrow-line {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #4ecdc4);
    flex-shrink: 0;
}

.banner-eyebrow-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.32em;
    color: #4ecdc4;
    text-transform: uppercase;
}

.banner-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.18;
    color: #ffffff;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(20px);
    animation: bannerTitleIn 0.9s ease 0.2s forwards;
}

@keyframes bannerTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Right side — vertical scroll indicator ── */
.banner-scroll-indicator {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
    margin-bottom: 10px;
    animation: lineFlicker 2.8s ease-in-out infinite;
}

@keyframes lineFlicker {
    0% {
        opacity: 0;
        transform: scaleY(0.3);
        transform-origin: top;
    }

    30% {
        opacity: 1;
        transform: scaleY(1);
    }

    70% {
        opacity: 1;
        transform: scaleY(1);
    }

    100% {
        opacity: 0;
        transform: scaleY(0.3);
        transform-origin: bottom;
    }
}

.scroll-text {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    animation: scrollTextFade 2.8s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes scrollTextFade {
    0% {
        opacity: 0;
        transform: rotate(180deg) translateY(-8px);
    }

    25% {
        opacity: 1;
        transform: rotate(180deg) translateY(0);
    }

    75% {
        opacity: 1;
        transform: rotate(180deg) translateY(0);
    }

    100% {
        opacity: 0;
        transform: rotate(180deg) translateY(8px);
    }
}

/* ── Placeholder content below banner ── */
.page-content {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 42px);
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.06em;
    border-top: 1px solid rgba(78, 205, 196, 0.08);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .banner-content {
        left: 48px;
        max-width: calc(100% - 80px);
    }
}

@media (max-width: 600px) {
    .banner-content {
        left: 24px;
        right: 40px;
        max-width: 100%;
        bottom: 12vh;
    }

    .banner-scroll-indicator {
        right: 8px;
    }

    .scroll-line {
        height: 56px;
    }
}


/* ============================================================
   DAY OUT PACKAGES SECTION
   ============================================================ */

.dayout-section {
    width: 100%;
    padding: 80px 72px 100px;
    /* background: linear-gradient(160deg, #071217 0%, #0a1d25 60%, #071217 100%); */
    overflow: hidden;
}

.dayout-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Section heading ── */
.dayout-heading-wrap {
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.466), transparent) 1;
}

.dayout-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dayout-eyebrow-line {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #4ecdc4);
    flex-shrink: 0;
}

.dayout-eyebrow-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #4ecdc4;
    text-transform: uppercase;
}

.dayout-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 46px);
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

/* ── Package rows ── */
.dayout-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Each row is a relative container */
.dayout-row {
    position: relative;
    height: 280px;
}

.dayout-row:nth-child(2) {
    margin-top: 3rem;
}

/* ── Odd rows: main card starts at left:0 ── */
.dayout-row:nth-child(odd) .dayout-main-card {
    left: 0;
    width: 56%;
}

.dayout-row:nth-child(odd) .dayout-include-card {
    right: 10%;
    bottom: 0;
}

/* ── Even rows: main card starts at left:14% ── */
.dayout-row:nth-child(even) .dayout-main-card {
    left: 14%;
    width: 60%;
}

.dayout-row:nth-child(even) .dayout-include-card {
    right: 0;
    bottom: 0;
}

/* Include card always: right:0, vertically centred on row */
.dayout-include-card {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
}

/* ── Main activity card ── */
.dayout-main-card {
    position: absolute;
    top: 0;
    background: rgba(8, 22, 30, 0.85);
    border-radius: 4px;
    padding: 28px 32px 28px;
    z-index: 1;
    min-height: 240px;
}

.dayout-main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* border-radius: 8px; */
    padding: 2px;
    background: linear-gradient(143deg, rgba(78, 205, 197, 0.507), rgba(78, 205, 197, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.dayout-pkg-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.package--num{
    font-family: 'Jost', sans-serif;
    /* font-size: 38px; */
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.dayout-pkg-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.466) 0px,
            rgba(255, 255, 255, 0.466) 6px,
            transparent 6px,
            transparent 12px);
    -webkit-mask: linear-gradient(to right, white, transparent);
    mask: linear-gradient(to right, white, transparent);
    margin-bottom: 16px;
}

.dayout-pkg-divider-bottom {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to left,
            rgba(255, 255, 255, 0.466) 0px,
            rgba(255, 255, 255, 0.466) 6px,
            transparent 6px,
            transparent 12px);
    -webkit-mask: linear-gradient(to left, white, transparent);
    mask: linear-gradient(to left, white, transparent);
    margin-bottom: 16px;
}

.dayout-activity-list {
    list-style: decimal;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.dayout-activity-list li {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Dashed bottom line inside main card */
.dayout-bottom-dash {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.466) 0px,
            rgba(255, 255, 255, 0.466) 6px,
            transparent 6px,
            transparent 12px);
    -webkit-mask: linear-gradient(to right, white, transparent);
    mask: linear-gradient(to right, white, transparent);
    margin-top: auto;
}

/* ── Package include card ── */
.dayout-include-card {
    position: absolute;
    background: rgba(8, 22, 30, 0.9);
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    /* border-radius: 4px; */
    padding: 24px 28px 28px;
    z-index: 2;
    height: auto;
    min-height: fit-content;
}

.dayout-include-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* border-radius: 8px; */
    padding: 2px;
    background: linear-gradient(315deg, rgba(78, 205, 197, 0.507), rgba(78, 205, 197, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.dayout-include-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.dayout-include-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.466) 0px,
            rgba(255, 255, 255, 0.466) 6px,
            transparent 6px,
            transparent 12px);
    -webkit-mask: linear-gradient(to right, white, transparent);
    mask: linear-gradient(to right, white, transparent);
    margin-bottom: 14px;
}

.dayout-include-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dayout-include-list li {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.dayout-include-list li::before {
    content: '- ';
    color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ── */

/* Tablet — keep overlap but tighter */
@media (max-width: 900px) {
    .dayout-section {
        padding: 64px 32px 80px;
    }

    .dayout-list {
        gap: 80px;
    }

    .dayout-row {
        height: 300px;
    }

    .dayout-row:nth-child(2) {
        margin-top: 0rem;
    }

    /* Odd: main card fills more width */
    .dayout-row:nth-child(odd) .dayout-main-card {
        left: 0;
        width: 72%;
    }

    /* Even: main card shifted right */
    .dayout-row:nth-child(even) .dayout-main-card {
        left: 8%;
        width: 72%;
    }

    /* Include card: narrower, right-aligned, overlaps upward */
    .dayout-row .dayout-include-card {
        width: 52%;
        right: 0;
        top: auto;
        bottom: -24px;
        transform: none;
        height: auto;
        min-height: fit-content;
    }
}

/* Mobile - 800px and below */
@media (max-width: 800px) {
    .dayout-section {
        padding: 52px 16px 64px;
    }

    .dayout-list {
        gap: 100px;
    }

    .dayout-row {
        height: auto;
        min-height: 280px;
        /* Ensure proper stacking context */
        isolation: isolate;
    }

    .dayout-row:nth-child(odd) .dayout-main-card,
    .dayout-row:nth-child(even) .dayout-main-card {
        left: 0;
        width: 78%;
        position: relative;
        z-index: 1;
    }

    .dayout-row:nth-child(even) .dayout-main-card {
        left: 0;
    }

    .dayout-row .dayout-include-card {
        width: 62%;
        right: 0;
        transform: none;
        top: auto;
        position: relative;
        margin-left: auto;
        margin-top: -10%;
        z-index: 2;
        height: auto;
        min-height: fit-content;
    }

    .dayout-pkg-title {
        font-size: 17px;
    }

    .dayout-include-title {
        font-size: 16px;
    }

    .dayout-activity-list li,
    .dayout-include-list li {
        font-size: 12px;
    }
}

/* Very small - 720px and below */
@media (max-width: 720px) {
    .dayout-row {
        height: auto;
        min-height: 260px;
        /* Critical: each row has its own stacking context */
        isolation: isolate;
        z-index: auto;
    }

    /* Ensure rows stack properly - row 2 should be above row 1's include card */
    .dayout-row:nth-child(1) {
        z-index: 1;
    }

    .dayout-row:nth-child(2) {
        z-index: 2;
    }

    .dayout-row:nth-child(3) {
        z-index: 3;
    }

    .dayout-row:nth-child(4) {
        z-index: 4;
    }

    .dayout-row:nth-child(odd) .dayout-main-card,
    .dayout-row:nth-child(even) .dayout-main-card {
        width: 85%;
        left: 0;
        position: relative;
        z-index: 1;
    }

    .dayout-row .dayout-include-card {
        width: 70%;
        position: relative;
        margin-left: auto;
        margin-top: -10%;
        right: 0;
        top: auto;
        bottom: auto;
        transform: none;
        z-index: 2;
        height: auto;
        min-height: fit-content;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .dayout-row .dayout-include-card {
        width: 75%;
        margin-top: -8%;
        height: auto;
        min-height: fit-content;
    }

    .dayout-row:nth-child(odd) .dayout-main-card,
    .dayout-row:nth-child(even) .dayout-main-card {
        width: 90%;
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}



/* ============================================================
   TWO DAY TRIP PACKAGES SECTION
   ============================================================ */

.tdtrip-section {
    width: 100%;
    padding: 80px 72px 100px;
    /* background: linear-gradient(160deg, #071217 0%, #0a1d25 60%, #071217 100%); */
    overflow: hidden;
}

.tdtrip-inner {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.tdtrip-heading-wrap {
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.466), transparent) 1;
}

.tdtrip-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.tdtrip-eyebrow-line {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #4ecdc4);
    flex-shrink: 0;
}

.tdtrip-eyebrow-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #4ecdc4;
    text-transform: uppercase;
}

.tdtrip-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 46px);
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.tdtrip-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.tdtrip-row {
    position: relative;
}

.tdtrip-row:nth-child(odd) .tdtrip-main-card {
    left: 14%;
    width: 58%;
}

.tdtrip-row:nth-child(even) .tdtrip-main-card {
    left: 0;
    width: 58%;
}

.tdtrip-row:nth-child(odd) .tdtrip-include-card {
    right: 0;
}

.tdtrip-row:nth-child(even) .tdtrip-include-card {
    right: 10%;
}

.tdtrip-main-card {
    position: relative;
    background: rgba(8, 22, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    padding: 28px 32px;
    z-index: 1;
}

.tdtrip-main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* border-radius: 8px; */
    padding: 2px;
    background: linear-gradient(143deg, rgba(78, 205, 197, 0.507), rgba(78, 205, 197, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tdtrip-day-titleMain {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.tdtrip-day-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.tdtrip-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.466) 0px,
            rgba(255, 255, 255, 0.466) 6px,
            transparent 6px,
            transparent 12px);
    -webkit-mask: linear-gradient(to right, white, transparent);
    mask: linear-gradient(to right, white, transparent);
    margin-bottom: 14px;
}

.tdtrip-divider2 {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to left,
            rgba(255, 255, 255, 0.466) 0px,
            rgba(255, 255, 255, 0.466) 6px,
            transparent 6px,
            transparent 12px);
    -webkit-mask: linear-gradient(to left, white, transparent);
    mask: linear-gradient(to left, white, transparent);
    margin-bottom: 14px;
}

.tdtrip-day-separator {
    width: 100%;
    height: 1px;
    /* background: rgba(255, 255, 255, 0.10); */
    margin: 20px 0;
}

.tdtrip-day2 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    width: 80%;
}

.tdtrip-day21 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    width: 88%;
}

.tdtrip-activity-list {
    list-style: decimal;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 4px;
}

.tdtrip-activity-list li {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.tdtrip-include-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    background: rgba(8, 22, 30, 0.92);
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    /* border-radius: 4px; */
    padding: 22px 26px 24px;
    z-index: 2;
}

.tdtrip-include-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* border-radius: 8px; */
    padding: 2px;
    background: linear-gradient(315deg, rgba(78, 205, 197, 0.507), rgba(78, 205, 197, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tdtrip-include-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.tdtrip-include-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tdtrip-include-list li {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.tdtrip-include-list li::before {
    content: '- ';
    color: rgba(255, 255, 255, 0.5);
}

.tdtrip-list {
    gap: 150px;
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .tdtrip-section {
        padding: 64px 32px 80px;
    }

    .tdtrip-row:nth-child(odd) .tdtrip-main-card,
    .tdtrip-row:nth-child(even) .tdtrip-main-card {
        left: 0;
        width: 70%;
    }

    .tdtrip-include-card {
        width: 50%;
    }

    .tdtrip-list {
        gap: 150px;
    }

    .tdtrip-day2 {
        width: 70%;
    }

    .tdtrip-day21 {
        width: 55%;
    }

}

@media (max-width: 750px) {
    .tdtrip-section {
        padding: 52px 16px 64px;
    }

    .tdtrip-inner {
        margin-bottom: 0rem;
    }

    .tdtrip-list {
        gap: 70px;
    }

    .tdtrip-row:nth-child(odd) .tdtrip-main-card,
    .tdtrip-row:nth-child(even) .tdtrip-main-card {
        position: relative;
        left: 0;
        width: 84%;
    }

    .tdtrip-row:nth-child(even) .tdtrip-include-card {
        right: 0%;
    }

    .tdtrip-include-card {
        position: relative;
        width: 48%;
        margin-left: auto;
        margin-top: -12%;
        top: auto;
        transform: none;
        right: 0;
        z-index: 2;
    }

    .tdtrip-day2 {
        width: 60%;
    }

    .tdtrip-day21 {
        width: 60%;
    }
}

@media (max-width: 580px) {

    .tdtrip-row:nth-child(odd) .tdtrip-main-card,
    .tdtrip-row:nth-child(even) .tdtrip-main-card {
        width: 92%;
    }

    .tdtrip-include-card {
        width: 80%;
        margin-top: -5%;
    }

    .tdtrip-day2 {
        width: 100%;
        margin-bottom: 10px;
    }

    .tdtrip-day21 {
        width: 100%;
        margin-bottom: 10px;
    }
}



/* ============================================================
   ADDITIONAL DETAILS SECTION
   ============================================================ */

.additional-section {
    width: 100%;
    padding: 80px 72px 100px;
    /* background: linear-gradient(160deg, #071217 0%, #0a1d25 60%, #071217 100%); */
    overflow: hidden;
}

.additional-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-heading-wrap {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.466), transparent) 1;
}

.additional-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.additional-eyebrow-line {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #4ecdc4);
    flex-shrink: 0;
}

.additional-eyebrow-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #4ecdc4;
    text-transform: uppercase;
}

.additional-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 46px);
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.additional-heading .asterisk {
    color: #4ecdc4;
    font-style: italic;
}

.additional-body {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    /* max-width: 920px; */
    text-align: justify;
}

.additional-body strong {
    color: #ffffff;
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .additional-section {
        padding: 64px 32px 80px;
    }
}

@media (max-width: 600px) {
    .additional-section {
        padding: 52px 16px 64px;
    }

    .additional-body {
        font-size: 13px;
    }
}



/* ============================================================
   ACCOMMODATIONS SECTION - MASONRY STYLE
   ============================================================ */

.accom-section {
    width: 100%;
    padding: 80px 72px 100px;
    /* background: linear-gradient(160deg, #071217 0%, #0a1d25 60%, #071217 100%); */
    overflow: hidden;
}

.accom-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.accom-heading-wrap {
    text-align: right;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.466)) 1;
}

.accom-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.accom-eyebrow-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #4ecdc4;
    text-transform: uppercase;
}

.accom-eyebrow-line {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to left, transparent, #4ecdc4);
    flex-shrink: 0;
}

.accom-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 46px);
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.accom-intro {
    text-align: right;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    margin: 0 auto 48px;
}

.accom-intro strong {
    color: #ffffff;
    font-weight: 500;
}

/* ── Photo grid - MASONRY STYLE ── */
.accom-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 0.8fr 1.2fr;
    grid-template-rows: 220px 160px 140px;
    gap: 8px;
}

/* Image 1 - Large left */
.accom-grid .accom-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 3;
}

/* Image 2 - Top middle */
.accom-grid .accom-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Image 3 - Top right-small */
.accom-grid .accom-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

/* Image 4 - Top far right */
.accom-grid .accom-item:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
}

/* Image 5 - Middle wide */
.accom-grid .accom-item:nth-child(5) {
    grid-column: 2 / span 2;
    grid-row: 2;
}

/* Image 6 - Middle right tall */
.accom-grid .accom-item:nth-child(6) {
    grid-column: 4;
    grid-row: 2 / span 2;
}

/* Image 7 - Bottom left */
.accom-grid .accom-item:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
}

/* Image 8 - Bottom middle */
.accom-grid .accom-item:nth-child(8) {
    grid-column: 3;
    grid-row: 3;
}

/* Image 9 - Extra if needed */
.accom-grid .accom-item:nth-child(9) {
    grid-column: 1;
    grid-row: 4;
}

.accom-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.accom-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accom-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(4, 180, 160, 0.18) 0%,
            rgba(5, 15, 20, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.accom-item-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(78, 205, 196, 0.4);
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.accom-zoom-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7) translateY(8px);
    transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
    z-index: 2;
}

.accom-zoom-icon svg {
    width: 16px;
    height: 16px;
    stroke: #4ecdc4;
}

.accom-item:hover img {
    transform: scale(1.07);
}

.accom-item:hover .accom-item-overlay {
    opacity: 1;
}

.accom-item:hover .accom-item-overlay::before {
    opacity: 1;
    transform: scale(1);
}

.accom-item:hover .accom-zoom-icon {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ── Lightbox ── */
.accom-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.accom-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.accom-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 12, 16, 0.93);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.accom-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.88) translateY(16px);
    transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.accom-lightbox.active .accom-lightbox-content {
    transform: scale(1) translateY(0);
}

.accom-lightbox-content img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
    display: block;
}

.accom-lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(78, 205, 196, 0.45);
    border-radius: 50%;
    background: rgba(8, 22, 30, 0.8);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, background 0.25s;
}

.accom-lightbox-close:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.12);
    color: #4ecdc4;
}

.accom-lightbox-close svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.accom-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(78, 205, 196, 0.35);
    border-radius: 50%;
    background: rgba(8, 22, 30, 0.75);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
    z-index: 3;
}

.accom-lightbox-nav:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.12);
    color: #4ecdc4;
}

.accom-lightbox-nav svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.accom-lightbox-prev {
    left: -64px;
}

.accom-lightbox-next {
    right: -64px;
}

.accom-lightbox-counter {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .accom-section {
        padding: 64px 32px 80px;
    }

    .accom-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 140px);
        gap: 8px;
    }

    .accom-grid .accom-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 3;
    }

    .accom-grid .accom-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .accom-grid .accom-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .accom-grid .accom-item:nth-child(4) {
        grid-column: 2;
        grid-row: 3;
    }

    .accom-grid .accom-item:nth-child(5) {
        grid-column: 1 / span 2;
        grid-row: 4;
    }

    .accom-grid .accom-item:nth-child(6) {
        grid-column: 1;
        grid-row: 5;
    }

    .accom-grid .accom-item:nth-child(7) {
        grid-column: 2;
        grid-row: 5;
    }

    .accom-grid .accom-item:nth-child(8) {
        display: none;
    }

    .accom-grid .accom-item:nth-child(9) {
        display: none;
    }

    .accom-lightbox-prev {
        left: -48px;
    }

    .accom-lightbox-next {
        right: -48px;
    }
}

@media (max-width: 600px) {
    .accom-section {
        padding: 52px 16px 64px;
    }

    .accom-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 6px;
    }

    .accom-grid .accom-item:nth-child(1) {
        grid-column: 1;
        grid-row: auto;
    }

    .accom-grid .accom-item:nth-child(2) {
        grid-column: 1;
        grid-row: auto;
    }

    .accom-grid .accom-item:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }

    .accom-grid .accom-item:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }

    .accom-grid .accom-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .accom-grid .accom-item:nth-child(6) {
        grid-column: 1;
        grid-row: auto;
    }

    .accom-grid .accom-item:nth-child(7) {
        grid-column: 1;
        grid-row: auto;
    }

    .accom-grid .accom-item:nth-child(8) {
        display: none;
    }

    .accom-grid .accom-item:nth-child(9) {
        display: none;
    }

    .accom-intro {
        font-size: 13px;
    }

    .accom-lightbox-prev {
        left: 8px;
    }

    .accom-lightbox-next {
        right: 8px;
    }

    .accom-lightbox-nav {
        top: auto;
        bottom: -60px;
        transform: none;
    }
}

.location-link {
    text-decoration: none;
    display: block; /* <li> eka full width clickable */
}

.location-link li {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease, padding-left 0.25s ease;
    cursor: pointer;
    position: relative;
}

.location-link li::after {
    content: ' ↗';
    font-size: 11px;
    opacity: 0;
    color: #4ecdc4;
    transition: opacity 0.25s ease;
}

.location-link:hover li {
    color: #4ecdc4;
    padding-left: 4px;
}

.location-link:hover li::after {
    opacity: 1;
}