/* =========================================================
5. HERO
========================================================= */

.hero {


position: relative;

width: 100%;

height: 100vh;

min-height: 680px;

overflow: hidden;


}

.hero-slider {


width: 100%;

height: 100%;


}

.hero-slide {


position: relative;

width: 100%;

height: 100%;

overflow: hidden;


}

/* Image is inside HTML */

.hero-image {


position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

object-position: center;

z-index: 0;

transform: scale(1.01);

transition: transform 8s ease;


}

.swiper-slide-active .hero-image {


transform: scale(1.07);


}

/* Hero overlay */

.hero-overlay {


position: absolute;

inset: 0;

z-index: 1;

background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.08) 100%
    );


}

/* Hero content */

.hero .container-wide {


height: 100%;

position: relative;

z-index: 2;


}

.hero-content {


position: absolute;

left: 50px;

top: 50%;

transform: translateY(-35%);

max-width: 680px;

color: var(--white);


}

.hero-eyebrow {


font-size: 12px;

text-transform: uppercase;

letter-spacing: 4px;

font-weight: 500;

margin-bottom: 20px;


}

.hero-title {


font-family: var(--serif);

font-size: clamp(55px, 6vw, 94px);

line-height: 0.95;

font-weight: 400;

margin-bottom: 28px;

letter-spacing: -1px;


}

.hero-description {


max-width: 560px;

font-size: 16px;

line-height: 1.8;

font-weight: 300;

margin-bottom: 35px;


}

.hero-btn {


display: inline-flex;

align-items: center;

justify-content: center;

min-width: 190px;

padding: 14px 27px;

border: 1px solid rgba(255,255,255,0.8);

color: var(--white);

text-transform: uppercase;

letter-spacing: 1.5px;

font-size: 11px;

font-weight: 500;


}

.hero-btn:hover {


background: var(--white);

color: var(--dark);


}

/* Hero navigation */

.hero .swiper-button-next,
.hero .swiper-button-prev {


color: var(--white);

width: 48px;

height: 48px;

border: 1px solid rgba(255,255,255,0.5);

transition: var(--transition);


}

.hero .swiper-button-next {


right: 50px;


}

.hero .swiper-button-prev {


left: auto;

right: 110px;


}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {


background: var(--white);

color: var(--dark);


}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {


font-size: 15px;


}

/* Scroll */

.hero-scroll {


position: absolute;

z-index: 10;

bottom: 30px;

left: 50%;

transform: translateX(-50%);

color: var(--white);

font-size: 10px;

text-transform: uppercase;

letter-spacing: 3px;

display: flex;

flex-direction: column;

align-items: center;

gap: 8px;


}

.hero-scroll i {


font-size: 18px;

animation: scrollArrow 1.8s infinite;


}

@keyframes scrollArrow {


0%,
100% {

    transform: translateY(0);

}

50% {

    transform: translateY(7px);

}


}

/* =========================================================
6. BOOKING AREA
========================================================= */

.booking-area {


position: relative;

z-index: 50;

margin-top: -75px;


}

.booking-box {


background: var(--white);

box-shadow: 0 15px 50px rgba(0,0,0,0.12);


}

.booking-field {


min-height: 95px;

padding: 20px 25px;

border-right: 1px solid var(--border);

display: flex;

flex-direction: column;

justify-content: center;


}

.booking-field label {


display: block;

font-size: 10px;

text-transform: uppercase;

letter-spacing: 1.5px;

color: var(--text-light);

margin-bottom: 6px;


}

.booking-field select,
.booking-field input {


border: 0;

outline: 0;

width: 100%;

background: transparent;

font-size: 14px;

color: var(--dark);

cursor: pointer;


}

.booking-button {


width: 100%;

min-height: 95px;

background: var(--dark);

color: var(--white);

text-transform: uppercase;

letter-spacing: 2px;

font-size: 11px;

cursor: pointer;

transition: var(--transition);


}

.booking-button:hover {


background: var(--gold);


}

/* =========================================================
7. INTRO
========================================================= */

.intro-section {


padding: 150px 0 130px;




}

.gol-eyebrow {


color: var(--gold-dark);

font-size: 11px;

text-transform: uppercase;

letter-spacing: 3px;

font-weight: 500;

margin-bottom: 20px;


}

.gol-title {


font-family: var(--serif);

font-size: clamp(48px, 5vw, 72px);

line-height: 1;

font-weight: 400;

color: var(--dark);

margin-bottom: 30px;


}

.gol-description {


color: var(--text-light);

font-size: 15px;

line-height: 1.9;

font-weight: 300;


}

.intro-section .gol-description {


max-width: 580px;


}

.gol-link {


display: inline-block;

margin-top: 25px;

padding-bottom: 5px;

border-bottom: 1px solid var(--gold);

font-size: 11px;

text-transform: uppercase;

letter-spacing: 2px;

color: var(--dark);


}

.gol-link:hover {


color: var(--gold-dark);

border-color: var(--dark);


}

/* =========================================================
8. GENERAL SECTIONS
========================================================= */

.gol-section {


padding: 120px 0;


}

.gol-section-cream {


background: #f8f7f3;


}

.section-heading {


max-width: 800px;

margin: 0 auto 65px;


}

.section-heading .gol-title {


margin-bottom: 20px;


}

.section-header {


margin-bottom: 60px;


}

/* =========================================================
9. DESTINATION CARDS
========================================================= */

.destination-card {


position: relative;

display: block;

height: 570px;

overflow: hidden;

color: var(--white);


}

.destination-card img {


width: 100%;

height: 100%;

object-fit: cover;

transition: transform 1s ease;


}

.destination-card:hover img {


transform: scale(1.08);


}

.destination-overlay {


position: absolute;

inset: 0;

background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.05) 65%
    );


}

.destination-content {


position: absolute;

left: 35px;

right: 35px;

bottom: 35px;

z-index: 2;


}

.destination-content span {


font-size: 10px;

text-transform: uppercase;

letter-spacing: 2px;


}

.destination-content h3 {


font-family: var(--serif);

font-size: 46px;

font-weight: 400;

margin: 5px 0 15px;


}

/* =========================================================
10. HOTEL CARDS
========================================================= */

.hotel-card {


background: var(--white);


}

.hotel-image {


width: 100%;

height: 380px;

overflow: hidden;


}

.hotel-image img {


width: 100%;

height: 100%;

object-fit: cover;

transition: transform 0.8s ease;


}

.hotel-card:hover .hotel-image img {


transform: scale(1.06);


}

.hotel-content {


padding: 28px 0;


}

.hotel-location {


font-size: 10px;

text-transform: uppercase;

letter-spacing: 2px;

color: var(--gold-dark);

margin-bottom: 10px;


}

.hotel-content h3 {


font-family: var(--serif);

font-size: 36px;

font-weight: 400;

line-height: 1.1;

color: var(--dark);

margin-bottom: 12px;


}

/* =========================================================
11. EXPERIENCE
========================================================= */

.experience-image {


height: 720px;

overflow: hidden;


}

.experience-image img {


width: 100%;

height: 100%;

object-fit: cover;


}

.experience-content {


padding: 70px 10%;

max-width: 700px;


}

/* =========================================================
12. OFFERS
========================================================= */

.offer-card {


position: relative;

height: 520px;

overflow: hidden;

color: var(--white);


}

.offer-card > img {


position: absolute;

inset: 0;

width: 100%;

height: 100%;

object-fit: cover;

transition: transform 0.8s ease;


}

.offer-card:hover > img {


transform: scale(1.07);


}

.offer-overlay {


position: absolute;

inset: 0;

background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.05)
    );


}

.offer-content {


position: absolute;

z-index: 2;

left: 35px;

right: 35px;

bottom: 35px;


}

.offer-label {


text-transform: uppercase;

letter-spacing: 2px;

font-size: 10px;

margin-bottom: 8px;


}

.offer-content h3 {


font-family: var(--serif);

font-size: 43px;

font-weight: 400;

margin-bottom: 15px;


}

.offer-content p {


font-size: 14px;

font-weight: 300;

max-width: 450px;


}

/* =========================================================
13. ROOMS
========================================================= */

.room-card {


background: var(--white);


}

.room-image {


height: 500px;

overflow: hidden;


}

.room-image img {


width: 100%;

height: 100%;

object-fit: cover;

transition: transform 0.8s ease;


}

.room-card:hover .room-image img {


transform: scale(1.05);


}

.room-content {


padding: 30px 0;


}

.room-content h3 {


font-family: var(--serif);

font-size: 42px;

font-weight: 400;


}

/* =========================================================
14. DINING
========================================================= */

.dark-section {


background: var(--dark);

color: var(--white);


}

.dark-section .gol-title {


color: var(--white);


}

.dark-section .gol-description {


color: rgba(255,255,255,0.65);


}

.dark-section .gol-eyebrow {


color: #c6a76a;


}

.dining-image {


height: 720px;


}

.dining-image img {


width: 100%;

height: 100%;

object-fit: cover;


}

.dark-content {


padding: 80px 12%;

max-width: 750px;


}

/* =========================================================
15. WELLNESS
========================================================= */

.wellness-image {


width: 100%;

height: 650px;

object-fit: cover;


}

/* =========================================================
16. TESTIMONIAL
========================================================= */

.testimonial {


max-width: 1000px;

margin: auto;

text-align: center;


}

.testimonial-quote {


font-family: var(--serif);

font-size: clamp(38px, 4vw, 60px);

line-height: 1.15;

color: var(--dark);

margin: 30px 0;


}

.testimonial-author {


font-size: 11px;

text-transform: uppercase;

letter-spacing: 2px;

color: var(--gold-dark);


}

/* =========================================================
17. GALLERY
========================================================= */

.gallery-item {


height: 400px;

overflow: hidden;


}

.gallery-item img {


width: 100%;

height: 100%;

object-fit: cover;

transition: transform 0.8s ease;


}

.gallery-item:hover img {


transform: scale(1.08);


}

/* =========================================================
18. NEWSLETTER
========================================================= */

.newsletter {


text-align: center;

padding: 110px 20px;




}

.newsletter .gol-description {


max-width: 600px;


}

.newsletter-form {


max-width: 650px;

margin: 40px auto 0;

display: flex;

border-bottom: 1px solid var(--dark);


}

.newsletter-form input {


flex: 1;

border: 0;

outline: 0;

background: transparent;

padding: 16px 5px;

font-size: 14px;


}

.newsletter-form button {


background: transparent;

padding: 16px 5px;

text-transform: uppercase;

letter-spacing: 2px;

font-size: 10px;

cursor: pointer;


}

.newsletter-form button:hover {


color: var(--gold-dark);


}

/* =========================================================
20. ANIMATIONS
========================================================= */

.hero-content {


animation: heroFadeUp 1.2s ease both;


}

@keyframes heroFadeUp {


from {

    opacity: 0;

    transform:
        translateY(-25%)
        translateX(-20px);

}

to {

    opacity: 1;

    transform:
        translateY(-35%)
        translateX(0);

}


}

/* =========================================================
21. TABLET
========================================================= */

@media (max-width: 1199px) {








.hero-content {

    left: 30px;

}

.hero .swiper-button-next {

    right: 30px;

}

.hero .swiper-button-prev {

    right: 90px;

}

.destination-card {

    height: 480px;

}

.experience-image,
.dining-image {

    height: 600px;

}


}

/* =========================================================
23. MOBILE
========================================================= */

@media (max-width: 767px) {


body {

    font-size: 14px;

}





.hero {

    height: 85vh;

    min-height: 620px;

}

.hero-content {

    left: 20px;

    right: 20px;

    top: 52%;

    transform: translateY(-30%);

}

.hero-title {

    font-size: 55px;

    line-height: 0.95;

}

.hero-description {

    font-size: 14px;

}

.hero .swiper-button-next,
.hero .swiper-button-prev {

    width: 38px;

    height: 38px;

    bottom: 30px;

    top: auto;

}

.hero .swiper-button-next {

    right: 20px;

}

.hero .swiper-button-prev {

    left: auto;

    right: 70px;

}

.hero-scroll {

    display: none;

}

.intro-section {

    padding: 80px 0;

}

.gol-section {

    padding: 75px 0;

}

.gol-title {

    font-size: 48px;

}

.section-heading {

    margin-bottom: 45px;

}

.destination-card {

    height: 480px;

}

.destination-content {

    left: 25px;

    right: 25px;

    bottom: 25px;

}

.destination-content h3 {

    font-size: 40px;

}

.hotel-image {

    height: 320px;

}

.hotel-content h3 {

    font-size: 32px;

}

.experience-image,
.dining-image {

    height: 430px;

}

.experience-content,
.dark-content {

    padding: 55px 20px;

}

.offer-card {

    height: 480px;

}

.offer-content {

    left: 25px;

    right: 25px;

    bottom: 25px;

}

.offer-content h3 {

    font-size: 38px;

}

.room-image {

    height: 350px;

}

.room-content h3 {

    font-size: 35px;

}

.wellness-image {

    height: 450px;

}

.gallery-item {

    height: 250px;

}

.newsletter {

    padding: 80px 20px;

}

.newsletter-form {

    display: block;

    border-bottom: 0;

}

.newsletter-form input {

    width: 100%;

    border-bottom: 1px solid var(--dark);

    margin-bottom: 10px;

}

.newsletter-form button {

    width: 100%;

    border: 1px solid var(--dark);

}






}

/* =========================================================
24. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


.hero {

    min-height: 580px;

}

.hero-title {

    font-size: 46px;

}

.hero-eyebrow {

    font-size: 10px;

    letter-spacing: 2.5px;

}

.hero-description {

    font-size: 13px;

    line-height: 1.6;

}

.hero-btn {

    min-width: 170px;

    padding: 12px 20px;

}

.gol-title {

    font-size: 42px;

}

.destination-card {

    height: 420px;

}

.destination-content h3 {

    font-size: 35px;

}

.hotel-image {

    height: 280px;

}

.offer-card {

    height: 420px;

}

.room-image {

    height: 300px;

}

.gallery-item {

    height: 190px;

}


}


/* =====================================================
   GUEST STORIES — LUXURY SLIDER
   ===================================================== */
.guest-stories-section{
    background:#f8f7f3!important;
    padding-top:82px!important;
    padding-bottom:78px!important;
}
.guest-stories-header{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:70px;
    align-items:end;
    margin-bottom:42px;
}
.guest-stories-header .gol-title{
    margin-top:8px;
    max-width:650px;
}
.guest-stories-intro p{
    margin:0;
    color:#6f746f;
    font-size:14px;
    line-height:1.8;
    max-width:330px;
}
.guest-stories-slider{
    overflow:hidden;
}
.guest-story-card{
    background:#fff;
    min-height:360px;
    padding:42px 46px 38px;
    border:1px solid #e2dbcf;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.guest-stars{
    color:#a98345;
    letter-spacing:4px;
    font-size:11px;
}
.guest-story-card blockquote{
    margin:32px 0 35px;
    font-family:var(--serif);
    font-size:clamp(25px,2.4vw,37px);
    line-height:1.22;
    font-weight:400;
    color:var(--dark);
    max-width:850px;
}
.guest-story-meta{
    padding-top:20px;
    border-top:1px solid #e1dbd0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}
.guest-story-meta strong{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1.7px;
    font-weight:500;
    color:#303732;
}
.guest-story-meta span{
    font-size:10px;
    color:#858983;
    letter-spacing:.6px;
}
.guest-stories-controls{
    margin-top:25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.guest-stories-controls .swiper-pagination{
    position:static;
    width:auto!important;
    display:flex;
    gap:7px;
}
.guest-stories-controls .swiper-pagination-bullet{
    width:22px;
    height:1px;
    border-radius:0;
    margin:0!important;
    opacity:1;
    background:#cfc6b8;
}
.guest-stories-controls .swiper-pagination-bullet-active{
    background:#a98345;
}
.guest-stories-arrows{
    display:flex;
    gap:8px;
}
.guest-stories-arrows button{
    width:44px;
    height:44px;
    border:1px solid #cfc7ba;
    background:transparent;
    color:#333a35;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .25s ease;
}
.guest-stories-arrows button:hover{
    background:#fff;
    border-color:#a98345;
    color:#a98345;
}
@media(max-width:768px){
    .guest-stories-section{
        padding-top:55px!important;
        padding-bottom:55px!important;
    }
    .guest-stories-header{
        display:block;
        margin-bottom:28px;
    }
    .guest-stories-intro{
        margin-top:16px;
    }
    .guest-story-card{
        min-height:330px;
        padding:30px 24px 26px;
    }
    .guest-story-card blockquote{
        margin:25px 0 28px;
        font-size:26px;
    }
    .guest-story-meta{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
    }
}

/* =====================================================
   HOME — DISTINCT HOTEL & ROOM SECTIONS
   ===================================================== */

/* Hotels & Resorts: warm editorial band */
body.index-page #hotels{
    /* background:#f4f2ee!important; */
    padding-top:76px!important;
    padding-bottom:82px!important;
    position:relative;
}
body.index-page #hotels:before{
    content:"";
    display:block;
    width:42px;
    height:1px;
    background:#b7955b;
    margin:0 auto 34px;
}
body.index-page #hotels .section-header{
    margin-bottom:34px!important;
}
body.index-page #hotels .hotel-card{
    background:#fff;
    border:1px solid rgba(50,45,38,.10);
    box-shadow:0 12px 30px rgba(40,35,28,.06);
}
body.index-page #hotels .hotel-image{
    height:310px;
    overflow:hidden;
}
body.index-page #hotels .hotel-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}
body.index-page #hotels .hotel-card:hover .hotel-image img{
    transform:scale(1.035);
}

/* Rooms & Suites: deliberately different, brighter editorial layout */
body.index-page #hotels + .gol-section{
    
    padding-top:94px!important;
    padding-bottom:94px!important;
    border-top:1px solid #ddd6ca;
    position:relative;
}
body.index-page #hotels + .gol-section:before{
    content:"ROOMS & SUITES";
    display:block;
    text-align:center;
    font:500 9px/1 var(--sans);
    letter-spacing:4px;
    color:#a27d42;
    margin-bottom:18px;
}
body.index-page #hotels + .gol-section .section-header{
    max-width:720px;
    margin:0 auto 42px!important;
    text-align:center;
}
body.index-page #hotels + .gol-section .section-header .gol-eyebrow{
    display:none;
}
body.index-page #hotels + .gol-section .section-header .gol-title{
    font-size:clamp(42px,4.5vw,62px);
    margin-bottom:12px!important;
}
body.index-page #hotels + .gol-section .section-header .gol-description{
    max-width:540px;
    margin:0 auto;
}
body.index-page #hotels + .gol-section .room-card{
    background:#faf8f3;
    border:1px solid #e5dfd4;
}
body.index-page #hotels + .gol-section .room-image{
    height:360px;
    overflow:hidden;
}
body.index-page #hotels + .gol-section .room-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}
body.index-page #hotels + .gol-section .room-card:hover .room-image img{
    transform:scale(1.035);
}
body.index-page #hotels + .gol-section .room-content{
    padding:26px 28px 30px;
}
body.index-page #hotels + .gol-section .room-content h3{
    font-size:30px;
    margin:7px 0 9px;
}
@media(max-width:768px){
    body.index-page #hotels{padding-top:55px!important;padding-bottom:60px!important}
    body.index-page #hotels + .gol-section{padding-top:62px!important;padding-bottom:65px!important}
    body.index-page #hotels .hotel-image{height:250px}
    body.index-page #hotels + .gol-section .room-image{height:280px}
}

/* =====================================================
   HOME — HOTEL COLLECTION REFINEMENT
   ===================================================== */
body.index-page #hotels{
    padding-top:54px!important;
    padding-bottom:58px!important;
}
body.index-page #hotels:before{
    margin-bottom:22px;
}
body.index-page #hotels .section-header{
    margin-bottom:25px!important;
}
body.index-page #hotels .row.g-5{
    --bs-gutter-y:24px;
    --bs-gutter-x:24px;
}
body.index-page #hotels .hotel-image{
    height:245px;
}
body.index-page #hotels .hotel-content{
    padding:20px 22px 21px!important;
}
body.index-page #hotels .hotel-location{
    font-size:9px;
    letter-spacing:2px;
    margin-bottom:8px;
}
body.index-page #hotels .hotel-content h3{
    font-size:27px;
    line-height:1.12;
    margin:0 0 8px!important;
}
body.index-page #hotels .hotel-content .gol-description{
    font-size:13px;
    line-height:1.55;
    margin-bottom:16px!important;
}
body.index-page #hotels .hotel-content .gol-link{
    font-size:9px;
    letter-spacing:2px;
}

/* Give the next Rooms section a clear but compact separation. */
body.index-page #hotels + .gol-section{
    padding-top:64px!important;
    padding-bottom:68px!important;
}
body.index-page #hotels + .gol-section:before{
    margin-bottom:12px;
}
body.index-page #hotels + .gol-section .section-header{
    margin-bottom:30px!important;
}
body.index-page #hotels + .gol-section .room-image{
    height:300px;
}
body.index-page #hotels + .gol-section .room-content{
    padding:21px 24px 24px!important;
}

@media(max-width:768px){
    body.index-page #hotels{
        padding-top:42px!important;
        padding-bottom:45px!important;
    }
    body.index-page #hotels .hotel-image{height:225px}
    body.index-page #hotels .hotel-content{padding:18px 19px 20px!important}
    body.index-page #hotels + .gol-section{
        padding-top:48px!important;
        padding-bottom:52px!important;
    }
    body.index-page #hotels + .gol-section .room-image{height:260px}
}


/* =====================================================
   HOME — ROOMS → EXPERIENCES FLOW
   ===================================================== */
body.index-page .rooms-suites-section + .gol-section{
    padding-top:68px!important;
    padding-bottom:68px!important;
}
body.index-page .rooms-suites-section + .gol-section .section-header{
    margin-bottom:34px!important;
}
@media(max-width:768px){
    body.index-page .rooms-suites-section + .gol-section{
        padding-top:50px!important;
        padding-bottom:52px!important;
    }
}

/* Remove any empty blocks left after optional home sections */
body.index-page section:empty{display:none!important}

/* Hide empty sections after optional home content removal */
body.index-page section:empty{display:none!important}

/* Experiences → Culinary: clear editorial separation */
body.index-page .experiences-cards-section + .culinary-experiences-section{
    border-top:1px solid #e2dbcf;
}


/* =========================================================
   INDEX PAGE — ALTERNATING LUXURY SECTION BACKGROUNDS
   Keeps adjacent sections visually distinct.
   ========================================================= */

body.index-page #destinations{
    /* background:#f4f0e8 !important; */
}

body.index-page #hotels{
    background:#ffffff !important;
}

body.index-page .rooms-suites-section{
    /* background:#f8f5ef !important; */
    border-top:1px solid #e7e0d4;
    border-bottom:1px solid #e7e0d4;
}

body.index-page .experiences-cards-section{
    background:#ffffff !important;
}

body.index-page .culinary-experiences-section{
    /* background:#f1eee7 !important; */
    border-top:1px solid #e2dbcf;
}

body.index-page #offers{
    background:#ffffff !important;
}

body.index-page .guest-stories-section{
    background:#f8f7f3 !important;
}

body.index-page .guest-stories-section + .gol-section{
    
}

body.index-page .newsletter{
    
}

@media (max-width: 767px){
    body.index-page #destinations,
    body.index-page .rooms-suites-section,
    body.index-page .culinary-experiences-section,
    body.index-page .guest-stories-section,
    body.index-page .newsletter{
        
    }

    body.index-page #hotels,
    body.index-page .experiences-cards-section,
    body.index-page #offers,
    body.index-page .guest-stories-section + .gol-section{
        
    }
}


/* =========================================================
   GOL RESORTS & HOTELS — WHITE / SOFT IVORY SECTION PALETTE
   ========================================================= */
.intro-section,
.section-white {
    background: #ffffff !important;
}

.gol-section:nth-of-type(odd),
.section-ivory,
.gol-section-cream {
    background: #f8f7f3 !important;
}

.gol-section:nth-of-type(even) {
    background: #ffffff !important;
}

.newsletter {
    background: #f8f7f3 !important;
}

/* Keep visual separation subtle and luxurious */
.intro-section,
.gol-section,
.newsletter {
    border-bottom: 1px solid rgba(80, 70, 55, 0.06);
}


/* =========================================================
   HOME — EXPERIENCES MADE FOR YOU
   Distinct luxury cards for clear visual separation.
   Keep this component self-contained for easy Blade conversion.
   ========================================================= */
body.index-page .experiences-cards-section {
    position: relative;
    background: #f8f7f3 !important;
    padding-top: 82px !important;
    padding-bottom: 88px !important;
    overflow: hidden;
}

body.index-page .experiences-cards-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 88%, rgba(184, 146, 77, 0.07), transparent 25%),
        radial-gradient(circle at 92% 12%, rgba(184, 146, 77, 0.05), transparent 22%);
}

body.index-page .experiences-cards-section .container-wide {
    position: relative;
    z-index: 1;
}

body.index-page .experiences-section-heading {
    margin-bottom: 48px !important;
}

body.index-page .experiences-section-heading .gol-eyebrow {
    margin-bottom: 10px;
}

body.index-page .experiences-section-heading .gol-title {
    margin-bottom: 18px !important;
}

.experience-heading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 260px;
    margin: 0 auto;
    color: var(--gold-dark, #a47b36);
}

.experience-heading-divider span {
    display: block;
    width: 105px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d8c5a2);
}

.experience-heading-divider span:last-child {
    background: linear-gradient(to left, transparent, #d8c5a2);
}

.experience-heading-divider i {
    font-size: 15px;
    line-height: 1;
}

body.index-page .experience-card-grid {
    align-items: stretch;
}

body.index-page .experience-card-grid > [class*="col-"] {
    display: flex;
}

.experience-card {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(180, 158, 119, 0.22);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 12px 34px rgba(39, 31, 20, 0.09);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(164, 123, 54, 0.38);
    box-shadow: 0 22px 46px rgba(39, 31, 20, 0.14);
}

.experience-card-image {
    position: relative;
    height: 325px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #eee9df;
}

.experience-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.10));
    pointer-events: none;
}

.experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.experience-card:hover .experience-card-image img {
    transform: scale(1.055);
}

.experience-card-icon {
    position: absolute;
    left: 30px;
    top: 290px;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5dccd;
    box-shadow: 0 5px 18px rgba(36, 29, 20, 0.12);
    color: #a47b36;
}

.experience-card-icon::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(164, 123, 54, 0.22);
    border-radius: 50%;
}

.experience-card-icon i {
    position: relative;
    z-index: 1;
    font-size: 27px;
}

.experience-card-content {
    position: relative;
    min-height: 275px;
    padding: 58px 30px 29px;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.experience-card-content::after {
    content: "";
    position: absolute;
    right: -25px;
    bottom: -42px;
    width: 190px;
    height: 150px;
    opacity: 0.42;
    background:
        radial-gradient(ellipse at center, transparent 35%, rgba(164,123,54,0.06) 36%, transparent 38%),
        radial-gradient(ellipse at center, transparent 48%, rgba(164,123,54,0.045) 49%, transparent 51%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.experience-card-category {
    position: relative;
    z-index: 1;
    margin-bottom: 11px;
    color: #a47b36;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.experience-card-content h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--dark, #181818);
    font-family: var(--serif, Georgia, serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.16;
}

.experience-card-content p {
    position: relative;
    z-index: 1;
    max-width: 330px;
    margin: 0 0 22px;
    color: #72706c;
    font-size: 14px;
    line-height: 1.65;
}

.experience-card-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #a47b36;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.experience-card-link i {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.experience-card-link:hover {
    color: #795a27;
}

.experience-card-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    body.index-page .experiences-cards-section {
        padding-top: 65px !important;
        padding-bottom: 72px !important;
    }

    .experience-card-image {
        height: 280px;
    }

    .experience-card-icon {
        top: 245px;
        left: 24px;
    }

    .experience-card-content {
        min-height: 265px;
        padding: 58px 24px 26px;
    }

    .experience-card-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    body.index-page .experiences-cards-section {
        padding-top: 54px !important;
        padding-bottom: 60px !important;
    }

    body.index-page .experiences-section-heading {
        margin-bottom: 34px !important;
    }

    .experience-heading-divider {
        width: 200px;
    }

    .experience-heading-divider span {
        width: 78px;
    }

    .experience-card-image {
        height: 270px;
    }

    .experience-card-icon {
        top: 235px;
        left: 22px;
        width: 68px;
        height: 68px;
    }

    .experience-card-content {
        min-height: auto;
        padding: 54px 23px 27px;
    }

    .experience-card-content h3 {
        font-size: 28px;
    }
}


/* =====================================================
   GUEST STORIES — REFINED LUXURY CARDS
   ===================================================== */
.guest-stories-section{
    position:relative;
    overflow:hidden;
    background:#f8f6f0 !important;
    padding-top:92px !important;
    padding-bottom:86px !important;
}
.guest-stories-section::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 8% 90%, rgba(169,131,69,.045), transparent 28%),
        radial-gradient(circle at 94% 12%, rgba(169,131,69,.055), transparent 25%);
}
.guest-stories-section .container-wide{position:relative;z-index:1;}
.guest-stories-header{
    grid-template-columns:minmax(0,1fr) 360px;
    gap:80px;
    align-items:end;
    margin-bottom:48px;
}
.guest-stories-header .gol-title{
    max-width:620px;
    letter-spacing:-.025em;
}
.guest-stories-header .gol-eyebrow{color:#9a7437;}
.guest-stories-header .gol-title::after{
    content:"✦";
    display:flex;
    align-items:center;
    justify-content:center;
    width:290px;
    height:1px;
    margin-top:28px;
    color:#b08a4d;
    font-size:13px;
    letter-spacing:0;
    background:linear-gradient(90deg, transparent 0 28%, #d9c8a8 28% 46%, transparent 46% 54%, #d9c8a8 54% 72%, transparent 72%);
}
.guest-stories-intro{
    padding-bottom:5px;
}
.guest-stories-intro p{
    max-width:335px;
    font-size:13px;
    line-height:1.9;
    color:#77766f;
}
.guest-stories-slider{overflow:visible;}
.guest-story-card{
    position:relative;
    min-height:430px;
    padding:38px 48px 34px;
    border:1px solid #e5dac6;
    border-radius:16px;
    background:linear-gradient(145deg,#fff 0%,#fffdf9 100%);
    box-shadow:0 18px 45px rgba(54,43,27,.075);
    overflow:hidden;
    transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}
.guest-story-card::after{
    content:"";
    position:absolute;
    right:-35px;
    bottom:-70px;
    width:240px;
    height:240px;
    border-radius:50%;
    border:1px solid rgba(169,131,69,.08);
    box-shadow:0 0 0 26px rgba(169,131,69,.018),0 0 0 52px rgba(169,131,69,.012);
    pointer-events:none;
}
.guest-story-card:hover{
    transform:translateY(-4px);
    border-color:#d9c49f;
    box-shadow:0 24px 55px rgba(54,43,27,.11);
}
.guest-story-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    min-height:82px;
}
.guest-stars{
    color:#b28a48;
    font-size:15px;
    letter-spacing:5px;
    line-height:1;
}
.guest-quote-mark{
    font-family:Georgia,serif;
    color:#eee6d8;
    font-size:116px;
    line-height:.65;
    font-weight:400;
    user-select:none;
}
.guest-story-card blockquote{
    position:relative;
    z-index:1;
    margin:5px 0 38px;
    max-width:850px;
    font-family:var(--serif);
    font-size:clamp(25px,2.45vw,36px);
    line-height:1.28;
    letter-spacing:-.01em;
    color:#171817;
}
.guest-story-meta{
    position:relative;
    z-index:2;
    padding-top:22px;
    border-top:1px solid #e6dccb;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.guest-story-author{
    display:flex;
    align-items:center;
    gap:15px;
}
.guest-story-author img{
    width:58px;
    height:58px;
    object-fit:cover;
    border-radius:50%;
    border:1px solid #c9a76b;
    padding:2px;
    background:#fff;
}
.guest-story-author strong{
    display:block;
    margin-bottom:7px;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2.2px;
    font-weight:600;
    color:#a47b3e;
}
.guest-story-author span{
    display:block;
    font-size:11px;
    letter-spacing:.35px;
    color:#777871;
}
.guest-story-closing-quote{
    color:#b28a48;
    font-family:Georgia,serif;
    font-size:58px;
    line-height:1;
    opacity:.9;
}
.guest-stories-controls{
    margin-top:38px;
    padding:0 2px;
}
.guest-stories-controls .swiper-pagination{gap:9px;}
.guest-stories-controls .swiper-pagination-bullet{
    width:30px;
    height:2px;
    background:#ddd2bf;
    transition:all .3s ease;
}
.guest-stories-controls .swiper-pagination-bullet-active{width:42px;background:#b28a48;}
.guest-stories-arrows{gap:10px;}
.guest-stories-arrows button{
    width:50px;
    height:50px;
    border:1px solid #d8c5a5;
    border-radius:2px;
    background:rgba(255,255,255,.7);
    color:#8e6b35;
    font-size:15px;
    transition:all .3s ease;
}
.guest-stories-arrows button:hover{
    background:#b28a48;
    border-color:#b28a48;
    color:#fff;
    transform:translateY(-2px);
}
@media(max-width:900px){
    .guest-stories-header{grid-template-columns:1fr;gap:18px;}
    .guest-stories-intro{padding-bottom:0;}
    .guest-stories-slider{overflow:hidden;}
}
@media(max-width:767px){
    .guest-stories-section{padding-top:62px !important;padding-bottom:60px !important;}
    .guest-story-card{min-height:390px;padding:30px 24px 28px;border-radius:12px;}
    .guest-story-top{min-height:68px;}
    .guest-quote-mark{font-size:85px;}
    .guest-story-card blockquote{font-size:25px;line-height:1.3;margin:8px 0 30px;}
    .guest-story-author img{width:50px;height:50px;}
    .guest-story-meta{align-items:center;}
    .guest-story-author strong{font-size:10px;letter-spacing:1.7px;}
    .guest-story-author span{font-size:10px;}
    .guest-story-closing-quote{font-size:46px;}
}

/* =========================================================
   GOL HOME — FULL PAGE LUXURY REFINEMENT v2
   All existing sections and the original GOL logo are preserved.
   ========================================================= */

:root {
    --gol-ivory: #f7f4ee;
    --gol-ivory-deep: #f1ece2;
    --gol-paper: #fffdf9;
    --gol-ink: #171816;
    --gol-muted: #74756f;
    --gol-gold: #b18a4a;
    --gol-gold-soft: #d9c6a2;
    --gol-line: rgba(117, 91, 51, .16);
    --gol-shadow: 0 18px 55px rgba(45, 38, 27, .09);
}

body.index-page {
    background: #fffdf9;
    color: var(--gol-ink);
}

body.index-page .container-wide {
    max-width: 1440px;
}

/* ---------- Header ---------- */
body.index-page .gol-header {
    height: 94px;
    background: rgba(255,253,249,.96) !important;
    color: var(--gol-ink) !important;
    border-bottom: 1px solid rgba(92,72,42,.13) !important;
    box-shadow: 0 8px 30px rgba(37,31,23,.055);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.index-page .gol-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gol-gold), transparent);
    opacity: .75;
}

body.index-page .header-inner {
    height: 94px;
}

body.index-page .gol-logo {
    padding: 8px 0;
}

body.index-page .gol-logo img {
    width: 154px !important;
    max-height: 58px !important;
    filter: none !important;
    opacity: 1 !important;
}

body.index-page .gol-nav {
    gap: 27px;
}

body.index-page .gol-nav > a {
    color: #34362f !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.55px;
}

body.index-page .gol-nav > a:not(.nav-book)::after {
    bottom: -10px;
    background: var(--gol-gold);
}

body.index-page .gol-nav > a:hover {
    color: var(--gol-gold) !important;
}

body.index-page .gol-nav .nav-book {
    padding: 13px 22px;
    border: 1px solid #c5a66f !important;
    color: #8e6c32 !important;
    background: transparent !important;
    letter-spacing: 1.8px;
}

body.index-page .gol-nav .nav-book:hover {
    background: #b18a4a !important;
    color: #fff !important;
    border-color: #b18a4a !important;
}

body.index-page .menu-toggle {
    color: #8e6c32 !important;
}

/* ---------- Hero ---------- */
body.index-page .hero {
    height: min(790px, 88vh);
    min-height: 650px;
    margin-top: 0;
}

body.index-page .hero-overlay {
    background:
        linear-gradient(90deg, rgba(12,13,11,.66) 0%, rgba(12,13,11,.35) 48%, rgba(12,13,11,.08) 100%),
        linear-gradient(0deg, rgba(10,10,8,.25), transparent 42%);
}

body.index-page .hero-content {
    left: 65px;
    max-width: 690px;
    transform: translateY(-34%);
}

body.index-page .hero-eyebrow {
    color: #e4c78e;
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

body.index-page .hero-title {
    max-width: 720px;
    font-size: clamp(56px, 6.2vw, 92px);
    line-height: .96;
    letter-spacing: -.035em;
    text-shadow: 0 3px 18px rgba(0,0,0,.14);
}

body.index-page .hero-description {
    max-width: 500px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,.86);
}

body.index-page .hero-btn {
    min-width: 205px;
    padding: 15px 28px;
    border-color: rgba(222,197,149,.85);
    background: rgba(24,22,18,.15);
    letter-spacing: 2px;
    transition: all .35s ease;
}

body.index-page .hero-btn:hover {
    background: #b18a4a;
    border-color: #b18a4a;
    color: #fff;
    transform: translateY(-2px);
}

body.index-page .hero .swiper-button-next,
body.index-page .hero .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-color: rgba(255,255,255,.48);
    background: rgba(10,10,8,.12);
    backdrop-filter: blur(6px);
}

body.index-page .hero .swiper-button-next { right: 48px; }
body.index-page .hero .swiper-button-prev { right: 108px; }

body.index-page .hero-scroll {
    bottom: 24px;
    font-size: 9px;
    letter-spacing: 3.5px;
    color: rgba(255,255,255,.8);
}

/* ---------- Booking search ---------- */
body.index-page .booking-area {
    margin-top: -58px;
    padding-bottom: 62px !important;
}

body.index-page .booking-box {
    border: 1px solid rgba(111,85,45,.13);
    border-radius: 4px;
    box-shadow: 0 22px 55px rgba(37,31,23,.13);
    overflow: hidden;
    background: rgba(255,253,249,.98);
}

body.index-page .booking-field {
    min-height: 90px;
    padding: 17px 25px;
    border-right-color: rgba(117,91,51,.13);
}

body.index-page .booking-field label {
    color: #9b7940;
    letter-spacing: 1.9px;
}

body.index-page .booking-field select,
body.index-page .booking-field input {
    color: #292b27;
    font-size: 13px;
}

body.index-page .booking-button {
    min-height: 90px;
    background: #ad8545;
    letter-spacing: 1.8px;
}

body.index-page .booking-button:hover {
    background: #8f6b32;
}

/* ---------- Common section rhythm ---------- */
body.index-page .gol-section {
    position: relative;
    padding-top: 88px !important;
    padding-bottom: 88px !important;
    border-bottom: 1px solid rgba(85,68,44,.07);
    overflow: hidden;
}

body.index-page .gol-section::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -150px;
    bottom: -170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190,157,103,.075), transparent 68%);
    pointer-events: none;
}

body.index-page .gol-section-cream {
    background: var(--gol-ivory) !important;
}

body.index-page .gol-section:not(.gol-section-cream) {
    background: #fffdf9 !important;
}

body.index-page .section-heading,
body.index-page .section-header {
    position: relative;
    z-index: 1;
}

body.index-page .section-heading {
    max-width: 850px;
    margin-bottom: 48px !important;
}

body.index-page .gol-eyebrow {
    color: #a57c3a;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3.5px;
    margin-bottom: 15px;
}

body.index-page .gol-title {
    color: var(--gol-ink);
    font-size: clamp(42px, 4.8vw, 66px);
    line-height: .98;
    letter-spacing: -.025em;
    margin-bottom: 18px !important;
}

body.index-page .gol-description {
    color: #767771;
    font-size: 14px;
    line-height: 1.8;
}

/* Elegant divider for editorial section headings */
body.index-page .section-heading:not(.experiences-section-heading)::after {
    content: "✦";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 18px;
    margin: 19px auto 0;
    color: #b18a4a;
    font-size: 12px;
    letter-spacing: 0;
    background:
        linear-gradient(#d9c6a2,#d9c6a2) left center/78px 1px no-repeat,
        linear-gradient(#d9c6a2,#d9c6a2) right center/78px 1px no-repeat;
}

/* ---------- Destinations ---------- */
body.index-page #destinations {
    padding-top: 94px !important;
    padding-bottom: 96px !important;
}

body.index-page #destinations .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

body.index-page #destinations .destination-card {
    height: 545px;
    border-radius: 3px;
    box-shadow: var(--gol-shadow);
    isolation: isolate;
}

body.index-page #destinations .destination-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.28);
    pointer-events: none;
    opacity: .7;
}

body.index-page #destinations .destination-overlay {
    z-index: 1;
    background: linear-gradient(0deg, rgba(9,10,8,.75), rgba(9,10,8,.04) 68%);
}

body.index-page #destinations .destination-content {
    left: 31px;
    right: 31px;
    bottom: 30px;
    z-index: 3;
}

body.index-page #destinations .destination-content span {
    font-size: 9px;
    letter-spacing: 2.4px;
    opacity: .9;
}

body.index-page #destinations .destination-content h3 {
    font-size: 39px;
    margin: 6px 0 14px;
}

/* ---------- Hotels ---------- */
body.index-page #hotels {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
}

body.index-page #hotels::before {
    width: 55px;
    background: #b18a4a;
    margin-bottom: 25px;
}

body.index-page #hotels .section-header {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px !important;
}

body.index-page #hotels .row.g-5 {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

body.index-page #hotels .hotel-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(104,81,46,.14);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 15px 42px rgba(43,36,26,.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

body.index-page #hotels .hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(43,36,26,.13);
}

body.index-page #hotels .hotel-image {
    height: 300px;
}

body.index-page #hotels .hotel-content {
    padding: 27px 27px 29px !important;
}

body.index-page #hotels .hotel-content h3 {
    font-size: 31px;
    margin-bottom: 10px !important;
}

body.index-page #hotels .hotel-location {
    color: #a57c3a;
}

/* ---------- Rooms & Suites ---------- */
body.index-page .rooms-suites-section {
    background: var(--gol-ivory) !important;
    padding-top: 94px !important;
    padding-bottom: 96px !important;
}

body.index-page .rooms-suites-section .section-header {
    max-width: 760px;
    margin: 0 auto 44px !important;
    text-align: center;
}

body.index-page .rooms-suites-section .section-header .gol-eyebrow {
    display: block;
}

body.index-page .rooms-suites-section .row {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 22px;
}

body.index-page .rooms-suites-section .room-card {
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(104,81,46,.13);
    border-radius: 3px;
    background: #fffdf9;
    box-shadow: 0 16px 42px rgba(43,36,26,.075);
    transition: transform .35s ease, box-shadow .35s ease;
}

body.index-page .rooms-suites-section .room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 23px 52px rgba(43,36,26,.12);
}

body.index-page .rooms-suites-section .room-image {
    height: 400px;
}

body.index-page .rooms-suites-section .room-content {
    padding: 28px 30px 31px;
}

body.index-page .rooms-suites-section .room-content h3 {
    font-size: 32px;
    margin: 6px 0 10px;
}

/* ---------- Experiences (keep existing card design, elevate it) ---------- */
body.index-page .experiences-cards-section {
    background: #fffdf9 !important;
    padding-top: 94px !important;
    padding-bottom: 100px !important;
}

body.index-page .experience-card {
    border: 1px solid rgba(104,81,46,.13);
    box-shadow: 0 16px 42px rgba(43,36,26,.085);
}

body.index-page .experience-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 60px rgba(43,36,26,.14);
}

/* ---------- Culinary ---------- */
body.index-page .culinary-experiences-section {
    background: #f4f0e8 !important;
    padding-top: 94px !important;
    padding-bottom: 98px !important;
}

body.index-page .culinary-experiences-section .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

body.index-page .culinary-experiences-section .card,
body.index-page .culinary-experiences-section .culinary-card {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(43,36,26,.08);
}

/* ---------- Offers ---------- */
body.index-page #offers {
    background: #fffdf9 !important;
    padding-top: 94px !important;
    padding-bottom: 98px !important;
}

body.index-page #offers .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

body.index-page #offers .offer-card {
    height: 500px;
    border-radius: 3px;
    box-shadow: var(--gol-shadow);
}

body.index-page #offers .offer-content {
    left: 32px;
    right: 32px;
    bottom: 32px;
}

body.index-page #offers .offer-content h3 {
    font-size: 39px;
}

/* ---------- Guest Stories ---------- */
body.index-page .guest-stories-section {
    background: #f5f1e9 !important;
    padding-top: 95px !important;
    padding-bottom: 92px !important;
}

body.index-page .guest-stories-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    height: 100%;
    opacity: .38;
    pointer-events: none;
    background: radial-gradient(circle at 90% 18%, rgba(190,157,103,.12), transparent 40%);
}

body.index-page .guest-stories-header {
    max-width: 1120px;
    margin: 0 auto 42px;
}

body.index-page .guest-stories-header .gol-title {
    font-size: clamp(45px, 5vw, 68px);
}

body.index-page .guest-story-card {
    min-height: 365px;
    padding: 39px 44px 36px;
    border: 1px solid rgba(171,135,75,.24);
    border-radius: 4px;
    box-shadow: 0 18px 48px rgba(43,36,26,.075);
    background: rgba(255,254,251,.97);
    transition: transform .3s ease, box-shadow .3s ease;
}

body.index-page .guest-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(43,36,26,.11);
}

body.index-page .guest-story-card::after {
    content: "”";
    position: absolute;
    right: 35px;
    top: 18px;
    color: rgba(177,138,74,.10);
    font-family: Georgia, serif;
    font-size: 125px;
    line-height: 1;
    pointer-events: none;
}

body.index-page .guest-story-card blockquote {
    position: relative;
    z-index: 1;
    font-size: clamp(26px, 2.55vw, 38px);
    line-height: 1.23;
    margin: 30px 0 33px;
}

body.index-page .guest-stars {
    color: #b18a4a;
    letter-spacing: 4px;
}

body.index-page .guest-story-meta {
    position: relative;
    z-index: 2;
    border-top-color: rgba(171,135,75,.22);
}

body.index-page .guest-stories-arrows button {
    width: 46px;
    height: 46px;
    border-color: #cfb888;
    background: rgba(255,255,255,.55);
    color: #8e6c32;
}

body.index-page .guest-stories-arrows button:hover {
    background: #b18a4a;
    color: #fff;
    border-color: #b18a4a;
}

/* ---------- Gallery ---------- */
body.index-page .gol-section:has(.gallery-item) {
    background: #fffdf9 !important;
    padding: 90px 0 96px !important;
}

body.index-page .gallery-item {
    height: 390px;
    border-radius: 3px;
    box-shadow: 0 12px 35px rgba(43,36,26,.08);
}

body.index-page .gallery-item img {
    transition: transform .9s ease, filter .5s ease;
}

body.index-page .gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(.92);
}

/* ---------- Newsletter ---------- */
body.index-page .newsletter {
    position: relative;
    padding: 100px 20px 105px !important;
    background:
        radial-gradient(circle at 15% 50%, rgba(181,143,78,.08), transparent 28%),
        radial-gradient(circle at 85% 50%, rgba(181,143,78,.07), transparent 28%),
        #f5f1e9 !important;
    border-top: 1px solid rgba(112,84,44,.10);
    border-bottom: 1px solid rgba(112,84,44,.10);
}

body.index-page .newsletter .gol-title {
    font-size: clamp(42px, 4.5vw, 62px);
}

body.index-page .newsletter-form {
    max-width: 620px;
    border: 1px solid #d6c5a7;
    border-radius: 2px;
    background: rgba(255,253,249,.8);
    padding: 3px 4px 3px 16px;
    box-shadow: 0 12px 30px rgba(43,36,26,.05);
}

body.index-page .newsletter-form input {
    padding: 14px 7px;
    color: #34362f;
}

body.index-page .newsletter-form button {
    min-width: 125px;
    padding: 14px 18px;
    background: #b18a4a;
    color: #fff;
    letter-spacing: 1.7px;
    transition: background .3s ease;
}

body.index-page .newsletter-form button:hover {
    color: #fff;
    background: #8f6b32;
}

/* ---------- Footer ---------- */
body.index-page .gol-footer {
    position: relative;
    
    color: #2b2d28 !important;
    padding: 76px 0 0 !important;
    border-top: 1px solid #ded4c3 !important;
}

body.index-page .gol-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 150px;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #b18a4a, transparent);
}

body.index-page .gol-footer .footer-logo img {
    width: 155px !important;
    max-height: none !important;
}

body.index-page .gol-footer p {
    color: #666960 !important;
}

body.index-page .gol-footer h5 {
    color: #30322d !important;
}

body.index-page .gol-footer h5::after {
    background: #b18a4a;
}

body.index-page .gol-footer .footer-links a {
    color: #666960 !important;
}

body.index-page .gol-footer .footer-links a:hover {
    color: #9b7435 !important;
}

body.index-page .gol-footer .social-links a {
    border-color: #d1c5b1 !important;
    color: #716c61 !important;
    background: rgba(255,255,255,.35);
}

body.index-page .gol-footer .social-links a:hover {
    background: #b18a4a !important;
    border-color: #b18a4a !important;
    color: #fff !important;
}

body.index-page .gol-footer .footer-bottom {
    border-top-color: #d9cebc !important;
    color: #85857e !important;
}

/* ---------- Links / buttons ---------- */
body.index-page .gol-link {
    color: #8f6b32;
    border-bottom-color: #c8ab78;
    letter-spacing: 1.8px;
    transition: color .25s ease, border-color .25s ease;
}

body.index-page .gol-link:hover {
    color: #5f471f;
    border-bottom-color: #5f471f;
}

/* ---------- Mobile ---------- */
@media (max-width: 991px) {
    body.index-page .gol-header,
    body.index-page .header-inner {
        height: 82px;
    }

    body.index-page .gol-logo img {
        width: 137px !important;
        max-height: 53px !important;
    }

    body.index-page .hero {
        height: 720px;
        min-height: 620px;
    }

    body.index-page .hero-content {
        left: 30px;
        right: 30px;
        max-width: 620px;
    }

    body.index-page .hero-title {
        font-size: clamp(48px, 8vw, 72px);
    }

    body.index-page .gol-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    body.index-page #destinations .destination-card {
        height: 470px;
    }
}

@media (max-width: 767px) {
    body.index-page .gol-header,
    body.index-page .header-inner {
        height: 74px;
    }

    body.index-page .gol-logo img {
        width: 126px !important;
        max-height: 48px !important;
    }

    body.index-page .hero {
        height: 690px;
        min-height: 600px;
    }

    body.index-page .hero-content {
        left: 22px;
        right: 22px;
        top: 55%;
    }

    body.index-page .hero-title {
        font-size: clamp(43px, 13vw, 60px);
        line-height: .98;
    }

    body.index-page .hero-description {
        font-size: 14px;
    }

    body.index-page .hero .swiper-button-next,
    body.index-page .hero .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    body.index-page .hero .swiper-button-next { right: 18px; }
    body.index-page .hero .swiper-button-prev { right: 66px; }

    body.index-page .booking-area {
        margin-top: -35px;
        padding-bottom: 38px !important;
    }

    body.index-page .booking-box {
        margin: 0 10px;
    }

    body.index-page .booking-field {
        min-height: 72px;
        border-right: 0;
        border-bottom: 1px solid rgba(117,91,51,.13);
    }

    body.index-page .booking-button {
        min-height: 66px;
    }

    body.index-page .gol-section {
        padding-top: 58px !important;
        padding-bottom: 60px !important;
    }

    body.index-page .section-heading {
        margin-bottom: 35px !important;
    }

    body.index-page .gol-title {
        font-size: 40px;
    }

    body.index-page #destinations .destination-card {
        height: 420px;
    }

    body.index-page #hotels .hotel-image {
        height: 255px;
    }

    body.index-page .rooms-suites-section .room-image {
        height: 300px;
    }

    body.index-page #offers .offer-card {
        height: 430px;
    }

    body.index-page .guest-stories-header {
        display: block;
    }

    body.index-page .guest-story-card {
        min-height: 350px;
        padding: 31px 25px 28px;
    }

    body.index-page .guest-story-card blockquote {
        font-size: 26px;
    }

    body.index-page .gallery-item {
        height: 235px;
    }

    body.index-page .newsletter {
        padding: 72px 18px 76px !important;
    }

    body.index-page .newsletter-form {
        display: flex;
    }

    body.index-page .newsletter-form button {
        min-width: 105px;
    }

    body.index-page .gol-footer {
        padding-top: 58px !important;
    }
}


/* =========================================================
   SHARED HEADER / FOOTER COLOR
   Footer intentionally matches the light white-diamond header.
   ========================================================= */
.site-footer,
.gol-footer,
footer.footer,
footer {
    background-color: #fffdf9 !important;
    background-image:
        linear-gradient(45deg, rgba(177,138,74,.045) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(177,138,74,.045) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    background-position: 0 0, 15px 15px !important;
    color: #292a26 !important;
    border-top: 1px solid rgba(177,138,74,.20) !important;
}
