/* ============ RESET & BASE ============ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
:root{
  --ivory:#FBF6F1;
  --white:#FFFFFF;
  --blush:#F1D9D3;
  --blush-soft:#F7E7E2;
  --nude:#E7C4AC;
  --espresso:#2E2420;
  --espresso-70:rgba(46,36,32,0.7);
  --gold:#B08D57;
  --gold-light:#D9BD8E;
  --rose:#A85751;
  --rose-dark:#8F4642;
  --shadow:0 20px 50px -20px rgba(46,36,32,0.25);
  --radius:2px;
    --serif:'Playfair Display', serif;

    --sans:'Manrope', sans-serif;
}
body{
  font-family:var(--sans);
  color:var(--espresso);
  background:var(--ivory);
  line-height:1.7;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;font-size:1rem;}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px;}
h1,h2,h3,h4{font-family:var(--serif);font-weight:500;letter-spacing:0.01em;color:var(--espresso);}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;}
}

/* ============ UTILITIES ============ */
.eyebrow{
  font-family:var(--sans);
  text-transform:uppercase;
  font-size:0.72rem;
  letter-spacing:0.28em;
  color:var(--gold);
  font-weight:500;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{content:'';width:28px;height:1px;background:var(--gold);display:inline-block;}
.section-head{max-width:640px;margin:0 0 56px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{font-size:clamp(2rem,4vw,2.85rem);margin-top:14px;line-height:1.15;}
.section-head p{margin-top:18px;color:var(--espresso-70);font-size:1.02rem;max-width:56ch;}
.section-head.center p{margin-left:auto;margin-right:auto;}
section{padding:96px 0;position:relative;}
.arc-icon{width:1em;height:1em;display:inline-block;}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:16px 34px;font-size:0.85rem;letter-spacing:0.14em;text-transform:uppercase;
  font-weight:500;border-radius:2px;transition:all .35s ease;white-space:nowrap;
}
.btn-primary{background:var(--rose);color:var(--white);}
.btn-primary:hover{background:var(--rose-dark);transform:translateY(-2px);box-shadow:var(--shadow);}
.btn-ghost{background:transparent;color:var(--espresso);border:1px solid var(--espresso);}
.btn-ghost:hover{background:var(--espresso);color:var(--white);}
.btn-ghost.on-dark{color:var(--rose-dark);border-color:#8F4642;}
.btn-ghost.on-dark:hover{background:var(--rose-dark);color:var(--white);}

.divider-arc{display:flex;justify-content:center;padding:0 0 8px;color:var(--gold);}
.divider-arc svg{width:64px;height:32px;}

.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s ease, transform .8s ease;}
.reveal.in{opacity:1;transform:translateY(0);}

/* ============ HEADER ============ */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:500;
  padding:22px 0;transition:all .4s ease;
}
.site-header .container{display:flex;align-items:center;justify-content:space-between;}
.site-header.scrolled{background:rgba(251,246,241,0.92);backdrop-filter:blur(10px);padding:14px 0;box-shadow:0 1px 0 rgba(46,36,32,0.06);}
.logo{font-family:var(--serif);font-size:1.5rem;font-weight:600;letter-spacing:0.02em;color:var(--white);transition:color .4s ease;}
.site-header.scrolled .logo{color:var(--espresso);}
.logo em{font-style:italic;color:var(--gold-light);}
.site-header.scrolled .logo em{color:var(--gold);}
.nav-links{display:none;align-items:center;gap:38px;}
.nav-links a{
  font-size:0.85rem;letter-spacing:0.06em;text-transform:uppercase;color:var(--white);
  position:relative;padding-bottom:4px;transition:color .4s ease;
}
.site-header.scrolled .nav-links a{color:var(--espresso);}
.nav-links a::after{content:'';position:absolute;left:0;bottom:0;width:0;height:1px;background:currentColor;transition:width .3s ease;}
.nav-links a:hover::after{width:100%;}
.header-actions{display:flex;align-items:center;gap:18px;}
.header-actions .btn{padding:12px 24px;font-size:0.75rem;}
.header-actions .btn-ghost{color:var(--white);border-color:rgba(255,255,255,0.7);}
/*==================================================
HEADER ACTIONS
==================================================*/

.header-actions{

    display:flex;
    align-items:center;
    gap:18px;

}

/*==================================================
HEADER SOCIAL
==================================================*/

.header-social{

    display:flex;
    align-items:center;
    gap:12px;

}

.header-social a{

    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    border:1px solid rgba(255,255,255,.45);
    border-radius:50%;

    color:#fff;
    text-decoration:none;

    transition:all .35s ease;

}

/* After Header Scroll */

.site-header.scrolled .header-social a{

    color:var(--rose-dark);
    border-color:var(--rose-dark);

}

.header-social i{

    font-size:18px;
    transition:.35s;

}



/*==================================================
PHONE HEADER
==================================================*/

@media (max-width:768px){

.site-header{

    padding:14px 0;

}

.site-header .container{

    display:flex;
    align-items:center;
    justify-content:space-between;

}

/* Logo */

.logo{

    font-size:1.8rem;

    line-height:1;

}

.logo em{

    font-size:1em;

}

/* Book Now */

.header-actions{

    gap:8px;

}

.header-actions .btn{

    padding:10px 14px;

    font-size:11px;

    letter-spacing:.08em;

}

/* Social */

.header-social{

    gap:8px;

}

.header-social a{

    width:34px;
    height:34px;

}

.header-social i{

    font-size:15px;

}

/* Hamburger */

.nav-toggle{

    width:22px;

}

.nav-toggle span{

    width:100%;

}

}

@media (max-width:390px){

.logo{

    font-size:1.55rem;

}

.header-actions{

    gap:6px;

}

.header-actions .btn{

    padding:8px 12px;

    font-size:10px;

}

.header-social a{

    width:30px;
    height:30px;

}

.header-social i{

    font-size:13px;

}

}

.site-header.scrolled .header-actions .btn-ghost{color:var(--espresso);border-color:var(--espresso);}
.nav-toggle{display:flex;flex-direction:column;gap:5px;width:26px;z-index:600;}
.nav-toggle span{height:1px;background:var(--white);width:100%;transition:all .3s ease;}
.site-header.scrolled .nav-toggle span{background:var(--espresso);}
.nav-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
.nav-toggle.open span{background:var(--espresso);}







.mobile-nav{
  position:fixed;inset:0;background:var(--ivory);z-index:490;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:30px;
  opacity:0;visibility:hidden;transition:opacity .4s ease;
}
.mobile-nav.open{opacity:1;visibility:visible;}
.mobile-nav a{font-family:var(--serif);font-size:1.7rem;color:var(--espresso);}

@media (min-width:960px){
  .nav-links{display:flex;}
  .nav-toggle{display:none;}
}

/* ============ HERO ============ */
/* ================= HERO ================= */

.hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:url("../images/home/home_background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media(max-width:992px){

.hero{

background-position:72% center;

}

}

@media (max-width:768px){

.hero{

    background-size: cover;
    background-position: midddle right ;

}

}

.hero-content{

max-width:100%;

text-align:center;

}

.hero-cta-row{

justify-content:left;

}

}

@media(max-width:480px){

.hero{

padding:120px 0 70px;

background-position:82% center;

}

.hero h1{

font-size:48px;

}

.hero p{

font-size:16px;

}

}
.hero-media{position:absolute;inset:0;z-index:0;}
.hero-media video, .hero-media .hero-fallback{
  width:100%;height:100%;object-fit:cover;position:absolute;inset:0;
}
.hero-fallback{
  background:
    radial-gradient(ellipse at 20% 20%, rgba(176,141,87,0.35), transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(168,87,81,0.35), transparent 55%),
    linear-gradient(160deg,#3a2a26 0%, #2E2420 60%, #241b18 100%);
}
.hero-media::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg, rgba(20,15,13,0.55) 0%, rgba(20,15,13,0.35) 45%, rgba(20,15,13,0.75) 100%);}
.hero-content{position:relative;z-index:2;padding-top:110px;padding-bottom:80px;text-align:left;max-width:760px;}
.hero .eyebrow{color:var(--black);}
.hero .eyebrow::before{background:var(--gold-light);}
.hero h1{
  color:var(--espresso);font-size:clamp(2.6rem,7vw,4.6rem);line-height:1.08;
  margin:20px 0 8px;font-weight:700;
}
.hero-arc{color:var(--gold-light);width:150px;height:auto;margin:6px 0 22px;}
.hero p.lede{color:#5d524b;font-size:1.12rem;max-width:52ch;margin-bottom:38px;font-weight:300;}
.hero-cta-row{display:flex;flex-wrap:wrap;gap:18px;align-items:center;}
.hero-note{margin-top:34px;color:#5d524b;font-size:0.82rem;letter-spacing:0.04em;}

/*================ WHY US ================*/

.why{
    background:#FBF6F1;
    padding:120px 0;
}

.why .section-head{
    max-width:760px;
    margin:0 auto 80px;
    text-align:center;
}

.why-divider{
    display:flex;
    justify-content:center;
    margin:28px 0;
    color:#B08D57;
}

.why-divider svg{
    width:80px;
    height:24px;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    margin-top:70px;

    border-top:1px solid rgba(176,141,87,.18);

}

.why-item{

    position:relative;

    text-align:left;

    padding:15px 35px;

    transition:.35s ease;

}

.why-item:hover{

    transform:translateY(-6px);

}

.why-item:nth-child(n+5){

    border-top:1px solid rgba(176,141,87,.18);

}

.why-item:not(:nth-child(4n)){

    border-right:1px solid rgba(176,141,87,.18);

}

.why-icon{

    width: 115px;
    height:115px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:1px;

}

.why-icon img{

    width:115px;

    height:115px;

    object-fit:contain;

    align-items:center;

}

.why-item h3{

    font-family:var(--serif);

    font-size:2rem;

    line-height:1;

    font-weight:500;

    margin-bottom:18px;

}

.why-item p{

    color:rgba(46,36,32,.72);

    font-size:1.05rem;

    line-height:1.8;

    max-width:240px;

}

/* Tablet */

@media(max-width:991px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.why-item{

padding:45px 28px;

}

.why-item:nth-child(n){

border-right:none;

border-top:none;

}

.why-item:nth-child(odd){

border-right:1px solid rgba(176,141,87,.18);

}

.why-item:nth-child(n+3){

border-top:1px solid rgba(176,141,87,.18);

}

}

/* Mobile */

@media(max-width:767px){

.why{

padding:80px 0;

}

.why-grid{

grid-template-columns:1fr;

}

.why-item{

padding:35px 10px;

text-align:center;

}

.why-item h3{

font-size:1.8rem;

}

.why-item p{

margin:auto;

}

.why-icon{

margin:0 auto 20px;

}

.why-item:nth-child(n){

border:none;

border-bottom:1px solid rgba(176,141,87,.18);

}

}
/* ============ SERVICES ============ */
.services{
    background:var(--white);
}

.svc-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
}

.svc-card{
    background:var(--ivory);
    border:1px solid rgba(46,36,32,.08);
    padding:34px 30px;
    transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.svc-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
    border-color:var(--gold-light);
}

.svc-thumb{
    width:100%;
    aspect-ratio:4/3;
    margin-bottom:22px;

    /* Background removed */
    background:transparent;

    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

.svc-thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:transparent;
}

.svc-thumb .arc-icon{
    width:44px;
    height:44px;
    color:var(--white);
    opacity:.85;
}

.svc-thumb span.ph-label{
    display:none;
}

.svc-card h3{
    font-size:1.4rem;
    margin-bottom:10px;
}

.svc-card p{
    color:var(--espresso-70);
    font-size:.94rem;
    flex-grow:1;
    margin-bottom:20px;
}

.svc-card .btn{
    align-self:flex-start;
    padding:11px 22px;
    font-size:.7rem;
}

@media (min-width:640px){
    .svc-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (min-width:1024px){
    .svc-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* ============ INSTAGRAM ============ */
.instagram{background:var(--blush-soft);text-align:center;}

.insta-tile .arc-icon{width:30px;height:30px;color:rgba(255,255,255,0.9);}
.insta-tile:hover .arc-icon{transform:scale(1.15);}

/* ================= INSTAGRAM ================= */

.instagram{

    background:#fbf6f1;

    padding:100px 0;

}

.instagram .container{

    max-width:1300px;

    margin:auto;

}

.instagram .section-head{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}

.instagram-feed{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

}

.elfsight-app-99f7b713-a6c4-449c-89f1-07c58fb0f479{

    width:100% !important;

    max-width:1200px !important;

    margin:0 auto !important;

}

/* ============ GALLERY ============ */

.gallery{
    background:var(--ivory);
}

.gal-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
}

.gal-tile{
    position:relative;
    aspect-ratio:1/1.1;
    overflow:hidden;
    cursor:pointer;
    background:linear-gradient(160deg,var(--blush) 0%, var(--nude) 100%);
    transition:.35s ease;
}

.gal-tile:nth-child(3n+2){
    background:linear-gradient(160deg,var(--nude) 0%, var(--blush) 100%);
}

.gal-tile:nth-child(3n+3){
    background:linear-gradient(160deg,#e9dccf 0%, var(--blush) 100%);
}

.gal-tile img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.gal-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:16px;
    background:linear-gradient(0deg,rgba(46,36,32,.65),transparent);
    color:var(--white);
    font-size:.85rem;
    letter-spacing:.03em;
    opacity:0;
    transform:translateY(10px);
    transition:.35s ease;
}

.gal-tile:hover img{
    transform:scale(1.08);
}

.gal-tile:hover .gal-caption{
    opacity:1;
    transform:translateY(0);
}

.gal-tile:hover{
    box-shadow:var(--shadow);
}

/* =========================
Large Desktop (6 × 2)
========================= */

@media (min-width:1200px){

.gal-grid{
    grid-template-columns:repeat(6,1fr);
    gap:10px;
}

}

/* =========================
Laptop (4 × 3)
========================= */

@media (min-width:992px) and (max-width:1199px){

.gal-grid{
    grid-template-columns:repeat(4,1fr);
}

}

/* =========================
Tablet (3 × 4)
========================= */

@media (min-width:769px) and (max-width:991px){

.gal-grid{
    grid-template-columns:repeat(3,1fr);
}

}

/* =========================
Mobile (2 × 6)
========================= */

@media (max-width:768px){

.gal-grid{
    grid-template-columns:repeat(2,1fr);
    gap:6px;
}

.gal-caption{
    display:none;
}

}

/*====================================
LIGHTBOX
====================================*/

.lightbox{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);

    display:flex;
    justify-content:center;
    align-items:center;

    padding:30px;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999999;
}

.lightbox.open{
    opacity:1;
    visibility:visible;
}

.lightbox-inner{
    position:relative;
    width:100%;
    max-width:1000px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.lightbox-frame{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.lightbox-frame img{
    max-width:100%;
    max-height:85vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:10px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

#lightboxCaption{
    margin-top:20px;
    color:#fff;
    font-size:20px;
    text-align:center;
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:25px;

    width:50px;
    height:50px;

    border:none;
    background:none;

    color:#fff;
    font-size:45px;

    cursor:pointer;

    z-index:1000000;
}

.lightbox-close:hover{
    color:var(--gold);
}

body.lightbox-open{
    overflow:hidden;
}

@media(max-width:768px){

    .lightbox{
        padding:15px;
    }

    .lightbox-frame img{
        max-height:75vh;
    }

    .lightbox-close{
        top:10px;
        right:10px;
        font-size:36px;
    }

    #lightboxCaption{
        font-size:17px;
    }

}
    
/* ============ REVIEWS ============ */
.reviews{background:var(--espresso);color:var(--white);}
.reviews .eyebrow{color:var(--gold-light);}
.reviews .eyebrow::before{background:var(--gold-light);}
.reviews .section-head h2{color:var(--white);}
.reviews .section-head p{color:rgba(255,255,255,0.7);}
.rating-row{display:flex;align-items:center;gap:14px;margin-bottom:50px;flex-wrap:wrap;}
.stars{color:var(--gold-light);font-size:1.3rem;letter-spacing:3px;}
.rating-row .big{font-family:var(--serif);font-size:2rem;}
.rating-row .sub{color:rgba(255,255,255,0.6);font-size:0.85rem;}
.review-grid{display:grid;grid-template-columns:1fr;gap:24px;}
.review-card{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.12);padding:32px;}
.review-card .stars{font-size:0.95rem;margin-bottom:16px;display:block;}
.review-card p{font-size:0.98rem;color:rgba(255,255,255,0.85);margin-bottom:20px;font-style:italic;}
.review-name{font-family:var(--serif);font-size:1.1rem;color:var(--gold-light);}
@media (min-width:640px){.review-grid{grid-template-columns:1fr 1fr;}}
@media (min-width:1024px){.review-grid{grid-template-columns:repeat(3,1fr);}}

/* ============ FAQ ============ */
.faq{background:var(--white);}
.faq-list{max-width:820px;margin:0 auto;border-top:1px solid rgba(46,36,32,0.12);}
.faq-item{border-bottom:1px solid rgba(46,36,32,0.12);}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:26px 4px;text-align:left;font-family:var(--serif);font-size:1.2rem;color:var(--espresso);
}
.faq-toggle{width:18px;height:18px;position:relative;flex-shrink:0;}
.faq-toggle::before,.faq-toggle::after{content:'';position:absolute;background:var(--gold);transition:transform .35s ease;}
.faq-toggle::before{top:50%;left:0;width:100%;height:1px;transform:translateY(-50%);}
.faq-toggle::after{left:50%;top:0;width:1px;height:100%;transform:translateX(-50%);}
.faq-item.open .faq-toggle::after{transform:translateX(-50%) rotate(90deg);opacity:0;}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease;}
.faq-a p{padding:0 4px 26px;color:var(--espresso-70);max-width:68ch;font-size:0.98rem;}
/*==================================================
CONTACT SECTION
==================================================*/

.contact{
    background:var(--blush-soft);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:50px;
}

/*=========================
LEFT COLUMN
=========================*/


/*=========================
MAP
=========================*/

.contact-map{
    width:100%;
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
}

.map-frame{
    display:block;
    width:100%;
    max-width:450px;

    height:450px;
    min-height:550px;
    max-height:450px;

    border:0;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/*=========================
TERMS
=========================*/

.terms-card{
    background:#fff;
    border-radius:14px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;

    padding:40px;

    width:100%;
    height:450px;          /* SAME AS MAP */

    align-self:flex-start;
}

.terms-card h2{
    text-align:center;
    margin-bottom:15px;
    flex-shrink:0;
}

.terms-intro{
    text-align:center;
    color:#777;
    line-height:1.8;
    margin-bottom:25px;
    flex-shrink:0;
}

.terms-list{
    flex:1;
    min-height:0;
    overflow-y:auto;
    padding-right:10px;
}

.term-item{
    margin-bottom:22px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(176,141,87,.18);
}

.term-item:last-child{
    border:none;
}

.term-item h4{
    color:var(--gold);
    font-size:18px;
    margin-bottom:10px;
}

.term-item p{
    margin:6px 0;
    line-height:1.8;
    color:#555;
}

.terms-list::-webkit-scrollbar{
    width:8px;
}

.terms-list::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}

.terms-list::-webkit-scrollbar-track{
    background:#f3f3f3;
}

/*==================================================
DESKTOP
==================================================*/

@media (min-width:992px){

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}

.contact-left{
    align-self:start;
}

.contact-map{
    margin-top:25px;
}

.map-frame{
    max-width:550px;
}

.terms-card{
    margin-top:25px;      /* SAME START AS MAP */
    height:550px;
}

}

/*==================================================
TABLET
==================================================*/

@media (max-width:991px){

.contact-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.contact-map{
    justify-content:center;
}

.map-frame{
    width:100%;
    max-width:520px;
}

.terms-card{
    margin-top:0;
    height:600px;
    padding:35px;
}

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:768px){

.contact-map{
    justify-content:center;
}

.map-frame{
    width:100%;
    max-width:100%;
    aspect-ratio:1/1;
}

.terms-card{
    height:650px;
    padding:28px;
}

.terms-card h2{
    font-size:30px;
}

.terms-list{
    overflow-y:auto;
}

}

/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:480px){

.map-frame{
    aspect-ratio:1/1;
}

.terms-card{
    height:550px;
    padding:22px;
}

.terms-card h2{
    font-size:26px;
}

.term-item h4{
    font-size:17px;
}

.term-item p{
    font-size:15px;
}

}

/*=========================================================
        PREMIUM FOOTER
=========================================================*/

.lux-footer{

    background:#2E2420;

    color:#fff;

    position:relative;

    overflow:hidden;

    padding:90px 0 35px;

}



/*==========================
Header
==========================*/

.footer-header{

    text-align:center;

    margin-bottom:45px;

}

.footer-logo{

    display:inline-block;

    font-family:var(--serif);

    font-size:54px;

    color:#fff;

    margin-bottom:12px;

    transition:.35s;

}

.footer-logo:hover{

    color:var(--gold);

}

.footer-logo em{

    color:var(--gold);

    font-style:italic;

}

.footer-subtitle{

    color:rgba(255,255,255,.75);

    font-size:17px;

    margin-bottom:28px;

}

.footer-service-list{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:14px;

}

.footer-service-list span{

    color:var(--gold);

    font-size:15px;

    letter-spacing:.08em;

    position:relative;

    padding-right:16px;

}

.footer-service-list span:not(:last-child)::after{

    content:"•";

    position:absolute;

    right:0;

    color:rgba(255,255,255,.35);

}

/*==========================
Divider
==========================*/

.footer-divider{

    width:100%;

    height:1px;

    background:rgba(255,255,255,.08);

    margin:45px 0;

}

/*==========================
Grid
==========================*/

.footer-grid{

    display:grid;

    grid-template-columns:1.4fr 1fr 1.2fr 1.2fr;

    gap:60px;

}

.footer-column h3{

    font-size:24px;

    margin-bottom:22px;

    color:#fff;

}

.footer-column p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

    font-size:15px;

}

/*==========================
Quick Links
==========================*/

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:8px;

}

.footer-column a{

    color:rgba(255,255,255,.72);

    transition:.35s;

}

.footer-column a:hover{

    color:var(--gold);

    padding-left:6px;

}

/*==========================
Opening Hours
==========================*/

.opening-hours li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:12px;

    border-bottom:1px dashed rgba(255,255,255,.08);

    padding:4px 0;

    min-height:34px;

}

.opening-hours span{

    color:rgba(255,255,255,.80);

    font-size:15px;

}

.opening-hours strong{

    color:var(--gold);

    font-size:15px;

    font-weight:500;

}

/*==========================
Contact
==========================*/

.footer-contact li{

    display:flex;

    gap:15px;

    margin-bottom:24px;

}

.footer-contact strong{

    font-size:18px;

    color:var(--gold);

    width:22px;

}

.footer-contact div{

    color:rgba(255,255,255,.75);

    line-height:1.8;

}

/*==========================
Social
==========================*/

.footer-social-row{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:28px;

    flex-wrap:wrap;

}

.footer-social-row a{

    color:#fff;

    transition:.35s;

}

.footer-social-row a:hover{

    color:var(--gold);

}

/*==========================
Book Button
==========================*/

.footer-book-btn{

    background:var(--rose);

    padding:15px 34px;

    border-radius:40px;

    color:#fff !important;

    font-size:14px;

    letter-spacing:.08em;

    text-transform:uppercase;

    transition:.35s;

}

.footer-book-btn:hover{

    background:var(--gold);

    color:#2E2420 !important;

    transform:translateY(-3px);

}

/*==========================
Bottom
==========================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:rgba(255,255,255,.55);

    margin:0;

}

.footer-policy{

    display:flex;

    gap:25px;

}

.footer-policy a{

    color:rgba(255,255,255,.55);

    transition:.35s;

}

.footer-policy a:hover{

    color:var(--gold);

}
.footer-social-row i{

margin-right:10px;

color:var(--gold);

font-size:18px;

transition:.35s;

}

.footer-social-row a:hover i{

transform:rotate(-8deg) scale(1.15);

}

.footer-contact i{

width:22px;

font-size:18px;

color:var(--gold);

margin-top:4px;

}

.opening-hours div{

display:flex;

align-items:center;

gap:8px;

}

.opening-hours i{

    color:var(--gold);

    font-size:11px;

    width:14px;

}

.footer-credit{

    color:var(--gold);

    font-weight:600;

    text-decoration:none;

    transition:all .3s ease;

}

.footer-credit:hover{

    color:#ffffff;

    text-decoration:underline;

}

/*==========================
Tablet
==========================*/

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

gap:45px;

}

}

/*==========================
Mobile
==========================*/

@media(max-width:768px){

.lux-footer{

padding:70px 0 30px;

}

.footer-logo{

font-size:40px;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

}

.footer-column{

text-align:center;

}

.footer-contact li{

justify-content:center;

}

.opening-hours li{

justify-content:center;

flex-direction:column;

align-items:center;

gap:2px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

    flex-wrap:wrap;

}

.footer-policy{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:10px;

}
.footer-social-row{

flex-direction:column;

gap:18px;

}

.footer-book-btn{

width:100%;

max-width:260px;

text-align:center;

}

}
/* ============ FLOATING CTAs ============ */
.floating-ctas{position:fixed;right:22px;bottom:22px;z-index:400;display:flex;flex-direction:column;gap:12px;align-items:flex-end;}
.fab-book{
  background:var(--rose);color:var(--white);padding:15px 26px;font-size:0.78rem;letter-spacing:0.1em;
  text-transform:uppercase;box-shadow:0 12px 30px -8px rgba(168,87,81,0.6);
  display:flex;align-items:center;gap:10px;transform:translateY(120%);opacity:0;transition:all .4s ease;
}
.fab-book.show{transform:translateY(0);opacity:1;}
.fab-book:hover{background:var(--rose-dark);}
.fab-whatsapp{
  width:52px;height:52px;border-radius:50%;background:#25D366;color:var(--white);
  display:flex;align-items:center;justify-content:center;box-shadow:0 12px 30px -8px rgba(37,211,102,0.6);
  transform:translateY(120%);opacity:0;transition:all .4s ease;
}
.fab-whatsapp.show{transform:translateY(0);opacity:1;}

/* SVG icon set (thin line, uses currentColor) */
.icon{stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
