:root{
    --bg:#fafafa;
    --surface:#ffffff;
    --muted:#8a7b78;
    --light-color: #ffffff;
    --brand-900:#5e282c; /* deep maroon */
    --brand-600:#dba81a; /* warm gold */
    --radius:14px;
    --gap:1.25rem;
    --heading-font: 'Playfair Display', serif;
    --body-font: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

html{scroll-behavior:smooth}
body{
    font-family:var(--body-font);
    background:var(--bg);
    color:var(--brand-900);
    margin:0;
    -webkit-font-smoothing:antialiased;
}

.container{width:92%;max-width:1100px;margin:0 auto}

/* header / hero */
.hero-header{background:linear-gradient(180deg, rgba(249,231,196,0.6), rgba(250,250,250,0.6));backdrop-filter:blur(6px);position:sticky;top:0;z-index:40;padding:.9rem 0}
.hero-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.hero-brand{display:flex;align-items:center;gap:.9rem}
.hero-logo{width:76px;height:auto;border-radius:12px;box-shadow:0 6px 20px rgba(30,30,30,0.06)}
.brand-text h1{font-family:var(--heading-font);font-size:1.35rem;margin:0;color:var(--brand-900);letter-spacing:.4px}
.brand-text .hero-tagline{margin:0;color:var(--muted);font-size:.95rem}
.hero-cta{display:flex;gap:.6rem}

/* navigation */
.sticky-nav{background:transparent;display:block;position:fixed;left:0;right:0;top:0;z-index:60}
.sticky-nav ul{display:flex;gap:1.4rem;justify-content:center;align-items:center;padding:0;margin:0;list-style:none}
.sticky-nav a{color:var(--brand-900);text-decoration:none;font-family:var(--body-font);font-weight:600;padding:.6rem .4rem;border-radius:8px;transition:all .18s}
.sticky-nav{background:transparent;display:block;position:fixed;left:0;right:0;top:0;z-index:60}
.sticky-nav a:hover{background:rgba(94,40,44,0.06);color:var(--brand-900)}

/* cream nav bar (made flush) */
.sticky-nav .nav-inner{background:transparent;padding:.3rem 0;box-shadow:none;border-radius:0;display:flex;align-items:center;justify-content:center;position:relative}
/* smoother transitions and scrolled state */
.sticky-nav .nav-inner{transition:all .28s cubic-bezier(.2,.9,.2,1)}
.sticky-nav.scrolled .nav-inner{background:rgba(255,255,255,0.96);box-shadow:0 8px 24px rgba(20,20,20,0.08);transform:none;border-top:0}
.sticky-nav .nav-inner{background:transparent;padding:.2rem 0;box-shadow:none;border-radius:0;display:flex;align-items:center;justify-content:center;position:relative}
.sticky-nav .nav-inner{transition:all .28s cubic-bezier(.2,.9,.2,1)}
/* move scrolled background to sticky-nav so the bar is full width and not pill-shaped */
.sticky-nav.scrolled{background:rgba(255,255,255,0.96);box-shadow:0 8px 30px rgba(20,20,20,0.08);}
.nav-inner ul{display:flex;gap:2.2rem;margin:0;padding:0;align-items:center}
.nav-inner a{font-size:1rem;padding:.5rem .6rem;border-radius:6px;letter-spacing:.2px}

/* Unique pill + badge layout */
.nav-pill{background:transparent;padding:.15rem .4rem;border-radius:12px;box-shadow:none}
.nav-pill ul{display:flex;gap:1.6rem;margin:0;padding:0;align-items:center}

/* Animated underline for links */
.nav-pill a{position:relative;padding:.3rem .4rem;border-radius:6px}
.nav-pill a::after{content:'';position:absolute;left:50%;transform:translateX(-50%) scaleX(0);bottom:-6px;width:54%;height:3px;background:var(--brand-600);border-radius:3px;transition:transform .22s cubic-bezier(.2,.8,.2,1)}
.nav-pill a:hover::after,.nav-pill a:focus::after{transform:translateX(-50%) scaleX(1)}

.nav-inner a:focus{outline:3px solid rgba(217,168,48,0.15);outline-offset:3px}
/* Call button (standardized size) */
.nav-call{position:absolute;right:14px;top:50%;transform:translateY(-50%);background:var(--brand-600);color:var(--brand-900);padding:.35rem .6rem;border-radius:14px;text-decoration:none;border:1px solid rgba(94,40,44,0.08);font-weight:700;font-size:0.95rem;line-height:1;box-shadow:0 6px 18px rgba(219,168,26,0.12);transition:all .18s ease}
.nav-call{position:absolute;right:10px;top:50%;transform:translateY(-50%);background:var(--brand-600);color:var(--brand-900);padding:.28rem .5rem;border-radius:12px;text-decoration:none;border:1px solid rgba(94,40,44,0.08);font-weight:700;font-size:0.92rem;line-height:1;box-shadow:0 6px 16px rgba(219,168,26,0.12);transition:all .14s ease}
.nav-call:hover{box-shadow:0 10px 28px rgba(219,168,26,0.16);transform:translateY(-50%) scale(1.02)}
.nav-inner a{transition:color .18s ease, transform .18s ease}
.nav-inner a:hover{color:var(--brand-900);transform:translateY(-3px)}
.nav-inner a:focus{outline:3px solid rgba(217,168,48,0.15);outline-offset:4px}

/* When mobile menu is open, lock body scroll */
body.nav-open{overflow:hidden}

/* Hamburger */
.hamburger{display:none;background:transparent;border:0;padding:.4rem;margin-right:1rem;cursor:pointer}
.hamburger .line{display:block;width:22px;height:2px;background:var(--brand-900);margin:4px 0;transition:all .25s}

@media (max-width:900px){
    .hamburger{display:block}
    .nav-inner ul{position:fixed;right:0;top:0;height:100vh;background:rgba(255,255,255,0.99);flex-direction:column;align-items:center;justify-content:center;width:70%;transform:translateX(100%);transition:transform .28s ease;box-shadow:-6px 0 18px rgba(0,0,0,0.08)}
    .nav-inner ul.open{transform:translateX(0)}
    .nav-call{position:static;transform:none;margin-left:.6rem;padding:.35rem .6rem;border-radius:12px}
}

/* mobile close button */
.nav-close-item{list-style:none}
.nav-close{display:none;border:0;background:transparent;font-size:1.6rem;padding:.6rem;margin-bottom:1.2rem}
@media (max-width:900px){
    .nav-close{display:block;color:var(--brand-900);background:transparent;border-radius:8px}
    .nav-close:focus{outline:2px solid rgba(94,40,44,0.08)}
    .nav-pill ul{padding-top:1rem}
}
.nav-inner ul li a:hover{background:rgba(0,0,0,0.04)}
/* hero */
.hero{position:relative;overflow:hidden}
.hero-bg{background-image:url('https://i.ibb.co/21c8BSM5/9ede70b3-5eeb-4563-b489-9f3d18a93e59.jpg');background-size:cover;background-position:center;height:520px;filter:contrast(0.95) saturate(0.9)}
.hero-content{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);text-align:center;color:var(--brand-900);max-width:900px;padding:1rem}
.hero-logo{width:76px;margin:0 auto 1rem auto;border-radius:12px}
.hero-title{font-family:var(--heading-font);font-size:3.2rem;margin:0 0 .4rem 0;color:var(--brand-900);text-shadow:0 2px 8px rgba(255,255,255,0.6)}
.hero-sub{color:rgba(88,66,64,0.9);margin:0 auto 1rem auto;max-width:680px}
.hero-cta-primary{display:inline-block;background:var(--brand-600);color:var(--brand-900);padding:.8rem 1.2rem;border-radius:24px;text-decoration:none;font-weight:700}
.hero-cta-primary:hover{filter:brightness(0.95)}

@media (max-width:900px){
    .hero-title{font-size:2rem}
    .hero-bg{height:420px}
}

@media (max-width:700px){
    .nav-call{position:static;transform:none;margin-left:.6rem;padding:.3rem .5rem;border-radius:10px;font-size:0.92rem}
}

/* sections */
.section-row{display:flex;gap:2rem;align-items:stretch;padding:3.2rem 0;flex-wrap:wrap}
.section-row.alt-bg{background:transparent}
.section-content{flex:1 1 48%;min-width:260px;padding:1.6rem}
.section-img{flex:1 1 48%;min-width:260px;padding:1.6rem;display:flex;align-items:center;justify-content:center}
.section-img img{width:100%;max-width:520px;border-radius:var(--radius);box-shadow:0 12px 40px rgba(20,20,20,0.06)}


/* center primary text for easier reading */
h2{font-family:var(--heading-font);font-size:1.6rem;margin:.2rem 0 .6rem 0;color:var(--brand-900);text-align:center}
p{color:var(--muted);line-height:1.6;margin:0 0 1rem 0;text-align:center}

/* Elevate section (visual match) */
.elevate-section{background:#f6e7ca;padding:3.2rem 0}
.elevate-heading{font-family:var(--heading-font);font-size:2.4rem;color:var(--brand-900);text-align:center;margin-bottom:1.6rem}
.elevate-row{display:flex;gap:2.4rem;justify-content:center;align-items:stretch}
.elevate-card{flex:1 1 420px;max-width:520px;background:transparent;padding:0;text-align:center}
.elevate-card img{width:100%;border-radius:18px;box-shadow:0 18px 50px rgba(18,18,18,0.12);display:block}
.elevate-caption{margin-top:1rem}
.elevate-caption h3{font-family:var(--heading-font);font-size:1.5rem;color:var(--brand-900);margin:0}
.elevate-caption p{color:var(--muted);margin-top:.5rem;font-size:0.98rem}

@media (max-width:900px){
    .elevate-row{flex-direction:column;gap:1.05rem}
    .elevate-card{max-width:100%}
}

/* Unwind section: image left, mustard panel right */
.unwind-section{padding:0}
.unwind-row{display:flex;align-items:stretch;gap:0}
.unwind-image{flex:1 1 55%;overflow:hidden}
.unwind-image img{width:100%;height:100%;object-fit:cover;display:block}
.unwind-panel{flex:1 1 45%;background:var(--brand-600);color:var(--brand-900);padding:3.5rem;display:flex;flex-direction:column;justify-content:center}
.unwind-panel h2{font-family:var(--heading-font);font-size:2.2rem;margin:0 0 1rem 0;color:var(--brand-900)}
.unwind-panel p{color:rgba(94,40,44,0.95);line-height:1.7;margin-bottom:1.25rem;text-align:left}
.btn-discover{background:rgba(30,20,18,0.85);color:#fff;padding:.8rem 1.25rem;border-radius:8px;text-decoration:none;display:inline-block}
.btn-discover:hover{filter:brightness(0.95)}

@media (max-width:900px){
    .unwind-row{flex-direction:column}
    .unwind-panel{padding:2rem}
}

/* elevate boxes */
.elevate-cols{display:flex;gap:1.25rem;flex-wrap:wrap;margin-top:1.25rem}
.elevate-box{flex:1 1 45%;background:var(--surface);border-radius:12px;padding:1.1rem;box-shadow:0 8px 30px rgba(13,13,13,0.04);text-align:center;min-width:220px}
.elevate-box img{width:100%;height:160px;object-fit:cover;border-radius:8px;margin-bottom:.75rem}
.elevate-box h3{font-family:var(--heading-font);color:var(--brand-600);margin:.4rem 0}

/* gallery */
.gallery-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:1rem}
.gallery-row img{width:100%;height:220px;object-fit:cover;border-radius:12px;box-shadow:0 6px 22px rgba(20,20,20,0.06)}

@media (max-width:900px){
    .gallery-row{grid-template-columns:repeat(2,1fr)}
}

.gallery-caption{margin-top:1rem;text-align:center;width:100%}
.gallery-caption h3{font-family:var(--heading-font);color:var(--brand-900);margin:0;font-size:1.25rem}

/* left-column constrained caption */
.gallery-caption-left{max-width:520px;margin-top:1rem;text-align:center}
.gallery-caption-left h3{font-size:1.25rem;margin-bottom:.45rem}
.gallery-caption-left .gallery-sub{color:var(--muted);margin:0}

/* Center content blocks */
.section-content{display:flex;flex-direction:column;align-items:center}

/* Keep forms and their inputs left-aligned for usability */
.booking-form{align-items:stretch}
.booking-form input,.booking-form select{text-align:left}

/* booking form */
.booking-form{display:flex;flex-direction:column;gap:.85rem;background:var(--surface);padding:1.2rem;border-radius:12px;box-shadow:0 8px 28px rgba(10,10,10,0.04);max-width:420px;margin:0 auto}
.booking-form input,.booking-form select{padding:.75rem;border:1px solid rgba(0,0,0,0.06);border-radius:8px;font-size:1rem}

/* buttons */
.btn{display:inline-block;padding:.7rem 1rem;border-radius:9px;text-decoration:none;border:0;font-weight:600}
.btn-primary{background:var(--brand-900);color:#fff}
.btn-primary:hover{background:#441617}
.btn-ghost{background:transparent;color:var(--brand-900);border:1px solid rgba(94,40,44,0.06)}
.btn-ghost:hover{background:rgba(94,40,44,0.04)}

.testimonials-col{background:var(--surface);border-radius:12px;padding:1.25rem;box-shadow:0 10px 30px rgba(10,10,10,0.04)}
.testimonial-box h3{font-family:var(--heading-font);color:var(--brand-600);margin-bottom:.35rem}

/* Testimonials grid */
.testimonials-layout{display:flex;gap:2rem;align-items:stretch;justify-content:space-between;max-width:1100px;margin:1rem auto}
.testimonials-left{flex:1 1 45%;padding-right:1rem;display:flex;flex-direction:column;justify-content:center;height:100%}
.testimonials-right{flex:1 1 50%;display:flex;align-items:center;justify-content:center}
.testimonials-right img{width:100%;max-width:520px;max-height:460px;border-radius:18px;box-shadow:0 18px 50px rgba(18,18,18,0.12);object-fit:cover;height:auto}

/* Testimonials: ensure heading is left and content is slightly indented for readable alignment */
.testimonials-left, .testimonials-left h3, .testimonials-left .feature { text-align: left; }
.testimonials-left .feature { margin: 0 0 0.6rem 0; }
.testimonials-left .feature-sub { text-align: left; margin: 0 0 1.25rem 1.2rem; color: var(--muted); }
.subtitle{color:var(--muted);text-align:center;margin-top:.35rem;margin-bottom:1rem}
.feature{font-family:var(--heading-font);color:var(--brand-900);margin:1rem 0 0.25rem 0;text-align:left}
.feature-sub{color:var(--muted);margin:0 0 1rem 0;text-align:left;margin-left:2.8rem}

.testimonials-left p{max-width:480px;text-align:left}

@media (max-width:900px){
    .testimonials-layout{flex-direction:column;gap:1rem}
    .testimonials-left,.testimonials-right{width:100%;padding:0}
    .testimonials-right img{max-width:100%}
    .testimonials-left{align-items:center;text-align:center}
    .feature-sub{margin-left:0}
}

.contact-cols{display:flex;gap:1.25rem;flex-wrap:wrap}
.contact-cols > div{flex:1 1 220px}

/* Footer: match attached design */
footer{margin-top:2rem;background:var(--brand-900);color:#fff;padding:3.25rem 0;text-align:center}
.footer-hero{background:var(--brand-900);padding:2rem 0}
.footer-center{max-width:820px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:1rem}
.footer-title{font-family:var(--heading-font);font-size:1.9rem;margin:0;color:#fff}
.footer-desc{max-width:720px;color:rgba(255,242,230,0.9);line-height:1.6;text-align:center;margin:0 0 .6rem 0}
.footer-go{display:inline-flex;align-items:center;gap:.6rem;background:var(--brand-600);color:var(--brand-900);padding:.55rem 1rem;border-radius:26px;text-decoration:none;font-weight:700;margin:.45rem 0}
.footer-go .pin{font-size:1rem}
.footer-contacts .small{color:rgba(255,242,230,0.85);margin:.25rem 0;font-size:.92rem}
.footer-contacts .address{margin-top:.6rem}
.footer-logo{width:88px;height:auto;margin:1rem auto .4rem auto;border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,0.18)}
.footer-copy{color:rgba(255,242,230,0.9);margin-top:.6rem;font-size:0.96rem}

.skip-link{position:fixed;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:12px;top:12px;width:auto;height:auto;padding:.4rem .6rem;background:#fff;border-radius:6px;box-shadow:0 6px 20px rgba(0,0,0,0.12);color:var(--brand-900)}

/* Footer grid */
/* remove old footer-grid styles (kept for backward compat) */
.footer-grid{display:flex;gap:2rem;align-items:flex-start;justify-content:space-between;padding:1rem 0}
.footer-contact{flex:1 1 320px;color:#fff}
.footer-contact h4{font-family:var(--heading-font);margin:0 0 .6rem 0}
.footer-contact a{color:#fff;text-decoration:underline}
.footer-right{flex:0 0 360px;text-align:right}
.footer-copy{margin-top:1rem;color:rgba(255,255,255,0.85)}

@media (max-width:700px){
    .footer-grid{flex-direction:column;align-items:center;text-align:center}
    .footer-right{text-align:center}
}

/* Plan Your Stay panel */
.plan-panel{background:var(--brand-900);color:#fff;padding:2rem;border-radius:10px;box-shadow:0 10px 40px rgba(0,0,0,0.15)}
.plan-panel h2{font-family:var(--heading-font);color:#f6e6d7;text-align:center;margin-bottom:.25rem}
.plan-panel .muted{color:rgba(246,230,215,0.85);text-align:center;margin-bottom:1.25rem}
.plan-form{display:flex;flex-direction:column;gap:1rem}
.plan-form .cols{display:flex;gap:1rem}
.plan-form .col{flex:1;display:flex;flex-direction:column;gap:.6rem}
.plan-form label{font-weight:600;color:rgba(246,230,215,0.9);font-size:.9rem}
.plan-form input,.plan-form select,.plan-form textarea{padding:.6rem;border-radius:6px;border:1px solid rgba(0,0,0,0.06);font-size:1rem}
.plan-form textarea{resize:vertical}
.plan-submit{background:var(--brand-600);color:var(--brand-900);border:none;padding:.9rem;border-radius:6px;font-weight:700;margin-top:.4rem;cursor:pointer}
.plan-submit:hover{filter:brightness(0.95)}

@media (max-width:900px){
    .plan-form .cols{flex-direction:column}
}

/* responsive tweaks */
@media (max-width:900px){
    .section-row{flex-direction:column}
    .section-content,.section-img{width:100%;padding:.9rem}
    .hero-inner{flex-direction:column;align-items:flex-start}
    .hero-cta{align-self:stretch;justify-content:flex-start}
}

@media (max-width:600px){
    .sticky-nav ul{flex-wrap:wrap;gap:.6rem}
    .hero-logo{width:64px}
    .brand-text h1{font-size:1.05rem}
}

.unwind-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    text-align: left;
    color: #5E282C;
    margin-bottom: 1.5rem;
}

.unwind-content p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-discover {
    background-color: #333;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--heading-font);
    display: inline-block;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-discover:hover {
    background-color: #5E282C;
}

@media screen and (max-width: 768px) {
    nav ul {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .hamburger {
        display: block;
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 700px) {
    .container {
        width: 98%;
        padding: 0 0.5rem;
    }

    .sticky-nav ul {
        gap: 1.2rem;
    }

    .section-col h2 {
        font-size: 1.4rem;
    }

    .booking-form {
        padding: 1.2rem 0.5rem;
    }

    .contact-cols {
        flex-direction: column;
        gap: 1rem;
    }
}




@media (max-width: 900px) {
    .section-row {
        flex-direction: column;
        padding: 2rem 0 1.5rem 0;
    }

    .section-content,
    .section-img {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .elevate-cols {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-row {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonials-col {
        margin: 1rem 0;
    }
}
