
:root {
  --gold: #D4AF37;
  --earth: #2C3327;
  --ivory: #FAF9F6;
  --mist: #E9EAE0; 
  --stone:#e3dfd6;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Work Sans', sans-serif;
            background-color: var(--ivory);
            color: var(--earth);
            line-height: 1.6;
        }

        h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }


/* -------------- HEADER NAV ---------- */
#main-nav{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
padding:25px 0;
transition:var(--transition);
}

#main-nav.scrolled{
padding:15px 0;
background:rgba(250,249,246,.98);
backdrop-filter:blur(10px);
box-shadow:0 5px 20px rgba(0,0,0,.1);
}

/* Container */
.nav-container{
max-width:1300px;
margin:0 auto;
padding:0 40px;
display:flex;
justify-content:space-between;
align-items:center;
}

/* Logo */
.logo{
font-family:'Cormorant Garamond',serif;
font-size:1.6rem;
font-weight:600;
color:white;
text-decoration:none;
letter-spacing:2px;
}

#main-nav.scrolled .logo{
color:var(--earth);
}

.gold-text{
color:var(--gold);
}

/* Links */
.nav-links{
display:flex;
list-style:none;
gap:40px;
}

.nav-item{
color:white;
text-decoration:none;
font-size:.85rem;
text-transform:uppercase;
letter-spacing:1.5px;
position:relative;
}

#main-nav.scrolled .nav-item{
color:var(--earth);
}

/* Hover underline */
.nav-item::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:1px;
background:var(--gold);
transition:width .3s ease;
}

.nav-item:hover::after{
width:100%;
}

/* CTA */
.nav-cta{
padding:12px 25px;
border:1px solid var(--gold);
color:var(--gold);
text-decoration:none;
font-size:.8rem;
font-weight:600;
text-transform:uppercase;
transition:background .3s ease,color .3s ease;
}

.nav-cta:hover{
background:var(--gold);
color:white;
}

/* ----------- HAMBURGER ----------- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-toggle .bar {
  width: 28px;
  height: 2px;
  background-color: var(--ivory);
  transition: var(--transition);
}

#main-nav.scrolled .mobile-toggle .bar { background-color: var(--earth); }

/* 4. RESPONSIVE (MOBILE) */
@media (max-width: 992px) {

.mobile-toggle { display: flex; z-index: 1100; }

/* Hide CTA button on smaller devices */
.nav-actions{
display:none;
}

/* Mobile Bar Colors when Open */
.mobile-toggle.active .bar { background-color: var(--earth) !important; }
.mobile-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-links {
position: fixed;
top: 0;
right: -100%;
width: 80%;
height: 100vh;
background: var(--ivory);
flex-direction: column;
justify-content: center;
align-items: center;
transition: 0.4s ease-in-out;
z-index: 1000;
}

.nav-links.active { right: 0; }
.nav-links a { color: var(--earth) !important; font-size: 16px; }

/* Mobile Dropdown Adjustments */
.dropdown-content {
position: static;
display: none;
width: 100%;
box-shadow: none;
background: rgba(0,0,0,0.02);
border-top: none;
border-left: 2px solid var(--gold);
}

.dropdown.active .dropdown-content { display: block; }
.dropdown.active .arrow { transform: rotate(180deg); }

}

/*  ACCESSIBILITY */
.nav-item:focus,
.nav-cta:focus{
outline:2px solid var(--gold);
outline-offset:3px;
}

/* Screen reader only */
.sr-only{
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0,0,0,0);
white-space:nowrap;
border:0;
}


/* -------------- HERO SECTION -------------- */
.hero{
position:relative;
min-height:90vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
overflow:hidden;
padding:clamp(80px,12vh,140px) 20px 120px;
}

/* Background image */
.tour-hero__bg{
position:absolute;
inset:0;
width:100%;
height:100%;
z-index:0;
}

.tour-hero__bg img{
width:100%;
height:100%;
object-fit:cover;
object-position:center 35%;
display:block;
}

/* Overlay */
.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
to bottom,
rgba(0,0,0,.35) 0%,
rgba(0,0,0,.5) 45%,
rgba(0,0,0,.7) 100%
);
z-index:1;
}

/* Content */
.hero-content{
position:relative;
z-index:2;
max-width:850px;
width:100%;
margin:0 auto;
padding:0 25px;
animation:fadeUp .7s ease forwards;
}

/* Heading */
.hero h1{
font-family:'Playfair Display',serif;
font-size:clamp(2.2rem,5.5vw,5rem);
line-height:1.1;
margin-top:clamp(20px,4vh,60px);
margin-bottom:clamp(16px,3vw,25px);
font-weight:700;
}

/* Subtext */
.hero-subtext{
font-size:clamp(.95rem,1.4vw,1.15rem);
font-weight:300;
letter-spacing:.4px;
margin-bottom:clamp(30px,5vw,45px);
opacity:.9;
max-width:650px;
margin-left:auto;
margin-right:auto;
}

/* CTA group */
.hero-cta-group{
display:flex;
justify-content:center;
margin:0 auto;
max-width:420px;
}

/* Primary Button */
.btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 36px;
background:var(--gold);
color:#fff;
text-decoration:none;
font-size:.78rem;
letter-spacing:2px;
text-transform:uppercase;
font-weight:600;
border:1px solid var(--gold);
border-radius:2px;
transition:
transform .25s ease,
background .25s ease,
color .25s ease,
box-shadow .25s ease;
}

/* Hover */
.btn-primary:hover{
background:#b8962d;
color:#2C3327 !important;
border-color:#b8962d;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* Focus accessibility */
.btn-primary:focus{
outline:2px solid var(--gold);
outline-offset:3px;
}

/* Scroll */
.hero-scroll{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
z-index:2;
display:flex;
flex-direction:column;
align-items:center;
text-decoration:none;
color:#fff;
cursor:pointer;
font-size:.65rem;
letter-spacing:3px;
text-transform:uppercase;
opacity:.8;
}

/* Animated line */
.scroll-line{
width:1px;
height:36px;
background:rgba(255,255,255,.7);
margin-bottom:8px;
animation:scrollLine 2s infinite;
}

/* Text styling */
.scroll-text{
font-weight:400;
}

/* Animation */
@keyframes scrollLine{
0%{opacity:.2;height:10px}
50%{opacity:1;height:36px}
100%{opacity:.2;height:10px}
}

/* Mobile improvements */
@media (max-width:768px){

.hero{
min-height:85vh;
padding:80px 15px 100px;
}

.hero-cta-group{
flex-direction:column;
max-width:260px;
gap:14px;
}

.hero-cta-group a{
width:100%;
}

.separator{
display:none;
}

}

/* --------- EXPERIENCE SECTION ----------- */
.section-ivory-compact {
    padding: 100px 5%; 
    background-color: var(--ivory);
    overflow: hidden;
}

.lux-experience-wrap-small {
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    align-items: stretch; 
    gap: 4rem; 
}

/* 1. TEXT SIDE (LEFT) */
.exp-text-side-small {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
}

.h2-compact {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--earth);
    line-height: 1.2;
    width: 100%;
}

.text-body-wrap {
    width: 100%;
}

.lux-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--earth);
    font-weight: 500;
}

.text-body-wrap p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.exp-footer-compact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 51, 39, 0.1);
    width: 100%;
}

/* 2. MEDIA SIDE (RIGHT) */
.exp-media-side-small {
    flex: 1; 
    display: flex;
}

.seo-media-card {
    width: 100%;
    height: 100%;
}

.lux-img-refined {
    width: 100%;
    height: 100%; 
    min-height: 500px; 
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-lux);
}

.overview-caption-gold {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .lux-experience-wrap-small {
        flex-direction: column;
        gap: 3rem;
    }
    
    .exp-text-side-small, 
    .exp-media-side-small {
        width: 100%;
        flex: none;
    }

    .lux-img-refined {
        height: 400px; /* Return to fixed height on mobile */
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .lux-hero {
        padding-top: 100px;
        align-items: flex-start; /* Start from top on mobile */
    }

    .lux-hero__wrap {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 2rem;
        transform: none; /* Reset desktop adjustment */
    }

    .lux-hero__title {
        font-size: 2.5rem; /* Scale down for smaller screens */
    }

    .lux-hero__meta {
        gap: 1.5rem;
        border-top: 1px solid rgba(250, 249, 246, 0.2);
    }

    .form-container {
        padding: 2rem 1.5rem; /* Compact form for small screens */
    }
}

/* --------------- Tour Options -------------- */
/* container */
.container{
width: min(1200px,92%);
margin:auto;
}

.tours-section{
padding: clamp(60px,8vw,100px) 0;
background: var(--mist);
}

.section-header{
max-width:880px;
margin:0 auto 50px;
text-align:center;
}

.section-title{
font-size: clamp(1.8rem,4vw,3rem);
margin-bottom:12px;
}

.section-intro{
/* font-family:'Work Sans',sans-serif; */
font-size:1rem;
line-height:1.7;
opacity:.8;
margin:0;
}

/* grid */
.tours-grid{
display:grid;
grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.tour-card{
display:flex;
flex-direction:column;
background:#fff;
overflow:hidden;
text-decoration:none;
color:inherit;
border-radius:4px;
transition: transform .35s ease, box-shadow .35s ease;
}

.tour-card:hover{
transform: translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.tour-card:focus-visible{
outline:2px solid var(--gold);
outline-offset:3px;
}

.tour-image{
  position:relative;
  aspect-ratio:3/2;
  overflow:hidden;
}

.tour-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tour-card:hover img{
transform:scale(1.05);
}

/* title + price overlay */
.tour-overlay{
position:absolute;
bottom:18px;
left:18px;
color:white;
}

.tour-overlay h3{
font-size:1.4rem;
line-height:1.2;
margin-bottom:3px;
text-shadow:0 3px 8px rgba(0,0,0,0.6);
font-weight: 600;
}

.tour-price{
font-weight:600;
font-size:.95rem;
color:#f5c96f;
text-shadow:0 2px 6px rgba(0,0,0,0.7);
}

.tour-footer{
padding:28px 24px;
display:flex;
flex-direction:column;
flex-grow:1;
min-height:130px;
}

.tour-destination{
font-size:.9rem;
margin-bottom:6px;
color:#555;
}

.tour-activities{
font-size:.9rem;
color:#777;
line-height:1.5;
margin-bottom:12px;
}

.tour-button{
display:inline-block;
margin-top:auto;
font-weight:600;
font-size:.9rem;
color:var(--gold);
transition: transform .25s ease;
}

.tour-card:hover .tour-button{
transform: translateX(5px);
}

/* mobile adjustments */
@media (max-width:600px){

.tour-overlay h3{
font-size:1.2rem;
}

.tour-footer{
padding:20px;
}
}

.section-cta{
text-align:center;
margin-top:50px;
}

.tours-more-btn{
display:inline-block;
padding:14px 28px;
border:2px solid var(--gold);
color:var(--gold);
font-weight:600;
text-decoration:none;
transition: all .3s ease;
}

.tours-more-btn:hover{
background:var(--gold);
color:white;
}


/* ------------ HOW IT WORKS -------- */
.section-steps{
background:var(--ivory);
padding:clamp(60px,8vw,100px) 5%;
}

.container-lux{
max-width:1300px;
margin:0 auto;
}

/* HEADER */

.section-header{
text-align:center;
margin-bottom:50px;
}

.lux-label{
display:block;
font-family:'Work Sans',sans-serif;
text-transform:uppercase;
letter-spacing:2px;
font-size:0.7rem;
color:var(--gold);
font-weight:700;
margin-bottom:8px;
}

.section-title{
font-size:clamp(2rem,4vw,2.8rem);
color:var(--earth);
}

/* -------- STEPS GRID -------- */

.steps-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

/* CARD */

.step-card{
background:#fff;
padding:32px;
border-radius:8px;
border:1px solid rgba(0,0,0,0.05);
transition:all .25s ease;
display:flex;
flex-direction:column;
}

.step-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* STEP NUMBER */

.step-top{
display:flex;
align-items:center;
gap:14px;
margin-bottom:14px;
}

.step-number{
font-family:'Cormorant Garamond',serif;
font-size:2.6rem;
color:var(--gold);
font-style:italic;
}

/* CONTENT */

.step-card h3{
font-size:1.35rem;
margin:0;
color:var(--earth);
}

.step-card p{
font-family:'Work Sans',sans-serif;
font-size:0.95rem;
line-height:1.7;
color:var(--earth);
opacity:0.85;
}

/* HOVER DETAIL */

.step-card:hover h3{
color:var(--gold);
}

/* -------- CTA -------- */

.steps-cta{
margin-top:60px;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
}

.cta-note{
font-family:'Work Sans',sans-serif;
font-size:0.85rem;
opacity:0.7;
font-style:italic;
max-width:480px;
}

/* -------- TABLET -------- */

@media (max-width:1024px){

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

}

/* -------- MOBILE -------- */

@media (max-width:640px){

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

.section-header{
margin-bottom:35px;
}

.step-card{
padding:28px;
}

.steps-cta{
margin-top:40px;
}

.steps-cta .btn-primary{
width:100%;
max-width:340px;
}

}


/* ------------- PRICING & PERMITS --------- */
/* Section Background */
.section-pricing {
    background-color: var(--mist);
    padding: 100px 5%; 
}

/* The Dark Box */
.pricing-box {
    background: var(--earth);
    color: var(--ivory);
    padding: 80px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

/* H2 Styling */
.h2-pricing {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--ivory);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Typography Details */
.pricing-lead {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.price-tag { 
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; 
    color: var(--gold); 
    display: block; 
    margin-bottom: 10px;
    line-height: 1;
}

.price-tag small { 
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem; 
    color: var(--ivory); 
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-subtext {
    max-width: 450px; 
    margin: 2rem auto;
    font-size: 0.95rem;
    opacity: 0.8;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
}

/* Button Styling */
.btn-outline-gold {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--gold);
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--earth);
    transform: translateY(-3px);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .section-pricing {
        padding: 60px 20px;
    }
    .pricing-box {
        padding: 40px 20px;
    }
    .price-tag {
        font-size: 3.5rem;
    }
}

.permit-includes{
    margin:25px 0 20px;
    text-align:left;
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
}

.permit-includes ul{
    list-style:none;
    padding:0;
}

.permit-includes li{
    margin-bottom:8px;
    position:relative;
    padding-left:18px;
    font-size:.95rem;
}

.permit-includes li::before{
    content:"•";
    position:absolute;
    left:0;
    color:var(--gold);
}

@media (max-width:768px){

    .section-pricing{
        padding:60px 20px;
    }

    .pricing-box{
        padding:45px 22px;
        border-radius:6px;
    }

    .h2-pricing{
        font-size:clamp(1.7rem,6vw,2.2rem);
        margin-bottom:1rem;
    }

    .pricing-lead{
        font-size:.95rem;
        max-width:100%;
        margin-bottom:1.5rem;
    }

    .price-tag{
        font-size:3rem;
        margin-bottom:5px;
    }

    .price-tag small{
        font-size:.8rem;
        letter-spacing:1px;
    }

    .permit-includes{
        max-width:100%;
        margin:20px auto;
    }

    .permit-includes li{
        font-size:.9rem;
        line-height:1.5;
    }

    .pricing-subtext{
        max-width:100%;
        font-size:.9rem;
        margin:1.5rem auto;
        padding-top:1.5rem;
    }

    .btn-outline-gold{
        padding:14px 28px;
        font-size:.75rem;
        letter-spacing:1.5px;
    }

}


/* -------------- WHY US ------------- */
.why-us-section{
    background: var(--ivory);
    padding:70px 5%;
}

/* GRID */

.why-us-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:36px 50px;
    margin-top:40px;
    align-items:stretch;
}

/* CARD */

.why-card{
    background:#fff;
    padding:28px 26px;
    border:1px solid rgba(0,0,0,0.05);
    transition:all .35s ease;
    height:100%;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* ICON + TITLE ROW */

.why-card-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

/* ICON */

.why-icon{
    font-size:22px;
    color:var(--gold);
    flex-shrink:0;
}

/* TITLE */

.why-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:1.4rem;
    color:var(--earth);
    margin:0;
}

/* TEXT */

.why-card p{
    font-size:.95rem;
    line-height:1.7;
    color:var(--earth);
    opacity:.85;
}

/*  MOBILE */

@media (max-width:768px){

    .why-us-section{
        padding:55px 20px;
    }

    .why-us-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

}

.why-cta{
    text-align:center;
    margin-top:50px;
}

.why-cta p{
    font-size:1rem;
    margin-bottom:18px;
    color:var(--earth);
    opacity:.85;
}


/* ---------- GUIDE SECTION ------ */
.guide-section{
padding:90px 0;
background:var(--stone);
}

.guide-header{
text-align:center;
max-width:760px;
margin:0 auto 50px auto;
}

.guide-grid{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:60px;
align-items:center;
}

/* IMAGE */
.guide-image{
width:100%;
max-width:420px;
}

.guide-image img{
width:100%;
height:auto;
aspect-ratio:4/5;
object-fit:cover;
border-radius:12px;
box-shadow:0 12px 32px rgba(0,0,0,0.08);
}

/* TEXT */
.guide-content{
max-width:560px;
}

.guide-lead{
font-size:1.1rem;
margin-bottom:1.2rem;
line-height:1.7;
}

.guide-content p{
margin-bottom:1rem;
line-height:1.7;
}

/* TABLET */
@media (max-width:900px){

.guide-grid{
grid-template-columns:1fr;
gap:35px;
text-align:center;
}

.guide-image{
margin:0 auto;
order:-1;
max-width:320px;
}

.guide-content{
max-width:620px;
margin:auto;
}

}

@media (max-width:520px){

.guide-section{
padding:70px 0;
}

.guide-lead{
font-size:1rem;
}

.guide-content{
max-width:440px;
padding:0 16px;
}

.guide-image{
max-width:260px;
}

}


/* ---------- Testimonials -------- */
.section-header {
    text-align: center;
    margin-bottom: 60px; /* Space between header and slider */
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--earth);
    margin-bottom: 1rem;
}

.section-intro {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--earth);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    .section-intro {
        font-size: 1rem;
    }
}
.testimonial-slider { max-width: 800px; margin: 0 auto; text-align: center; font-style: italic; }
.quote { font-family: 'Cormorant Garamond'; font-size: 2rem; margin-bottom: 20px; }

.testimonial-section {
    background-color: var(--mist);
    padding: 60px 5%;
    text-align: center;
}

/* Decorative Quote Icon */
.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.stars {
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.4;
    color: var(--earth);
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.author-name {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--earth);
}

.author-location {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 80px 20px;
    }
    .quote {
        font-size: 1.6rem;
    }
    .quote-icon {
        font-size: 6rem;
        top: -40px;
    }
}

/* Slider Logic */
.testimonial-slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Chrome/Safari/Firefox */
    -ms-overflow-style: none;
}

.testimonial-slider-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome */
}

.testimonial-slider-container {
    display: flex;
    overflow-x: hidden; /* Hide the scrollbar entirely for autoplay */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.testimonial-track {
    display: flex;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.testimonial-track {
    display: flex;
    transition: var(--transition);
}

.testimonial-slide {
    min-width: 100%; /* Each slide takes full width */
    scroll-snap-align: center;
    padding: 20px;
    flex-shrink: 0;
}

/* Dots Styling */
.slider-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--earth);
    opacity: 0.2;
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
    opacity: 1;
    transform: scale(1.2);
}

/* Maintain Quote Styling from before */
.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 30px;
    font-style: italic;
}

.section-header {
    margin-bottom: 30px; /* Reduced from 60px */
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem); /* Slightly smaller H2 */
    margin-bottom: 0.5rem;
}

.section-intro {
    font-size: 0.95rem; /* Smaller intro text */
    max-width: 500px;
}

.testimonial-wrap{
    max-width:900px;
    margin:0 auto;
    position:relative;
    background:var(--ivory);
    padding:40px 30px;
    border-radius:6px;
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
}

/* Scale down the Quote Icon to save vertical space */
.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; /* Reduced from 8rem */
    color: var(--gold);
    opacity: 0.1;
    position: absolute;
    top: -30px; /* Moved up to overlap less */
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.stars {
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.quote {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem); /* More compact quote text */
    margin-bottom: 20px; /* Reduced from 40px */
    line-height: 1.4;
}

.author-info {
    gap: 2px;
}

.slider-dots {
    margin-top: 20px; /* Reduced from 30px */
}

/* --- MOBILE COMPACTNESS --- */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 20px;
    }
    .section-header {
        margin-bottom: 20px;
    }
    .quote {
        font-size: 1.3rem;
    }
}

.testimonial-slider-container {
    width: 100%;
    overflow: hidden; /* This hides the other slides */
    position: relative;
    display: block;
}

.testimonial-track {
    display: flex;
    width: 100%;
    /* This ensures smooth movement for the JS auto-play */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}

.testimonial-slide {
    /* KEY FIX: Force each slide to be exactly the width of the container */
    flex: 0 0 100%; 
    width: 100%;
    padding: 0 10px; /* Prevents text from hitting screen edges on mobile */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quote {
    max-width: 600px; /* Keeps long quotes from getting too wide on desktop */
    margin: 0 auto 20px auto;
}

/* --- MOBILE SPECIFIC POSITIONING --- */
@media (max-width: 768px) {
    .testimonial-slide {
        padding: 0 20px; /* More breathing room on small screens */
    }
    
    .quote {
        font-size: 1.25rem; /* Prevents height jumps by keeping text compact */
        line-height: 1.5;
    }
}

.testimonial-cta{
    text-align:center;
    margin-top:50px;
}

.tripadvisor-link{
    display:inline-block;
    padding:14px 34px;
    border:1px solid var(--gold);
    color:var(--earth);
    font-weight:500;
    text-decoration:none;
    letter-spacing:.5px;
    transition:all .3s ease;
    border-radius:4px;
    background:#fff;
}

/* Hover effect */

.tripadvisor-link:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,0.1);
}


/* ----------- FAQ SECTION ----------- */
.faq-section {
    background-color: var(--ivory);
    padding: 90px 5%;
}

.container-lux {
    max-width: 820px;
    margin: 0 auto;
}

.section-header-compact {
    text-align: center;
    margin-bottom: 55px;
}

.section-header-compact .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--earth);
    margin-bottom: 0.5rem;
}

.section-header-compact p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--earth);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.faq-container {
    border-top: 1px solid rgba(44,51,39,0.15);
}

details {
    border: 1px solid rgba(44,51,39,0.08);
    cursor: pointer;
    transition: all .35s ease;
    background-color: #f6f3ea; /* slightly darker than ivory */
    margin-bottom: 14px;
    border-radius: 6px;
}

details:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--earth);
}

summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: var(--gold);
    font-size: 1.6rem;
    transition: transform .45s ease;
}

.faq-content {
    padding: 0 20px 30px 20px;
    max-width: 90%;
}

.faq-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--earth);
    opacity: .9;
}

details[open] {
    background-color: var(--ivory);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

details[open] {
    border-left: 3px solid var(--gold);
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

details[open] .faq-content {
    animation: faqFade .35s ease;
}

.faq-content ul{
margin-top:12px;
padding-left:0;
list-style:none;
}

.faq-content li{
display:flex;
align-items:flex-start;
gap:10px;
margin-bottom:10px;
font-size:1rem;
line-height:1.6;
color:var(--earth);
opacity:.9;
}

/* custom bullet */
.faq-content li::before{
content:"•";
color:var(--gold);
font-size:1.2rem;
line-height:1;
margin-top:2px;
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */

@media (max-width:768px){

    .faq-section {
        padding: 60px 20px;
    }

    summary {
        font-size: 1.15rem;
        padding: 20px 10px;
    }

    .faq-content {
        padding: 0 10px 20px 10px;
    }
}

.faq-cta{
    text-align:center;
    margin-top:50px;
}

.faq-cta p{
    font-size:1rem;
    margin-bottom:18px;
    color:var(--earth);
    opacity:0.85;
}

.faq-cta .btn-primary{
    display:inline-block;
    padding:14px 30px;
    background:var(--gold);
    border:1px solid var(--gold);
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:all .3s ease;
}

.faq-cta .btn-primary:hover{
    background:transparent;
    color:var(--gold);
}


/* ================= CONTACT SECTION ================= */
.contact-layout{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:60px;
    align-items:start;
}

.contact-section{
    background: var(--earth);
    color: var(--ivory);
    padding:90px 5%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
}

.contact-header{
    max-width:520px;
    text-align:left;
}

.contact-title{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:15px;
}

.contact-intro{
    font-family:'Work Sans',sans-serif;
    font-size:1rem;
    line-height:1.7;
    opacity:.85;
}

/* FORM */
.contact-form{
    max-width:480px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.form-row{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:16px;
}

/* LABELS */
.contact-form label{
    display:block;
    text-align:left;
    font-size:.85rem;
    margin-bottom:4px;
    opacity:.8;
}

/* INPUTS */
.contact-form input{
    width:100%;
    padding:16px 18px;
    border:1px solid rgba(255,255,255,0.2);
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:.95rem;
    border-radius:4px;
    outline:none;
    transition:all .3s ease;
}

.contact-form input::placeholder{
    color:rgba(255,255,255,0.6);
}

/* INPUT FOCUS */
.contact-form input:focus{
    border-color:var(--gold);
    background:rgba(255,255,255,0.12);
}

/* BUTTON */
.btn-primary{
margin-top:10px;
padding:16px 28px;
background:var(--gold);
color:#fff;
border:none;
font-family:'Work Sans',sans-serif;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;
cursor:pointer;
max-width:320px;   /* limits width */
width:100%;
margin-left:auto;
margin-right:auto;
transition:all .3s ease;
}

.btn-primary:hover{
    background:#c9a437;
    transform:translateY(-2px);
}

/* TRUST TEXT */
.contact-trust{
    font-size:.8rem;
    opacity:.6;
    margin-top:10px;
}

/* ALT CONTACT */
.contact-alt{
    margin-top:25px;
    font-size:.9rem;
    opacity:.8;
}

.contact-alt a{
    color:var(--gold);
    text-decoration:none;
}

.contact-alt a:hover{
    text-decoration:underline;
}

.contact-form select,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid rgba(255,255,255,0.2);
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:.95rem;
    border-radius:4px;
    outline:none;
    transition:all .3s ease;
}

.contact-form textarea{
    min-height:120px;
    resize:vertical;
}

.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--gold);
    background:rgba(255,255,255,0.12);
}

.contact-form select {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

.contact-form select option{
    color:#000;
    background:#fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid rgba(255,255,255,0.2);
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:.95rem;
    border-radius:4px;
    outline:none;
    transition:all .3s ease;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--gold);
    background:rgba(255,255,255,0.12);
}

/* MOBILE */
@media (max-width:768px){

    .contact-section{
        padding:60px 20px;
    }

    .contact-title{
        font-size:2rem;
    }

    .contact-intro{
        font-size:.95rem;
    }

}

#travel-date:invalid {
    color: rgba(255,255,255,0.6);
}

/* Removes the default 'check' or 'arrow' icons in some mobile browsers if they interfere */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Makes the icon white to match your ivory theme */
    opacity: 0.5;
}

@media (max-width: 900px){

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

    .contact-header{
        text-align:center;
        margin:0 auto;
    }

    .contact-form{
        margin:0 auto;
    }

}

@media (max-width:600px){

.form-row{
grid-template-columns:1.2fr 0.8fr;
gap:10px;
}
}

.footer-business-info{
margin-top:60px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,0.15);
text-align:center;
font-size:14px;
line-height:1.6;
opacity:.85;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.footer-business-info a{
color:var(--gold);
text-decoration:none;
}

.footer-business-info a:hover{
text-decoration:underline;
}

.footer-business-info{
margin-top:70px;
padding:40px 20px;
background:rgba(255,255,255,0.03);
border-top:1px solid rgba(255,255,255,0.08);
border-bottom:1px solid rgba(255,255,255,0.08);
text-align:center;
font-size:14px;
line-height:1.6;
opacity:.9;
max-width:700px;
margin-left:auto;
margin-right:auto;
border-radius:6px;
}

/* ---------- Email address -------- */
.contact-section a{
color:var(--gold);
text-decoration:none;
}

.contact-section a:hover{
text-decoration:underline;
}

.footer-legal{
margin-top:12px;
font-size:.8rem;
opacity:.7;
display:flex;
flex-wrap:wrap;
justify-content:center;   /* center horizontally */
align-items:center;
gap:15px;
text-align:center;
}

.footer-legal a{
color:#c7d0cb;
text-decoration:none;
}

.footer-legal a:hover{
color:#9c7c38;
}

/* Mobile improvement */
@media (max-width:600px){

.footer-legal{
flex-direction:column;
text-align:center;
gap:8px;
}

.footer-legal a{
margin-left:0;
}

}







