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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    background-color: #F0F4F2;
    color: #2C2C2A;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

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

ul { list-style: none; }

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

button { cursor: pointer; border: none; background: none; }

:root {
    --clr-sand:       #F0F4F3;
    --clr-sand-dark:  #F3E5DA;
    --clr-cream:      #FAFAF8;
    --clr-ocean:      #0F8592;
    --clr-ocean-dark: #0E5D68;
    --clr-ocean-pale: #EBF4F6;
    --clr-text:       #1B282B;
    --clr-text-mid:   #5A5A55;
    --clr-text-light: #8A8A80;
    --clr-white:      #FFFFFF;
    --clr-gold:       #C8A96E;
    --clr-border:     rgba(44,44,42,0.1);

    --radius-sm:   5px;
    --radius-md:   5px;
    --radius-lg:   10px;
    --radius-xl:   20px;

    --shadow-sm:   0 2px 8px rgba(44,44,42,0.06);
    --shadow-md:   0 6px 24px rgba(44,44,42,0.10);
    --shadow-lg:   0 16px 48px rgba(44,44,42,0.14);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --section-py:  50px;
    --section-sm:  60px;

    --header-h:    76px;
}

.serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

em {
    font-style: italic;
    color: var(--clr-ocean);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-ocean);
    margin-bottom: 16px;
}

.section-label--light {
    color: rgba(255,255,255,0.7);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--clr-text);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: var(--clr-text-mid);
    margin: 0 auto;
    line-height: 1.7;
}

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

.body-text {
    font-size: 18px;
    color: var(--clr-text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mt-4 { margin-top: 32px; }


.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}


.section {
    padding: var(--section-py) 0;
}

.section-sm {
    padding: var(--section-sm) 0;
}

.bg-sand {
    background-color: var(--clr-sand);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-sm { padding: 9px 20px; font-size: 16px; }
.btn-lg { padding: 15px 36px; font-size: 0.9375rem; }
.btn-xl { padding: 18px 44px; font-size: 1rem; }

.btn-primary {
    background: var(--clr-ocean);
    color: var(--clr-white);
    box-shadow: 0 4px 16px rgba(58,125,140,0.3);
}
.btn-primary:hover {
    background: var(--clr-ocean-dark);
    box-shadow: 0 6px 24px rgba(58,125,140,0.4);
    transform: translateY(-1px);
    color: var(--clr-white);
}

.btn-outline {
    background: transparent;
    color: var(--clr-ocean);
    border: 1.5px solid var(--clr-ocean);
}
.btn-outline:hover {
    background: var(--clr-ocean);
    color: var(--clr-white);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--clr-white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-1px);
}

.btn-ghost-light {
    background: transparent;
    color: var(--clr-white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-1px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    background: #F0F4F2;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.site-header.menu-open {
    background: transparent;
    box-shadow: none;
}

.header-inner {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.site-logo,
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo svg,
.footer-logo svg {
    width: 172px;
    height: auto;
    max-width: 42vw;
}
.site-header.scrolled .site-logo svg path {
    fill: var(--clr-ocean);
    stroke: var(--clr-ocean);
}
.site-logo .logo-main {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--clr-text);
    letter-spacing: 0.01em;
    transition: color var(--transition);
}

.site-header.transparent .logo-main {
    color: var(--clr-white);
}

.site-logo .logo-sub,
.footer-logo .logo-sub {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-top: 3px;
    transition: color var(--transition);
}

.site-header.transparent .logo-sub {
    color: rgba(255,255,255,0.6);
}

.main-nav { display: flex; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 7px 14px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--clr-text-mid);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.site-header.transparent .nav-link {
    color: rgba(255,255,255,0.85);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--clr-ocean);
}

.site-header.transparent .nav-link:hover {
    color: var(--clr-white);
    background: rgba(255,255,255,0.12);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(14, 94, 105, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(12px);
    flex-shrink: 0;
}

.language-option {
    min-width: 34px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--clr-text-mid);
    transition: background var(--transition), color var(--transition);
}

.language-option.is-active {
    background: var(--clr-ocean);
    color: var(--clr-white);
}

.site-header.transparent .language-switch {
    border-color: rgba(255,255,255,0.42);
    background: rgba(255,255,255,0.16);
}

.site-header.transparent .language-option {
    color: rgba(255,255,255,0.86);
}

.site-header.transparent .language-option.is-active {
    background: var(--clr-white);
    color: var(--clr-ocean);
}

.site-header.menu-open .language-switch {
    border-color: rgba(14, 94, 105, 0.22);
    background: rgba(255, 255, 255, 0.7);
}

.site-header.menu-open .language-option {
    color: var(--clr-text-mid);
}

.site-header.menu-open .language-option.is-active {
    background: var(--clr-ocean);
    color: var(--clr-white);
}

.header-phone {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--clr-text-mid);
    transition: color var(--transition);
}

.site-header.transparent .header-phone {
    color: rgba(255,255,255,0.85);
}

.header-phone:hover { color: var(--clr-ocean); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    outline: none !important;
}

.hamburger:focus-visible {
    outline: none !important;
    background: none;
}


.hamburger-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.transparent .hamburger-line {
    background: var(--clr-white);
}

.site-header.menu-open .site-logo svg path {
    fill: var(--clr-ocean);
}

.site-header.menu-open .hamburger-line {
    background: var(--clr-text);
}

.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    left: 0;
    right: 0;
    background: rgba(250,250,248,0.995);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 32px) clamp(28px, 8vw, 72px) 40px;
    box-shadow: -18px 0 48px rgba(23, 36, 38, 0.14);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    z-index: 999;
}

.mobile-menu-inner {
    max-height: calc(100vh - var(--header-h) - 32px);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
    transition: color var(--transition), transform var(--transition);
}

.mobile-nav-link:hover {
    color: var(--clr-ocean);
    transform: translateX(6px);
}

.mobile-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-cta .btn {
    justify-content: center;
    flex: 1 1 220px;
    min-width: 0;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
    margin-bottom: 50px;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20, 35, 40, 0.25) 0%, rgba(20, 35, 40, 0.30) 30%, rgba(20, 35, 40, 0.55) 75%, rgba(15, 25, 30, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-h) + 40px);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 20px;
    text-align: center;
    line-height: 0.9em;
}

.hero-title em {
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.9rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin: 0 auto 40px;
}

.br-desktop { display: block; }

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 98px;
    justify-content: center;
}

.hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-around;
}

.hero-fact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    position: relative;
    width: 100%;
    justify-content: center;
    padding: 0 20px;
    align-items: stretch;
}

.hero-fact:not(:last-child):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(231, 229, 225, 0) 0%, #E7E5E1 50%, rgba(255, 255, 255, 0) 100%);
}

.fact-dot {
    width: 4px;
    height: 4px;
    background: var(--clr-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-fact--cin {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.45);
    margin-left: 8px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 48px;
    z-index: 1;
}

.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
    animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50%       { transform: scaleY(0.6); opacity: 1; }
}

.booking-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-md);
}

.booking-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--clr-text);
}

.booking-desc {
    font-size: 0.9375rem;
    color: var(--clr-text-mid);
    max-width: 480px;
    line-height: 1.7;
}

.booking-card-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.about.section {position: relative;}
.about.section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/dune.png");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .15;
    top: 50px;
    background-position-x: right;
}
.about-grid,
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    margin-top: -140px;
    margin-left: auto;
    margin-right: -32px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.about-text {
    padding-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px 12px;
    margin: 12px 0 34px;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    color: var(--clr-ink);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
}

.about-stat svg {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-stat span {
    min-width: 0;
}

.about-stat sup {
    font-size: 0.65em;
    line-height: 0;
}

.casa-hero-img {
    margin-bottom: 64px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.casa-hero-img img {
    width: 100%;
    height: clamp(300px, 45vw, 560px);
    object-fit: cover;
}

.casa-slider {
    position: relative;
    margin: 0 calc(-1 * var(--container-padding, 32px)) 64px;
    padding: 0 0 20px;
    overflow: hidden;
}

.casa-slider:focus {
    outline: none;
}

.casa-slider:focus-visible {
    outline: 2px solid var(--clr-ocean);
    outline-offset: 4px;
}

.la-casa .container .casa-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.block-green {
    padding-top: 50px;
    position: relative;
}

.block-green:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 70%;
    top: 0;
    left: 0;
    background-color: #108492;
    background-image: url('../images/bg-noise.jpg');
    background-position: center center;
    background-repeat: repeat;
    background-size: 270px auto;
}
.block-green .section-title {
    color: var(--clr-white);
}

.block-green .section-label,
.block-green .section-intro {
    color: #FCF5E9;
}

.slider-viewport {
    overflow: hidden;
    padding: 0;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 0;
    transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    padding: 16px 0;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.slider-track.is-dragging {
    transition: none;
    cursor: grabbing;
}

.slider-track.is-settling {
    transition: transform 0.78s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-track.is-jumping .slider-slide,
.slider-track.is-jumping .slide-caption {
    transition: none;
}

.slider-slide {
    position: relative;
    flex: 0 0 39%;
    max-width: 39%;
    height: 60vh;
    min-height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease,
                box-shadow 0.6s ease;
    transform: scale(0.92);
    opacity: 1;
    box-shadow: var(--shadow-sm);
}

.slider-track.is-settling .slider-slide {
    transition-duration: 0.78s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-slide.is-active {
    transform: scale(1);
    opacity: 1;
}

.slider-image-btn {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
    display: block;
}

.slider-image-btn:focus-visible {
    outline: 2px solid var(--clr-white);
    outline-offset: -8px;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 40px 36px;
    color: var(--clr-white);
    text-align: center;
    background: linear-gradient(to top, rgba(15,25,30,0.7) 0%, rgba(15,25,30,0.35) 60%, rgba(15,25,30,0) 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.2s;
    pointer-events: none;
}

.slider-slide.is-active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 400;
    color: var(--clr-white);
    margin-bottom: 6px;
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-white);
    color: var(--clr-text);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    border: 1px solid var(--clr-border);
}

.slider-nav:hover {
    background: var(--clr-ocean);
    color: var(--clr-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.06);
}

.slider-nav:focus-visible {
    outline: 2px solid var(--clr-ocean);
    outline-offset: 3px;
}

.slider-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 0 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44, 44, 42, 0.2);
    transition: all var(--transition);
    padding: 0;
}

.slider-dot:hover {
    background: rgba(44, 44, 42, 0.4);
}

.slider-dot.is-active {
    width: 28px;
    border-radius: 4px;
    background: var(--clr-ocean);
}

.slider-dot:focus-visible {
    outline: 2px solid var(--clr-ocean);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .slider-slide {
        flex: 0 0 75%;
        max-width: 75%;
        height: 60vh;
        min-height: 320px;
    }
    .slider-nav { width: 44px; height: 44px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
    .slide-caption { padding: 60px 24px 24px; }
}

@media (max-width: 560px) {
    .slider-slide {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .slider-track { gap: 12px; }
}

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

.feature-card {
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;

  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);

  border-radius: 45% 55% 48% 52% / 42% 48% 52% 58%;
}

.feature-card:nth-child(2)::before {
  border-radius: 52% 48% 55% 45% / 48% 42% 58% 52%;
}

.feature-card:nth-child(3)::before {
  border-radius: 46% 54% 43% 57% / 55% 45% 50% 50%;
}

.feature-card:nth-child(4)::before {
  border-radius: 58% 42% 50% 50% / 46% 54% 44% 56%;
}

.feature-card:hover::before{
  box-shadow: var(--shadow-md);
} 

.feature-icon {
    width: 44px;
    height: 44px;
    color: var(--clr-ocean);
    margin-bottom: 20px;
    margin: auto;
}

.feature-icon svg {
    width: auto;
    height: 100%;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--clr-text);
    margin-bottom: 10px;
    text-align: center;
}

.feature-desc {
    font-size: 18px;
    color: var(--clr-text-mid);
    text-align: center;
    max-width: 90%;
    margin: auto;
}

section#comfort {
    position: relative;
    padding-bottom: 100px;
}
section#comfort:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: calc(100% + 200px);
    transform: translateX(-50%);
    background-image: url("../images/flamingo.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}
.comfort-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.comfort-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comfort-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
}

.comfort-item:hover {
    transform: translateY(-2px);
}

.comfort-icon-wrap {
    width: 36px;
    height: 36px;
    color: var(--clr-ocean);
}

.comfort-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.comfort-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--clr-text);
    line-height: 1.3;
}

.comfort-note {
    font-size: 0.8125rem;
    color: var(--clr-text-light);
    margin-top: 16px;
    font-style: italic;
}

.location-section {
    padding: 0;
}
.location-map {
    position: relative;
    width: 100vw;
    min-height: 400px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.location-map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.9) contrast(1.02);
}

.location-map .container {
    position: relative;
    height: 400px;
}

.location-card {
    position: absolute;
    left: 32px;
    bottom: 32px;
    z-index: 2;
    width: min(360px, calc(100% - 64px));
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-lg);
}

.location-card-kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--clr-ocean);
}

.location-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--clr-text);
    line-height: 1;
    margin-bottom: 12px;
}

.location-card p {
    color: var(--clr-text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.local-guide {
    background: var(--clr-white);
}

.local-guide-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: 72px;
    align-items: center;
}

.local-guide-collage {
    position: relative;
    min-height: 800px;
}

.local-guide-photo {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: var(--clr-sand);
}

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

.local-guide-photo--large {
    top: 0;
    left: 0;
    width: 58%;
    height: 430px;
}

.local-guide-photo--wide {
    top: 250px;
    right: 0;
    width: 68%;
    height: 300px;
    z-index: 2;
}

.local-guide-photo--small {
    left: 8%;
    bottom: 0;
    width: 79%;
    height: 350px;
    z-index: 1;
}

.local-guide-content .section-title,
.local-guide-content .section-label {
    text-align: left;
}

.local-guide-intro {
    max-width: 620px;
    margin: 0 0 28px;
    text-align: left;
}

.local-guide-list {
    border-top: 1px solid rgba(44, 44, 42, 0.16);
}

.local-guide-item {
    padding: 10px 0 12px;
    border-bottom: 1px solid rgba(44, 44, 42, 0.16);
}

.guide-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--clr-text-light);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.guide-time svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.local-guide-item h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--clr-text);
}

.local-guide-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.guide-extra {
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid #0F8492;
}

.guide-extra span {
    display: block;
    margin-bottom: 8px;
    color: var(--clr-ocean);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.guide-extra strong {
    display: block;
    color: var(--clr-text);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.12;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: span 2; grid-row: span 2; }

.gallery-btn {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: zoom-in;
}

.gallery-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.gallery-btn:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,40,50,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    color: var(--clr-white);
    border-radius: var(--radius-md);
}

.gallery-btn:hover .gallery-overlay,
.gallery-btn:focus-visible .gallery-overlay {
    opacity: 1;
}

.gallery-btn:focus-visible {
    outline: 2px solid var(--clr-ocean);
    outline-offset: 2px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    touch-action: none;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12,20,25,0.92);
    backdrop-filter: blur(6px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
    will-change: transform, opacity;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox.is-dragging .lightbox-img {
    transition: none;
    cursor: grabbing;
}

.lightbox.is-settling .lightbox-img {
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

.lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-style: italic;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 2;
    background: rgba(255,255,255,0.1);
    color: var(--clr-white);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
    outline: 2px solid var(--clr-ocean);
    outline-offset: 2px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-info-block {
    background: var(--clr-sand);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 36px;
    border: 1px solid var(--clr-ocean);
}

.trust-info-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 24px;
    border-bottom: 1px solid var(--clr-ocean);
}

.trust-info-row:last-child { border-bottom: none; }

.trust-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-text-light);
    padding-top: 2px;
}

.trust-value {
    font-size: 0.9375rem;
    color: var(--clr-text);
    line-height: 1.5;
}

.trust-value small {
    display: block;
    font-size: 0.8125rem;
    color: var(--clr-text-light);
    margin-top: 2px;
}

.trust-link {
    color: var(--clr-ocean);
    font-weight: 500;
}

.trust-link:hover { text-decoration: underline; }

.trust-info-row--cin { background: rgba(58,125,140,0.06); }

.trust-cin {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--clr-ocean-dark);
    font-weight: 600;
}

.trust-map-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.trust-map-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(250,250,248,0.95);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.trust-map-badge svg { color: var(--clr-ocean); flex-shrink: 0; }

.final-cta {
    position: relative;
    padding: 140px 0;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
}

.final-cta-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center 60%;
    position: absolute;
    bottom: -140px;
    left: 0;
    opacity: .09;
    z-index: -1;
}

.final-cta-overlay {
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px;
    background: linear-gradient(to bottom, rgba(12,28,35,0.5) 0%, rgba(12,28,35,0.75) 100%);
    border-radius: var(--radius-xl);
}

.final-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--clr-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.final-cta-title em {
    color: rgba(255,255,255,0.85);
}

.final-cta-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 44px;
    line-height: 1.7;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer {
    background: var(--clr-text);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-main {
    color: var(--clr-white);
}

.footer-logo .logo-sub {
    color: rgba(255,255,255,0.4);
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    transition: all var(--transition);
}

.social-link:hover {
    color: var(--clr-white);
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
}

.footer-heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-link {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    padding: 4px 0;
}

.footer-nav-link:hover { color: var(--clr-white); }

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-info-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.footer-info-list li span:last-child {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-phone,
.footer-info-list a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-phone:hover,
.footer-info-list a:hover { color: var(--clr-white); }

.cin-code {
    font-family: 'Courier New', monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.copyright {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

.footer-legal-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.04em;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
    width: 44px;
    height: 44px;
    background: var(--clr-ocean);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--clr-ocean-dark);
    transform: translateY(-2px);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--clr-ocean);
    outline-offset: 3px;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 0.7s ease forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.15s; }
.animate-fade-up.delay-2 { animation-delay: 0.3s; }
.animate-fade-up.delay-3 { animation-delay: 0.45s; }
.animate-fade-up.delay-4 { animation-delay: 0.6s; }
.animate-fade-up.delay-5 { animation-delay: 0.75s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.delay-1 { transition-delay: 0.12s; }
.animate-on-scroll.delay-2 { transition-delay: 0.24s; }
.animate-on-scroll.delay-3 { transition-delay: 0.36s; }
.animate-on-scroll.delay-4 { transition-delay: 0.48s; }
.animate-on-scroll.delay-5 { transition-delay: 0.60s; }

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    :root {
        --section-py: 50px;
    }

    .main-nav,
    .header-phone {
        display: none;
    }

    .hamburger { display: flex; }

    .about-grid,.section-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { max-width: 600px; margin: 0 auto; }
    .about-img-main {
        margin-left: -60px;
    }
    .about-img-secondary {
        margin-right: -55px;
    }
    .about-stats {
        grid-template-columns: repeat(5, max-content);
    }

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

    .comfort-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .comfort-icons-grid { grid-template-columns: repeat(3, 1fr); }

    .trust-grid { grid-template-columns: 1fr; gap: 48px; }
    .trust-map-inner img { height: 360px; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(9) { grid-column: span 1; grid-row: span 1; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }

    .booking-card {
        flex-direction: column;
        padding: 40px 40px;
        align-items: flex-start;
    }

    .location-map { min-height: 400px; }

    .local-guide-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .local-guide-collage {
        width: 100%;
        max-width: 100%;
        min-height: 510px;
        margin: 0 auto;
    }

    .local-guide-photo--small {
        left: unset;
        right: 0;
        bottom: unset;
        top: -50px;
        width: 47%;
        height: 320px;
        z-index: 1;
    }

    .local-guide-photo--wide {
        top: 250px;
        right: 0;
        width: 65%;
        height: 260px;
        z-index: 2;
    }
}

@media (max-width: 1024px) {
    .header-cta {
        margin-left: auto;
    }
    .final-cta-bg img {
        bottom: 0;
    }

    .hero-fact {
        font-size: 20px;
    }

    section.local-guide.section {
        padding-top: 100px;
    }

    .about.section:before {
        opacity: .09;
    }

    .about-stats {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px 20px;
        margin: 12px 0 38px;
    }

    .about-stat {
        gap: 5px;
        font-size: 14px;
    }

    .about-stat svg {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
    }

    .location-map .container {
        height: 580px;
    }
}
@media (max-width: 640px) {
    :root {
        --section-py: 32px;
        --section-sm: 48px;
    }

    .site-logo svg, .footer-logo svg {
        width: 144px;
    }
    .container { padding: 32px 20px; }

    .header-cta .btn-primary { display: none; }

    .hero-content { padding-top: calc(var(--header-h) + 24px); }
    .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
    .br-desktop { display: none; }
    .hero-scroll-hint { display: none; }

    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .hero-fact--cin { width: 100%; margin-left: 0; }

    .booking-card { padding: 28px 24px; }
    .booking-card-actions { width: 100%; flex-direction: column; }
    .booking-card-actions .btn { width: 100%; justify-content: center; }
.about-img-main {
        margin-left: auto;
    }
    section.local-guide.section {
        padding-top: 80px;
    }
    .about-img-secondary { display: none; }
    .about-img-main img { height: 320px; }

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

    .comfort-icons-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .comfort-item { padding: 16px 10px; }
    .comfort-label { font-size: 0.75rem; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(6) { grid-column: span 1; }

    .trust-info-row { grid-template-columns: 65px 1fr;padding: 16px 12px; }
    .trust-label {
        font-size: 12px;
    }
    .trust-value {
        font-size: 14px;
        margin-left: 4px;
    }
    .trust-cin {
        letter-spacing: normal;
    }
    .location-map {
        min-height: 400px;
        border-radius: 0;
    }

    .location-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 22px;
    }

    .location-card h3 {
        font-size: 1.85rem;
    }

    .location-card .btn {
        width: 100%;
        justify-content: center;
    }

    .local-guide-layout {
        gap: 36px;
    }

    .local-guide-collage {
        min-height: 360px;
    }

    .local-guide-photo--large {
        width: 62%;
        height: 300px;
    }

    .local-guide-photo--wide {
        top: 145px;
        width: 72%;
        height: 210px;
    }

    .local-guide-photo--small {
        width: 52%;
        height: 238px;
    }

    .local-guide-content .section-title {
        font-size: clamp(2.4rem, 11vw, 3.3rem);
    }

    .local-guide-item {
        padding: 15px 0 17px;
    }

    .local-guide-item h3 {
        font-size: 1.65rem;
    }

    .local-guide-extras {
        grid-template-columns: 1fr;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 32px;}
    .footer-brand { grid-column: span 1; }

    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }

    .final-cta { padding: 30px 0; }
    .final-cta-content {
    max-width: 90%;
    }
    .casa-slider {
        padding: 0;
    }
    .final-cta-actions { flex-direction: column; width: 100%; }
    .final-cta-actions .btn { width: 100%; justify-content: center; }

    .back-to-top { bottom: 20px; right: 20px; }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .mobile-menu {
        justify-content: flex-start;
        padding: calc(var(--header-h) + 40px) 28px 36px;
    }

    .mobile-nav-list {
        margin-bottom: 32px;
    }

    .mobile-nav-link {
        padding: 14px 0;
    }

    .mobile-cta {
        flex-direction: column;
    }

    .mobile-cta .btn {
        width: 100%;
        flex: 0 0 auto;
    }
    .site-footer {
        padding: 30px 0 0;
    }
}
@media (max-width: 460px) {
    .hero-fact {
        font-size: 15px;
        padding: 0 8px;
    }
}
@media (max-width: 370px) {
    .container.header-inner {
        gap: 10px;
    }
}

@media print {
    .site-header,
    .hero-scroll-hint,
    .back-to-top,
    .lightbox,
    .btn { display: none !important; }

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