/* ==========================================================================
   Queen Rentals — Main Stylesheet
   All design tokens extracted from the HTML design comp.
   ========================================================================== */


/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* --- Colors --- */
    --color-cream:          #FBF8F3;
    --color-charcoal:       #2A2724;
    --color-navy:           #0E3A57;
    --color-navy-dark:      #0A2B40;
    --color-gold:           #C79A3F;
    --color-gold-dark:      #B5862B;
    --color-teal:           #0E9C8E;
    --color-teal-dark:      #0B7E73;
    --color-gold-light:     #E7D7AE;
    --color-beige-light:    #EFE7D7;
    --color-beige-warm:     #F1EADC;
    --color-brown-muted:    #8A7F70;
    --color-brown-medium:   #5A5046;
    --color-brown-card:     #6B6157;
    --color-white:          #FFFFFF;
    --color-black:          #000000;

    /* --- Semantic --- */
    --bg-body:              var(--color-cream);
    --text-body:            var(--color-charcoal);
    --text-heading:         var(--color-navy);
    --bg-section-dark:      var(--color-navy);
    --bg-section-darker:    var(--color-navy-dark);
    --bg-section-warm:      var(--color-beige-warm);
    --accent-primary:       var(--color-teal);
    --accent-primary-hover: var(--color-teal-dark);
    --accent-secondary:     var(--color-gold);
    --accent-secondary-hover: var(--color-gold-dark);
    --text-meta:            var(--color-brown-muted);
    --text-alt:             var(--color-brown-medium);
    --text-card:            var(--color-brown-card);
    --bg-tag:               var(--color-beige-light);

    /* --- Typography --- */
    --font-heading:         'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:            'Hanken Grotesk', system-ui, -apple-system, sans-serif;

    --fs-hero:              clamp(2.7rem, 6.4vw, 5.2rem);
    --fs-2xl:               clamp(2rem, 3.6vw, 3.1rem);
    --fs-xl:                clamp(1.9rem, 3.2vw, 2.9rem);
    --fs-lg:                1.5rem;
    --fs-md:                clamp(1rem, 1.5vw, 1.18rem);
    --fs-base:              1.05rem;
    --fs-sm:                0.97rem;
    --fs-nav:               14px;
    --fs-btn:               14px;
    --fs-xs:                13px;
    --fs-label:             12px;
    --fs-label-sm:          11px;

    /* --- Spacing (fluid, from comp) --- */
    --space-section:        clamp(4rem, 8vw, 7.5rem);
    --space-section-inner:  clamp(2.5rem, 5vw, 4rem);
    --space-container:      clamp(1.25rem, 5vw, 4.5rem);
    --space-lg:             clamp(2rem, 4vw, 4rem);
    --space-md:             clamp(1rem, 2vw, 1.625rem);
    --space-sm:             clamp(0.5rem, 1vw, 0.75rem);

    /* --- Layout --- */
    --container-max:        82rem;
    --container-narrow:     55rem;
    --border-radius:        6px;
    --border-radius-lg:     8px;
    --border-radius-pill:   40px;

    /* --- Transitions --- */
    --transition-fast:      0.2s ease;
    --transition-base:      0.35s ease;
    --transition-slow:      0.5s cubic-bezier(0.5, 0, 0.2, 1);

    /* --- Shadows --- */
    --shadow-nav:           0 1px 0 rgba(42, 39, 36, 0.08), 0 10px 30px -20px rgba(10, 43, 64, 0.5);
    --shadow-card:          0 30px 60px -28px rgba(10, 43, 64, 0.6);
    --shadow-btn-gold:      0 6px 18px -8px rgba(199, 154, 63, 0.7);
    --shadow-btn-cta:       0 18px 40px -16px rgba(199, 154, 63, 0.8);
    --shadow-map:           0 30px 60px -34px rgba(10, 43, 64, 0.5);
    --shadow-label:         0 4px 10px -3px rgba(10, 43, 64, 0.6);

    /* --- Nav state --- */
    --nav-bg:               transparent;
    --nav-color:            var(--color-cream);
    --nav-shadow:           none;
    --nav-pad:              22px;
    --logo-filter:          brightness(0) invert(1);
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--accent-primary);
    color: var(--color-white);
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-heading);
    margin: 0;
    text-wrap: balance;
}

p {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

input,
select,
textarea {
    font-family: var(--font-body);
}


/* ==========================================================================
   3. LAYOUT
   ========================================================================== */

.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-container);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-block: var(--space-section);
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--text-heading);
    color: var(--color-cream);
    font-weight: 600;
    border-radius: var(--border-radius);
}

.skip-link:focus {
    top: 0.5rem;
}


/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

.section-label {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.section-label--light {
    color: var(--color-gold-light);
}

.section-title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--fs-md);
    line-height: 1.65;
    font-weight: 300;
    color: var(--text-alt);
}

.section-subtitle--light {
    color: rgba(251, 248, 243, 0.72);
}

.tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--text-heading);
    background: var(--bg-tag);
    padding: 0.5rem 0.9375rem;
    border-radius: var(--border-radius-pill);
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5625rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.btn--primary {
    background: var(--accent-primary);
    color: var(--color-white);
    font-size: var(--fs-btn);
    letter-spacing: 0.04em;
    padding: 0.8125rem 1.5rem;
}

.btn--primary:hover {
    background: var(--accent-primary-hover);
}

.btn--secondary {
    background: var(--accent-secondary);
    color: var(--text-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6875rem 1.375rem;
    box-shadow: var(--shadow-btn-gold);
}

.btn--secondary:hover {
    background: var(--accent-secondary-hover);
    transform: translateY(-1px);
}

.btn--cta {
    background: var(--accent-secondary);
    color: var(--text-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1.125rem 2.5rem;
    box-shadow: var(--shadow-btn-cta);
}

.btn--cta:hover {
    background: var(--accent-secondary-hover);
    transform: translateY(-2px);
}

.btn--outline {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(251, 248, 243, 0.3);
    background: transparent;
    color: var(--color-cream);
    font-size: 1.25rem;
    padding: 0;
    transition: background var(--transition-fast);
}

.btn--outline:hover {
    background: rgba(251, 248, 243, 0.1);
}

.btn--whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1000;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25D366;
    color: var(--color-white);
    font-size: 1.625rem;
    padding: 0;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn--whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn--whatsapp svg {
    width: 1.75rem;
    height: 1.75rem;
}


/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: var(--nav-pad) var(--space-container);
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    transition: background var(--transition-base),
                box-shadow var(--transition-base),
                padding var(--transition-base);
}

.site-header.is-scrolled {
    --nav-bg: var(--color-cream);
    --nav-shadow: var(--shadow-nav);
    --nav-color: var(--text-body);
    --nav-pad: 13px;
    --logo-filter: none;
}

.site-logo {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-self: start;
}

.site-logo img {
    height: 34px;
    width: auto;
    filter: var(--logo-filter);
    transition: filter var(--transition-base);
}

.primary-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: clamp(1.125rem, 2.4vw, 2.125rem);
}

.primary-nav li {
    list-style: none;
    display: contents;
}

.primary-nav a {
    font-size: var(--fs-nav);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--nav-color);
    transition: color var(--transition-base);
}

.primary-nav .menu-item-has-children {
    position: relative;
}

.header-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

.lang-switcher {
    font-size: var(--fs-nav);
    font-weight: 600;
    color: var(--nav-color);
    transition: color var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    border: none;
    background: transparent;
    color: var(--nav-color);
    font-size: 1.625rem;
    cursor: pointer;
    padding: 0;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: var(--bg-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-base);
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav li {
    list-style: none;
    display: contents;
}

.mobile-nav a:not(.btn) {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    color: var(--text-heading);
    padding: 0.5rem;
}

.mobile-nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border: none;
    background: transparent;
    font-size: 1.875rem;
    color: var(--text-body);
    cursor: pointer;
}

@media (max-width: 55em) {
    .primary-nav,
    .header-actions .header-cta {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 28em) {
    .booking-widget__divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }
}


/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 clamp(2.5rem, 5vw, 4.5rem);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(10, 43, 64, 0.45) 0%,
        rgba(10, 43, 64, 0.05) 32%,
        rgba(10, 43, 64, 0.65) 68%,
        rgba(10, 43, 64, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    padding-inline: var(--space-container);
}

.hero__text {
    max-width: 45rem;
}

.hero__eyebrow {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.375rem;
}

.hero__title {
    font-size: var(--fs-hero);
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: var(--color-cream);
    margin-bottom: 1.375rem;
}

.hero__desc {
    font-size: var(--fs-md);
    line-height: 1.6;
    color: rgba(251, 248, 243, 0.92);
    max-width: 35rem;
    font-weight: 300;
}

.hero__trust {
    margin-top: 1rem;
    font-size: var(--fs-nav);
    font-weight: 500;
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__trust i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}


/* ==========================================================================
   8. BOOKING WIDGET
   ========================================================================== */

.booking-widget {
    margin-top: clamp(2rem, 4vw, 2.875rem);
    background: var(--bg-body);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    padding: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    align-items: stretch;
    max-width: 55rem;
}

.booking-widget__field {
    flex: 1 1 13rem;
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
    padding: 0.5rem 0.875rem;
}

.booking-widget__label {
    font-size: var(--fs-label-sm);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-meta);
}

.booking-widget__input,
.booking-widget__select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-body);
    outline: none;
    cursor: pointer;
    appearance: none;
    padding: 0;
}

.booking-widget__input {
    width: 100%;
}

.booking-widget__divider {
    width: 1px;
    background: rgba(42, 39, 36, 0.1);
    align-self: stretch;
}

.booking-widget__submit {
    flex: 0 0 100%;
}

.booking-widget__time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.booking-widget__time-select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-body);
    outline: none;
    cursor: pointer;
    appearance: none;
    padding: 0;
    width: auto;
}

.booking-widget__time-sep {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-meta);
    line-height: 1;
}

/* Off-season state */
.hero__offseason {
    margin-top: clamp(2rem, 4vw, 2.875rem);
    max-width: 40rem;
}

.hero__offseason-text {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero__offseason .btn {
    font-size: 1rem;
}


/* ==========================================================================
   9. ABOUT SECTION
   ========================================================================== */

.about {
    background: var(--color-white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

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

.about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__deliver-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-meta);
    margin-bottom: 0.5rem;
}

@media (max-width: 48em) {
    .about .container {
        grid-template-columns: 1fr;
    }
    .about__right {
        order: 1;
    }
}

.about__body {
    font-size: var(--fs-base);
    line-height: 1.72;
    color: var(--text-alt);
    font-weight: 300;
    margin-bottom: 1.125rem;
}

.about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1rem;
}


/* ==========================================================================
   10. WHY US SECTION
   ========================================================================== */

.why-us {
    background: var(--bg-section-warm);
}

.why-us__header {
    text-align: center;
    margin-bottom: var(--space-section-inner);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14.375rem, 1fr));
    gap: clamp(1rem, 2vw, 1.625rem);
}

.why-us__card {
    background: var(--bg-body);
    border-radius: var(--border-radius);
    padding: clamp(1.75rem, 3vw, 2.375rem);
    border: 1px solid rgba(199, 154, 63, 0.18);
}

.why-us__icon {
    font-size: 2.625rem;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 1.375rem;
}

.why-us__card h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.625rem;
}

.why-us__card p {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--text-card);
    font-weight: 300;
}


/* ==========================================================================
   11. FLEET PREVIEW SECTION
   ========================================================================== */

.fleet-preview {
    background: var(--bg-section-dark);
}

.fleet-preview__header {
    margin-bottom: var(--space-section-inner);
    max-width: 40rem;
}

.fleet-preview__header .section-title {
    color: var(--color-cream);
}

.fleet-preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: clamp(1.125rem, 2vw, 1.75rem);
}

.fleet-card {
    background: var(--bg-body);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fleet-card__image {
    width: 100%;
    height: 13.125rem;
    position: relative;
    overflow: hidden;
}

.fleet-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: var(--fs-label-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-body);
    background: var(--accent-secondary);
    padding: 0.375rem 0.625rem;
    border-radius: 4px;
}

.fleet-card__body {
    padding: 1.5rem 1.625rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-card__category {
    font-size: var(--fs-label-sm);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 0.375rem;
}

.fleet-card__name {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.fleet-card__specs {
    display: flex;
    gap: 1.125rem;
    margin-bottom: 1.375rem;
    color: var(--text-card);
    font-size: 0.9rem;
}

.fleet-card__spec {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.fleet-card__spec i {
    font-size: 1.125rem;
    color: var(--accent-primary);
}

.fleet-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.375rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fleet-card__price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-heading);
}

.fleet-card__min {
    font-size: var(--fs-label-sm);
    font-weight: 500;
    color: var(--text-meta);
}

.fleet-card__cta {
    margin-top: auto;
}

.fleet-preview__more {
    text-align: center;
    margin-top: clamp(2rem, 3vw, 3rem);
}

.fleet-preview__more a {
    color: var(--color-cream);
    font-size: var(--fs-nav);
    font-weight: 500;
    border-bottom: 1px solid rgba(251, 248, 243, 0.4);
    padding-bottom: 0.125rem;
    transition: border-color var(--transition-fast);
}

.fleet-preview__more a:hover {
    border-color: var(--color-cream);
}


/* ==========================================================================
   12. SERVICE AREA SECTION
   ========================================================================== */

.service-area {
    background: var(--bg-body);
}

.service-area__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: var(--space-lg);
    align-items: center;
}

.service-area__content .section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.04;
}

.service-area__body {
    font-size: 1.08rem;
    line-height: 1.72;
    color: var(--text-alt);
    font-weight: 300;
    margin-bottom: 1.125rem;
}

.service-area__legend {
    display: flex;
    align-items: center;
    gap: 1.375rem;
    margin-top: 1.875rem;
    flex-wrap: wrap;
}

.service-area__legend-item {
    display: flex;
    align-items: center;
    gap: 0.5625rem;
    font-size: var(--fs-nav);
    font-weight: 500;
    color: var(--text-heading);
}

.service-area__legend-dot {
    width: 0.6875rem;
    height: 0.6875rem;
    border-radius: 50%;
}

.service-area__legend-dot--port {
    background: var(--accent-primary);
}

.service-area__legend-dot--airport {
    background: var(--color-navy);
}

.service-area__legend-dot--village {
    background: var(--accent-secondary);
}

.service-area__map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service-area__map img {
    width: 100%;
    height: auto;
    display: block;
}


/* ==========================================================================
   13. TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
    background: var(--bg-section-darker);
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-section-inner);
}

.testimonials__header .section-title {
    color: var(--color-cream);
}

.testimonials__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.testimonials__stars {
    color: var(--accent-secondary);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonials__score {
    font-size: var(--fs-nav);
    font-weight: 600;
    color: var(--color-cream);
}

.testimonials__track-wrapper {
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    gap: 1.5rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar {
    display: none;
}

.testimonials__card {
    flex: 0 0 calc(33.333% - 1rem);
    scroll-snap-align: start;
    background: var(--bg-body);
    border-radius: var(--border-radius-lg);
    padding: clamp(2rem, 4vw, 3.25rem);
}

.testimonials__card-stars {
    color: var(--accent-secondary);
    font-size: 1.125rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.testimonials__card-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    line-height: 1.45;
    color: var(--text-heading);
    margin-bottom: 1.625rem;
}

.testimonials__card-name {
    font-size: var(--fs-nav);
    font-weight: 600;
    color: var(--text-body);
}

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.375rem;
    margin-top: 2.125rem;
}

.testimonials__dots {
    display: flex;
    gap: 0.625rem;
}

.testimonials__dot {
    width: 0.5625rem;
    height: 0.5625rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    background: rgba(251, 248, 243, 0.28);
    transition: background var(--transition-base);
}

.testimonials__dot.is-active {
    background: var(--accent-secondary);
}

.testimonials__google {
    text-align: center;
    margin-top: 2rem;
}

.testimonials__google a {
    font-size: var(--fs-nav);
    font-weight: 500;
    color: rgba(251, 248, 243, 0.7);
    border-bottom: 1px solid rgba(251, 248, 243, 0.3);
    padding-bottom: 0.125rem;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.testimonials__google a:hover {
    color: var(--color-cream);
    border-color: var(--color-cream);
}

@media (max-width: 64em) {
    .testimonials__card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 40em) {
    .testimonials__card {
        flex: 0 0 100%;
    }
}


/* ==========================================================================
   14. CONTACT CTA SECTION
   ========================================================================== */

.contact-cta {
    position: relative;
    padding: clamp(5rem, 11vw, 9.375rem) var(--space-container);
    text-align: center;
    overflow: hidden;
}

.contact-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 43, 64, 0.55), rgba(10, 43, 64, 0.78));
}

.contact-cta__content {
    position: relative;
    z-index: 2;
    max-width: 42.5rem;
    margin: 0 auto;
}

.contact-cta .section-label {
    color: var(--color-gold-light);
}

.contact-cta .section-title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.02;
    color: var(--color-cream);
    margin-bottom: 1.875rem;
}

.contact-cta__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.25rem, 4vw, 3rem);
    margin-top: clamp(2.75rem, 5vw, 4rem);
    color: rgba(251, 248, 243, 0.9);
}

.contact-cta__detail {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
}

.contact-cta__detail i {
    font-size: 1.25rem;
    color: var(--color-gold-light);
}

.contact-cta__detail a {
    color: inherit;
    transition: color var(--transition-fast);
}

.contact-cta__detail a:hover {
    color: var(--color-cream);
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.site-footer {
    background: var(--bg-section-darker);
    padding: clamp(2.5rem, 5vw, 3.5rem) var(--space-container);
}

.site-footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-footer__logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.site-footer__nav {
    display: flex;
    gap: 1.625rem;
}

.site-footer__nav a {
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(251, 248, 243, 0.7);
    transition: color var(--transition-fast);
}

.site-footer__nav a:hover {
    color: var(--color-cream);
}

.site-footer__bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(251, 248, 243, 0.08);
}

.site-footer__copy {
    font-size: var(--fs-xs);
    color: rgba(251, 248, 243, 0.5);
}

.site-footer__villas a {
    font-size: var(--fs-xs);
    color: rgba(251, 248, 243, 0.45);
    transition: color var(--transition-fast);
}

.site-footer__villas a:hover {
    color: rgba(251, 248, 243, 0.7);
}

.site-footer__credit a {
    font-size: var(--fs-xs);
    color: rgba(251, 248, 243, 0.45);
    transition: color var(--transition-fast);
}

.site-footer__credit a:hover {
    color: rgba(251, 248, 243, 0.7);
}

@media (max-width: 40em) {
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ==========================================================================
   16. PAGE TEMPLATES
   ========================================================================== */

.page-hero {
    padding: clamp(6rem, 12vw, 10rem) var(--space-container) clamp(2rem, 4vw, 4rem);
    background: var(--bg-section-dark);
    text-align: center;
}

.page-hero__title {
    font-size: var(--fs-2xl);
    color: var(--color-cream);
}

.page-hero__subtitle {
    font-size: var(--fs-md);
    color: rgba(251, 248, 243, 0.72);
    font-weight: 300;
    margin-top: 1rem;
    max-width: 36rem;
    margin-inline: auto;
}

.page-content {
    padding: clamp(2rem, 5vw, 4rem) var(--space-container);
}

.page-content .container {
    max-width: var(--container-narrow);
}

/* Block editor content styling */
.entry-content > * + * {
    margin-top: 1.5rem;
}

.entry-content h2 {
    font-size: var(--fs-xl);
    margin-top: 3rem;
}

.entry-content h3 {
    font-size: var(--fs-lg);
    margin-top: 2.5rem;
}

.entry-content p {
    font-size: var(--fs-base);
    line-height: 1.72;
    color: var(--text-alt);
    font-weight: 300;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    list-style: disc;
}

.entry-content li {
    font-size: var(--fs-base);
    line-height: 1.72;
    color: var(--text-alt);
    font-weight: 300;
}

.entry-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.entry-content a:hover {
    color: var(--accent-primary-hover);
}

.entry-content blockquote {
    border-left: 3px solid var(--accent-secondary);
    padding-left: 1.5rem;
    margin-left: 0;
    font-style: italic;
}


/* ==========================================================================
   17. FAQ ACCORDION
   ========================================================================== */

.faq-section {
    margin-bottom: 3rem;
}

.faq-section__title {
    font-size: var(--fs-xl);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-tag);
}

.faq-item {
    border-bottom: 1px solid rgba(42, 39, 36, 0.1);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--text-heading);
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    border-right: 2px solid var(--text-meta);
    border-bottom: 2px solid var(--text-meta);
    transform: rotate(45deg);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg);
}

.faq-item__content {
    padding: 0 0 1.25rem;
    font-size: var(--fs-base);
    line-height: 1.72;
    color: var(--text-alt);
    font-weight: 300;
}

.faq-item__content ul {
    padding-left: 1.25rem;
    list-style: disc;
    margin-top: 0.75rem;
}

.faq-item__content li {
    margin-bottom: 0.375rem;
}

.faq-item__content strong {
    font-weight: 500;
    color: var(--text-body);
}


/* ==========================================================================
   18. CONTACT PAGE
   ========================================================================== */

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info__icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-info__label {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-meta);
    margin-bottom: 0.25rem;
}

.contact-info__value {
    font-size: var(--fs-base);
    color: var(--text-body);
    font-weight: 500;
}

.contact-info__value a {
    color: var(--accent-primary);
    transition: color var(--transition-fast);
}

.contact-info__value a:hover {
    color: var(--accent-primary-hover);
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-top: 2rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ==========================================================================
   19. COOKIE BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-section-darker);
    color: rgba(251, 248, 243, 0.85);
    padding: 1rem var(--space-container);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: var(--fs-xs);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__text {
    max-width: 40rem;
}

.cookie-banner__dismiss {
    background: rgba(251, 248, 243, 0.15);
    border: none;
    color: var(--color-cream);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast);
}

.cookie-banner__dismiss:hover {
    background: rgba(251, 248, 243, 0.25);
}


/* ==========================================================================
   20. 404 PAGE
   ========================================================================== */

.page-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-section) var(--space-container);
}

.page-404__code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--bg-tag);
    line-height: 1;
}

.page-404__title {
    font-size: var(--fs-xl);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.page-404__desc {
    font-size: var(--fs-base);
    color: var(--text-alt);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 28rem;
}


/* ==========================================================================
   21. FLEET PAGE (standalone)
   ========================================================================== */

.fleet-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: clamp(1.125rem, 2vw, 1.75rem);
}


/* ==========================================================================
   22. ANIMATIONS
   ========================================================================== */

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn--whatsapp {
    animation: whatsapp-pulse 2s ease-in-out 3;
}

.fade-in {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   23. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}


/* ==========================================================================
   24. PRINT
   ========================================================================== */

@media print {
    .site-header,
    .site-footer,
    .btn--whatsapp,
    .cookie-banner,
    .nav-toggle,
    .mobile-nav,
    .booking-widget,
    .testimonials__nav {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
