/* --- CSS Variables & Resets --- */
:root {
    /* Primary Colors */
    --terracotta: #C97147;
    --forest-green: #2D5F3F;
    --forest-green-dark: #1f422b;
    --terracotta-dark: #b05c33;

    /* Earth Tones & Neutrals */
    --earth-light: #F7F5F0;
    /* Warm white */
    --earth-mid: #E8E3D8;
    /* Taupe/sand */
    --text-dark: #2A2A2A;
    /* Very dark brown/grey */
    --text-light: #5A5A5A;
    /* Softer reading text */
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing System */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-2xl: 4.5rem;
    /* 72px */

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--earth-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
.logo {   /* font-family: var(--font-heading);*/    font-weight: 500;    line-height: 1.15;/*    color: var(--forest-green); */    color: #1e4857;}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.eyebrow {    display: block;    font-family: var(--font-body);    text-transform: uppercase;    font-size: 1rem;/*    font-size: 0.75rem; */    letter-spacing: 0.1em;    color: var(--terracotta);    margin-bottom: var(--space-sm);    font-weight: 600;}

.eyebrow2 {   display: block;    font-family: var(--font-body);    font-size: 1.3rem;   color: #348282;    margin-bottom: var(--space-xl);    font-weight: 600;}
.eyebrow3 {   display: block;    font-family: var(--font-body);    font-size: 1.3rem;   color: #348282;    margin-bottom: var(--space-md);    font-weight: 600;}

.text-center {
    text-align: center;
}

/* Utilities */
.container {    width: 100%;    max-width: 1200px;    margin: 0 auto;    padding: 0 var(--space-sm);}

.section {
    padding: var(--space-2xl) 0;
}

.bg-earth {
/*    background-color: var(--earth-mid);*/
}

.bg-terracotta {
    background-color: #C99D34;
    color: var(--white);
}

/*.bg-terracotta { background-color: var(--terracotta); color: var(--white); }*/
.bg-terracotta h2,
.bg-terracotta p {
    color: var(--white);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    min-height: 48px;
    /* Touch target */
}

.btn-primary {
    background-color: var(--forest-green);
    color: var(--white);
}

.btn-primary:active,
.btn-primary:hover {
    background-color: var(--forest-green-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--forest-green);
    color: var(--forest-green);
}


.btn-outline2 {    background-color: #E85F2B;    border: 1px solid #a33f17;    color: #FFFFFF; width: 82%;}
.btn-outline2:active, .btn-outline2:hover {    background-color: #C99D34;    color: #144957;	border: 1px solid #432E11;}

.btn-outline3 {    background-color: #c49e3b;    border: 1px solid #a37c09;    color: #FFFFFF;    width: 82%;}
.btn-outline3:active, .btn-outline3:hover {    background-color: #E85F2B;    color: #144957;	border: 1px solid #432E11;}

.btn-outline:active,
.btn-outline:hover {
    background-color: var(--forest-green);
    color: var(--white);
}


.text-link {    display: inline-flex;    align-items: center;    gap: 0.3rem;    font-weight: 600;    color: var(--terracotta);    font-size: 1.1rem;    transition: var(--transition-fast);}

.text-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

/* --- Header & Mobile Nav --- */
.header {    position: fixed;    top: 0;    left: 0;    width: 100%;    z-index: 100;    padding: var(--space-md) 0;    transition: background-color 0.3s ease, padding 0.3s ease;}


.header.scrolled {
    background-color:#3CAD9B;
    backdrop-filter: blur(8px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled .logo,
.header.scrolled .menu-toggle {
    color: var(--forest-green);
}


.header.scrolled .social-links {    display: flex;    align-items: center;    gap: 20px;    margin-left: auto;}

.header.scrolled .desktop-nav a {  color: #144957;}
.header.scrolled .desktop-nav a:hover {  color: #ffffff; /*color: #C99D34;*/ }


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-md);
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    transition: color 0.3s ease;
    margin: 0;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: color 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--earth-light);
    z-index: 1000;
    display: flex;
    flex-direction: column;
   /* justify-content: center;*/
    padding: var(--space-3xl) var(--space-xl);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	padding-top: 50px;
}

.mobile-nav.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green);
    cursor: pointer;
}

.mobile-nav .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-left: 20px;
}

.mobile-nav .nav-links a {
/*    font-family: var(--font-heading);*/
    font-size: 1.5rem;
    color: var(--forest-green);
}


/* Desktop Navigation (Hidden on mobile) */
.desktop-nav {
    display: none;
    flex: 1;
    margin-left: 40px;
}

.desktop-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
}

.desktop-nav a {
    display: block;
    padding: 12px 12px;
/*    color: #333333; */
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav a:hover {    color: #C99D34; }

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: #C99D34;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* NEW: Social links container (HIDDEN by default) */
.social-links {
    display:flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

/* --- Hero Stories --- */
.stories-hero {
    position: relative;
    height: 100vh;
    /* Base mobile full height */
    height: 100dvh;
    /* Dynamic viewport height for real mobile Safari/Chrome */
    width: 100%;
    background: #111;
    overflow: hidden;
}

.stories-progress { position: absolute;top: 0; left: 0;width: 100%; padding: var(--space-sm) var(--space-sm);padding-top: max(var(--space-sm), env(safe-area-inset-top));display: flex;gap: 4px;z-index: -10; }

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--white);
    border-radius: 2px;
    transition: width linear;
}

.progress-bar.completed .progress-fill {
    width: 100%;
}

.stories-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.story-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.story-media {    width: 100%;    height: 100%;    object-fit: cover;    pointer-events: none; /*   border: none; */border-radius: 8px;}

.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl) var(--space-lg) calc(var(--space-2xl) + 2rem);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.story-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.story-content p {    font-size: 1.4rem;    opacity: 0.9;}

.story-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 5;
}

.control {
    height: 100%;
    flex: 1;
}

.control.right {
    flex: 2;
    /* Larger hit area to go next */
}

.scroll-prompt {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    opacity: 0.8;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-slide.active .slide-up {
    opacity: 1;
    transform: translateY(0);
}

.story-slide.active .slide-up.fade {
    transition-delay: 0.2s;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Stories - Widescreen Layout */
@media (min-width: 1024px) {
	
.sound-toggle-btn {     left: 20px; }	
	
	
    .stories-hero {        aspect-ratio: 16 / 9;             /* height: auto;  max-width: 1440px;   */     margin: 0 auto;     padding: 0px 0;    /* padding: 40px 0; */   }
    .story-media {        object-fit: cover;        width: 100%;        height: 100%;    }
    
.story-media--mobile {    display: none;  }
.story-media--desktop {    display: block;    width: 100%;    height: auto;    aspect-ratio: 16 / 9;  /*  max-width: 1440px; */   margin: 0 auto;  }	
	
	.story-content {        padding: var(--space-xl) var(--space-xl) var(--space-2xl);    }
    .story-content h2 {        font-size: 2.5rem;    }
    .story-content p {        font-size: 1.25rem;        max-width: 800px;    }
}

/* --- Narrative / Intro --- */
.narrative-title {
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.narrative-body {
    font-size: 1.5rem;
/*    color: #3b3b3b;*/
   color: var(--text-dark);
   /*   max-width: 600px; */
    margin: 0 auto;
}

/* --- The Experiences --- */
.section-heading {
    margin-bottom: var(--space-sm);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.experience-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.exp-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 8px;
}

.exp-content h3 {
    font-size: 1.7rem;
    margin-bottom: var(--space-sm);
    color: var(--terracotta);
}

/* --- Accommodations / Sanctuaries --- */
.accommodations-section {
    padding-bottom: 0;
    /* Scroller touches bottom */
}

.sanctuary-scroller {display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--space-md); padding: var(--space-xl) var(--space-md); margin: 0 calc(var(--space-md) * -1);    scrollbar-width: none;}

.sanctuary-scroller2 {display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--space-md); padding: var(--space-xl) var(--space-md); margin: 0 calc(var(--space-md) * -1);    scrollbar-width: none;}

.sanctuary-scroller3 {display: grid; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--space-md); padding: var(--space-xl) var(--space-md); margin: 0 calc(var(--space-md) * -1);    scrollbar-width: none;}

.sanctuary-scroller::-webkit-scrollbar {
    display: none;
}

.sanctuary-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.sanctuary-card img {
    aspect-ratio: 3/4;
    transition: transform 0.5s ease;
}

.sanctuary-card:active img {
    transform: scale(1.03);
}

.s-info {position: absolute; bottom: 0; left: 0; width: 100%; padding: var(--space-md); background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));color: var(--white);}
.s-info2 { bottom: 0; left: 0; width: 100%; padding: var(--space-md); background: #f7f5f0; ;color: var(--white);}

.s-info h4 {color: var(--white);font-size: 1.5rem;margin-bottom: 4px;}
.s-info2 h4 {color: #08373d;font-size: 1.5rem;margin-bottom: 4px;}

.s-info span {    font-size: 0.9rem;    opacity: 0.9;}
.s-info2 span {    font-size: 1.1rem;   color: #9d3f06;}





/* --- Testimonials --- */
.testimonials-section {
    position: relative;
    padding-bottom: var(--space-xl);
}

.testimonials-container {
    position: relative;
    margin-top: var(--space-lg);
}

.testimonial-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-md);
    margin: 0 calc(var(--space-md) * -1);
    /* Full bleed mobile */
    scrollbar-width: none;
    /* Firefox */
    -webkit-overflow-scrolling: touch;
}

.testimonial-scroller::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 calc(90vw - var(--space-md));
    /* Peek effect for mobile */
    scroll-snap-align: center;
    position: relative;
/*    background: var(--white);*/
    background: #f7f5f0;
    border-radius: 8px;
    padding: var(--space-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.testimonial-quote-icon {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    color: var(--terracotta);
    opacity: 0.1;
    z-index: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.testimonial-origin {
    font-size: 0.875rem;
    color: #999999;
    margin-top: 2px;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--terracotta);
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
/*    color: #333333;*/
    color: var(--text-dark);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-md);
}

.testimonial-footer {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-source {
    font-size: 0.75rem;
    color: var(--text-light);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--forest-green);
    background: transparent;
    color: var(--forest-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-btn:hover,
.nav-btn:focus-visible {
    background: var(--forest-green);
    color: var(--white);
    outline: 2px solid white;
}

/* --- Journeys --- */
.journey-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.journey-card {
    background: #f7f5f0;
/*    background: var(--white);*/
    padding: var(--space-xl) var(--space-md);
    border-radius: 8px;
/*    border-left: 4px solid var(--forest-green);*/
    border-left: 4px solid #C99D34;
    text-align: left;
}

.journey-card.highlight {
/*    border-left-color: var(--terracotta);*/
    border-left-color: #3CAD9B;
    background-color: var(--earth-mid);
}

.j-content h3 {
    margin-bottom: var(--space-xs);
}

.j-content p { color: var(--text-dark);  font-size: 1.2rem;    margin-bottom: var(--space-sm);}

/* --- Consultation --- */
.consultation-section .btn-large {
    background-color: var(--white);
    color: var(--terracotta);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin: var(--space-lg) 0 var(--space-md);
}

.sub-cta {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Footer --- */
.footer {
    background-color: #144957;
    /*    background-color: var(--forest-green-dark);*/
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-xs);
    font-family: var(--font-body);
    letter-spacing: 0;
}

.footer-links h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    /*    align-items: center;*/
    gap: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    font-size: 0.85rem;
}

.socials {
    display: flex;
    gap: var(--space-md);
}

.socials a {
    color: var(--white);
}

/* --- WhatsApp FAB --- */
.fab-whatsapp {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* Official WhatsApp Green */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-whatsapp:hover,
.fab-whatsapp:active {
    transform: scale(1.1);
}

.fab-whatsapp i {
    width: 30px;
    height: 30px;
}


/* --- Accommodations Page specific --- */
.accommodation-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    background: #111;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.acc-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl) var(--space-md) calc(var(--space-2xl) + 2rem);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    text-align: center;
}

.acc-hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.acc-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.acc-intro {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
}

.narrative-large {
    font-size: 1.25rem;
    line-height: 1.8;
}

.accommodations-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.accommodation-card {
    position: relative;
    transition: var(--transition-smooth);
}

.accommodation-card:hover {
    transform: translateY(-4px);
}

.flex-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.acc-gallery {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.acc-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.acc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.acc-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.acc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

.acc-dots {
    position: absolute;
    bottom: var(--space-sm);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.acc-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s;
}

.acc-dots .dot.active {
    background: var(--white);
}

.acc-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-sm);
    z-index: 10;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--forest-green);
    transition: var(--transition-fast);
}

.control-btn:hover {
    background: var(--white);
}

.acc-details {
    padding: var(--space-sm) 0;
}

.acc-header {
    margin-bottom: var(--space-md);
}

.acc-header h2 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.acc-capacity {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-bottom: var(--space-xs);
}

.acc-tagline {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--terracotta);
}

.acc-experience {
    margin-bottom: var(--space-md);
}

.acc-technical {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-md);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.acc-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    cursor: pointer;
    font-weight: 600;
    color: var(--forest-green);
    list-style: none; /* Hide default arrow */
    outline: none;
}

.acc-summary::-webkit-details-marker {
    display: none;
}

.acc-summary i.lucide-minus {
    display: none;
}

details[open] .acc-summary i.lucide-plus {
    display: none;
}

details[open] .acc-summary i.lucide-minus {
    display: inline-block;
}

.acc-expand-content {
    padding: 0 var(--space-md) var(--space-md);
    border-top: 1px solid var(--earth-mid);
    padding-top: var(--space-sm);
}

.acc-expand-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xs);
}

.acc-expand-content li {
    display: flex;     align-items: center;   gap: 10px;
    /*font-size: 0.95rem;color: var(--text-light);*/
	font-size: 1.2rem;  color: #000000;
}

.acc-expand-content i {
    width: 20px;
    height: 20px;
    color: var(--terracotta);
}

.acc-action {
    margin-top: var(--space-md);
}


/* ========================================================
   PROGRESSIVE ENHANCEMENT (Tablet & Desktop) 
   ======================================================== */

@media (min-width: 768px) {

:root { --space-md: 2rem; }
h2 { font-size: 2.6rem; }
.narrative-title { font-size: 3.5rem; }
.header { padding: var(--space-lg) 0; }
.logo { font-size: 1.5rem; }

/* Mobile menu remains active up to 1024px, hide desktop nav by default */
.desktop-nav { display: none; }


    /* Hero */

    .story-content {
        padding-bottom: 4rem;
        padding-left: 4rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    }

    .story-content h2 {
        font-size: 3rem;
        max-width: 800px;
    }

    /* The Experiences */
    .experience-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .experience-card:nth-child(1) {
        grid-column: span 3;
        flex-direction: row;
        align-items: center;
    }

    .experience-card:nth-child(1) .exp-image {
        height: 500px;
        width: 60%;
    }

    .experience-card:nth-child(1) .exp-content {
/*        width: 40%;*/
        width: 100%;
        padding: var(--space-xl);
    }

    /* Accommodations */
.sanctuary-scroller {grid-template-columns: repeat(5, 1fr);/* grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(3, 1fr); */display: grid; overflow: hidden; margin: 0; padding: var(--space-xl) 0; }

.sanctuary-scroller2 {grid-template-columns: repeat(4, 1fr); display: grid; overflow: hidden; margin: 0; padding: var(--space-xl) 0; }
.sanctuary-scroller3 {grid-template-columns: repeat(3, 1fr); display: grid; overflow: hidden; margin: 0; padding: var(--space-xl) 0; }

    /* Testimonials Tablet */
    .testimonial-scroller {
        gap: 24px;
        padding: 24px 0;
        margin: 0;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        /* 2 per row */
        padding: 24px;
    }

    .testimonial-nav {
        /* Usually display: none in true grids, but we keep it block for our auto slider control! */
        margin-top: var(--space-xl);
    }

    /* Journeys */
    .journey-cards {
        flex-direction: row;
    }

    .journey-card {
        flex: 1;
    }

    /* Footer */
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Accommodations Page Desktop */
    .acc-hero-content {
        padding-bottom: 4rem;
        padding-left: 4rem;
        text-align: left;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    }

    .acc-hero-content h1 {
        font-size: 4rem;
    }

    .narrative-large {
        font-size: 1.5rem;
        max-width: 800px;
    }

    .flex-layout {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xl);
    }
    
    .flex-layout.reverse {
        flex-direction: row-reverse;
    }

    .acc-gallery {
        flex: 1.2;
        aspect-ratio: 16/9;
    }

    .acc-details {
        flex: 1;
        padding: var(--space-lg);
    }

    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: block !important;
    }
    
    .acc-expand-content ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1025px) {
    .testimonials-section .container {
        max-width: 1440px;
    }

    .testimonial-scroller {
        gap: 32px;
        padding: 40px 0;
    }

    .testimonial-card {
        flex: 0 0 calc(33.3333% - 21.33px);
    }

    /* --- Desktop Navigation (1025px+) --- */
    .menu-toggle {
        display: none; /* Hide hamburger */
    }

    .header {
/*        background-color: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
        padding: 16px 40px;
    }
    
    .nav-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0;
    }

    .logo {
/*        color: var(--forest-green); */
        color:#ffffff;
        font-size: 24px;
        font-weight: 700;
    }
    
    /* Ensure icon/logo color change if previously using scrolled class */
    .header.scrolled {
/*        background-color: var(--white); */
        background-color:#3CAD9B; 
        padding: 16px 40px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .header.scrolled .logo {        color: var(--forest-green);    }
	
	
.header2 {        background-color: #3CAD9B;        padding: 16px 40px;        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);    }

	

    .desktop-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex-grow: 1;
        gap: 40px; /* Space between links and button */
    }

    .nav-menu {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 24px;
        margin: 0;
        padding: 0;
    }

    .nav-menu a {
        font-family: var(--font-body);
        font-size: 16px;
        font-weight: 500;
        color: #333333;
        text-decoration: none;
        padding: 8px 0;
        position: relative;
        transition: color 0.3s ease;
        display: inline-block;
        min-height: 44px;
        line-height: 28px; /* Vertically center in 44px total hit area */
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--forest-green);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible {
        color: var(--forest-green);
        outline: none;
    }
    
    .nav-menu a:hover::after,
    .nav-menu a:focus-visible::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-menu a:focus-visible {
        outline: 2px solid var(--terracotta);
        outline-offset: 4px;
        border-radius: 2px;
    }

    /* Active link (Example, targeting specific href or generic active class) */
    .nav-menu a.active,
    .nav-menu a:active {
        color: var(--terracotta);
        font-weight: 700;
    }
    
    .nav-menu a.active::after {
        background-color: var(--terracotta);
        transform: scaleX(1);
    }

    /* Secondary CTA Button */
    .btn-cta {
        background-color: var(--terracotta);
        color: var(--white);
        padding: 12px 24px;
        border-radius: 4px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 16px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        white-space: nowrap;
    }

    .btn-cta:hover {
        background-color: var(--forest-green);
        color: var(--white);
    }
    
    .btn-cta:focus-visible {
        outline: 2px solid var(--forest-green);
        outline-offset: 4px;
    }
}

/* --- Adventure Page --- */
.adventure-hero {
    position: relative;
/*    height: 100vh;
    height: 100dvh;*/
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.adventure-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.adventure-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adventure-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    padding: var(--space-md);
}

.adventure-hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.adventure-hero-content p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.mt-md { margin-top: var(--space-md); }

/* Activities Grid */
.activities-section {
    padding: var(--space-xl) 0;
}

.activities-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.activity-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.activity-media {
    width: 100%;
}

.activity-image {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.activity-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
}

.activity-content h3 {
    font-size: 1.75rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.activity-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--terracotta);
    margin-bottom: var(--space-sm);
    display: block;
}

.activity-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.activity-specs {
    margin-bottom: var(--space-md);
}

.activity-specs summary {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid var(--earth-mid);
    border-bottom: 1px solid var(--earth-mid);
    margin: 0;
}

.activity-specs summary::-webkit-details-marker {
    display: none;
}

.specs-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.activity-specs[open] .specs-icon {
    transform: rotate(180deg);
}

.specs-content {
    padding: var(--space-sm) 0;
    font-size: 14px;
    color: var(--text-light);
}

.specs-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.btn-full {
    width: 100%;
    margin-top: auto;
}

/* esconde mobile que 768px */
@media (max-width: 768px) {
    .esconder-mobile {        display: none !important;    }
	.testimonial-nav { display: none; }
}


/* Tablet Layout */
@media (min-width: 768px) {
	

.experience-card:nth-child(1) { grid-column: span 3; flex-direction: row; align-items: center;    }
.experience-card2:nth-child(1) { grid-column: span 3; flex-direction: column !important; align-items: center;    } 
	

    .activities-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
    
    .activity-image {
        aspect-ratio: 16/9;
    }
    
    .adventure-hero-content h1 {
        font-size: 3.5rem;
    }
}

/* Desktop Layout */
@media (min-width: 1025px) {
    .activities-section {
        padding: var(--space-2xl) 0;
    }

    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    /* First two cards take up full width to form 60/40 layout */
    .activities-grid .activity-card:first-child,
    .activities-grid .activity-card:nth-child(2) {
        grid-column: span 3;
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }
    
    .activities-grid .activity-card:first-child .activity-media,
    .activities-grid .activity-card:nth-child(2) .activity-media {
        flex: 0 0 60%;
        height: 100%;
        min-height: 400px; /* Base height for image when row */
    }
    
    .activities-grid .activity-card:first-child .activity-image,
    .activities-grid .activity-card:nth-child(2) .activity-image {
        height: 100%;
        aspect-ratio: auto;
    }

    .activities-grid .activity-card:first-child .activity-content,
    .activities-grid .activity-card:nth-child(2) .activity-content {
        flex: 1;
        padding: var(--space-xl);
        justify-content: center;
    }

    .adventure-hero-content h1 {
        font-size: 4rem;
    }
}