/* ===== Brand Gradient & Colors =====
   Gradient: #4e1a3d → #8d7bb0 → #4e1a3d
*/
:root {
    --brand-primary: #8d7bb0;
    /* accent within gradient brand */
    --brand-dark: #2a2232;
    /* headings & footer text */
    --brand-text: #3f3846;
    /* body */
    --brand-bg: #ffffff;
    /* page */
    --brand-soft: #f6f3f9;
    /* alt section bg */
    --brand-border: #e9e2ef;
    /* borders */
    --brand-grad: linear-gradient(120deg, #4e1a3d, #8d7bb0 55%, #4e1a3d);
    --brand-grad-vert: linear-gradient(180deg, rgba(78, 26, 61, .90), rgba(141, 123, 176, .70), rgba(78, 26, 61, .90));
}


/* Hero */
.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    color: #fff;
    background: #201122 center/cover no-repeat;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand-grad-vert);
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10vh 0 12vh;
}

.hero h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: #fff;
}

.hero-sub {
    margin-top: .5rem;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    opacity: .98;
}

.hero-ctas {
    margin-top: 1.25rem;
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-row {
    margin-top: 1.25rem;
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: .4rem .6rem;
    border-radius: 999px;
    font-weight: 600;
}

.scroll-cue {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 2rem 0;
}

.padding-xl {
    padding: 4.5rem 0;
}

.padding-lg {
    padding: 3rem 0;
}

.section-alt {
    background: var(--brand-soft);
}

.section-head p {
    color: #6b6272;
}

/* Feature grid */
.feature-grid {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    padding: 1.1rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(42, 34, 50, .10);
}

.icon-circle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-grad);
    color: #fff;
    margin-bottom: .6rem;
}

/* Cards (Rooms) */
.cards-grid {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.2rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.room-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(42, 34, 50, .12);
}

.room-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.room-body {
    padding: 1rem;
}

.chip-row {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin: .4rem 0 .6rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: .30rem .55rem;
    border-radius: 999px;
    font-size: .85rem;
    background: #efe9f6;
    color: #4e1a3d;
}

/* Split */
.split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.2rem;
    align-items: center;
}

@media (max-width: 980px) {
    .split {
        grid-template-columns: 1fr;
    }
}

.split-media iframe,
.split-media img {
    width: 100%;
    aspect-ratio: 16/10;
    border: 0;
    border-radius: 16px;
}

/* Slider (Guest Reviews) */
.slider {
    position: relative;
}

.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.slide {
    background: #fff;
    border: 1px solid var(--brand-border);
    padding: 1.25rem;
    min-height: 120px;
    display: grid;
    align-content: center;
}

.slide footer {
    margin-top: .6rem;
    color: #666;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--brand-border);
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-nav.prev {
    left: -12px;
}

.slider-nav.next {
    right: -12px;
}

@media (max-width: 560px) {
    .slider-nav.prev {
        left: 4px;
    }

    .slider-nav.next {
        right: 4px;
    }
}

/* Gallery strip */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .6rem;
    align-items: stretch;
}

.gallery-strip img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

/* CTA bar */
.cta-bar {
    background: var(--brand-grad);
    color: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
}

.cta-inner h2 {
    color: #fff;
}

@media (max-width: 640px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}
.gallery-grid {
    display: flex;
    gap: 16px; 
    flex-wrap: nowrap; 
    justify-content: center; 
    align-items: flex-start;
}

.gallery-grid a img {
    width: 100%; 
    height: auto;
    max-width: 250px; 
}
/* New CSS */
 .gallery-grid{
      display:grid; gap:.6rem;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 1100px){ .gallery-grid{ grid-template-columns: repeat(3,1fr);} }
    @media (max-width: 760px){ .gallery-grid{ grid-template-columns: repeat(2,1fr);} }
    @media (max-width: 480px){ .gallery-grid{ grid-template-columns: 1fr;} }

    .gallery-grid a{
      display:block; border-radius:12px; overflow:hidden; border:1px solid var(--brand-border);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .gallery-grid a:hover{ transform: translateY(-2px); box-shadow:0 12px 24px rgba(42,34,50,.10); }
    .gallery-grid img{ width:100%; height:210px; object-fit:cover; display:block; }

    /* CSS-only lightbox via :target */
    .lightbox{
      position: fixed; inset:0; background: rgba(0,0,0,.85);
      display:none; align-items:center; justify-content:center; z-index:90; padding:2rem;
    }
    .lightbox img{ max-width:min(96vw,1400px); max-height:86vh; border-radius:16px; display:block; }
    .lightbox:target{ display:flex; }
    .lightbox .close{
      position: fixed; top:16px; right:16px; background:#fff; color:#000; border-radius:999px;
      width:40px; height:40px; display:grid; place-items:center; text-decoration:none; font-weight:700;
      border:1px solid #ddd;
    }
    .gallery-head{
      display:flex; align-items:center; justify-content:space-between; gap:.8rem; flex-wrap:wrap;
    }
    .gallery-filter{
      display:flex; gap:.4rem; flex-wrap:wrap;
    }
    .gallery-filter a{
      display:inline-flex; padding:.45rem .7rem; border-radius:999px; border:1px solid var(--brand-border);
      text-decoration:none; color:var(--brand-dark); background:#fff;
    }
    .gallery-filter a:hover{ background:var(--brand-soft); }
    .anchor-spacer{ position: relative; top: -80px; visibility: hidden; } /* for sticky header offset */

