/* ============ 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{
    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;

}

.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,0.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:linear-gradient(135deg,var(--blush) 0%, var(--nude) 100%);
  display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;
}
.svc-thumb .arc-icon{width:44px;height:44px;color:var(--white);opacity:0.85;}
.svc-thumb span.ph-label{
  position:absolute;bottom:10px;left:10px;right:10px;font-size:0.65rem;letter-spacing:0.08em;
  color:rgba(255,255,255,0.9);text-transform:uppercase;background:rgba(46,36,32,0.28);
  padding:5px 8px;text-align:center;
}
.svc-card h3{font-size:1.4rem;margin-bottom:10px;}
.svc-card p{color:var(--espresso-70);font-size:0.94rem;flex-grow:1;margin-bottom:20px;}
.svc-card .btn{align-self:flex-start;padding:11px 22px;font-size:0.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:14px;}
.gal-tile{
  position:relative;aspect-ratio:3/4;overflow:hidden;cursor:pointer;
  background:linear-gradient(160deg,var(--blush) 0%, var(--nude) 100%);
}
.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;}
.gal-caption{
  position:absolute;left:0;right:0;bottom:0;padding:16px;
  background:linear-gradient(0deg, rgba(46,36,32,0.65), transparent);
  color:var(--white);font-size:0.85rem;letter-spacing:0.03em;
  opacity:0;transform:translateY(10px);transition:all .35s ease;
}
.gal-tile:hover .gal-caption{opacity:1;transform:translateY(0);}
.gal-tile:hover{box-shadow:var(--shadow);}
@media (min-width:640px){.gal-grid{grid-template-columns:repeat(3,1fr);}}
@media (min-width:1024px){.gal-grid{grid-template-columns:repeat(4,1fr);}}

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

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99999;
}

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

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

.lightbox-frame{

    width:100%;
    max-width:900px;

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

    background:none;

}

.lightbox-frame img{

    max-width:100%;
    max-height:85vh;

    width:auto;
    height:auto;

    border-radius:12px;

    object-fit:contain;

}

#lightboxCaption{
    margin-top:18px;
    color:#fff;
    font-size:1.1rem;
    font-family:var(--serif);
    text-align:center;
}

.lightbox-close{
    position:absolute;
    top:25px;
    right:35px;
    width:50px;
    height:50px;
    border:none;
    background:none;
    color:#fff;
    font-size:42px;
    cursor:pointer;
    line-height:1;
    transition:.3s;
}

.lightbox-close:hover{
    transform:rotate(90deg);
    color:var(--gold);
}


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

@media(max-width:991px){

    .lightbox{
        padding:20px;
    }

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

}


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

@media(max-width:768px){

    .lightbox{
        padding:15px;
    }

    .lightbox-inner{
        max-width:100%;
    }

    .lightbox-frame img{
        width:100%;
        max-height:75vh;
        border-radius:8px;
    }

    #lightboxCaption{
        font-size:18px;
    }

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

}

/* ============ 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 ============ */
.contact{background:var(--blush-soft);}
.contact-grid{display:grid;grid-template-columns:1fr;gap:48px;}
.contact-info h3{font-size:1.5rem;margin-bottom:22px;}
.info-row{display:flex;gap:16px;margin-bottom:22px;align-items:flex-start;}
.info-row .arc-icon{width:20px;height:20px;color:var(--gold);flex-shrink:0;margin-top:4px;}
.info-row strong{display:block;font-size:0.75rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--espresso-70);margin-bottom:3px;}
.map-frame{width:100%;aspect-ratio:4/3;border:0;margin-top:28px;filter:grayscale(15%);}
.contact-form{background:var(--white);padding:40px 32px;border:1px solid rgba(46,36,32,0.08);}
.form-row{margin-bottom:20px;}
.form-row label{display:block;font-size:0.72rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--espresso-70);margin-bottom:8px;}
.form-row input,.form-row select,.form-row textarea{
  width:100%;padding:13px 14px;border:1px solid rgba(46,36,32,0.2);background:var(--ivory);
  font-size:0.95rem;color:var(--espresso);transition:border-color .3s ease;
}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{outline:none;border-color:var(--gold);}
.form-row textarea{resize:vertical;min-height:100px;}
.form-msg{margin-top:16px;font-size:0.88rem;color:var(--rose-dark);display:none;}
.form-msg.show{display:block;}
@media (min-width:960px){.contact-grid{grid-template-columns:1fr 1fr;}}

/*=========================================================
            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;}

/* ================================================================
   SERVICES PAGE (services.html) — additive only, nothing above
   this line has been modified. Reuses existing tokens/classes
   (--ivory, --gold, --rose, --serif, .container, .btn, .eyebrow,
   .section-head, .reveal, .why*, .gallery/.gal-*, .faq*) and only
   introduces new classes for page furniture that doesn't already
   exist on the homepage (breadcrumb, sticky quick-nav, alternating
   service blocks, restaurant-style price list, booking band).
   ================================================================ */

/* ---- Hero background override for this page only ---- */
/* ===========================
   SERVICES HERO
=========================== */

.hero.services-hero{

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image: url("images/services/services-hero.webp");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}

/* Tablet */

@media(max-width:992px){

.hero.services-hero{

    background-position:72% center;

}

}

/* Mobile */

@media(max-width:768px){

.hero.services-hero{

    background-size:cover;

    background-position:right center;

}

}

/* Small Phones */

@media(max-width:480px){

.hero.services-hero{

    background-position:82% center;

}

}
/* ---- Breadcrumb ---- */
.breadcrumb{background:var(--ivory);border-bottom:1px solid rgba(46,36,32,0.08);padding:16px 0;}
.breadcrumb ol{display:flex;flex-wrap:wrap;align-items:center;font-size:0.74rem;letter-spacing:0.06em;text-transform:uppercase;color:var(--espresso-70);}
.breadcrumb li{display:flex;align-items:center;}
.breadcrumb li+li::before{content:'/';margin:0 10px;color:var(--gold);}
.breadcrumb a:hover{color:var(--gold);}
.breadcrumb li[aria-current]{color:var(--espresso);}

/* ---- Active nav state (Services link on this page) ---- */
.nav-links a[aria-current="page"]::after,
.mobile-nav a[aria-current="page"]::after{width:100%;}

/* ---- Introduction ---- */
.intro{background:var(--white);}
.intro .container{max-width:820px;text-align:center;}
.intro .section-head{margin-left:auto;margin-right:auto;}
.intro p.intro-copy{color:var(--espresso-70);font-size:1.04rem;line-height:1.9;}

/* ---- Sticky quick navigation ---- */
.quick-nav{
  position:sticky;top:0;z-index:300;
  background:rgba(251,246,241,0.96);backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(46,36,32,0.08);padding:16px 0;
}
.quick-nav .container{display:flex;gap:10px;overflow-x:auto;}
.quick-nav .container::-webkit-scrollbar{display:none;}
.quick-nav a{
  flex-shrink:0;padding:10px 22px;font-size:0.72rem;letter-spacing:0.1em;text-transform:uppercase;
  border:1px solid rgba(46,36,32,0.15);border-radius:30px;color:var(--espresso);
  transition:all .3s ease;white-space:nowrap;
}
.quick-nav a:hover{background:var(--espresso);color:var(--white);border-color:var(--espresso);}

/* ---- Alternating service sections ---- */
.service-block .container{display:grid;grid-template-columns:1fr;gap:44px;align-items:center;}
.service-media{width:100%;aspect-ratio:4/3;overflow:hidden;order:1;background:linear-gradient(135deg,var(--blush) 0%, var(--nude) 100%);}
.service-media img{width:100%;height:100%;object-fit:cover;}
.service-content{order:2;}
.service-block.alt{background:var(--white);}
.service-content h2{font-size:clamp(1.9rem,3.6vw,2.5rem);margin:16px 0 18px;line-height:1.15;}
.service-content p.desc{color:var(--espresso-70);font-size:1rem;max-width:54ch;margin-bottom:24px;}
.service-benefits{display:grid;gap:11px;margin-bottom:30px;}
.service-benefits li{display:flex;gap:11px;align-items:flex-start;font-size:0.93rem;color:var(--espresso-70);}
.service-benefits li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--gold);margin-top:8px;flex-shrink:0;}
.service-price-cards{display:grid;gap:12px;margin-bottom:30px;}
.price-chip{display:flex;justify-content:space-between;align-items:baseline;gap:14px;padding:15px 20px;background:var(--ivory);border:1px solid rgba(46,36,32,0.08);}
.service-block.alt .price-chip{background:var(--blush-soft);}
.price-chip .p-name{font-family:var(--serif);font-size:1.02rem;}
.price-chip .p-meta{font-size:0.72rem;color:var(--espresso-70);letter-spacing:0.05em;text-transform:uppercase;display:block;margin-top:2px;}
.price-chip .p-cost{font-family:var(--serif);color:var(--rose-dark);font-size:1.08rem;font-weight:600;white-space:nowrap;}
@media (min-width:960px){
  .service-block .container{grid-template-columns:1fr 1fr;gap:72px;}
  .service-block.reverse .service-media{order:2;}
  .service-block.reverse .service-content{order:1;}
}


/* ---- Booking CTA band ---- */
.cta-band{background:var(--espresso);color:var(--white);text-align:center;}
.cta-band .section-head{margin-left:auto;margin-right:auto;text-align:center;}
.cta-band .eyebrow{color:var(--gold-light);justify-content:center;}
.cta-band .eyebrow::before{background:var(--gold-light);}
.cta-band h2{color:var(--white);}
.cta-band .section-head p{color:rgba(255,255,255,0.7);margin-left:auto;margin-right:auto;}
.cta-actions{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;margin-top:12px;}
.cta-actions .btn-ghost{color:var(--white);border-color:rgba(255,255,255,0.4);}
.cta-actions .btn-ghost:hover{background:var(--white);color:var(--espresso);}

/* ---- Mobile refinements ---- */
@media (max-width:600px){
  .service-media{aspect-ratio:1/1;}
  .quick-nav a{padding:9px 18px;font-size:0.68rem;}
}



/*==================================================
          COMPLETE PRICE LIST
==================================================*/

.price-list{
    background:#fbf6f1;
    padding:50px 0;
}

.price-grid{

    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px;
    margin-top:70px;

    align-items:start;
}

/*============================
        Accordion Card
=============================*/

.accordion-item{

    background:#fff;
    border:1px solid #ece3db;
    border-radius:20px;

    overflow:hidden;

    transition:.35s ease;

    align-self:start;
    height:auto;

}

.accordion-item:hover{

    border-color:#d5b07d;
    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

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

.accordion-header{

    width:100%;
    background:none;
    border:none;
    cursor:pointer;

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

    padding:22px;

    text-align:left;

}

.accordion-left{

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

}

/*============================
            Icon
=============================*/

.accordion-icon{

    width:100px;
    height:100px;

    object-fit:contain;
    flex-shrink:0;
    transition:.35s;

}

.accordion-item:hover .accordion-icon{

    transform:scale(1.05);

}

/*============================
          Typography
=============================*/

.accordion-header h3{

    font-size:25px;
    font-family:var(--serif);
    font-weight:400;
    color:#2e2622;
    margin-bottom:6px;

}

.accordion-header p{

    color:#7b6d63;
    font-size:12px;
    margin-bottom:8px;

}

.accordion-header span{

    display:inline-block;

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:2px;

    color:#c4954c;

    font-weight:600;

}

/*============================
        Popular Badge
=============================*/

.popular-tag{

    display:inline-block;

    margin-left:10px;

    padding:4px 10px;

    background:#c4954c;

    color:#fff;

    border-radius:20px;

    font-size:11px;

    letter-spacing:1px;

    text-transform:uppercase;

    vertical-align:middle;

}

/*============================
          Arrow
=============================*/

.accordion-header i{

    font-size:18px;

    color:#b58b4d;

    transition:.35s;

    flex-shrink:0;

}

.accordion-item.active .accordion-header i{

    transform:rotate(180deg);

}

/*============================
      Accordion Body
=============================*/

.accordion-body{

    max-height:0;
    overflow:hidden;

    padding:0 30px;

    transition:max-height .45s ease;

}

.accordion-item.active{

    border-color:#d5b07d;
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.accordion-item.active .accordion-body{

    padding:0 30px 30px;

}

/*============================
        Service Row
=============================*/

.service-row{

    display:grid;

    grid-template-columns:1fr 90px 80px;

    align-items:center;

    gap:15px;

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.service-row:last-of-type{

    margin-bottom:25px;

}

.service-row span:first-child{

    font-weight:500;

    color:#2b2b2b;

}

.service-row span:nth-child(2){

    color:#888;

    text-align:right;

}

.service-row strong{

    text-align:right;

    color:#b58b4d;

    font-weight:600;

}

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

.accordion-body .btn{

    margin:15px 0 30px;

    width:100%;

}

/*============================
      Active Card
=============================*/

.accordion-item.active{

    border-color:#d3b07b;

    box-shadow:0 25px 55px rgba(0,0,0,.08);

}

/*============================
          Animation
=============================*/


/*============================
        Hover Effect
=============================*/

.service-row:hover{

    background:#fcfaf8;

}

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

@media(max-width:992px){

.price-grid{

grid-template-columns:1fr;

gap:24px;

}

}

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

@media(max-width:768px){

.price-list{

    padding:80px 0;

}

.accordion-header{

    padding:22px;

}

.accordion-left{

    gap:16px;

}

.accordion-icon{

    width:56px;
    height:56px;

}

.accordion-header h3{

    font-size:26px;

}

.accordion-header p{

    font-size:14px;

}

/* KEEP DESKTOP LAYOUT */

.service-row{

    display:grid;

    grid-template-columns:1fr 90px 80px;

    align-items:center;

    gap:15px;

    padding:18px 0;

}

.service-row span:first-child{

    font-size:16px;

}

.service-row span:nth-child(2){

    text-align:center;

    font-size:15px;

}

.service-row strong{

    text-align:right;

    font-size:16px;

}

}

/*============================
      Small Phones
=============================*/

@media(max-width:480px){

.accordion-header{

    padding:18px;

}

.accordion-header h3{

    font-size:22px;

}

.accordion-icon{

    width:48px;
    height:48px;

}

.accordion-header span{

    font-size:11px;

}

/* KEEP ROW IN ONE LINE */

.service-row{

    grid-template-columns:1fr 70px 60px;

    gap:10px;

}

.service-row span:first-child{

    font-size:14px;

}

.service-row span:nth-child(2){

    font-size:13px;

}

.service-row strong{

    font-size:14px;

}

}
