/* ================================================================
   THE BEACH HOUSE — style.css
   Font: Poppins (body) + Cormorant Garamond (display)
   ================================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root{
    --brown:      #4b3128;
    --brown-dark: #2e1a10;
    --gold:       #c89b52;
    --gold-light: #e8c98a;
    --cream:      #faf8f4;
    --cream-2:    #f4ede3;
    --teal:       #5e8c82;
    --teal-light: #a8cbc4;
    --terra:      #d97d56;
    --muted:      #776a63;
    --white:      #ffffff;

    --nav-h:      78px;
    --transition: .35s cubic-bezier(.23,1,.32,1);
    --shadow-card: 0 20px 55px rgba(75,49,40,.10);
    --radius-lg:  24px;
    --radius-md:  16px;
    --radius-sm:  10px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
/* html{ scroll-behavior:smooth; }
html:not(.aos-ready) [data-aos] {
    visibility: hidden;
}

.aos-animate {
    visibility: visible;
} */
html, body{
    -webkit-text-size-adjust:100%;
    overflow-x:hidden;
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

.aos-animate {
    opacity: 1 !important;
}
body{
    font-family:'Poppins', sans-serif;
    font-size:16px;
    color:var(--brown);
    background:var(--cream);
    line-height:1.7;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Cormorant Garamond', serif;
    line-height:1.1;
    color:var(--brown);
}

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
ul{ list-style:none; padding:0; margin:0; }


/* ── Utility ────────────────────────────────────────────────── */
.section-gap{ padding:110px 0; }
.bg-cream{ background:var(--cream-2); }

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--gold);
    font-family:'Poppins', sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:14px;
}
.eyebrow::before{
    content:'';
    display:inline-block;
    width:28px; height:2px;
    background:var(--gold);
    flex-shrink:0;
}
.eyebrow--light{ color:var(--gold-light); }
.eyebrow--light::before{ background:var(--gold-light); }

.section-title{
    font-size:clamp(2.1rem,4vw,3rem);
    font-weight:600;
    color:var(--brown);
    margin-bottom:18px;
    letter-spacing:-.5px;
}

.section-text{
    color:var(--muted);
    font-size:15.5px;
    line-height:1.85;
    font-family:'Poppins', sans-serif;
}

.section-head{ margin-bottom:55px; }

.link-arrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--gold);
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    border-bottom:2px solid var(--gold);
    padding-bottom:2px;
    transition:var(--transition);
}
.link-arrow:hover{ gap:14px; color:var(--brown); border-color:var(--brown); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes kenburns{
    from{ transform:scale(1);    }
    to  { transform:scale(1.10); }
}
@keyframes fadeUp{
    from{ opacity:0; transform:translateY(30px); }
    to  { opacity:1; transform:translateY(0);    }
}
@keyframes scrollWheel{
    0%  { opacity:1; transform:translateY(0);   }
    100%{ opacity:0; transform:translateY(10px); }
}
@keyframes heroDotsFloat{
    0%,100%{ transform:translateY(0)   rotate(0deg);   }
    50%    { transform:translateY(-20px) rotate(180deg); }
}
@media(prefers-reduced-motion:reduce){
    *,*::before,*::after{ animation:none !important; transition:none !important; }
}

/* ============================================================
   PREMIUM LOGO PRELOADER
============================================================ */

.premium-preloader{
    position:fixed;
    inset:0;
    width:100%;
    height:100dvh;
    background:
        radial-gradient(circle at center, rgba(200,155,82,.16), transparent 35%),
        #fdfdfd;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:opacity .35s ease, visibility .35s ease;
}

.premium-preloader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.preloader-inner{
    text-align:center;
    width:min(92vw, 760px);
    padding:20px;
}

.preloader-logo{
    width:min(78vw, 620px);
    height:auto;
    margin:0 auto;
    object-fit:contain;
    /* filter:
        brightness(1.18)
        contrast(1.16)
        saturate(1.18)
        drop-shadow(0 0 22px rgba(232,201,138,.32)); */
   animation:logoReveal .6s ease forwards;
}

.preloader-line{
    position:relative;
    width:min(55vw, 360px);
    height:3px;
    background:rgba(255,255,255,.18);
    margin:34px auto 16px;
    border-radius:30px;
    overflow:hidden;
}

.preloader-line span{
    position:absolute;
    top:0;
    left:-40%;
    width:40%;
    height:100%;
    border-radius:30px;
    /* background:linear-gradient(90deg, transparent, #e8c98a, #c89b52, transparent); */
    animation:loadingLine 1.4s ease-in-out infinite;
}

.preloader-text{
    font-family:'Poppins', sans-serif;
    font-size:12px;
    font-weight:600;
    letter-spacing:7px;
    text-transform:uppercase;
    color:#e8c98a;
    margin:0;
    animation:textFade 1.5s ease-in-out infinite alternate;
}

@keyframes logoReveal{
    from{
        opacity:0;
        transform:scale(.88) translateY(18px);
    }
    to{
        opacity:1;
        transform:scale(1) translateY(0);
    }
}
/* 
@keyframes logoGlow{
    from{
        filter:brightness(1.1) contrast(1.08) saturate(1.1)
               drop-shadow(0 0 14px rgba(232,201,138,.22));
    }
    to{
        filter:brightness(1.24) contrast(1.18) saturate(1.2)
               drop-shadow(0 0 34px rgba(232,201,138,.48));
    }
} */

@keyframes loadingLine{
    0%{ left:-45%; }
    100%{ left:105%; }
}

@keyframes textFade{
    from{ opacity:.45; }
    to{ opacity:1; }
}

@media(max-width:991px){
    .preloader-logo{
        width:min(82vw, 520px);
    }
}

@media(max-width:576px){
    .preloader-logo{
        width:92vw;
    }

    .preloader-line{
        width:68vw;
        margin-top:24px;
    }

    .preloader-text{
        font-size:10px;
        letter-spacing:5px;
    }
}

/* ================================================================
   NAVBAR - FULLY RESPONSIVE
================================================================ */
:root {
    --nav-h: 96px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-nav {
    width: 100%;
    padding: 0 24px;
    transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
    background: transparent;
}

/* Transparent on top of hero */
.main-nav .nav-link {
    color: #fff;
}
.main-nav .nav-book-btn {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* Scrolled — brown background */
.main-nav.nav-scrolled {
    background: #4b3128;
    box-shadow: 0 4px 30px rgba(75, 49, 40, .10);
    padding-top: 4px;
    padding-bottom: 4px;
}
.main-nav.nav-scrolled .nav-link {
    color: #ffc107db;
}
.main-nav.nav-scrolled .nav-link:hover {
    color: var(--gold);
}
.main-nav.nav-scrolled .nav-brand img {
    filter: none;
}
.main-nav.nav-scrolled .hamburger span {
    background: var(--gold-light);
}

/* ── Logo container ── */
.nav-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo {
    height: 90px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: height .3s ease;
    display: block;
}

.main-nav.nav-scrolled .nav-logo {
    height: 68px;
}

/* ── Hamburger (mobile) ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    transition: all .3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all .35s cubic-bezier(.23, 1, .32, 1);
    transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.main-nav.nav-scrolled .hamburger {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.main-nav.nav-scrolled .hamburger span {
    background: var(--gold-light);
}

/* ── Nav links (horizontal row below logo) ── */
.nav-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 8px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.main-nav.nav-scrolled .nav-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: color .3s;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width .35s cubic-bezier(.23, 1, .32, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ── Book Now button in nav ── */
.nav-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--gold), #b8832e);
    color: #fff;
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(200, 155, 82, .35);
    margin-left: 8px;
    white-space: nowrap;
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 155, 82, .5);
    color: #fff;
}

/* ================================================================
   NAVBAR - RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ── Large Desktop (1200px+) ── */
@media (min-width: 1200px) {
    .nav-logo {
        height: 100px;
        max-width: 280px;
    }
    .main-nav.nav-scrolled .nav-logo {
        height: 72px;
    }
    .nav-bottom {
        gap: 40px;
    }
    .nav-link {
        font-size: 16px;
    }
}

/* ── Desktop (992px - 1199px) ── */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-logo {
        height: 85px;
        max-width: 220px;
    }
    .main-nav.nav-scrolled .nav-logo {
        height: 65px;
    }
    .nav-bottom {
        gap: 28px;
    }
    .nav-link {
        font-size: 14px;
    }
    .nav-book-btn {
        padding: 7px 18px;
        font-size: 12px;
    }
}

/* ── Tablet (768px - 991px) ── */
@media (max-width: 991px) {
    :root {
        --nav-h: 80px;
    }

    .main-nav {
        padding: 10px 16px 0;
    }

    .nav-logo {
        height: 65px;
        max-width: 170px;
    }

    .main-nav.nav-scrolled .nav-logo {
        height: 52px;
    }

    /* Hide nav links on tablet, show hamburger */
    .nav-bottom {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        width: 38px;
        height: 38px;
        padding: 7px;
    }

    .hamburger span {
        width: 20px;
        height: 2.5px;
    }

    .hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Center logo on tablet */
    .nav-top {
        justify-content: center;
        padding-bottom: 8px;
    }

    /* Scrolled state */
    .main-nav.nav-scrolled .hamburger {
        background: rgba(255, 255, 255, 0.08);
    }
}

/* ── Mobile (576px - 767px) ── */
@media (max-width: 767px) {
    :root {
        --nav-h: 72px;
    }

    .main-nav {
        padding: 8px 12px 0;
    }

    .nav-logo {
        height: 55px;
        max-width: 145px;
    }

    .main-nav.nav-scrolled .nav-logo {
        height: 45px;
    }

    .hamburger {
        width: 36px;
        height: 36px;
        padding: 6px;
        gap: 4px;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .hamburger.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-top {
        padding-bottom: 6px;
    }
}

/* ── Small phones (375px - 575px) ── */
@media (max-width: 575px) {
    :root {
        --nav-h: 64px;
    }

    .main-nav {
        padding: 6px 10px 0;
    }

    .nav-logo {
        height: 48px;
        max-width: 130px;
    }

    .main-nav.nav-scrolled .nav-logo {
        height: 40px;
    }

    .hamburger {
        width: 34px;
        height: 34px;
        padding: 5px;
        gap: 3.5px;
        border-radius: 8px;
    }

    .hamburger span {
        width: 17px;
        height: 2px;
    }

    .hamburger.is-open span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }
    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    .nav-top {
        padding-bottom: 4px;
    }
}

/* ── iPhone SE / very small (≤374px) ── */
@media (max-width: 374px) {
    :root {
        --nav-h: 58px;
    }

    .main-nav {
        padding: 4px 8px 0;
    }

    .nav-logo {
        height: 42px;
        max-width: 110px;
    }

    .main-nav.nav-scrolled .nav-logo {
        height: 36px;
    }

    .hamburger {
        width: 30px;
        height: 30px;
        padding: 4px;
        gap: 3px;
        border-radius: 6px;
    }

    .hamburger span {
        width: 15px;
        height: 1.8px;
    }

    .hamburger.is-open span:nth-child(1) {
        transform: translateY(4.8px) rotate(45deg);
    }
    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-4.8px) rotate(-45deg);
    }
}

/* ── Galaxy Fold / very narrow (≤280px) ── */
@media (max-width: 280px) {
    :root {
        --nav-h: 52px;
    }

    .main-nav {
        padding: 3px 6px 0;
    }

    .nav-logo {
        height: 36px;
        max-width: 90px;
    }

    .main-nav.nav-scrolled .nav-logo {
        height: 30px;
    }

    .hamburger {
        width: 26px;
        height: 26px;
        padding: 3px;
        gap: 2.5px;
        border-radius: 5px;
    }

    .hamburger span {
        width: 13px;
        height: 1.5px;
    }

    .hamburger.is-open span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg);
    }
}

/* ===== LOGO SIZE FIX ===== */
.nav-brand{
    display:flex;
    align-items:center;
    min-width:190px;
}

.nav-container{
    height:92px;
}

.main-nav.nav-scrolled .nav-container{
    height:72px;
}

.main-nav.nav-scrolled .nav-logo{
    height:68px;
}

@media(max-width:991px){
    .nav-brand{ min-width:auto; }
    .nav-container{ height:82px; }
    .nav-logo{ height:72px; max-width:160px; }
    .mobile-logo{ height:72px; width:auto; object-fit:contain; }
}

@media(max-width:576px){
    .nav-logo{ height:64px; max-width:145px; }
    .mobile-logo{ height:64px; }
}


/* Hamburger */
/* ALWAYS AVAILABLE (DEFAULT SAFETY) */
.hamburger{
    display:flex !important;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:36px;
    height:36px;
    background:none;
    border:none;
    cursor:pointer;
    padding:4px;
    z-index:99999;
}

/* Desktop still hides nav links ONLY */
@media(min-width:992px){
    .hamburger{
        display:none !important;
    }
}
.hamburger span{
    display:block;
    width:100%; height:2px;
    background:#fff;
     transition: 0.3s ease;
    border-radius:2px;
    transition:.35s cubic-bezier(.23,1,.32,1);
    transform-origin:center;
}

.hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(30,15,8,.55);
    backdrop-filter:blur(4px);
    z-index:1100;
    opacity:0;
    pointer-events:none;
    transition:.4s ease;
}
.mobile-menu-overlay.is-open{ opacity:1; pointer-events:all; }

.mobile-menu{
    position:fixed;
    top:0; right:0;
    width:min(360px,90vw);
    height:100dvh;
    background:var(--cream);
    z-index:1200;
    transform:translateX(100%);
    transition:.45s cubic-bezier(.23,1,.32,1);
    display:flex;
    flex-direction:column;
    overflow-y:auto;
}
.mobile-menu.is-open{ transform:translateX(0); }

.mobile-menu-inner{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:28px 32px 40px;
}

.mobile-menu-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:40px;
}
.mobile-logo{ height:44px; }

.mobile-close{
    width:38px; height:38px;
    border-radius:50%;
    border:1.5px solid rgba(75,49,40,.2);
    background:none;
    color:var(--brown);
    font-size:17px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}
.mobile-close:hover{ background:var(--brown); color:#fff; }

.mobile-nav{
    display:flex;
    flex-direction:column;
    flex:1;
}
.mobile-nav-link{
    font-family:'Poppins', sans-serif;
    font-size:1.25rem;
    font-weight:600;
    color:var(--brown);
    padding:14px 0;
    border-bottom:1px solid rgba(75,49,40,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:color .3s, padding-left .3s;
}
.mobile-nav-link::after{
    content:'\f054';
    font-family:'Font Awesome 6 Free';
    font-weight:900;
    font-size:12px;
    color:var(--gold);
    opacity:0;
    transition:.3s;
}
.mobile-nav-link:hover{ color:var(--gold); padding-left:8px; }
.mobile-nav-link:hover::after{ opacity:1; }

.mobile-menu-footer{
    margin-top:36px;
}
.mobile-book-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg, var(--gold), #b8832e);
    color:#fff;
    padding:15px 24px;
    border-radius:50px;
    font-weight:700;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    transition:var(--transition);
    box-shadow:0 8px 24px rgba(200,155,82,.35);
}
.mobile-book-btn:hover{ transform:translateY(-3px); box-shadow:0 14px 32px rgba(200,155,82,.45); color:#fff; }

.mobile-contact-info{
    margin-top:20px;
    text-align:center;
}
.mobile-contact-info a{
    color:var(--muted);
    font-size:14px;
    font-family:'Poppins',sans-serif;
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.mobile-contact-info a:hover{ color:var(--gold); }


/* ============================================================
   HERO — TWO-COLUMN LAYOUT + BOOKING CARD
============================================================ */

/* Override hero-container to be a flex row */
.hero-container {
    justify-content: center !important;
}

.hero-two-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

/* Left column keeps existing styles, just constrain width */
.hero-two-col .hero-content {
    flex: 1 1 0;
    max-width: 580px;
}

/* ── Booking Card ─────────────────────────────────────────── */
.hero-booking-card {
    flex: 0 0 520px;
    width: 520px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 32px;
    padding: 42px 40px 34px;
    box-shadow:
        0 35px 90px rgba(20, 10, 5, 0.45),
        inset 0 1px 0 rgba(255,255,255,.35);
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Header */
.hbc-header {
    text-align: center;
    margin-bottom: 26px;
    padding-bottom: 22px;
     border-bottom: 1px solid rgba(255,255,255,.25);
}
.hbc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}

/* Form layout */
.hbc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hbc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Label */
.hbc-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;;
    margin-bottom: 8px;
}
.hbc-label span { color: #c89b52; }

/* Date input */
.hbc-input-wrap {
    position: relative;
}
.hbc-input {
    width: 100%;
    height: 50px;
    border: 1.5px solid rgba(75, 49, 40, 0.15);
    border-radius: 12px;
    background: #f9f5ef;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #4b3128;
    padding: 0 40px 0 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .3s, box-shadow .3s, background .3s;
    outline: none;
}
.hbc-input:focus,
.hbc-input:hover {
    border-color: #c89b52;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200, 155, 82, 0.12);
}
/* hide native calendar icon on webkit */
.hbc-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 40px;
    height: 100%;
    cursor: pointer;
}
.hbc-input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #c89b52;
    font-size: 14px;
    pointer-events: none;
    transition: color .3s;
}
.hbc-input-wrap:focus-within .hbc-input-icon { color: #4b3128; }

/* Select */
.hbc-select-wrap {
    position: relative;
}
.hbc-select {
    width: 100%;
    height: 50px;
     border: 1px solid rgba(255,255,255,.5);
    border-radius: 12px;
     background: rgba(255,255,255,.78);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4b3128;
    padding: 0 40px 0 14px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color .3s, box-shadow .3s, background .3s;
}
.hbc-select:focus,
.hbc-select:hover {
    border-color: #c89b52;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200, 155, 82, 0.12);
}
.hbc-select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #c89b52;
    font-size: 11px;
    pointer-events: none;
    transition: transform .3s;
}
.hbc-select-wrap:focus-within .hbc-select-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Submit button */
.hbc-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #c89b52, #b8832e);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: all .4s cubic-bezier(.23,1,.32,1);
    box-shadow: 0 10px 30px rgba(200, 155, 82, 0.45);
    position: relative;
    overflow: hidden;
}
.hbc-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg);
    opacity: 0;
    transition: opacity .4s ease;
}
.hbc-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(200, 155, 82, 0.55);
}
.hbc-submit:hover::before { opacity: 1; }
.hbc-submit span,
.hbc-submit .hbc-submit-icon {
    position: relative;
    z-index: 1;
}
.hbc-submit-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    transition: transform .35s cubic-bezier(.23,1,.32,1), background .3s;
}
.hbc-submit:hover .hbc-submit-icon {
    transform: translateX(4px);
    background: rgba(255,255,255,.3);
}

/* Trust strip */
.hbc-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.hbc-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}
.hbc-trust-item i { color: #c89b52; font-size: 11px; }
.hbc-trust-dot {
    color: rgba(75,49,40,.25);
    font-size: 14px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1199px) {
    .hero-booking-card {
        flex: 0 0 460px;
        width: 460px;
        padding: 34px 30px 28px;
    }
    .hero-two-col { gap: 32px; }
}
@media (max-width: 991px) {
    /* Stack vertically on tablet/mobile */
    .hero-two-col {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .hero-two-col .hero-content { max-width: 100%; }
     .hero-booking-card {
        flex: none;
        width: 100%;
        max-width: 520px;
    }
}
@media (max-width: 575px) {
    .hero-booking-card { padding: 24px 18px 20px; border-radius: 18px; }
    .hbc-row { grid-template-columns: 1fr; gap: 0; }
    .hbc-title { font-size: 1.45rem; }
}
/* ================================================================
   HERO SECTION
================================================================ */
.hero-section{
    position:relative;
    min-height:100dvh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Slider */
.hero-slider{ position:absolute; inset:0; z-index:0; }
.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease;
    animation:kenburns 20s ease-in-out infinite alternate;
}
.hero-slide.active{ opacity:1; }

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(linear-gradient(175deg, #e1af18c9 0%, #4b3128c2 50%, #14120ecc 100% 100%));
}

/* Floating dots */
.hero-dots{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}
.hero-dots span{
    position:absolute;
    border-radius:50%;
    background:rgba(200,155,82,.25);
    animation:heroDotsFloat 8s ease-in-out infinite;
}
.hero-dots span:nth-child(1){ width:180px; height:180px; top:10%; left:75%; animation-delay:0s; }
.hero-dots span:nth-child(2){ width:80px;  height:80px;  top:65%; left:80%; animation-delay:1.5s; }
.hero-dots span:nth-child(3){ width:50px;  height:50px;  top:30%; left:88%; animation-delay:3s; }
.hero-dots span:nth-child(4){ width:120px; height:120px; top:75%; left:5%;  animation-delay:2s; }
.hero-dots span:nth-child(5){ width:40px;  height:40px;  top:55%; left:15%; animation-delay:.8s; }
.hero-dots span:nth-child(6){ width:70px;  height:70px;  top:20%; left:5%;  animation-delay:4s; }

.hero-container{
    position:relative;
    z-index:2;
    padding-top:var(--nav-h);
    display:flex;
    flex-direction:column;
    min-height:110dvh;
    justify-content:center;
    padding-bottom:80px;
}

.hero-content{ max-width:680px; }

.hero-eyebrow{
    display:inline-block;
    color:var(--gold-light);
    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:22px;
    position:relative;
    padding-left:44px;
}
.hero-eyebrow::before{
    content:'';
    position:absolute;
    left:0; top:50%;
    width:32px; height:2px;
    background:var(--gold-light);
    transform:translateY(-50%);
}

.hero-heading{
    font-family:'Cormorant Garamond', serif;
    font-size:clamp(3.4rem,7.5vw,6.2rem);
    font-weight:700;
    color:#fff;
    line-height:1.02;
    margin-bottom:24px;
    letter-spacing:-1px;
}
.hero-heading em{
    font-style:italic;
    color:var(--gold-light);
}

.hero-body{
    font-family:'Poppins',sans-serif;
    color:rgba(255,255,255,.80);
    font-size:16px;
    line-height:1.85;
    margin-bottom:36px;
    max-width:500px;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary-hero{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg, var(--gold), #b8832e);
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:14.5px;
    letter-spacing:.3px;
    transition:var(--transition);
    box-shadow:0 10px 30px rgba(200,155,82,.45);
}
.btn-primary-hero:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(200,155,82,.55);
    color:#fff;
}

.btn-ghost-hero{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    font-size:14.5px;
    border:1.5px solid rgba(255,255,255,.45);
    padding:14px 28px;
    border-radius:50px;
    transition:var(--transition);
    backdrop-filter:blur(4px);
}
.btn-ghost-hero:hover{
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.8);
    color:#fff;
    transform:translateY(-2px);
}

/* Slide indicators */
.hero-indicators{
    display:flex;
    gap:10px;
    margin-top:48px;
}
.hero-dot{
    width:8px; height:8px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,.35);
    cursor:pointer;
    padding:0;
    transition:.4s;
}
.hero-dot.active{
    background:var(--gold);
    width:28px;
    border-radius:4px;
}

/* Scroll cue */
.hero-scroll-cue{
    position:absolute;
    bottom:32px;
    left:50%;
    transform:translateX(-50%);
    z-index:3;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
}
.scroll-mouse{
    width:22px; height:36px;
    border:2px solid rgba(255,255,255,.55);
    border-radius:11px;
    display:flex;
    justify-content:center;
    padding-top:6px;
}
.scroll-wheel{
    width:3px; height:8px;
    background:var(--gold-light);
    border-radius:2px;
    animation:scrollWheel 1.6s ease infinite;
}

/* ================================================================
   INFO BAR
================================================================ */
.info-bar{
    background:var(--brown);
    padding:16px 0;
}
.info-bar-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:0;
}
.info-bar-item{
    display:flex;
    align-items:center;
    gap:9px;
    padding:8px 28px;
    color:rgba(230,217,205,.85);
    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:500;
}
.info-bar-item i{ color:var(--gold-light); font-size:14px; }
.info-bar-item a{ color:rgba(230,217,205,.85); transition:.3s; }
.info-bar-item a:hover{ color:var(--gold-light); }
.info-bar-divider{
    width:1px; height:30px;
    background:rgba(255,255,255,.15);
    flex-shrink:0;
}


/* ================================================================
   How TO REACH
================================================================ */
/* ================================================================
   HOW TO REACH
================================================================ */
.reach-section{
    padding:70px 0;
    background:
        radial-gradient(circle at 90% 15%, rgba(200,155,82,.12), transparent 28%),
        #f4ede3;
}

.reach-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.reach-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 18px 45px rgba(75,49,40,.09);
    border:1px solid rgba(200,155,82,.16);
    transition:.35s ease;
}

.reach-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 65px rgba(75,49,40,.16);
}

.reach-card-img{
    height:170px;
    position:relative;
    overflow:hidden;
}

.reach-card-img::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, transparent 85%, #fff 400%);
}

.reach-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.55s ease;
}

.reach-card:hover .reach-card-img img{
    transform:scale(1.08);
}

.reach-card-body{
    position:relative;
    padding:0 24px 30px;
    margin-top:-28px;
    z-index:2;
}

.reach-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f8ead0;
    color:#4b3128;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin:0 auto 18px;
    box-shadow:0 10px 25px rgba(200,155,82,.22);
}

.reach-card h4{
    font-family:'Poppins',sans-serif;
    font-size:18px;
    font-weight:700;
    color:#4b3128;
    margin-bottom:10px;
}

.reach-card p{
    font-size:14px;
    color:#776a63;
    line-height:1.7;
    margin:0;
}

.reach-map-box{
    margin-top:40px;
    text-align:center;
}

.reach-map-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg,#4b3128,#2e1a10);
    color:#fff;
    padding:15px 36px;
    border-radius:50px;
    font-weight:700;
    font-size:14px;
    transition:.35s ease;
    box-shadow:0 14px 35px rgba(75,49,40,.18);
}

.reach-map-link i{
    color:#e8c98a;
}

.reach-map-link:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 45px rgba(75,49,40,.28);
}

@media(max-width:1199px){
    .reach-card-img{
        height:150px;
    }
}

@media(max-width:991px){
    .reach-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .reach-card-img{
        height:190px;
    }
}

@media(max-width:576px){
    .reach-section{
        padding:60px 0;
    }

    .reach-grid{
        grid-template-columns:1fr;
    }

    .reach-card-img{
        height:210px;
    }

    .reach-card-body{
        padding:0 20px 26px;
    }

    .reach-map-link{
        width:100%;
        padding:14px 22px;
        font-size:13px;
    }
}
/* ================================================================
   HOME ABOUT
================================================================ */
/* .home-about{} */

.about-collage{
    position:relative;
    height:540px;
}
.collage-main{
    width:80%;
    height:100%;
    object-fit:cover;
    border-radius:var(--radius-lg);
    box-shadow:0 30px 70px rgba(75,49,40,.18);
    transition:transform .6s cubic-bezier(.23,1,.32,1), box-shadow .6s;
}
.about-collage:hover .collage-main{
    transform:scale(1.03) rotate(-1deg);
    box-shadow:0 40px 90px rgba(75,49,40,.22);
}
.collage-mini{
    position:absolute;
    right:0; bottom:0;
    width:44%; height:50%;
    object-fit:cover;
    border-radius:var(--radius-md);
    border:5px solid var(--cream);
    box-shadow:0 20px 50px rgba(75,49,40,.14);
    transition:transform .6s cubic-bezier(.23,1,.32,1) .1s;
}
.about-collage:hover .collage-mini{
    transform:scale(1.05) rotate(2deg) translateY(-8px);
}
.collage-badge{
    position:absolute;
    top:28px; right:0;
    background:linear-gradient(135deg, var(--gold), var(--terra));
    color:#fff;
    padding:18px 20px;
    border-radius:var(--radius-md);
    text-align:center;
    font-family:'Poppins',sans-serif;
    font-size:12.5px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(200,155,82,.4);
    z-index:2;
}
.collage-badge i{ font-size:20px; margin-bottom:7px; display:block; }

.collage-float-tag{
    position:absolute;
    bottom:52%;
    right:-12px;
    background:#fff;
    border-left:3px solid var(--gold);
    padding:10px 18px;
    border-radius:0 10px 10px 0;
    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:700;
    color:var(--brown);
    box-shadow:0 8px 24px rgba(75,49,40,.13);
    display:flex;
    align-items:center;
    gap:7px;
    z-index:2;
}
.collage-float-tag i{ color:var(--gold); }

/* Mini stats */
.mini-stats{
    display:flex;
    align-items:center;
    gap:28px;
    margin-top:32px;
    padding:22px 28px;
    background:#fff;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-card);
    width:fit-content;
}
.mini-stat{
    text-align:center;
}
.mini-stat strong{
    display:block;
    font-family:'Poppins',serif;
    font-size:2.2rem;
    font-weight:700;
    color:var(--gold);
    line-height:1;
}
.mini-stat span{
    font-family:'Poppins',sans-serif;
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--muted);
    display:block;
    margin-top:4px;
}
.mini-stat-divider{
    width:1px; height:40px;
    background:rgba(75,49,40,.12);
    flex-shrink:0;
}

/* ================================================================
   ROOMS
================================================================ */
.accommodation-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.accommodation-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(75,49,40,.10);
    transition:.35s ease;
}

.accommodation-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 70px rgba(75,49,40,.16);
}

.accommodation-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.accommodation-content{
    padding:24px 22px 26px;
}

.accommodation-content span{
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#c89b52;
}

.accommodation-content h3{
    font-size:1.55rem;
    font-weight:700;
    color:#4b3128;
    margin:10px 0;
}

.accommodation-content p{
    font-size:13.5px;
    color:#776a63;
    line-height:1.7;
    margin-bottom:18px;
}

.accommodation-meta{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:16px;
    padding-bottom:16px;
    border-bottom:1px dashed rgba(75,49,40,.15);
}

.accommodation-meta span{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:700;
    color:#4b3128;
    letter-spacing:normal;
    text-transform:none;
}

.accommodation-meta i{
    color:#c89b52;
    font-size:11px;
}

.accommodation-content a{
    color:#c89b52;
    font-weight:700;
    font-size:13px;
    text-transform:uppercase;
}

@media(max-width:991px){
    .accommodation-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .accommodation-grid{
        grid-template-columns:1fr;
    }

    .accommodation-card img{
        height:230px;
    }
}

/* MARQUEE STRIP FIX */
.marquee-strip{
    width: 100%;
    background: #4b3128 !important;
    padding: 18px 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    display: block !important;
}

.marquee-inner{
    display: inline-flex !important;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
}

@keyframes marqueeScroll{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
}

.marquee-item{
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(232,201,138,.75) !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-item i{
    color: #d97d56 !important;
    font-size: 16px;
}


/* ================================================================
   AMENITIES (image 3 reference — features around centre image)
================================================================ */
.amenities-section{
    padding: 110px 0;
    background: var(--cream-2);
    position: relative;
    overflow: hidden;
}
.amenities-section::before{
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: var(--gold); opacity: .04;
    pointer-events: none;
}
.amenities-layout{
    display:grid;
    grid-template-columns:.85fr 1.2fr .85fr;
    gap:28px;
    align-items:center;
}

/* Each side column: stretch vertically, distribute boxes evenly */
.amenities-col{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:18px;
}

/* Every amenity item becomes a white card */
.amenity-item{
    display:flex;
    align-items:center;
    gap:16px;

    background:#fff;
    border-radius:18px;

    padding:20px;
    min-height:120px;

    box-shadow:0 4px 20px rgba(75,49,40,.06);
    border:1px solid rgba(75,49,40,.06);
}
.amenity-item:hover{
    box-shadow: 0 12px 36px rgba(75,49,40,.11);
    transform: translateY(-3px);
}

/* Right column — reverse layout so icon sits on the right */
.amenities-col--right .amenity-item{
    flex-direction: row-reverse;
    text-align: left;
}

.amenity-icon{
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 14px;
    background: var(--cream-2);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    transition: var(--trans);
    border: 1px solid rgba(200,155,82,.15);
}
.amenity-item:hover .amenity-icon{
    background: var(--gold); color: #fff;
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(200,155,82,.35);
}
.amenity-text h5{
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 700;
    color: var(--brown); margin-bottom: 5px;
}
.amenity-text p{
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px; color: var(--muted);
    line-height: 1.65; margin: 0;
}

/* Centre image */
.amenities-centre{
    position: relative;
    text-align: center;
}
.amenities-centre-img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:200px 200px 24px 24px;
}
.amenities-centre:hover .amenities-centre-img{
    transform: scale(1.02);
}
.amenities-centre-badge{
    position: absolute; bottom: -18px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), #b8832e);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 700;
    padding: 14px 30px; border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(200,155,82,.4);
    display: flex; align-items: center; gap: 8px;
}


/* ============================================================
   WHY CHOOSE BEACH HOUSE — Enhanced v2
============================================================ */

.why-section{
    background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
    position: relative;
    padding-top: 0;
}

/* Wave top divider */
.why-wave-top{
    line-height: 0;
    margin-bottom: 0;
}
.why-wave-top svg{
    display: block;
    width: 100%;
    height: 60px;
}

/* Centred header */
.why-header{
    text-align: center;
    max-width: 540px;
    margin: 0 auto 24px;
    padding-top: 50px;
}

.why-heading{
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.why-heading-em{
     white-space: nowrap;
    font-style: italic;
    color: var(--gold);
    display: inline;
}

.why-intro{
    font-size: 15.5px;
    line-height: 1.85;
    max-width: 620px;
    margin: 0 auto;
}

/* ── Two-column grid ─────────────────────────────────────── */
.why-grid-v2{
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 56px;
    align-items: start;
}

/* ── Feature cards (left column) ───────────────────────── */
.why-features{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 28px rgba(75,49,40,.07);
    border: 1px solid rgba(75,49,40,.06);
    position: relative;
    overflow: hidden;
    transition: transform .38s cubic-bezier(.23,1,.32,1),
                box-shadow .38s cubic-bezier(.23,1,.32,1);
}

.why-card::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,155,82,.04) 0%, transparent 60%);
    pointer-events: none;
}

.why-card:hover{
    transform: translateY(-5px) translateX(4px);
    box-shadow: 0 20px 55px rgba(75,49,40,.13);
}

/* Left accent bar */
.why-card-accent{
    position: absolute;
    left: 0; top: 16px; bottom: 16px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--gold);
    opacity: 0;
    transform: scaleY(0.5);
    transition: opacity .35s ease, transform .35s ease;
}
.why-card-accent--teal{ background: var(--teal); }
.why-card-accent--terra{ background: var(--terra); }
.why-card:hover .why-card-accent{ opacity: 1; transform: scaleY(1); }

/* Icon bubble */
.why-card-icon{
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200,155,82,.15), rgba(200,155,82,.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    border: 1px solid rgba(200,155,82,.20);
    transition: background .35s, transform .35s;
}
.why-card-icon--teal{
    background: linear-gradient(135deg, rgba(94,140,130,.15), rgba(94,140,130,.06));
    color: var(--teal);
    border-color: rgba(94,140,130,.20);
}
.why-card-icon--terra{
    background: linear-gradient(135deg, rgba(217,125,86,.15), rgba(217,125,86,.06));
    color: var(--terra);
    border-color: rgba(217,125,86,.20);
}
.why-card:hover .why-card-icon{ transform: rotate(-6deg) scale(1.08); }

.why-card-body{ flex: 1; min-width: 0; }

.why-card-title{
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--brown);
    margin: 0 0 6px;
    line-height: 1.3;
}

.why-card-text{
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* ── Visual column (right) ──────────────────────────────── */
.why-visual{
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.why-img-wrap{
    position: relative;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(75,49,40,.18);
}

.why-img{
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 1.1s cubic-bezier(.30,1,.42,1);
}
.why-img-wrap:hover .why-img{ transform: scale(1.06); }

.why-img-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(245, 231, 225, 0) 0%,
        rgba(221, 202, 193, 0.103) 100%
    );
    pointer-events: none;
}

/* Floating pills on image */
.why-pill{
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    animation: pillFloat 4s ease-in-out infinite alternate;
}

.why-pill--top{
    top: 22px; right: 22px;
    background: rgba(200,155,82,.92);
    color: #fff;
    animation-delay: 0s;
}
.why-pill--top i{ font-size: 13px; }

.why-pill--bottom-left{
    bottom: 22px; left: 22px;
    background: rgba(255,255,255,.88);
    color: var(--brown);
    animation-delay: 1.5s;
}
.why-pill--bottom-left i{ color: var(--terra); font-size: 13px; }

@keyframes pillFloat{
    from{ transform: translateY(0); }
    to  { transform: translateY(-6px); }
}

/* Stat strip below image */
.why-stat-row{
    display: flex;
    align-items: center;
    background: var(--brown);
    border-radius: 0 0 20px 20px;
    padding: 15px 16px;
    gap: 0;
}

.why-stat{
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.why-stat strong{
    display: block;
    font-family: 'Jost', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 5px;
}

.why-stat span{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(230,217,205,.60);
    text-transform: uppercase;
    line-height: 1.4;
}

.why-stat-divider{
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media(max-width:1199px){
    .why-visual{ position: static; }
}

@media(max-width:991px){
    .why-grid-v2{
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-header{
        padding-top: 60px;
        margin-bottom: 44px;
    }
    .why-img{ height: 380px; }
    .why-visual{ position: static; }
}

@media(max-width:576px){
    .why-card{ flex-direction: column; gap: 14px; }
    .why-img{ height: 280px; }
    .why-stat strong{ font-size: 1.45rem; }
    .why-stat span{ font-size: 9.5px; }
    .why-stat-row{ padding: 16px 8px; }
    .why-heading{ font-size: 2rem; }
    .why-header{ padding-top: 48px; margin-bottom: 32px; }
}


/* ================================================================
   EXPERIENCE STRIP
================================================================ */
.experience-strip{
    background:var(--brown);
    padding:70px 0;
    position:relative;
    overflow:hidden;
}
.experience-strip::before{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse at 20% 50%, rgba(200,155,82,.10) 0%, transparent 60%);
    pointer-events:none;
}

.exp-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:rgba(255,255,255,.08);
    border-radius:var(--radius-md);
    overflow:hidden;
}

.exp-item{
    padding:44px 32px;
    text-align:center;
    background:transparent;
    transition:background .35s;
    position:relative;
}
.exp-item:hover{ background:rgba(255,255,255,.05); }

.exp-icon{
    width:62px; height:62px;
    border-radius:18px;
    background:rgba(200,155,82,.15);
    color:var(--gold-light);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin:0 auto 20px;
    transition:.35s;
}
.exp-item:hover .exp-icon{
    background:var(--gold);
    color:#fff;
    transform:scale(1.08) rotate(-5deg);
}

.exp-item h4{
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:1rem;
    font-weight:700;
    margin-bottom:8px;
}
.exp-item p{
    color:rgba(230,217,205,.6);
    font-family:'Poppins',sans-serif;
    font-size:13.5px;
    line-height:1.7;
    margin:0;
}

/* ================================================================
   TESTIMONIALS (homepage strip)
================================================================ */
.testimonial-section{
    padding:100px 0 80px;
    position:relative;
    overflow:hidden;
    background:#f4ede3;

}
.testimonial-section::before{
    content:'';
    position:absolute;
    inset:0;
    display:none;
    z-index:0;
    
}
.testimonial-section > *{ position:relative; z-index:1; }

.testi-header{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:48px;
}
.testi-section-sub{
    color:var(--gold-light);
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:13px;
    display:block;
    margin-bottom:10px;
}
.testi-section-title{
    font-size:clamp(2rem,4.5vw,3.2rem);
    color:#2e1a10;
    line-height:1.08;
    margin:0;
    font-family:'Cormorant Garamond',serif;
}
.testi-nav{ display:flex; gap:12px; flex-shrink:0; }
.testi-btn{
    width:54px; height:54px;
    border-radius:50%;
    border:2px solid rgba(255, 255, 255, 0.068);
    background:rgba(255,255,255,.12);
    color:#ceb2b2; font-size:16px; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:.3s ease;
    backdrop-filter:blur(6px);
}
.testi-btn:hover{ background:var(d97d56); border-color:var(d97d56); }
.testi-slider-wrap{ overflow:hidden;  background:transparent !important;width:90vw;
    margin-left:calc(30% - 30vw);
    box-shadow:none !important;}
.testi-track{

    display:flex;
    transition:transform .6s cubic-bezier(.4,0,.3,1);
    will-change:transform;
    background: transparent !important;
}
.testi-slide{
    flex:0 0 calc(100% / 4);
    padding:0 15px;
    box-sizing:border-box;
     background:transparent !important;
}
.testi-card{
    background:rgba(255,255,255,.94);
    border-radius:52px;
    padding:32px 30px 38px;
    height:100%;
    display:flex; flex-direction:column; gap:16px;
    position:relative;
    transition:.35s ease;
}
.testi-card:hover{ transform:translateY(-7px); }
.testi-card.active-card{ background:var(--terra); }
.testi-quote-icon{
    position:absolute; top:26px; right:26px;
    font-size:30px; color:rgba(200, 155, 82, 0.185); line-height:1;
}
.active-card .testi-quote-icon{ color:rgba(255,255,255,.25); }
.testi-author-row{ display:flex; align-items:center; gap:14px; }
.testi-avatar{
    width:54px; height:54px; border-radius:50%;
    object-fit:cover; flex-shrink:0;
    border:3px solid rgba(255, 255, 255, 0.219);
}
.testi-name{
    font-size:17px; font-weight:700; margin:0;
    color:var(--brown); font-family:'Jost',sans-serif; line-height:1.2;
}
.active-card .testi-name{ color:#fff; }
.testi-role{ font-size:13px;  color:#776a63; margin:3px 0 0; }
.active-card .testi-role{ color:rgba(255,255,255,.78); }
.testi-body{ font-size:15px; color:var(#776a63); line-height:1.78; margin:0; flex:1; }
.active-card .testi-body{ color:rgba(255,255,255,.92); }
.testi-stars{ display:flex; gap:4px; }
.testi-stars i{ color:var(--gold); font-size:16px; }
.active-card .testi-stars i{ color:#f3d78a; }

/* ================================================================
   HOME CTA
================================================================ */
.home-cta{
    position:relative;
    padding:130px 0;
    text-align:center;
    overflow:hidden;
}
.home-cta-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
}
.home-cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(39, 21, 12, 0.72);
}
.home-cta-inner{
    position:relative;
    z-index:2;
}
.home-cta-inner h2{
    color:#fff;
    font-size:clamp(2.2rem,4.5vw,3.4rem);
    margin:14px 0 16px;
    font-weight:700;
}
.home-cta-inner p{
    color:rgba(230,217,205,.80);
    font-family:'Poppins',sans-serif;
    font-size:16px;
    margin-bottom:36px;
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
}
.cta-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer{
    background:var(--brown-dark);
    color:rgba(230,217,205,.8);
    position:relative;
    overflow: hidden;
}
.footer-wave{
    line-height:0;
    overflow:hidden;
}
.footer-wave svg{ width:100%; height:70px; }

.footer-inner{ padding:60px 15px 0; }

.footer-logo{ height:200px; width: 200px; margin-bottom:18px; }

.footer-tagline{
    font-family:'Poppins',sans-serif;
    font-size:14px;
    line-height:1.8;
    color:rgba(230,217,205,.65);
    margin-bottom:24px;
    max-width:280px;
}

.footer-social{
    display:flex;
    gap:12px;
}
.social-icon{
    width:38px; height:38px;
    border-radius:50%;
    border:1.5px solid rgba(255,255,255,.15);
    color:rgba(230,217,205,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:.3s;
}
.social-icon:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:#fff;
    transform:translateY(-3px);
}

.footer-heading{
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:22px;
}

.footer-links li{ margin-bottom:11px; }
.footer-links a{
    font-family:'Poppins',sans-serif;
    font-size:14px;
    color:rgba(230,217,205,.65);
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}
.footer-links a:hover{ color:var(--gold-light); padding-left:4px; }
.footer-links a i{ font-size:10px; color:var(--gold); }

.footer-contact-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    font-family:'Poppins',sans-serif;
    font-size:14px;
}
.contact-icon{
    width:32px; height:32px;
    border-radius:50%;
    background:rgba(200,155,82,.15);
    color:var(--gold-light);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    flex-shrink:0;
    margin-top:2px;
}
.footer-contact-list a{
    color:rgba(230,217,205,.7);
    transition:.3s;
}
.footer-contact-list a:hover{ color:var(--gold-light); }

.footer-cta-text{
    font-family:'Poppins',sans-serif;
    font-size:14px;
    line-height:1.75;
    color:rgba(230,217,205,.6);
    margin-bottom:20px;
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg, var(--gold), #b8832e);
    color:#fff;
    padding:13px 26px;
    border-radius:50px;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:14px;
    transition:var(--transition);
    box-shadow:0 8px 24px rgba(200,155,82,.3);
}
.footer-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 32px rgba(200,155,82,.4);
    color:#fff;
}
.footer-note{
    font-family:'Poppins',sans-serif;
    font-size:12px;
    color:rgba(230,217,205,.45);
    display:flex;
    align-items:center;
    gap:6px;
}

.footer-divider{
    height:1px;
    background:rgba(255,255,255,.08);
    margin:50px 0 28px;
}
.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    padding-bottom:36px;
}
.footer-copy{
    font-family:'Poppins',sans-serif;
    font-size:13.5px;
    color:rgba(230,217,205,.45);
    margin:0;
}
.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:'Poppins',sans-serif;
    font-size:13px;
    color:rgba(230,217,205,.4);
}
.footer-bottom-links a{
    color:rgba(230,217,205,.55);
    transition:.3s;
}
.footer-bottom-links a:hover{ color:var(--gold-light); }

@media(max-width:991px){
    .site-footer{
        text-align:center;
    }

    .footer-brand{
        align-items:center;
    }

    .footer-tagline{
        max-width:100%;
        margin-left:auto;
        margin-right:auto;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-heading::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact-list li{
        justify-content:center;
        text-align:left;
    }

    .footer-note{
        justify-content:center;
    }

    .footer-bottom{
        justify-content:center;
        text-align:center;
    }
}

@media(max-width:576px){
    .footer-inner{
        padding:45px 22px 0;
    }

    .footer-logo{
        width:230px;
        margin:0 auto 18px;
    }
    .footer-heading{
        font-size:13px;
        margin-bottom:15px;
    }
    .footer-tagline,
    .footer-links a,
    .footer-contact-list li,
    .footer-cta-text{
        font-size:13px;
    }

    .footer-contact-list li{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:8px;
    }

    .footer-btn{
        width:100%;
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        padding-bottom:25px;
    }

    .footer-copy,
    .footer-bottom-links{
        font-size:12px;
    }
}

/* ================================================================
   ABOUT PAGE (included styles for about.php)
================================================================ */
.page-banner{
    min-height:62vh;
    padding-top:140px;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.page-banner-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    animation:kenburns 15s ease-in-out infinite alternate;
    z-index:0;
}
.page-banner-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(110deg,rgba(30,15,8,.88) 30%,rgba(30,15,8,.42) 70%,transparent);
}
.page-banner-content{
    position:relative;
    z-index:3;
    color:#fff;
    padding-top:60px;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media(max-width:1199px){
    .rooms-grid{ grid-template-columns:1fr 1fr; grid-template-rows:320px 320px; }
    .room-card--large{ grid-column:span 2; }
    .exp-grid{ grid-template-columns:repeat(2,1fr); }
    .testi-strip{ grid-template-columns:1fr 1fr; }
    .testi-strip > :last-child{ grid-column:span 2; max-width:520px; margin:0 auto; width:100%; }
}

@media(max-width:991px){
     
    .nav-links{ display:none; }
    .nav-book-btn{ display:none; }
    .hamburger{ display:flex; }
     .section-gap{ padding:80px 0; }
    .about-collage{ height:400px; }
    .rooms-grid{ grid-template-columns:1fr; grid-template-rows:auto; }
    .room-card{ height:320px; }
    .room-card--large{ grid-column:span 1; }
    .testi-strip{ grid-template-columns:1fr; }
    .testi-strip > :last-child{ grid-column:span 1; max-width:100%; }
    .exp-grid{ grid-template-columns:repeat(2,1fr); }
    .info-bar-divider--last{ display:none; }
    .hero-container{
        padding-left:20px;
        padding-right:20px;
        text-align:left;
    }
    .hero-body{
        font-size:14px;
        max-width:100%;
    }

    .hero-indicators{
        margin-top:25px;
        justify-content:flex-start;
    }
    .info-bar-inner{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .info-bar-item{
        justify-content:center;
        padding:6px 10px;
    }

    .info-bar-divider{
        display:none;
    }
    .home-cta{
        padding:90px 20px;
    }

    .home-cta-inner p{
        font-size:14px;
    }
    .testi-slide{
        flex:0 0 100%;
    }
    
}

@media(max-width:576px){
    .section-title{
        font-size:1.8rem !important;
    }

    .section-text{
        font-size:13.5px;
    }

    /* hero-heading font-size responsive rules consolidated into
       assets/css/responsive-fixes.css to avoid conflicting !important
       declarations across stylesheets */

    .hero-eyebrow{
        font-size:11px;
        letter-spacing:3px;
    }

    .hero-scroll-cue{
        display:none;
    }
    .exp-grid{
        grid-template-columns:1fr;
    }

    .exp-item{
        padding:30px 20px;
    }
      .home-cta-inner h2{
        font-size:2rem;
    }

    .cta-actions{
        flex-direction:column;
        width:100%;
    }

    .cta-actions a{
        width:100%;
    }
}

@media(max-width:767px){
    .about-collage{ height:340px; }
    .collage-float-tag{ display:none; }
    .mini-stats{ gap:18px; padding:16px 20px; }
    .mini-stat strong{ font-size:1.8rem; }
    .exp-grid{ grid-template-columns:1fr 1fr; }
    .info-bar-inner{ flex-direction:column; gap:8px; }
    .info-bar-divider{ display:none; }
    .info-bar-item{ padding:4px 12px; }
}

@media(max-width:575px){
    .hero-actions{ flex-direction:column; align-items:flex-start; }
    .btn-primary-hero, .btn-ghost-hero{ width:100%; justify-content:center; }
    .rooms-grid{ gap:14px; }
    .exp-grid{ grid-template-columns:1fr; }
    .cta-actions{ flex-direction:column; align-items:center; }
    .section-gap{ padding:60px 0; }
    .mini-stats{ gap:12px; }
}


/* amenities responsive*/

@media(max-width: 1199px){
    .amenities-layout{ grid-template-columns: 1fr 1fr; gap: 24px; }
    .amenities-col--right{ order: 3; }
    .amenities-centre{ order: 2; grid-column: 2; }
    /* On two-column layout, boxes don't need to match image height — reset flex */
    .amenity-item{ flex: unset; }
    .exp-cards-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 991px){
    .arch-item{ height: 380px; }
    .arch-item img{ clip-path: ellipse(48% 50% at 50% 50%); }
    .faq-layout{ grid-template-columns: 1fr; gap: 40px; }
    .nearby-grid{ grid-template-columns: 1fr; }
    .map-overlay-card{ left: 20px; max-width: 240px; padding: 22px 20px; }
    /* Single column: centre image full-width, then both cols of boxes */
    .amenities-layout{
      grid-template-columns: 1fr;
        gap: 16px;
    }
    .amenities-centre{
        grid-column: auto;
        order: -1;
    }
      .amenities-centre-img{
        height: 280px;
        max-height: none;
        border-radius: 24px;
    }
     .amenities-col,
    .amenities-col--right{
        width: 100%;
    }

    .amenity-item{
        min-height: auto;
        padding: 18px;
    }
    .amenities-col--right .amenity-item{ flex-direction: row; text-align: left; }
    .exp-cards-grid{ grid-template-columns: repeat(2, 1fr); }
    .sec-pad{ padding: 80px 0; }
}

@media(max-width: 767px){
    .exp-cards-grid{ grid-template-columns: 1fr; }
    .map-wrapper{ height: 380px; }
    .map-overlay-card{ position: relative; left: 0; top: 0; transform: none; max-width: 100%; margin: -60px 16px 0; z-index: 3; }
    .sec-pad{ padding: 60px 0; }
    .exp-banner-content h1{ font-size: 2.8rem; }
    /* arch-item mobile sizing handled in the arch-gallery block above */
}
@media(max-width: 575px){
    .exp-filter-row{ gap: 8px; }
    .exp-filter-btn{ padding: 8px 16px; font-size: 12px; }
    /* Small phones: slightly wider cards */
    .arch-item{ width: 72vw; min-width: 200px; }
    .exp-cta-actions{ flex-direction: column; align-items: center; }
}