/* ========================================
   BASIC WEBSITE SETTINGS
======================================== */

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

/* Search-friendly breadcrumb navigation */
.seo-breadcrumb {
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 0.45rem;
    letter-spacing: 0.035em;
    margin: 0 0 15px;
}

.seo-breadcrumb a {
    color: var(--gold, #d9b66f);
    text-decoration: none;
}

.seo-breadcrumb a:hover,
.seo-breadcrumb a:focus-visible {
    text-decoration: underline;
}

.stay-breadcrumb {
    color: #596570;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.84rem;
    font-weight: 700;
    gap: 0.4rem;
    margin: 0 0 14px;
}

.stay-breadcrumb a {
    color: var(--navy, #071827);
    text-decoration-color: rgba(7, 24, 39, 0.35);
    text-underline-offset: 0.18em;
}

.stay-breadcrumb a:hover,
.stay-breadcrumb a:focus-visible {
    color: var(--gold-dark, #a8751d);
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f5f0;
    color: #252525;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* ========================================
   NAVIGATION
======================================== */

.site-header {
    align-items: center;
    background: rgba(19, 28, 31, 0.96);
    display: flex;
    height: 100px;
    justify-content: space-between;
    left: 0;
    padding: 0 6%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.18rem;
    line-height: 1;
}

.logo-image {
    display: block;
    height: 80px;
    width: auto;
}

.logo-peak {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    letter-spacing: 0.32rem;
}

.logo-vacations {
    color: #c9a96e;
    font-size: 0.58rem;
    letter-spacing: 0.38rem;
    margin-top: 7px;
}

.navigation {
    align-items: center;
    display: flex;
    gap: 30px;
}

.navigation a {
    color: #ffffff;
    font-size: 0.82rem;
    letter-spacing: 0.08rem;
    position: relative;
    text-transform: uppercase;
}

.navigation a:not(.nav-button)::after {
    background: #c9a96e;
    bottom: -8px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    width: 100%;
}

.navigation a:hover::after {
    transform: scaleX(1);
}

.nav-button {
    border: 1px solid #c9a96e;
    padding: 12px 18px;
    transition: 0.3s ease;
}

.nav-button:hover {
    background: #c9a96e;
    color: #182226;
}

.menu-button {
    background: transparent;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    display: none;
    font-size: 1.8rem;
}


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

.hero {
    align-items: center;
    background-image:
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=85");
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 100vh;
    padding: 145px 8% 80px;
    position: relative;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(11, 20, 23, 0.9) 0%,
            rgba(11, 20, 23, 0.65) 48%,
            rgba(11, 20, 23, 0.2) 100%
        );
    inset: 0;
    position: absolute;
}

.hero-content {
    color: #ffffff;
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: #c9a96e;
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 0.24rem;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 7vw, 6.7rem);
    font-weight: normal;
    letter-spacing: -0.18rem;
    line-height: 0.95;
    margin-bottom: 28px;
}

.hero h1 span {
    color: #d6bc87;
    display: block;
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 0.11rem;
    padding: 16px 25px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.button-gold {
    background: #c9a96e;
    border: 1px solid #c9a96e;
    color: #152024;
}

.button-gold:hover {
    background: #e0c58e;
    border-color: #e0c58e;
    transform: translateY(-2px);
}

.button-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.button-outline:hover {
    background: #ffffff;
    color: #152024;
}

.scroll-indicator {
    align-items: center;
    bottom: 10px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 0.65rem;
    gap: 8px;
    left: 50%;
    letter-spacing: 0.18rem;
    position: absolute;
    text-transform: uppercase;
    transform: translateX(-50%);
    z-index: 2;
}

.arrow {
    font-size: 1.3rem;
}


/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
    padding: 110px 7%;
}

.section-heading {
    margin: 0 auto 65px;
    max-width: 780px;
    text-align: center;
}

.section-heading h2,
.quote-content h2 {
    color: #1b2c31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 22px;
}

.section-heading p:last-child {
    color: #666666;
    font-size: 1.05rem;
}


/* ========================================
   BENEFITS
======================================== */

.introduction {
    background: #f7f5f0;
}

.benefit-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1250px;
}

.benefit-card {
    background: #ffffff;
    border-bottom: 3px solid transparent;
    padding: 48px 38px;
    transition: 0.35s ease;
}

.benefit-card:hover {
    border-bottom-color: #c9a96e;
    box-shadow: 0 20px 45px rgba(22, 37, 41, 0.1);
    transform: translateY(-7px);
}

.card-number {
    color: #c9a96e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    margin-bottom: 28px;
}

.benefit-card h3 {
    color: #1b2c31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: normal;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6b6b6b;
}

/* ========================================
   ROYAL ELITE BENEFITS LINK
======================================== */

.benefits-link-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: #9a773c;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: bold;
    gap: 9px;
    letter-spacing: 0.09rem;
    margin-top: 24px;
    padding: 0 0 7px;
    position: relative;
    text-transform: uppercase;
}

.benefits-link-button::after {
    background: #c9a96e;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform-origin: left;
    transition: transform 0.3s ease;
    width: 100%;
}

.benefits-link-button:hover::after {
    transform: scaleX(0.55);
}

.benefits-link-button span {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.benefits-link-button:hover span {
    transform: translateX(5px);
}


/* ========================================
   ROYAL ELITE BENEFITS MODAL
======================================== */

.benefits-modal {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
    visibility: hidden;
    z-index: 10020;
}

.benefits-modal.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.benefits-modal-backdrop {
    background: rgba(5, 15, 19, 0.9);
    inset: 0;
    position: absolute;
}

.benefits-modal-panel {
    background: #f7f5f0;
    height: calc(100% - 50px);
    left: 50%;
    max-width: 1100px;
    overflow-y: auto;
    padding: 75px 65px 55px;
    position: absolute;
    top: 25px;
    transform: translateX(-50%);
    width: calc(100% - 50px);
}

.benefits-modal-close {
    align-items: center;
    background: #14272d;
    border: 1px solid #c9a96e;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 1.7rem;
    height: 46px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 22px;
    top: 22px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
    width: 46px;
}

.benefits-modal-close:hover {
    background: #c9a96e;
    color: #14272d;
}

.benefits-modal-heading {
    border-bottom: 1px solid #d9d3c8;
    margin: 0 auto 45px;
    max-width: 780px;
    padding-bottom: 38px;
    text-align: center;
}

.benefits-modal-heading h2 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 18px;
}

.benefits-modal-heading > p:last-child {
    color: #657175;
    font-size: 1rem;
    line-height: 1.75;
}

.royal-benefits-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.royal-benefit-group {
    background: #ffffff;
    border-top: 3px solid #c9a96e;
    padding: 38px;
}

.royal-benefit-number {
    color: #b18b4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.royal-benefit-group h3 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.25;
    margin-bottom: 24px;
}

.royal-benefit-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.royal-benefit-group li {
    border-bottom: 1px solid #ebe7df;
    color: #536166;
    line-height: 1.65;
    padding: 13px 0 13px 24px;
    position: relative;
}

.royal-benefit-group li:last-child {
    border-bottom: 0;
}

.royal-benefit-group li::before {
    color: #b18b4a;
    content: "◆";
    font-size: 0.5rem;
    left: 2px;
    position: absolute;
    top: 20px;
}

.benefits-modal-note {
    background: #eee9df;
    border-left: 4px solid #c9a96e;
    color: #5f6a6e;
    font-size: 0.82rem;
    line-height: 1.7;
    margin-top: 35px;
    padding: 20px 22px;
}

body.benefits-modal-open {
    overflow: hidden;
}

@media (max-width: 750px) {

    .benefits-modal-panel {
        height: 100%;
        left: 0;
        padding: 72px 18px 35px;
        top: 0;
        transform: none;
        width: 100%;
    }

    .benefits-modal-close {
        height: 42px;
        right: 15px;
        top: 15px;
        width: 42px;
    }

    .royal-benefits-grid {
        grid-template-columns: 1fr;
    }

    .royal-benefit-group {
        padding: 28px 22px;
    }

    .benefits-modal-heading {
        margin-bottom: 32px;
        padding: 0 15px 30px;
    }
}

/* ========================================
   RESORTS
======================================== */

.resorts-section {
    background: #18272c;
}

.light-heading h2 {
    color: #ffffff;
}

.light-heading p:last-child {
    color: #c6ccce;
}

.resort-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1350px;
}

.resort-card {
    background: #ffffff;
    overflow: hidden;
}

.resort-image {
    background-position: center;
    background-size: cover;
    height: 360px;
    transition: transform 0.6s ease;
}

.resort-card:hover .resort-image {
    transform: scale(1.04);
}

.resort-playacar {
    background-image:
        url("https://images.unsplash.com/photo-1540202404-a2f29016b523?auto=format&fit=crop&w=1000&q=85");
}

.resort-caracol {
    background-image:
        url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1000&q=85");
}

.resort-finisterra {
    background-image:
        url("https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=1000&q=85");
}

.resort-content {
    padding: 28px;
}

.resort-content p {
    color: #a1844f;
    font-size: 0.68rem;
    font-weight: bold;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.resort-content h3 {
    color: #1b2c31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: normal;
    margin: 8px 0 17px;
}

.resort-content a {
    color: #1b2c31;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

/* ========================================
   RESORT-SPECIFIC BENEFITS BUTTON
======================================== */

.resort-benefits-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: #9b783b;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: bold;
    gap: 8px;
    letter-spacing: 0.075rem;
    line-height: 1.5;
    margin-top: 22px;
    padding: 0 0 7px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
}

.resort-benefits-button::after {
    background: #c9a96e;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform-origin: left;
    transition: transform 0.3s ease;
    width: 100%;
}

.resort-benefits-button:hover::after {
    transform: scaleX(0.55);
}

.resort-benefits-button span {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.resort-benefits-button:hover span {
    transform: translateX(5px);
}


/* ========================================
   RESORT-SPECIFIC BENEFITS MODAL
======================================== */

.resort-benefits-modal {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
    visibility: hidden;
    z-index: 10030;
}

.resort-benefits-modal.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.resort-benefits-backdrop {
    background: rgba(4, 14, 18, 0.91);
    inset: 0;
    position: absolute;
}

.resort-benefits-panel {
    background: #f7f5f0;
    height: calc(100% - 50px);
    left: 50%;
    max-width: 1000px;
    overflow-y: auto;
    padding: 75px 65px 55px;
    position: absolute;
    top: 25px;
    transform: translateX(-50%);
    width: calc(100% - 50px);
}

.resort-benefits-close {
    align-items: center;
    background: #14272d;
    border: 1px solid #c9a96e;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 1.7rem;
    height: 46px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 22px;
    top: 22px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
    width: 46px;
}

.resort-benefits-close:hover {
    background: #c9a96e;
    color: #14272d;
}

.resort-benefits-heading {
    border-bottom: 1px solid #d9d3c8;
    margin: 0 auto 42px;
    max-width: 760px;
    padding-bottom: 35px;
    text-align: center;
}

.resort-benefits-heading h2 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 18px;
}

.resort-benefits-heading > p:last-child {
    color: #657175;
    line-height: 1.75;
}

.resort-benefits-content {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resort-benefit-group {
    background: #ffffff;
    border-top: 3px solid #c9a96e;
    padding: 34px;
}

.resort-benefit-group h3 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.25;
    margin-bottom: 22px;
}

.resort-benefit-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resort-benefit-group li {
    border-bottom: 1px solid #ebe7df;
    color: #536166;
    line-height: 1.65;
    padding: 13px 0 13px 24px;
    position: relative;
}

.resort-benefit-group li:last-child {
    border-bottom: 0;
}

.resort-benefit-group li::before {
    color: #b18b4a;
    content: "◆";
    font-size: 0.5rem;
    left: 2px;
    position: absolute;
    top: 20px;
}

.resort-benefits-common-note {
    background: #172a30;
    color: #ffffff;
    margin-top: 34px;
    padding: 30px;
    text-align: center;
}

.resort-benefits-common-note h3 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    margin-bottom: 10px;
}

.resort-benefits-common-note p {
    color: #d1d9db;
    line-height: 1.7;
    margin: 0 auto 18px;
    max-width: 650px;
}

.view-common-benefits-button {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #c9a96e;
    color: #d9bc81;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.08rem;
    padding: 0 0 6px;
    text-transform: uppercase;
}

.view-common-benefits-button span {
    margin-left: 6px;
}

.resort-benefits-disclaimer {
    background: #eee9df;
    border-left: 4px solid #c9a96e;
    color: #5f6a6e;
    font-size: 0.8rem;
    line-height: 1.7;
    margin-top: 28px;
    padding: 20px 22px;
}

body.resort-benefits-open {
    overflow: hidden;
}

@media (max-width: 750px) {

    .resort-benefits-panel {
        height: 100%;
        left: 0;
        padding: 72px 18px 35px;
        top: 0;
        transform: none;
        width: 100%;
    }

    .resort-benefits-close {
        height: 42px;
        right: 15px;
        top: 15px;
        width: 42px;
    }

    .resort-benefits-content {
        grid-template-columns: 1fr;
    }

    .resort-benefit-group {
        padding: 28px 22px;
    }

    .resort-benefits-heading {
        margin-bottom: 30px;
        padding: 0 14px 30px;
    }

    .resort-benefits-common-note {
        padding: 26px 20px;
    }
}

/* ========================================
   PROCESS
======================================== */

.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    max-width: 1350px;
}

.process-step span {
    align-items: center;
    border: 1px solid #c9a96e;
    border-radius: 50%;
    color: #a1844f;
    display: flex;
    font-family: Georgia, "Times New Roman", serif;
    height: 52px;
    justify-content: center;
    margin-bottom: 25px;
    width: 52px;
}

.process-step h3 {
    color: #1b2c31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: normal;
    margin-bottom: 12px;
}

.process-step p {
    color: #6b6b6b;
}


/* ========================================
   QUOTE SECTION
======================================== */

.quote-section {
    align-items: center;
    background:
        linear-gradient(rgba(13, 25, 28, 0.82), rgba(13, 25, 28, 0.82)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=85");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: 620px;
    padding: 90px 7%;
    text-align: center;
}

.quote-content {
    color: #ffffff;
    max-width: 800px;
}

.quote-content h2 {
    color: #ffffff;
}

.quote-content > p:not(.eyebrow) {
    font-size: 1.08rem;
    margin: 0 auto 35px;
    max-width: 650px;
}


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

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

.site-footer {
    background: #0d181c;
    color: #b9c0c2;
    padding: 75px 7% 35px;
    text-align: center;
}

.footer-inner {
    margin: 0 auto;
    max-width: 1100px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 260px;
    width: 70%;
}

.footer-description {
    color: #b9c0c2;
    line-height: 1.8;
    margin: 0 auto 32px;
    max-width: 620px;
}

.footer-contact {
    margin: 0 auto 34px;
    max-width: 760px;
}

.footer-contact > p {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    margin-bottom: 14px;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-contact span {
    color: #b9c0c2;
}

.footer-contact-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    justify-content: center;
}

.footer-contact-links a {
    color: #d6bc87;
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.footer-contact-links a:hover {
    color: #ffffff;
}

/* Keep the unfinished Collections page out of sitewide navigation. */
.navigation a[href$="collections.html"],
.footer-navigation a[href$="collections.html"] {
    display: none !important;
}

.footer-navigation {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    justify-content: center;
}

.footer-navigation a {
    color: #ffffff;
    font-size: 0.72rem;
    letter-spacing: 0.1rem;
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: #c9a96e;
}

.footer-divider {
    background: rgba(201, 169, 110, 0.35);
    height: 1px;
    margin: 42px auto 25px;
    max-width: 700px;
}

.copyright {
    color: #7e898c;
    font-size: 0.76rem;
    letter-spacing: 0.04rem;
}

@media (max-width: 600px) {

    .site-footer {
        padding: 60px 7% 30px;
    }

    .footer-logo {
        max-width: 250px;
        width: 80%;
    }

    .footer-navigation {
        flex-direction: column;
        gap: 18px;
    }

    .footer-contact > p,
    .footer-contact-links {
        flex-direction: column;
    }
}

/* ========================================
   HOME TRUST + ROYAL ELITE FAQ
======================================== */

.home-trust-section {
    background: #102126;
    color: #ffffff;
}

.home-trust-content {
    align-items: start;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    margin: 0 auto;
    max-width: 1180px;
}

.home-trust-copy h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: normal;
    line-height: 1.05;
    margin-bottom: 26px;
}

.home-trust-copy > p:not(.eyebrow) {
    color: #d0d6d7;
    line-height: 1.85;
    margin-bottom: 18px;
    max-width: 760px;
}

.home-trust-points {
    border-top: 1px solid rgba(214, 188, 135, 0.5);
}

.home-trust-points > div {
    border-bottom: 1px solid rgba(214, 188, 135, 0.28);
    padding: 25px 0;
}

.home-trust-points strong,
.home-trust-points span {
    display: block;
}

.home-trust-points strong {
    color: #d6bc87;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 7px;
}

.home-trust-points span {
    color: #bfc8ca;
    line-height: 1.65;
}

.royal-faq-section {
    background: #f7f5f0;
}

.royal-faq-module {
    background: #102126;
    box-shadow: 0 18px 48px rgba(13, 28, 33, 0.14);
    margin: 0 auto;
    max-width: 1180px;
}

.royal-faq-module > summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 7px 28px;
    grid-template-columns: 1fr auto;
    list-style: none;
    padding: 30px 78px 30px 34px;
    position: relative;
}

.royal-faq-module > summary::-webkit-details-marker {
    display: none;
}

.royal-faq-module > summary::after {
    color: #d6bc87;
    content: "+";
    font-size: 2rem;
    font-weight: 300;
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
}

.royal-faq-module[open] > summary::after {
    content: "−";
}

.royal-faq-module-kicker {
    color: #d6bc87;
    font-size: 0.68rem;
    font-weight: bold;
    grid-column: 1;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.royal-faq-module > summary strong {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    font-weight: normal;
    grid-column: 1;
    line-height: 1.25;
}

.royal-faq-module-action {
    color: #d6bc87;
    font-size: 0.75rem;
    font-weight: bold;
    grid-column: 2;
    grid-row: 1 / span 2;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.royal-faq-module[open] .royal-faq-module-action {
    font-size: 0;
}

.royal-faq-module[open] .royal-faq-module-action::after {
    content: "Hide answers";
    font-size: 0.75rem;
}

.royal-faq-module-content {
    background: #eeeae1;
    border-top: 1px solid rgba(214, 188, 135, 0.4);
    padding: 28px;
}

.royal-faq-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
}

.royal-faq-item {
    align-self: start;
    background: #ffffff;
    border-left: 3px solid #c9a96e;
    box-shadow: 0 10px 28px rgba(13, 28, 33, 0.07);
}

.royal-faq-item summary {
    color: #172c32;
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.35;
    list-style: none;
    padding: 23px 54px 23px 24px;
    position: relative;
}

.royal-faq-item summary::-webkit-details-marker {
    display: none;
}

.royal-faq-item summary::after {
    color: #a47d3f;
    content: "+";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    position: absolute;
    right: 24px;
    top: 17px;
}

.royal-faq-item[open] summary::after {
    content: "−";
}

.royal-faq-item p {
    border-top: 1px solid #ece6d9;
    color: #5f6b6e;
    line-height: 1.75;
    margin: 0 24px;
    padding: 19px 0 25px;
}

.royal-faq-terms-note {
    color: #657074;
    line-height: 1.7;
    margin: 30px auto 0;
    max-width: 900px;
    text-align: center;
}

.royal-faq-terms-note a {
    color: #8b6734;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .home-trust-content,
    .royal-faq-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-content {
        gap: 42px;
    }

    .royal-faq-module > summary {
        display: block;
        padding: 26px 64px 26px 24px;
    }

    .royal-faq-module-action {
        display: block;
        margin-top: 12px;
    }

    .royal-faq-module-content {
        padding: 16px;
    }
}


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

@media (max-width: 900px) {

    .logo-image {
    height: 48px;
}
    .site-header {
        height: 76px;
        padding: 0 5%;
    }

    .menu-button {
        display: block;
    }

    .navigation {
        align-items: stretch;
        background: #152327;
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 25px 5%;
        position: absolute;
        top: 76px;
        width: 100%;
    }

    .navigation.open {
        display: flex;
    }

    .navigation a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px 0;
    }

    .nav-button {
        border: 0;
    }

    .hero {
        min-height: 850px;
        padding: 125px 7% 100px;
    }

    .hero-overlay {
        background: rgba(11, 20, 23, 0.72);
    }

    .hero h1 {
        letter-spacing: -0.1rem;
    }

    .benefit-grid,
    .resort-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resort-image {
        height: 320px;
    }

    .quote-section {
        background-attachment: scroll;
    }
}

@media (max-width: 600px) {

    .section {
        padding: 85px 6%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 45px;
    }
}
@media (min-width: 901px) {
    .logo-image {
        height: 100px !important;
        width: auto !important;
        max-height: none !important;
    }

    .site-header {
        height: 120px;
    }
}



/* ========================================
   OPENING VIDEO INTRO
======================================== */

.intro-screen {
    background: #000;
    height: 100%;
    inset: 0;
    opacity: 1;
    overflow: hidden;
    position: fixed;
    transition:
        opacity 1.1s ease,
        visibility 1.1s ease;
    visibility: visible;
    width: 100%;
    z-index: 9999;
}

.intro-screen.intro-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    position: absolute;
    inset: 0;
}

.intro-shade {
    background:
        linear-gradient(
            to bottom,
            rgba(4, 12, 15, 0.15),
            rgba(4, 12, 15, 0.5)
        );
    inset: 0;
    position: absolute;
}

.skip-intro {
    background: rgba(7, 16, 20, 0.72);
    border: 1px solid rgba(216, 181, 111, 0.9);
    bottom: 30px;
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.12rem;
    padding: 13px 18px;
    position: absolute;
    right: 30px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
    z-index: 10;
}

.skip-intro:hover,
.skip-intro:focus-visible {
    background: #d8b56f;
    color: #101a1d;
    outline: none;
    transform: translateY(-2px);
}

body.intro-active {
    overflow: hidden;
}


@media (max-width: 600px) {


    .skip-intro {
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   RESORT CARDS AND SLIDESHOWS
======================================== */

.resort-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1280px;
    margin: 0 auto;
}

.resort-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 18px 45px rgba(7, 19, 25, 0.12);
    overflow: hidden;
}

.resort-slideshow {
    background: #06191f;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.resort-slide {
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.8s ease;
}

.resort-slide.active {
    opacity: 1;
    z-index: 1;
}

.resort-slide img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* The first slide contains the resort logo */
.logo-slide {
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #07191f,
            #10343d
        );
    display: flex;
    justify-content: center;
    padding: 50px;
}

.logo-slide img {
    height: auto;
    max-height: 170px;
    max-width: 80%;
    object-fit: contain;
    width: auto;
}

.slide-arrow {
    align-items: center;
    background: rgba(5, 21, 27, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    height: 42px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition:
        background 0.3s ease,
        opacity 0.3s ease;
    width: 42px;
    z-index: 3;
}

.previous-slide {
    left: 16px;
}

.next-slide {
    right: 16px;
}

.resort-slideshow:hover .slide-arrow {
    opacity: 1;
}

.slide-arrow:hover {
    background: #c8a45c;
}

.slide-dots {
    bottom: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 3;
}

.slide-dot {
    background: rgba(255, 255, 255, 0.55);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 8px;
    padding: 0;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
    width: 8px;
}

.slide-dot.active {
    background: #d7b66f;
    transform: scale(1.35);
}

.resort-content {
    padding: 36px;
}

.resort-location {
    color: #b18b47;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.resort-content h3 {
    color: #08212a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.resort-content p {
    color: #56656a;
    line-height: 1.7;
}

.resort-link {
    color: #9b783b;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    margin-top: 20px;
    text-decoration: none;
    text-transform: uppercase;
}

.resort-link:hover {
    color: #08212a;
}

@media (max-width: 850px) {

    .resort-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .resort-slideshow {
        height: 420px;
    }

    .slide-arrow {
        opacity: 1;
    }
}

@media (max-width: 500px) {
    .resort-slideshow {
        height: 330px;
    }

    .resort-content {
        padding: 26px;
    }
}

/* ========================================
   QUOTE REQUEST FORM
======================================== */

.quote-section {
    background:
        linear-gradient(
            rgba(9, 22, 27, 0.91),
            rgba(9, 22, 27, 0.96)
        ),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=85");
    background-position: center;
    background-size: cover;
    min-height: auto;
    padding: 64px 5%;
}

.quote-form-container {
    margin: 0 auto;
    max-width: 1100px;
}

.quote-form-heading {
    align-items: center;
    color: #ffffff;
    display: grid;
    gap: 28px;
    grid-template-columns: 150px minmax(0, 1fr);
    margin: 0 auto 28px;
    max-width: 980px;
    text-align: left;
}

.quote-form-heading-copy {
    min-width: 0;
}

.quote-form-heading h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: normal;
    line-height: 1.05;
    margin: 4px 0 10px;
}

.quote-form-heading-copy > p:last-child {
    color: #d2d9db;
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0;
    max-width: 650px;
}

.quote-form {
    background: rgba(255, 255, 255, 0.97);
    padding: 38px 42px;
    text-align: left;
}

.quote-form-logo {
    display: block;
    height: auto;
    margin: 0;
    max-width: 150px;
    width: 100%;
}

.form-section {
    border: 0;
    border-bottom: 1px solid #ddd7cc;
    margin: 0 0 30px;
    padding: 0 0 30px;
}

.form-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 25px;
}

.form-section legend {
    color: #172b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    margin-bottom: 25px;
    width: 100%;
}

.form-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-information-grid {
    display: grid;
    gap: 24px;
}

.contact-name-field {
    max-width: 100%;
}

.email-fields-group {
    background: #f5f2eb;
    border-left: 3px solid #c9a96e;
    display: grid;
    gap: 18px;
    padding: 24px;
}

.email-helper {
    color: #657074;
    font-size: 0.8rem;
    line-height: 1.55;
    margin-top: -6px;
}

.email-match-message {
    color: #a14135;
    font-size: 0.84rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: -6px;
}

.email-match-message:empty {
    display: none;
}
.guest-count-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #20343a;
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 0.07rem;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.form-group label span {
    color: #7c8588;
    display: block;
    font-size: 0.67rem;
    font-weight: normal;
    letter-spacing: 0.03rem;
    margin-top: 3px;
    text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #ffffff;
    border: 1px solid #c9c5bb;
    border-radius: 0;
    color: #26383d;
    font: inherit;
    min-height: 50px;
    padding: 13px 14px;
    width: 100%;
}

.form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b6914e;
    box-shadow: 0 0 0 3px rgba(182, 145, 78, 0.15);
    outline: none;
}

.form-helper {
    color: #657074;
    font-weight: bold;
    margin: -10px 0 25px;
}

.multiple-room-note {
    color: #657074;
    font-size: 0.8rem;
    grid-column: 1 / -1;
    line-height: 1.55;
    margin-top: -10px;
}

.age-fields {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.age-field-group {
    background: #f3f0e9;
    border-left: 3px solid #c9a96e;
    padding: 18px;
}

.age-field-group h4 {
    color: #172b31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 15px;
}

.age-select-row {
    margin-top: 12px;
}

.age-select-row label {
    color: #536267;
    display: block;
    font-size: 0.72rem;
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.age-select-row select {
    background: #ffffff;
    border: 1px solid #c9c5bb;
    min-height: 45px;
    padding: 10px;
    width: 100%;
}

.quote-submit {
    border: 0;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    min-width: 280px;
}

.form-contact-note {
    color: #657074;
    font-size: 0.82rem;
    margin-top: 22px;
    text-align: center;
}

.form-contact-note a {
    color: #98743c;
    font-weight: bold;
}

.form-message {
    color: #a14135;
    font-weight: bold;
    margin-bottom: 18px;
    text-align: center;
}

@media (max-width: 900px) {

    .guest-count-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .age-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {

    .quote-section {
        padding: 80px 5%;
    }

    .quote-form {
        padding: 35px 22px;
    }

    .form-grid,
    .guest-count-grid,
    .age-fields {
        grid-template-columns: 1fr;
    }

    .quote-submit {
        min-width: 0;
        width: 100%;
    }
}
    .quote-form-logo {
    max-width: 240px;
    width: 75%;
    margin-bottom: 22px;
}

/* ========================================
   QUOTE FORM MODAL
======================================== */

.quote-modal {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
    visibility: hidden;
    z-index: 10000;
}

.quote-modal.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.quote-modal-backdrop {
    background: rgba(5, 14, 18, 0.88);
    inset: 0;
    position: absolute;
}

.quote-modal-panel {
    background: #f7f5f0;
    height: calc(100% - 50px);
    left: 50%;
    max-width: 1200px;
    overflow-y: auto;
    position: absolute;
    top: 25px;
    transform: translateX(-50%);
    width: calc(100% - 50px);
}

.quote-modal-close {
    align-items: center;
    background: #14252b;
    border: 1px solid #c9a96e;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 1.8rem;
    height: 46px;
    justify-content: center;
    line-height: 1;
    position: sticky;
    float: right;
    margin: 18px 18px -64px 0;
    top: 18px;
    width: 46px;
    z-index: 10;
}

.quote-modal-close:hover {
    background: #c9a96e;
    color: #14252b;
}

body.quote-modal-open {
    overflow: hidden;
}

/* Remove the full-page minimum height inside the modal */
.quote-modal .quote-section {
    min-height: auto;
    padding-top: 90px;
}

@media (max-width: 600px) {

    .quote-modal-panel {
        height: 100%;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .quote-modal-close {
        height: 42px;
        margin: 14px 14px -56px 0;
        top: 14px;
        width: 42px;
    }

    .quote-modal .quote-section {
        padding: 75px 12px 40px;
    }
}
/* ========================================
   TERMS AND CONDITIONS PAGE
======================================== */

.terms-page {
    background: #f5f3ee;
    color: #26383d;
}

.terms-header {
    align-items: center;
    background: #101f24;
    display: flex;
    justify-content: space-between;
    min-height: 100px;
    padding: 15px 6%;
}

.terms-logo-link {
    display: inline-block;
}

.terms-logo {
    display: block;
    height: auto;
    max-width: 220px;
    width: 100%;
}

.terms-home-link {
    border: 1px solid #c9a96e;
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.08rem;
    padding: 12px 18px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.terms-home-link:hover {
    background: #c9a96e;
    color: #101f24;
}

.terms-container {
    margin: 0 auto;
    max-width: 1000px;
    padding: 80px 6%;
}

.terms-heading {
    border-bottom: 1px solid #d6d0c4;
    margin-bottom: 50px;
    padding-bottom: 40px;
    text-align: center;
}

.terms-heading h1 {
    color: #152a31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 22px;
}

.terms-effective-date {
    color: #667479;
}

.terms-content {
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(14, 31, 37, 0.08);
    padding: 60px;
}

.terms-content section {
    border-bottom: 1px solid #e1ddd4;
    margin-bottom: 42px;
    padding-bottom: 42px;
}

.terms-content section:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-content h2 {
    color: #172d34;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.25;
    margin-bottom: 20px;
}

.terms-content h3 {
    color: #9b783b;
    font-size: 0.9rem;
    letter-spacing: 0.06rem;
    margin: 28px 0 10px;
    text-transform: uppercase;
}

.terms-content p {
    color: #4f5d61;
    line-height: 1.85;
    margin-bottom: 18px;
}

.terms-content ul,
.terms-content ol {
    color: #4f5d61;
    margin: 0 0 22px 24px;
}

.terms-content li {
    line-height: 1.75;
    margin-bottom: 8px;
}

.terms-content a,
.terms-contact a {
    color: #98743c;
    font-weight: bold;
    text-decoration: underline;
}

.terms-contact {
    background: #172a30;
    color: #ffffff;
    margin-top: 45px;
    padding: 40px;
    text-align: center;
}

.terms-contact h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 12px;
}

.terms-contact p {
    color: #d4dcde;
}

.terms-footer {
    background: #0d181c;
    color: #899598;
    font-size: 0.78rem;
    padding: 30px 6%;
    text-align: center;
}

@media (max-width: 600px) {

    .terms-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 20px 6%;
    }

    .terms-logo {
        max-width: 190px;
    }

    .terms-home-link {
        text-align: center;
        width: 100%;
    }

    .terms-container {
        padding: 55px 4%;
    }

    .terms-content {
        padding: 32px 22px;
    }

    .terms-content h2 {
        font-size: 1.45rem;
    }

    .terms-contact {
        padding: 32px 22px;
    }
}
/* ========================================
   TERMS ACCEPTANCE
======================================== */

.terms-acceptance {
    align-items: flex-start;
    background: #f3f0e9;
    border-left: 4px solid #c9a96e;
    display: flex;
    gap: 14px;
    margin: 25px 0 30px;
    padding: 22px;
}

.terms-acceptance input[type="checkbox"] {
    accent-color: #a98242;
    cursor: pointer;
    flex: 0 0 auto;
    height: 20px;
    margin-top: 3px;
    width: 20px;
}

.terms-acceptance label {
    color: #435257;
    cursor: pointer;
    font-size: 0.88rem;
    line-height: 1.65;
}

.terms-acceptance a {
    color: #8e6b33;
    font-weight: bold;
    text-decoration: underline;
}

.terms-acceptance a:hover {
    color: #172d34;
}

.required-mark {
    color: #a13c32;
    font-weight: bold;
}

@media (max-width: 600px) {

    .terms-acceptance {
        gap: 12px;
        padding: 18px;
    }

    .terms-acceptance label {
        font-size: 0.84rem;
    }
}

.floating-policy-return {
    background: #172a30;
    border: 1px solid #c9a96e;
    bottom: 24px;
    box-shadow: 0 10px 30px rgba(5, 15, 19, 0.25);
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.08rem;
    padding: 14px 19px;
    position: fixed;
    right: 24px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
    z-index: 1000;
}

.floating-policy-return:hover {
    background: #c9a96e;
    color: #172a30;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .floating-policy-return {
        bottom: calc(14px + env(safe-area-inset-bottom));
        left: 14px;
        right: 14px;
        text-align: center;
        width: calc(100% - 28px);
    }

    .terms-footer {
        padding-bottom: 100px;
    }
}

/* ========================================
   PEAK VACATIONS BUSINESS-LINE NAVIGATION
======================================== */

.peak-divisions-section {
    background: #ffffff;
}

.peak-divisions-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1280px;
}

.peak-division-card {
    background: #f7f5f0;
    border-top: 3px solid #c9a96e;
    box-shadow: 0 14px 34px rgba(13, 28, 33, 0.08);
    min-height: 300px;
    padding: 38px 34px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.peak-division-card-featured {
    background: #172a30;
}

.peak-division-card:hover {
    box-shadow: 0 22px 46px rgba(13, 28, 33, 0.14);
    transform: translateY(-5px);
}

.peak-division-kicker {
    color: #a88445;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.12rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.peak-division-card h3,
.division-feature-card h3 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: normal;
    margin-bottom: 15px;
}

.peak-division-card > p:not(.peak-division-kicker),
.division-feature-card > p:not(.peak-division-kicker) {
    color: #657074;
    line-height: 1.75;
}

.peak-division-card-featured h3 {
    color: #ffffff;
}

.peak-division-card-featured > p:not(.peak-division-kicker) {
    color: #c8d0d2;
}

.peak-division-link {
    align-items: center;
    color: #98743c;
    display: inline-flex;
    font-size: 0.73rem;
    font-weight: bold;
    gap: 8px;
    letter-spacing: 0.08rem;
    margin-top: 26px;
    text-transform: uppercase;
}

.peak-division-card-featured .peak-division-link {
    color: #d6bc87;
}

.peak-division-link span {
    transition: transform 0.3s ease;
}

.peak-division-link:hover span {
    transform: translateX(5px);
}

/* Business-line gateway pages */

.division-page {
    background: #f7f5f0;
}

.division-page-hero {
    align-items: center;
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 680px;
    padding: 155px 8% 90px;
    position: relative;
}

.rockies-division-hero {
    background-image: url("images/canadian-rockies/jasper/jasper1.jpeg");
}

.collections-division-hero {
    background:
        linear-gradient(120deg, #0b1b20 0%, #19343b 58%, #8f7448 160%);
}

.division-page-hero-overlay {
    background: linear-gradient(90deg, rgba(6, 18, 22, 0.92), rgba(6, 18, 22, 0.38));
    inset: 0;
    position: absolute;
}

.collections-division-hero .division-page-hero-overlay {
    background: linear-gradient(90deg, rgba(6, 18, 22, 0.52), rgba(6, 18, 22, 0.08));
}

.division-page-hero-content {
    color: #ffffff;
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.division-page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    font-weight: normal;
    letter-spacing: -0.12rem;
    line-height: 0.96;
    margin-bottom: 28px;
}

.division-page-hero h1 span {
    color: #d6bc87;
    display: block;
    font-style: italic;
}

.division-page-hero-content > p:not(.eyebrow) {
    font-size: 1.12rem;
    line-height: 1.8;
    max-width: 650px;
}

.division-page-intro {
    background: #ffffff;
}

.division-feature-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
}

.division-feature-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.division-feature-card {
    background: #f7f5f0;
    border-top: 3px solid #c9a96e;
    box-shadow: 0 14px 34px rgba(13, 28, 33, 0.08);
    padding: 38px 34px;
}

.division-page-cta {
    margin: 55px auto 0;
    max-width: 780px;
    text-align: center;
}

.division-page-cta p {
    color: #657074;
    margin-bottom: 22px;
}

@media (max-width: 1180px) and (min-width: 901px) {
    .site-header {
        padding-left: 3%;
        padding-right: 3%;
    }

    .navigation {
        gap: 15px;
    }

    .navigation a {
        font-size: 0.7rem;
        letter-spacing: 0.045rem;
    }

    .nav-button {
        padding: 11px 13px;
    }
}

@media (max-width: 900px) {
    .peak-divisions-grid,
    .division-feature-grid,
    .division-feature-grid-three {
        grid-template-columns: 1fr;
    }

    .division-page-hero {
        min-height: 600px;
        padding: 130px 7% 80px;
    }
}


/* ========================================
   BEYOND THE RESORT
======================================== */

.beyond-resort-section {
    background: #f7f5f0;
}

.beyond-resort-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1250px;
}

.beyond-resort-card {
    background: #ffffff;
    border-bottom: 3px solid transparent;
    box-shadow: 0 15px 35px rgba(13, 28, 33, 0.08);
    padding: 44px 38px;
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.beyond-resort-card:hover {
    border-bottom-color: #c9a96e;
    box-shadow: 0 22px 45px rgba(13, 28, 33, 0.14);
    transform: translateY(-6px);
}

.beyond-resort-card h3 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: normal;
    margin-bottom: 14px;
}

.beyond-resort-card p {
    color: #657074;
    line-height: 1.75;
}

.beyond-resort-link {
    align-items: center;
    color: #98743c;
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: bold;
    gap: 8px;
    letter-spacing: 0.08rem;
    margin-top: 24px;
    padding-bottom: 6px;
    position: relative;
    text-transform: uppercase;
}

.beyond-resort-link::after {
    background: #c9a96e;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 100%;
}

.beyond-resort-link:hover::after {
    width: 55%;
}

.beyond-resort-link span {
    transition: transform 0.3s ease;
}

.beyond-resort-link:hover span {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .beyond-resort-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   EXPERIENCES PAGE
======================================== */

.experiences-page {
    background: #f7f5f0;
}


/* Hero */

.experiences-hero {
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 22, 0.94),
            rgba(7, 18, 22, 0.60)
        ),
        url("https://images.unsplash.com/photo-1512813195386-6cf811ad3542?auto=format&fit=crop&w=2000&q=85");
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 720px;
    padding: 160px 8% 90px;
}

.experiences-hero-content {
    color: #ffffff;
    max-width: 780px;
}

.experiences-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: normal;
    line-height: 0.95;
    margin-bottom: 30px;
}

.experiences-hero h1 span {
    color: #d6bc87;
    display: block;
    font-style: italic;
}

.experiences-hero-content > p:not(.eyebrow) {
    font-size: 1.12rem;
    line-height: 1.8;
    max-width: 650px;
}

.experiences-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}


/* Intro */

.experiences-intro {
    background: #ffffff;
}


/* Country section */

.destination-country-section {
    background: #f7f5f0;
    padding-top: 80px;
}

.alberta-section {
    background: #172a30;
}

.destination-country-heading {
    margin: 0 auto 65px;
    max-width: 1280px;
}

.destination-country-heading h2 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: normal;
    margin-bottom: 14px;
}

.destination-country-heading > p:last-child {
    color: #657074;
    line-height: 1.8;
    max-width: 720px;
}

.alberta-section .destination-country-heading h2 {
    color: #ffffff;
}

.alberta-section .destination-country-heading > p:last-child {
    color: #c8d0d2;
}


/* Individual destinations */

.experience-destination {
    margin: 0 auto 90px;
    max-width: 1280px;
}

.experience-destination:last-child {
    margin-bottom: 0;
}

.experience-destination-header {
    align-items: flex-end;
    border-bottom: 1px solid #d8d2c8;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.alberta-section .experience-destination-header {
    border-bottom-color: rgba(255, 255, 255, 0.16);
}

.experience-region {
    color: #a88445;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.12rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.experience-destination-header h3 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: normal;
}

.alberta-section .experience-destination-header h3 {
    color: #ffffff;
}

.experience-destination-header > p {
    color: #657074;
    line-height: 1.7;
    max-width: 580px;
}

.alberta-section .experience-destination-header > p {
    color: #c5ced0;
}


/* Featured / favourites cards */

.experience-category-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience-category-card {
    background: #ffffff;
    border-top: 3px solid #c9a96e;
    box-shadow: 0 15px 35px rgba(12, 27, 32, 0.08);
    padding: 40px;
}

.experience-category-number {
    color: #b18b4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.experience-category-card h4 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 14px;
}

.experience-category-card > p:not(.eyebrow) {
    color: #657074;
    line-height: 1.75;
}

.experience-list {
    list-style: none;
    margin-top: 25px;
    padding: 0;
}

.experience-list li {
    border-bottom: 1px solid #ebe7df;
    color: #536166;
    line-height: 1.6;
    padding: 13px 0 13px 23px;
    position: relative;
}

.experience-list li:last-child {
    border-bottom: 0;
}

.experience-list li::before {
    color: #b18b4a;
    content: "◆";
    font-size: 0.48rem;
    left: 1px;
    position: absolute;
    top: 20px;
}


/* Explore all button */

.experience-explore-all {
    margin-top: 30px;
    text-align: center;
}


/* Missing affiliate URL */

.destination-affiliate-link.link-unavailable {
    background: #bec3c4;
    border-color: #bec3c4;
    color: #596164;
    cursor: default;
    pointer-events: none;
}


/* Travel Essentials */

.experiences-essentials-section {
    background:
        linear-gradient(
            rgba(10, 24, 29, 0.90),
            rgba(10, 24, 29, 0.94)
        ),
        url("https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=format&fit=crop&w=1800&q=85");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    text-align: center;
}

.experiences-essentials-content {
    margin: 0 auto;
    max-width: 760px;
}

.experiences-essentials-content h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: normal;
    margin-bottom: 20px;
}

.experiences-essentials-content > p:not(.eyebrow) {
    color: #d0d8da;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* Disclosure */

.experience-disclosure-wrapper {
    background: #f7f5f0;
    padding: 55px 7%;
}

.experience-disclosure {
    background: #eee9df;
    border-left: 4px solid #c9a96e;
    color: #58666a;
    margin: 0 auto;
    max-width: 1280px;
    padding: 24px 28px;
}

.experience-disclosure strong {
    color: #172c32;
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.experience-disclosure p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-top: 5px;
}


/* Tablet */

@media (max-width: 850px) {

    .experiences-hero {
        min-height: 680px;
        padding: 130px 7% 80px;
    }

    .experience-destination-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

}


/* Mobile */

@media (max-width: 650px) {

    .experiences-hero {
        min-height: 620px;
    }

    .experiences-hero-buttons {
        flex-direction: column;
    }

    .experience-category-grid {
        grid-template-columns: 1fr;
    }

    .experience-category-card {
        padding: 30px 23px;
    }

    .destination-country-section {
        padding-left: 5%;
        padding-right: 5%;
    }

}


/* ========================================
   EXPERIENCE COLLECTION HUB + PARTNERS
======================================== */

.button-outline-dark {
    border: 1px solid #8f733f;
    color: #172c32;
}

.button-outline-dark:hover {
    background: #172c32;
    border-color: #172c32;
    color: #ffffff;
}

.beyond-resort-all {
    margin-top: 42px;
    text-align: center;
}

.experience-hub-hero {
    background:
        linear-gradient(90deg, rgba(7,18,22,.94), rgba(7,18,22,.56)),
        url("https://images.unsplash.com/photo-1512813195386-6cf811ad3542?auto=format&fit=crop&w=2000&q=85");
}

.experience-hub-intro {
    background: #ffffff;
}

.experience-collection-section {
    background: #eee9df;
}

.experience-collection-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1280px;
}

.experience-collection-card {
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 610px;
    overflow: hidden;
    padding: 56px;
    position: relative;
}

.collection-mexico {
    background-image: url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1400&q=85");
}

.collection-rockies {
    background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1400&q=85");
}

.experience-collection-overlay {
    background: linear-gradient(to top, rgba(8,20,24,.96), rgba(8,20,24,.22));
    inset: 0;
    position: absolute;
}

.experience-collection-content {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.experience-collection-content h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.05;
    margin: 10px 0 18px;
}

.experience-collection-content > p:not(.eyebrow) {
    color: #d5dcde;
    line-height: 1.75;
    max-width: 540px;
}

.experience-collection-list {
    list-style: none;
    margin: 24px 0 32px;
    padding: 0;
}

.experience-collection-list li {
    border-top: 1px solid rgba(255,255,255,.18);
    color: #f2f4f4;
    padding: 11px 0;
}

.experience-hub-principles {
    background: #172a30;
}

.experience-principle-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1250px;
}

.experience-principle-grid article {
    border-top: 2px solid #c9a96e;
    padding: 34px 26px;
}

.experience-principle-grid span {
    color: #c9a96e;
    font-family: Georgia, "Times New Roman", serif;
}

.experience-principle-grid h3 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    margin: 14px 0 10px;
}

.experience-principle-grid p {
    color: #c8d0d2;
    line-height: 1.7;
}

.mexico-collection-hero {
    background:
        linear-gradient(90deg, rgba(7,18,22,.94), rgba(7,18,22,.52)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=85");
}

.rockies-collection-hero {
    background:
        linear-gradient(90deg, rgba(7,18,22,.94), rgba(7,18,22,.52)),
        url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=2000&q=85");
}

.experience-partner-section {
    border-top: 1px solid #d7d0c4;
    margin-top: 42px;
    padding-top: 38px;
}

.alberta-section .experience-partner-section {
    border-top-color: rgba(255,255,255,.16);
}

.experience-partner-heading {
    margin-bottom: 24px;
    max-width: 720px;
}

.experience-partner-heading h4 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: normal;
    margin-bottom: 8px;
}

.experience-partner-heading > p:not(.eyebrow) {
    color: #657074;
}

.alberta-section .experience-partner-heading h4 {
    color: #ffffff;
}

.alberta-section .experience-partner-heading > p:not(.eyebrow) {
    color: #c8d0d2;
}

.experience-provider-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.experience-provider-card {
    background: #ffffff;
    border: 1px solid #ddd7cc;
    min-height: 225px;
    padding: 28px;
}

.experience-provider-card[hidden],
[data-provider-group][hidden],
[data-provider-section][hidden] {
    display: none !important;
}

.provider-kicker {
    color: #a47f43;
    font-size: .68rem;
    font-weight: bold;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

.experience-provider-card h4 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    margin: 9px 0 12px;
}

.experience-provider-card > p:not(.provider-kicker) {
    color: #657074;
    font-size: .92rem;
    line-height: 1.65;
}

.provider-link {
    align-items: center;
    color: #8f6d38;
    display: inline-flex;
    font-size: .72rem;
    font-weight: bold;
    gap: 8px;
    letter-spacing: .07rem;
    margin-top: 22px;
    text-transform: uppercase;
}

.provider-link span {
    transition: transform .25s ease;
}

.provider-link:hover span {
    transform: translateX(5px);
}

.rockies-stay-teaser {
    background: #ffffff;
}

.rockies-stay-teaser-content {
    margin: 0 auto;
    max-width: 850px;
    text-align: center;
}

.rockies-stay-teaser-content h2 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: normal;
    margin: 8px 0 18px;
}

.rockies-stay-teaser-content p:not(.eyebrow) {
    color: #657074;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .experience-collection-grid,
    .experience-principle-grid {
        grid-template-columns: 1fr;
    }

    .experience-collection-card {
        min-height: 520px;
    }
}

@media (max-width: 600px) {
    .experience-collection-card {
        min-height: 500px;
        padding: 36px 26px;
    }

    .experience-provider-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   VIATOR LIVE EXPERIENCE API
======================================== */

.viator-live-section {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 38px;
    padding: 34px;
}

.viator-live-heading {
    margin-bottom: 25px;
}

.viator-live-heading h4 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: normal;
    margin-bottom: 10px;
}

.viator-live-heading > p:last-child {
    color: #c7d0d2;
    max-width: 760px;
}

.viator-search-form {
    align-items: end;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr) auto;
    margin-bottom: 14px;
}

.viator-search-form label {
    color: #ffffff;
    display: grid;
    font-size: 0.75rem;
    font-weight: bold;
    gap: 7px;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}

.viator-search-form input {
    background: #ffffff;
    border: 1px solid #d7d7d7;
    color: #172c32;
    font: inherit;
    min-height: 50px;
    padding: 10px 12px;
    width: 100%;
}

.viator-search-form button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.viator-search-message {
    color: #c7d0d2;
    font-size: 0.86rem;
    margin: 12px 0 22px;
}

.viator-product-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.viator-product-card {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
    color: #252525;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.viator-card-image {
    aspect-ratio: 16 / 10;
    background: #e8eceb;
    overflow: hidden;
}

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

.viator-card-image-placeholder {
    align-items: center;
    color: #667477;
    display: flex;
    font-family: Georgia, "Times New Roman", serif;
    height: 100%;
    justify-content: center;
}

.viator-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.viator-card-content h4 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.3;
    margin: 5px 0 10px;
}

.viator-card-rating {
    color: #8a6b35;
    font-size: 0.83rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.viator-card-rating span {
    color: #6b7477;
    font-weight: normal;
}

.viator-card-description {
    color: #657074;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.viator-card-footer {
    align-items: end;
    border-top: 1px solid #ece7de;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 17px;
}

.viator-card-price {
    color: #172c32;
    font-size: 1rem;
    font-weight: bold;
}

.viator-card-price span {
    color: #6b7477;
    display: block;
    font-size: 0.68rem;
    font-weight: normal;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

.viator-card-price-muted {
    color: #6b7477;
    font-size: 0.82rem;
    font-weight: normal;
}

.viator-card-link {
    color: #98743c;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

.viator-card-link:hover {
    color: #c9a96e;
}

.viator-card-link-disabled {
    color: #9aa2a4;
}

@media (max-width: 1000px) {
    .viator-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .viator-live-section {
        padding: 26px 20px;
    }

    .viator-search-form {
        grid-template-columns: 1fr;
    }

    .viator-product-grid {
        grid-template-columns: 1fr;
    }

    .viator-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ========================================
   GUIDED PEAK VACATIONS QUOTE FORM
======================================== */

.quote-form-guided [hidden],
.quote-branch[hidden],
.quote-nested-options[hidden],
#quote-common-flow[hidden],
#sandos-guests-section[hidden],
#general-guests-section[hidden],
.quote-confirmation[hidden] {
    display: none !important;
}

.quote-honeypot {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.quote-section-intro {
    color: #657074;
    line-height: 1.7;
    margin: -4px 0 22px;
}

.quote-path-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-path-card {
    cursor: pointer;
    display: block;
    min-width: 0;
    position: relative;
}

.quote-path-card > input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.quote-path-card-content {
    align-content: center;
    background: #f7f5f0;
    border: 1px solid #d9d3c8;
    border-top: 2px solid transparent;
    display: grid;
    min-height: 88px;
    padding: 14px 16px;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.quote-path-card:hover .quote-path-card-content {
    border-top-color: #c9a96e;
    box-shadow: 0 8px 18px rgba(13, 28, 33, 0.08);
    transform: translateY(-1px);
}

.quote-path-card > input:focus-visible + .quote-path-card-content {
    outline: 2px solid #b6914e;
    outline-offset: 2px;
}

.quote-path-card > input:checked + .quote-path-card-content {
    background: #172a30;
    border-color: #c9a96e;
    color: #ffffff;
}

.quote-path-kicker {
    color: #9c7840;
    display: block;
    font-size: 0.58rem;
    font-weight: bold;
    letter-spacing: 0.07rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.quote-path-card > input:checked +
.quote-path-card-content .quote-path-kicker {
    color: #d8bd88;
}

.quote-path-card-content strong {
    color: #172c32;
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    font-weight: normal;
    line-height: 1.18;
}

.quote-path-card > input:checked +
.quote-path-card-content strong {
    color: #ffffff;
}

.quote-path-card-disabled {
    cursor: default;
}

.quote-path-card-disabled .quote-path-card-content {
    background: #efede8;
    border-style: dashed;
    opacity: 0.62;
}

.quote-path-card-disabled:hover .quote-path-card-content {
    border-top-color: transparent;
    box-shadow: none;
    transform: none;
}

.quote-subchoice-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-subchoice-card {
    cursor: pointer;
    display: block;
    position: relative;
}

.quote-subchoice-card > input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.quote-subchoice-card > span {
    background: #f4f1ea;
    border: 1px solid #ddd7cc;
    display: block;
    height: 100%;
    padding: 20px;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.quote-subchoice-card:hover > span {
    border-color: #c9a96e;
    transform: translateY(-2px);
}

.quote-subchoice-card > input:focus-visible + span {
    outline: 2px solid #b6914e;
    outline-offset: 3px;
}

.quote-subchoice-card > input:checked + span {
    background: #172a30;
    border-color: #c9a96e;
    color: #ffffff;
}

.quote-subchoice-card strong {
    color: #172c32;
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 7px;
}

.quote-subchoice-card > input:checked + span strong {
    color: #ffffff;
}

.quote-subchoice-card small {
    color: #657074;
    display: block;
    font-size: 0.77rem;
    line-height: 1.55;
}

.quote-subchoice-card > input:checked + span small {
    color: #d3dcde;
}

.quote-nested-options {
    background: #f7f5f0;
    border-left: 3px solid #c9a96e;
    margin-top: 22px;
    padding: 22px;
}

.quote-flow-note {
    background: #f7f5f0;
    border-left: 3px solid #c9a96e;
    color: #657074;
    line-height: 1.7;
    margin-top: 22px;
    padding: 20px 22px;
}

.quote-inline-check {
    align-items: center;
    color: #536267;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.88rem;
    gap: 10px;
    margin-top: 16px;
}

.quote-inline-check input {
    accent-color: #a88445;
    height: 18px;
    width: 18px;
}

.guest-count-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-contact-secondary {
    margin-top: 24px;
}

.quote-privacy-consent {
    margin-top: 4px;
}

.quote-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.quote-confirmation {
    background: #ffffff;
    border-top: 4px solid #c9a96e;
    box-shadow: 0 18px 44px rgba(7, 19, 25, 0.11);
    margin: 0 auto;
    max-width: 760px;
    padding: 44px 40px;
    text-align: center;
}

.quote-confirmation h3 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: normal;
    line-height: 1.1;
    margin: 8px 0 15px;
}

.quote-confirmation > p:not(.eyebrow) {
    color: #657074;
    line-height: 1.75;
}

.quote-confirmation-number {
    color: #98743c !important;
    font-size: 0.84rem;
    font-weight: bold;
    margin: 14px 0 24px;
}

@media (max-width: 900px) {
    .quote-path-grid,
    .quote-subchoice-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .quote-path-card-content {
        min-height: 0;
        padding: 20px;
    }

    .quote-confirmation {
        padding: 34px 24px;
    }

    .guest-count-grid-simple {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .quote-form-heading {
        gap: 20px;
        grid-template-columns: 115px minmax(0, 1fr);
    }

    .quote-form-logo {
        max-width: 115px;
    }

    .quote-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .quote-form-heading {
        align-items: center;
        gap: 14px;
        grid-template-columns: 82px minmax(0, 1fr);
        margin-bottom: 20px;
    }

    .quote-form-logo {
        max-width: 82px;
    }

    .quote-form-heading h2 {
        font-size: 1.75rem;
    }

    .quote-form-heading-copy > p:last-child {
        font-size: 0.82rem;
    }

    .quote-path-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-path-card-content {
        min-height: 78px;
        padding: 12px;
    }

    .quote-path-card-content strong {
        font-size: 0.92rem;
    }
}

/* ========================================
   MEXICO EXPERIENCES — COLOUR + CARD REFRESH
   Scoped to Beyond the Resort so the rest of the site is unchanged.
======================================== */

.mexico-experiences-page {
    --experience-ink: #102a35;
    --experience-navy: #0c3340;
    --experience-navy-deep: #061d27;
    --experience-teal: #0b6f78;
    --experience-gold: #d2a84f;
    --experience-gold-dark: #89631f;
    --experience-cream: #fffdf8;
    --experience-sand: #f0e9dd;
    --experience-body: #465b62;
    --experience-border: #d7c8b4;
    background: var(--experience-sand);
    color: var(--experience-ink);
}

.mexico-experiences-page .mexico-collection-hero {
    background:
        linear-gradient(
            90deg,
            rgba(4, 24, 32, 0.97) 0%,
            rgba(7, 43, 54, 0.84) 48%,
            rgba(5, 31, 41, 0.55) 100%
        ),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=88");
    background-position: center;
    background-size: cover;
}

.mexico-experiences-page .experiences-hero h1 span,
.mexico-experiences-page .experiences-hero .eyebrow {
    color: #f0cd82;
}

.mexico-experiences-page .experiences-hero-content > p:not(.eyebrow) {
    color: #f4f7f7;
}

.mexico-experiences-page .button-gold {
    background: var(--experience-gold);
    border-color: var(--experience-gold);
    color: var(--experience-navy-deep);
}

.mexico-experiences-page .button-gold:hover {
    background: #e3bd69;
    border-color: #e3bd69;
}

.mexico-experiences-page .experiences-intro {
    background: var(--experience-cream);
}

.mexico-experiences-page .experiences-intro .section-heading h2 {
    color: var(--experience-ink);
}

.mexico-experiences-page .experiences-intro .section-heading p:last-child {
    color: var(--experience-body);
}

.mexico-experiences-page .mexico-destination-section {
    background:
        linear-gradient(180deg, #f2ece2 0%, #ebe2d4 100%);
}

.mexico-experiences-page .experience-destination-header {
    border-bottom-color: #cbbba4;
}

.mexico-experiences-page .experience-region,
.mexico-experiences-page .experience-category-number,
.mexico-experiences-page .experience-list li::before,
.mexico-experiences-page .provider-kicker {
    color: var(--experience-gold-dark);
}

.mexico-experiences-page .experience-destination-header h3,
.mexico-experiences-page .experience-category-card h4,
.mexico-experiences-page .experience-partner-heading h4,
.mexico-experiences-page .experience-provider-card h4 {
    color: var(--experience-ink);
}

.mexico-experiences-page .experience-destination-header > p,
.mexico-experiences-page .experience-category-card > p:not(.eyebrow),
.mexico-experiences-page .experience-list li,
.mexico-experiences-page .experience-partner-heading > p:not(.eyebrow),
.mexico-experiences-page .experience-provider-card > p:not(.provider-kicker) {
    color: var(--experience-body);
}

.mexico-experiences-page .experience-category-card {
    background: var(--experience-cream);
    border: 1px solid var(--experience-border);
    border-top: 4px solid var(--experience-gold);
    box-shadow: 0 18px 42px rgba(9, 38, 47, 0.12);
}

.mexico-experiences-page .experience-list li {
    border-bottom-color: #e4d8c7;
}

.mexico-experiences-page .experience-partner-section {
    border-top-color: #cbbba4;
}

.mexico-experiences-page .experience-provider-card {
    background: #fbf7ef;
    border-color: #cbbba4;
    box-shadow: 0 10px 26px rgba(9, 38, 47, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.mexico-experiences-page .experience-provider-card:hover {
    border-color: var(--experience-gold);
    box-shadow: 0 16px 34px rgba(9, 38, 47, 0.14);
    transform: translateY(-3px);
}

.mexico-experiences-page .provider-link {
    color: #765114;
}

.mexico-experiences-page .provider-link:hover {
    color: var(--experience-teal);
}

.mexico-experiences-page .viator-live-section {
    background:
        linear-gradient(135deg, var(--experience-navy-deep), var(--experience-navy));
    border: 1px solid rgba(210, 168, 79, 0.62);
    box-shadow: 0 22px 50px rgba(5, 28, 37, 0.22);
    position: relative;
}

.mexico-experiences-page .viator-live-section::before {
    background: var(--experience-gold);
    content: "";
    height: 4px;
    left: -1px;
    position: absolute;
    right: -1px;
    top: -1px;
}

.mexico-experiences-page .viator-live-heading h4,
.mexico-experiences-page .viator-search-form label {
    color: #ffffff;
}

.mexico-experiences-page .viator-live-heading .eyebrow {
    color: #f0cd82;
}

.mexico-experiences-page .viator-live-heading > p:last-child,
.mexico-experiences-page .viator-search-message {
    color: #d9e4e6;
}

.mexico-experiences-page .viator-search-form input {
    background: #fffdf9;
    border: 2px solid transparent;
    color: var(--experience-ink);
    outline: none;
}

.mexico-experiences-page .viator-search-form input:focus {
    border-color: var(--experience-gold);
    box-shadow: 0 0 0 3px rgba(210, 168, 79, 0.2);
}

.mexico-experiences-page .viator-product-card {
    background: var(--experience-cream);
    border: 1px solid rgba(210, 168, 79, 0.48);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.mexico-experiences-page .viator-product-card:hover {
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
    transform: translateY(-5px);
}

.mexico-experiences-page .viator-card-image-link {
    display: block;
    height: 100%;
}

.mexico-experiences-page .viator-card-image img {
    transition: transform 0.45s ease;
}

.mexico-experiences-page .viator-product-card:hover .viator-card-image img {
    transform: scale(1.045);
}

.mexico-experiences-page .viator-card-image-placeholder {
    background:
        linear-gradient(135deg, var(--experience-teal), var(--experience-navy-deep));
    color: #f0cd82;
    letter-spacing: 0.05rem;
    text-align: center;
}

.mexico-experiences-page .viator-card-title-link {
    color: inherit;
    transition: color 0.2s ease;
}

.mexico-experiences-page .viator-card-title-link:hover {
    color: var(--experience-teal);
}

.mexico-experiences-page .viator-card-content h4,
.mexico-experiences-page .viator-card-price {
    color: var(--experience-ink);
}

.mexico-experiences-page .viator-card-description,
.mexico-experiences-page .viator-card-price span,
.mexico-experiences-page .viator-card-rating span {
    color: var(--experience-body);
}

.mexico-experiences-page .viator-card-rating {
    color: var(--experience-gold-dark);
}

.mexico-experiences-page .viator-card-footer {
    border-top-color: #dfd2bf;
}

.mexico-experiences-page .viator-card-link:not(.viator-card-link-disabled) {
    background: var(--experience-gold);
    color: var(--experience-navy-deep);
    padding: 11px 13px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mexico-experiences-page .viator-card-link:not(.viator-card-link-disabled):hover {
    background: #e3bd69;
    color: var(--experience-navy-deep);
    transform: translateY(-1px);
}

.mexico-experiences-page .experience-disclosure-wrapper {
    background: #e7ddce;
}

.mexico-experiences-page .experience-disclosure {
    background: #fbf7ef;
    border-left-color: var(--experience-gold);
    color: var(--experience-body);
}

.mexico-experiences-page .experience-disclosure strong {
    color: var(--experience-ink);
}

@media (prefers-reduced-motion: reduce) {
    .mexico-experiences-page .experience-provider-card,
    .mexico-experiences-page .viator-product-card,
    .mexico-experiences-page .viator-card-image img,
    .mexico-experiences-page .viator-card-link {
        transition: none;
    }
}

/* ========================================
   QUOTE DATE-RANGE CALENDAR
======================================== */

.quote-date-range-trigger {
    background-image:
        linear-gradient(45deg, transparent 50%, #89631f 50%),
        linear-gradient(135deg, #89631f 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 22px,
        calc(100% - 13px) 22px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    cursor: pointer;
    padding-right: 40px !important;
}

.quote-date-range-helper {
    color: #657074;
    display: block;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 7px;
}

.quote-date-range-summary {
    align-items: center;
    background: #edf3f2;
    border-left: 3px solid #0b6f78;
    color: #173740;
    display: flex;
    font-size: 0.86rem;
    font-weight: bold;
    grid-column: 1 / -1;
    line-height: 1.5;
    margin: -8px 0 0;
    min-height: 0;
    padding: 0;
}

.quote-date-range-summary:not(:empty) {
    min-height: 44px;
    padding: 10px 14px;
}

.quote-date-range-summary.has-error {
    background: #f8ece9;
    border-left-color: #a14135;
    color: #8e3129;
}

.quote-date-range-dialog[hidden] {
    display: none !important;
}

.quote-date-range-dialog {
    inset: 0;
    position: fixed;
    z-index: 12000;
}

.quote-date-range-backdrop {
    background: rgba(4, 17, 23, 0.76);
    inset: 0;
    position: absolute;
}

.quote-date-range-panel {
    background: #fffdf8;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    left: 50%;
    max-height: calc(100vh - 48px);
    max-width: 900px;
    overflow-y: auto;
    padding: 34px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 48px);
}

.quote-date-range-topbar {
    align-items: flex-start;
    border-bottom: 1px solid #ddd2c1;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 20px;
}

.quote-date-range-topbar .eyebrow {
    color: #89631f;
    margin-bottom: 8px;
}

.quote-date-range-topbar h3 {
    color: #102a35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 7px;
}

.quote-date-range-topbar p:last-child {
    color: #52666c;
    line-height: 1.55;
}

.quote-date-range-close {
    align-items: center;
    background: #102f3b;
    border: 1px solid #d2a84f;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    font-size: 1.65rem;
    height: 42px;
    justify-content: center;
    line-height: 1;
    width: 42px;
}

.quote-date-range-close:hover,
.quote-date-range-close:focus-visible {
    background: #d2a84f;
    color: #061d27;
    outline: none;
}

.quote-date-range-selection {
    background: #0c3340;
    border-left: 4px solid #d2a84f;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 18px;
    padding: 13px 16px;
}

.quote-date-range-navigation {
    align-items: center;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    margin-bottom: 16px;
    text-align: center;
}

.quote-date-range-navigation span {
    color: #52666c;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.09rem;
    text-transform: uppercase;
}

.quote-date-range-navigation button {
    background: #f0e9dd;
    border: 1px solid #d4c6b2;
    color: #102a35;
    cursor: pointer;
    font-size: 1.15rem;
    height: 40px;
}

.quote-date-range-navigation button:hover:not(:disabled),
.quote-date-range-navigation button:focus-visible {
    background: #d2a84f;
    border-color: #d2a84f;
    outline: none;
}

.quote-date-range-navigation button:disabled {
    cursor: default;
    opacity: 0.35;
}

.quote-date-range-months {
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-date-range-month h4 {
    color: #102a35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 14px;
    text-align: center;
}

.quote-date-range-weekdays,
.quote-date-range-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.quote-date-range-weekdays span {
    color: #6a797d;
    font-size: 0.63rem;
    font-weight: bold;
    padding: 6px 2px;
    text-align: center;
    text-transform: uppercase;
}

.quote-date-range-days button,
.quote-date-range-spacer {
    aspect-ratio: 1;
    min-width: 0;
}

.quote-date-range-days button {
    background: transparent;
    border: 1px solid transparent;
    color: #203b43;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    position: relative;
}

.quote-date-range-days button:hover:not(:disabled),
.quote-date-range-days button:focus-visible {
    border-color: #0b6f78;
    color: #074c54;
    outline: none;
    z-index: 1;
}

.quote-date-range-days button:disabled {
    color: #b2b8b9;
    cursor: default;
    text-decoration: line-through;
}

.quote-date-range-days button.is-in-range {
    background: #dcebea;
    color: #133c43;
}

.quote-date-range-days button.is-range-start,
.quote-date-range-days button.is-range-end {
    background: #0b6f78;
    border-color: #0b6f78;
    color: #ffffff;
    font-weight: bold;
}

.quote-date-range-days button.is-range-start {
    box-shadow: inset 3px 0 0 #d2a84f;
}

.quote-date-range-days button.is-range-end {
    box-shadow: inset -3px 0 0 #d2a84f;
}

.quote-date-range-footer {
    align-items: center;
    border-top: 1px solid #ddd2c1;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 18px;
}

.quote-date-range-footer p {
    color: #66777b;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: right;
}

.quote-date-range-clear {
    background: transparent;
    border: 0;
    color: #79561b;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.07rem;
    padding: 8px 0;
    text-transform: uppercase;
}

.quote-date-range-clear:hover,
.quote-date-range-clear:focus-visible {
    color: #0b6f78;
    outline: none;
    text-decoration: underline;
}

body.quote-date-range-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    .quote-date-range-panel {
        bottom: 0;
        left: 0;
        max-height: 92vh;
        padding: 26px 20px;
        top: auto;
        transform: none;
        width: 100%;
    }

    .quote-date-range-months {
        grid-template-columns: 1fr;
    }

    .quote-date-range-month:nth-child(2) {
        display: none;
    }

    .quote-date-range-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .quote-date-range-footer p {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .quote-date-range-panel {
        padding: 22px 14px;
    }

    .quote-date-range-topbar {
        gap: 12px;
    }

    .quote-date-range-days button {
        font-size: 0.76rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quote-date-range-panel {
        scroll-behavior: auto;
    }
}

/* ========================================
   VIATOR DATE-RANGE CALENDAR
======================================== */

.mexico-experiences-page .viator-search-form .viator-date-range-helper {
    color: #d9e4e6;
    font-size: 0.7rem;
    font-weight: normal;
    letter-spacing: 0;
    text-transform: none;
}

.mexico-experiences-page .viator-date-range-summary {
    margin: 14px 0 18px;
}

.mexico-experiences-page .viator-search-form .quote-date-range-trigger {
    cursor: pointer;
}

.mexico-experiences-page .viator-search-form {
    grid-template-columns:
        minmax(170px, 1fr)
        minmax(170px, 1fr)
        minmax(175px, 0.9fr)
        auto;
}

.mexico-experiences-page .viator-search-form select {
    appearance: none;
    background:
        #fffdf9
        linear-gradient(45deg, transparent 50%, #89631f 50%)
        calc(100% - 18px) 22px / 5px 5px no-repeat;
    border: 2px solid transparent;
    color: var(--experience-ink);
    cursor: pointer;
    font: inherit;
    min-height: 50px;
    padding: 10px 38px 10px 12px;
    width: 100%;
}

.mexico-experiences-page .viator-search-form select:focus {
    border-color: var(--experience-gold);
    box-shadow: 0 0 0 3px rgba(210, 168, 79, 0.2);
    outline: none;
}

@media (min-width: 761px) and (max-width: 1100px) {
    .mexico-experiences-page .viator-search-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .mexico-experiences-page .viator-search-form {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CURATED THREE-ACTIVITY SHOP CARDS
======================================== */

.experience-shop-grid {
    display: grid;
    gap: 11px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 25px;
}

.experience-shop-item {
    background: #f3ede3;
    border: 1px solid #d8cab6;
    color: #17333c;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.experience-shop-item:hover,
.experience-shop-item:focus-visible {
    border-color: #c99a36;
    box-shadow: 0 12px 24px rgba(9, 38, 47, 0.16);
    outline: none;
    transform: translateY(-3px);
}

.experience-shop-image {
    aspect-ratio: 4 / 3;
    background: #dce4e2;
    display: block;
    overflow: hidden;
}

.experience-shop-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}

.experience-shop-item:hover .experience-shop-image img,
.experience-shop-item:focus-visible .experience-shop-image img {
    transform: scale(1.045);
}

.experience-shop-title {
    display: -webkit-box;
    font-size: 0.74rem;
    font-weight: bold;
    line-height: 1.42;
    min-height: 4.25rem;
    overflow: hidden;
    padding: 11px 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.experience-shop-cta {
    margin-top: 19px;
}

@media (max-width: 650px) {
    .experience-shop-grid {
        grid-auto-columns: minmax(150px, 72%);
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 2px 2px 12px;
        scroll-snap-type: inline mandatory;
    }

    .experience-shop-item {
        scroll-snap-align: start;
    }

    .experience-shop-title {
        font-size: 0.78rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .experience-shop-item,
    .experience-shop-image img {
        transition: none;
    }
}

/* ========================================
   COMPACT DESTINATION SWITCHER + MORE PANEL
======================================== */

.destination-switcher-shell {
    background: #0b303d;
    border-bottom: 1px solid rgba(210, 168, 79, 0.5);
    border-top: 1px solid rgba(210, 168, 79, 0.5);
    padding: 15px 7%;
    scroll-margin-top: 90px;
}

.destination-switcher {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1000px;
}

.destination-switcher a {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 0.94rem;
    font-weight: 700;
    gap: 3px;
    justify-content: center;
    min-height: 58px;
    padding: 10px 16px;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.destination-switcher a span {
    color: #cbd9dc;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.035rem;
}

.destination-switcher a:hover,
.destination-switcher a:focus-visible {
    border-color: #e0ba67;
    outline: none;
}

.destination-switcher a[aria-selected="true"] {
    background: #d2a84f;
    border-color: #d2a84f;
    color: #061d27;
}

.destination-switcher a[aria-selected="true"] span {
    color: #27414a;
}

.destination-tabs-ready .experience-destination[hidden] {
    display: none !important;
}

.mexico-experiences-page {
    max-width: 100%;
    overflow-x: hidden;
}

.mexico-experiences-page main,
.mexico-experiences-page .experiences-hero,
.mexico-experiences-page .experiences-intro,
.mexico-experiences-page .destination-switcher-shell,
.mexico-experiences-page .destination-country-section,
.mexico-experiences-page .experience-destination,
.mexico-experiences-page .experience-category-grid,
.mexico-experiences-page .experience-category-card {
    max-width: 100%;
    min-width: 0;
}

.mexico-experiences-page .experiences-hero {
    min-height: 540px;
}

.mexico-experiences-page .experiences-intro {
    padding-bottom: 50px;
    padding-top: 58px;
}

.mexico-experiences-page .destination-country-section {
    padding-bottom: 65px;
    padding-top: 44px;
}

.mexico-experiences-page .experience-destination {
    margin-bottom: 0;
    scroll-margin-top: 90px;
}

.mexico-experiences-page .experience-destination-header {
    margin-bottom: 26px;
    padding-bottom: 18px;
}

.mexico-experiences-page .experience-category-card {
    padding: 29px;
}

.mexico-experiences-page .experience-category-number {
    margin-bottom: 12px;
}

.mexico-experiences-page .experience-category-card h4 {
    font-size: 1.62rem;
    margin-bottom: 9px;
}

.mexico-experiences-page .experience-category-card > p:not(.eyebrow) {
    line-height: 1.58;
}

.mexico-experiences-page .experience-shop-grid {
    margin-top: 19px;
}

.experience-more-panel {
    background: #fffdf8;
    border: 1px solid #c9b693;
    box-shadow: 0 14px 34px rgba(9, 38, 47, 0.1);
    margin-top: 28px;
}

.experience-more-panel > summary {
    align-items: center;
    background: #0b303d;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    list-style: none;
    min-height: 78px;
    padding: 16px 23px;
}

.experience-more-panel > summary::-webkit-details-marker {
    display: none;
}

.experience-more-panel > summary span {
    display: grid;
    gap: 4px;
}

.experience-more-panel > summary strong {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: normal;
}

.experience-more-panel > summary small {
    color: #cfdbdd;
    font-size: 0.76rem;
    line-height: 1.4;
}

.experience-more-panel > summary::after {
    align-items: center;
    border: 1px solid rgba(240, 205, 130, 0.7);
    border-radius: 50%;
    color: #f0cd82;
    content: "+";
    display: flex;
    flex: 0 0 34px;
    font-size: 1.5rem;
    height: 34px;
    justify-content: center;
    line-height: 1;
}

.experience-more-panel[open] > summary::after {
    content: "−";
}

.experience-more-panel > summary:hover,
.experience-more-panel > summary:focus-visible {
    background: #0d3d4b;
    outline: none;
}

.experience-more-content {
    padding: 22px;
}

.experience-more-content .viator-live-section {
    margin-top: 0;
}

.experience-more-content .experience-partner-section {
    margin-top: 28px;
    padding-top: 28px;
}

@media (max-width: 650px) {
    .mexico-experiences-page .experiences-hero {
        min-height: 500px;
        padding-bottom: 62px;
        padding-top: 115px;
    }

    .mexico-experiences-page .experiences-intro {
        padding-bottom: 38px;
        padding-top: 42px;
    }

    .destination-switcher-shell {
        overflow: hidden;
        padding: 12px 5%;
        width: 100%;
    }

    .destination-switcher {
        display: flex;
        gap: 10px;
        max-width: none;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 0 0 3px;
        scroll-snap-type: inline mandatory;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .destination-switcher a {
        flex: 0 0 min(72vw, 280px);
        min-height: 56px;
        min-width: 0;
        scroll-snap-align: start;
    }

    .mexico-experiences-page .experience-shop-grid {
        display: flex;
        gap: 11px;
        grid-auto-columns: initial;
        grid-auto-flow: initial;
        grid-template-columns: none;
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 2px 2px 12px;
        scroll-snap-type: inline mandatory;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .mexico-experiences-page .experience-shop-item {
        flex: 0 0 min(72%, 220px);
        min-width: 150px;
        scroll-snap-align: start;
    }

    .mexico-experiences-page .destination-country-section {
        padding-bottom: 48px;
        padding-top: 32px;
    }

    .mexico-experiences-page .experience-destination-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .mexico-experiences-page .experience-category-card {
        padding: 24px 19px;
    }

    .experience-more-panel {
        margin-top: 22px;
    }

    .experience-more-panel > summary {
        min-height: 72px;
        padding: 14px 17px;
    }

    .experience-more-panel > summary strong {
        font-size: 1.08rem;
    }

    .experience-more-content {
        padding: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .destination-switcher a {
        transition: none;
    }
}

/* ========================================
   TABLET + PHONE ABOVE-THE-FOLD LAYOUT
======================================== */

@media (max-width: 900px) {
    .mexico-experiences-page main {
        padding-top: 76px;
    }

    .mexico-experiences-page .experiences-hero {
        display: none;
    }

    .mexico-experiences-page .experiences-intro {
        padding: 48px 7% 46px;
    }

    .mexico-experiences-page .experiences-intro .section-heading {
        margin-bottom: 0;
        max-width: 900px;
    }

    .mexico-experiences-page .experiences-intro .section-heading h2 {
        font-size: clamp(2.7rem, 8vw, 4.2rem);
        line-height: 1.05;
        margin-bottom: 20px;
    }

    .mexico-experiences-page .experiences-intro .section-heading p:last-child {
        font-size: 1rem;
        line-height: 1.55;
    }

    .mexico-experiences-page .destination-switcher-shell {
        overflow: hidden;
        padding: 11px 4%;
        width: 100%;
    }

    .mexico-experiences-page .destination-switcher {
        display: grid;
        gap: 9px;
        grid-auto-columns: initial;
        grid-auto-flow: row;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1000px;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
        width: 100%;
    }

    .mexico-experiences-page .destination-switcher a {
        flex: initial;
        min-height: 76px;
        min-width: 0;
        padding: 10px 7px;
        scroll-snap-align: none;
    }

    .mexico-experiences-page .destination-country-section {
        padding-top: 38px;
    }
}

@media (max-width: 650px) {
    .mexico-experiences-page .experiences-intro {
        padding: 34px 5% 36px;
    }

    .mexico-experiences-page .experiences-intro .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.17rem;
        margin-bottom: 13px;
    }

    .mexico-experiences-page .experiences-intro .section-heading h2 {
        font-size: clamp(2.05rem, 10vw, 2.75rem);
        line-height: 1.06;
        margin-bottom: 16px;
    }

    .mexico-experiences-page .experiences-intro .section-heading p:last-child {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .mexico-experiences-page .destination-switcher-shell {
        padding: 8px 3%;
    }

    .mexico-experiences-page .destination-switcher {
        gap: 6px;
    }

    .mexico-experiences-page .destination-switcher a {
        font-size: 0.76rem;
        min-height: 70px;
        padding: 8px 3px;
    }

    .mexico-experiences-page .destination-switcher a span {
        font-size: 0.54rem;
        letter-spacing: 0;
        line-height: 1.25;
    }

    .mexico-experiences-page .destination-country-section {
        padding-top: 30px;
    }

    .mexico-experiences-page .experience-destination-header h3 {
        font-size: clamp(2rem, 10vw, 2.65rem);
    }

    .mexico-experiences-page .experience-destination-header > p {
        font-size: 0.96rem;
        line-height: 1.6;
    }
}

/* ========================================
   RESPONSIVE VERTICAL ACTIVITY LISTS
======================================== */

@media (max-width: 900px) {
    .mexico-experiences-page .experience-shop-grid {
        display: grid;
        gap: 10px;
        grid-auto-columns: initial;
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        max-width: 100%;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
        width: 100%;
    }

    .mexico-experiences-page .experience-shop-item {
        align-items: stretch;
        display: flex;
        flex: none;
        flex-direction: row;
        min-height: 105px;
        min-width: 0;
        scroll-snap-align: none;
        width: 100%;
    }

    .mexico-experiences-page .experience-shop-image {
        aspect-ratio: 4 / 3;
        flex: 0 0 42%;
        width: 42%;
    }

    .mexico-experiences-page .experience-shop-title {
        align-items: center;
        display: flex;
        flex: 1;
        font-size: 0.8rem;
        line-height: 1.45;
        min-height: 0;
        padding: 13px;
        -webkit-box-orient: initial;
        -webkit-line-clamp: initial;
    }
}

@media (max-width: 650px) {
    .mexico-experiences-page .experience-shop-item {
        min-height: 96px;
    }

    .mexico-experiences-page .experience-shop-image {
        flex-basis: 40%;
        width: 40%;
    }

    .mexico-experiences-page .experience-shop-title {
        font-size: 0.76rem;
        padding: 11px;
    }
}

/* ========================================
   COMPACT PEAK VACATIONS GATEWAY
======================================== */

.home-page .home-journey-hero {
    background: #10252b;
    isolation: isolate;
    min-height: min(820px, 100vh);
    overflow: hidden;
}

.home-hero-visual {
    inset: 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
}

.home-hero-image {
    background-repeat: no-repeat;
    background-size: cover;
    inset-block: 0;
    position: absolute;
}

.home-hero-image-beach {
    background-image: url("images/peak-home-beach.jpg");
    background-position: 42% center;
    left: 0;
    right: 43%;
}

.home-hero-image-rockies {
    background-image: url("images/peak-home-rockies.jpg");
    background-position: 54% 62%;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 8% 76%, 13% 51%, 10% 25%);
    left: 40%;
    right: 0;
}

.home-hero-water-bridge {
    background: linear-gradient(
        105deg,
        rgba(36, 189, 208, 0) 0%,
        rgba(68, 205, 216, 0.28) 46%,
        rgba(33, 158, 179, 0.18) 54%,
        rgba(33, 158, 179, 0) 100%
    );
    bottom: 0;
    clip-path: polygon(0 36%, 30% 25%, 58% 30%, 100% 18%, 100% 100%, 0 100%);
    height: 52%;
    left: 34%;
    position: absolute;
    right: 31%;
}

.home-page .home-journey-hero .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 19, 23, 0.91) 0%,
            rgba(7, 19, 23, 0.74) 35%,
            rgba(7, 19, 23, 0.44) 58%,
            rgba(7, 19, 23, 0.3) 100%
        ),
        linear-gradient(0deg, rgba(7, 19, 23, 0.28), transparent 48%);
    z-index: 1;
}

.home-page .home-journey-hero .hero-content {
    max-width: 830px;
}

.home-page .home-journey-hero h1 {
    font-size: clamp(3rem, 6.1vw, 6rem);
    letter-spacing: -0.12rem;
    max-width: 900px;
}

.home-page .home-journey-hero h1 span {
    font-size: 0.73em;
    line-height: 1.05;
    margin-top: 12px;
}

.hero-route-line {
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.7rem;
    font-weight: bold;
    gap: 10px;
    letter-spacing: 0.12rem;
    margin: -10px 0 28px;
    text-transform: uppercase;
}

.hero-route-line span {
    color: #d6bc87;
}

.home-page .peak-divisions-section {
    padding-bottom: 82px;
    padding-top: 82px;
}

.home-page .peak-divisions-section .section-heading {
    margin-bottom: 44px;
}

.home-page .peak-division-card {
    min-height: 260px;
}

.home-page .peak-division-actions + .peak-division-actions {
    display: none;
}

.home-guidance-section {
    background: #f3efe7;
    padding-bottom: 78px;
    padding-top: 78px;
}

.home-guidance-section .section-heading {
    margin-bottom: 44px;
}

.home-guidance-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1280px;
}

.home-guidance-card {
    background: #ffffff;
    border-top: 3px solid #c9a96e;
    box-shadow: 0 14px 34px rgba(13, 28, 33, 0.08);
    display: flex;
    gap: 20px;
    min-height: 250px;
    padding: 35px 31px;
}

.home-guidance-number {
    align-items: center;
    border: 1px solid #c9a96e;
    border-radius: 50%;
    color: #98743c;
    display: flex;
    flex: 0 0 42px;
    font-family: Georgia, "Times New Roman", serif;
    height: 42px;
    justify-content: center;
}

.home-guidance-card h3 {
    color: #172c32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.48rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 13px;
}

.home-guidance-card p {
    color: #657074;
    font-size: 0.94rem;
    line-height: 1.7;
}

.home-assurance-strip {
    align-items: center;
    color: #45575d;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.72rem;
    font-weight: bold;
    gap: 0;
    justify-content: center;
    letter-spacing: 0.1rem;
    margin: 38px auto 0;
    max-width: 950px;
    text-transform: uppercase;
}

.home-assurance-strip span {
    padding: 5px 25px;
}

.home-assurance-strip span + span {
    border-left: 1px solid rgba(152, 116, 60, 0.4);
}

.journey-cta-section {
    background:
        radial-gradient(circle at 77% 32%, rgba(58, 143, 156, 0.3), transparent 34%),
        linear-gradient(120deg, #0c2026, #193940 62%, #876d43 150%);
    color: #ffffff;
    padding-bottom: 82px;
    padding-top: 82px;
    text-align: center;
}

.journey-cta-content {
    margin: 0 auto;
    max-width: 820px;
}

.journey-cta-content h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 1.12;
    margin-bottom: 20px;
}

.journey-cta-content > p:not(.eyebrow) {
    color: #d4dcde;
    font-size: 1.04rem;
    line-height: 1.75;
    margin: 0 auto 30px;
    max-width: 700px;
}

/* These Sandos-specific sections remain on the dedicated page. */
.home-page .introduction,
.home-page .benefits-modal,
.home-page .resorts-section,
.home-page .resort-benefits-modal,
.home-page .beyond-resort-section,
.home-page .process-section {
    display: none !important;
}

/* ========================================
   DEDICATED SANDOS PAGE
======================================== */

.sandos-page .intro-screen,
.sandos-page .peak-divisions-section,
.sandos-page .process-section {
    display: none !important;
}

.sandos-page .hero {
    min-height: min(800px, 100vh);
}

.royal-booking-section {
    background: #f3efe7;
    padding-bottom: 84px;
    padding-top: 84px;
}

.royal-booking-section .section-heading {
    margin-bottom: 46px;
}

.royal-booking-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1380px;
}

.royal-booking-grid .benefit-card {
    padding: 38px 30px;
}

.royal-booking-grid .benefit-card p {
    font-size: 0.93rem;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .royal-booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-page .home-journey-hero {
        min-height: 720px;
        padding-left: 7%;
        padding-right: 7%;
    }

    .home-hero-image-beach {
        right: 35%;
    }

    .home-hero-image-rockies {
        left: 34%;
    }

    .home-guidance-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .home-guidance-card {
        min-height: 0;
    }
}

@media (max-width: 650px) {
    .home-page .home-journey-hero {
        align-items: flex-end;
        min-height: 660px;
        padding: 125px 6% 54px;
    }

    .home-hero-image-beach {
        background-position: 38% center;
        bottom: 42%;
        right: 0;
    }

    .home-hero-image-rockies {
        background-position: 50% 65%;
        clip-path: polygon(0 16%, 18% 11%, 39% 15%, 62% 9%, 82% 13%, 100% 7%, 100% 100%, 0 100%);
        left: 0;
        top: 40%;
    }

    .home-hero-water-bridge {
        background: linear-gradient(180deg, rgba(54, 201, 215, 0.18), rgba(19, 130, 151, 0.12));
        clip-path: polygon(0 24%, 23% 14%, 47% 19%, 73% 10%, 100% 16%, 100% 100%, 0 100%);
        height: 25%;
        left: 0;
        right: 0;
        top: 36%;
    }

    .home-page .home-journey-hero .hero-overlay {
        background:
            linear-gradient(0deg, rgba(6, 17, 21, 0.95) 0%, rgba(6, 17, 21, 0.72) 54%, rgba(6, 17, 21, 0.42) 100%),
            linear-gradient(90deg, rgba(6, 17, 21, 0.45), rgba(6, 17, 21, 0.2));
    }

    .home-page .home-journey-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.55rem);
        letter-spacing: -0.07rem;
        margin-bottom: 20px;
    }

    .home-page .home-journey-hero h1 span {
        margin-top: 7px;
    }

    .home-page .home-journey-hero .hero-description {
        font-size: 0.94rem;
        line-height: 1.58;
        margin-bottom: 24px;
    }

    .hero-route-line {
        font-size: 0.58rem;
        gap: 7px;
        letter-spacing: 0.07rem;
        margin: -6px 0 22px;
    }

    .home-page .home-journey-hero .hero-buttons {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .home-page .home-journey-hero .button {
        align-items: center;
        display: flex;
        font-size: 0.66rem;
        justify-content: center;
        letter-spacing: 0.07rem;
        min-height: 52px;
        padding: 12px 10px;
    }

    .home-page .peak-divisions-section,
    .home-guidance-section,
    .journey-cta-section,
    .royal-booking-section {
        padding-bottom: 54px;
        padding-top: 54px;
    }

    .home-page .peak-divisions-section .section-heading,
    .home-guidance-section .section-heading,
    .royal-booking-section .section-heading {
        margin-bottom: 32px;
    }

    .home-page .peak-division-card {
        min-height: 0;
        padding: 29px 26px;
    }

    .home-guidance-card {
        gap: 16px;
        padding: 28px 24px;
    }

    .home-guidance-card h3 {
        font-size: 1.32rem;
    }

    .home-guidance-number {
        flex-basis: 38px;
        height: 38px;
    }

    .home-assurance-strip {
        align-items: stretch;
        flex-direction: column;
        margin-top: 30px;
    }

    .home-assurance-strip span {
        padding: 8px 12px;
    }

    .home-assurance-strip span + span {
        border-left: 0;
        border-top: 1px solid rgba(152, 116, 60, 0.28);
    }

    .journey-cta-content > p:not(.eyebrow) {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .royal-booking-grid {
        grid-template-columns: 1fr;
    }

    .royal-booking-grid .benefit-card {
        padding: 31px 26px;
    }
}

/* ========================================
   HERO1 + DESTINATION CARD IMAGE PREVIEW
======================================== */

.home-page .home-journey-hero {
    align-items: stretch;
    background: #0d2228;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 120px 0 0;
}

.home-hero-visual-single {
    height: clamp(470px, 63vh, 670px);
    inset: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.home-hero-visual-single img {
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    width: 100%;
}

.home-page .home-journey-hero .hero-overlay {
    display: none;
}

.home-page .home-journey-hero .hero-content {
    align-items: center;
    background:
        radial-gradient(circle at 76% 35%, rgba(55, 131, 142, 0.23), transparent 34%),
        linear-gradient(110deg, #0b1d23, #17343b 72%, #715d3b 145%);
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
    max-width: none;
    padding: 34px 7% 38px;
    width: 100%;
}

.home-page .home-journey-hero .eyebrow {
    margin-bottom: 11px;
}

.home-page .home-journey-hero h1 {
    font-size: clamp(2.55rem, 4.3vw, 4.35rem);
    letter-spacing: -0.08rem;
    line-height: 0.98;
    margin-bottom: 0;
}

.home-page .home-journey-hero h1 span {
    font-size: 0.7em;
    margin-top: 9px;
}

.home-hero-copy-support {
    align-self: center;
}

.home-page .home-journey-hero .hero-description {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.home-page .home-journey-hero .hero-route-line {
    margin: 0 0 22px;
}

.peak-division-card-visual,
.peak-division-card-other {
    border-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 410px;
    overflow: hidden;
    padding-top: 180px;
    position: relative;
}

.peak-division-card-visual {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.peak-division-card-sandos {
    background-image: url("images/peak-home-beach.jpg");
    background-position: 44% center;
}

.peak-division-card-rockies {
    background-image: url("images/peak-home-rockies.jpg");
    background-position: center 58%;
}

.peak-division-card-visual::before,
.peak-division-card-other::before {
    background: linear-gradient(
        180deg,
        rgba(6, 17, 21, 0.04) 0%,
        rgba(6, 17, 21, 0.22) 31%,
        rgba(6, 17, 21, 0.92) 70%,
        rgba(6, 17, 21, 0.98) 100%
    );
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0;
}

.peak-division-card-other {
    background-image: url("images/peak-home-beyond.png");
    background-position: center 55%;
    background-repeat: no-repeat;
    background-size: cover;
}

.peak-division-card-other::after {
    border: 1px solid rgba(214, 188, 135, 0.48);
    border-bottom: 0;
    border-left: 0;
    content: none;
    height: 145px;
    position: absolute;
    right: -28px;
    top: 34px;
    transform: rotate(-45deg);
    width: 145px;
}

.peak-division-card-visual > *,
.peak-division-card-other > * {
    position: relative;
    z-index: 1;
}

.peak-division-card-visual h3,
.peak-division-card-other h3 {
    color: #ffffff;
}

.peak-division-card-other h3 {
    top: 25px;
    text-align: center;
    width: 100%;
}

.peak-division-card-visual > p:not(.peak-division-kicker),
.peak-division-card-other > p:not(.peak-division-kicker) {
    color: #d4dcde;
}

.peak-division-card-visual .peak-division-kicker,
.peak-division-card-other .peak-division-kicker,
.peak-division-card-visual .peak-division-link,
.peak-division-card-other .peak-division-link {
    color: #dfc486;
}

.peak-division-card-other .peak-division-kicker {
    left: 20px;
    margin: 0;
    position: absolute;
    top: 25px;
    white-space: nowrap;
    z-index: 2;
}

@media (max-width: 900px) {
    .home-page .home-journey-hero {
        min-height: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .home-hero-visual-single {
        height: clamp(410px, 58vh, 580px);
    }

    .home-page .home-journey-hero .hero-content {
        gap: 26px;
        grid-template-columns: 1fr;
        padding-bottom: 38px;
        padding-top: 32px;
    }

    .home-page .home-journey-hero h1 {
        max-width: 720px;
    }

    .peak-division-card-visual,
    .peak-division-card-other {
        min-height: 350px;
    }
}

@media (max-width: 650px) {
    .home-page .home-journey-hero {
        align-items: stretch;
        display: flex;
        min-height: 0;
        padding: 76px 0 0;
    }

    .home-hero-visual-single {
        aspect-ratio: 1672 / 941;
        height: auto;
        inset: auto;
        width: 100%;
    }

    .home-hero-visual-single img {
        object-fit: contain;
        object-position: center;
    }

    .home-page .home-journey-hero .hero-content {
        display: grid;
        gap: 22px;
        grid-template-columns: 1fr;
        max-width: none;
        padding: 29px 6% 36px;
        width: 100%;
    }

    .home-page .home-journey-hero h1 {
        font-size: clamp(2.2rem, 10.5vw, 3rem);
        letter-spacing: -0.055rem;
        line-height: 1;
    }

    .home-page .home-journey-hero .hero-description {
        font-size: 0.93rem;
        margin-bottom: 18px;
    }

    .home-page .home-journey-hero .hero-route-line {
        font-size: 0.56rem;
        margin-bottom: 20px;
    }

    .peak-division-card-visual,
    .peak-division-card-other {
        min-height: 330px !important;
        padding: 165px 26px 29px !important;
    }

    .peak-division-card-other .peak-division-kicker {
        left: 26px;
        top: 24px;
    }
}
