/* ====================================================
   Y-OLÉ CATAMARÁN — style.css
   ==================================================== */

/* --- CUSTOM PROPERTIES -------------------------------- */
:root {
    --navy:        #0a1628;
    --navy-mid:    #0d1f3c;
    --navy-light:  #162a4a;
    --ocean:       #1e6091;
    --ocean-mid:   #2471a3;
    --ocean-light: #2e86c1;
    --gold:        #c9a96e;
    --gold-light:  #d4b98a;
    --white:       #ffffff;
    --muted:       rgba(255,255,255,0.55);
    --border:      rgba(255,255,255,0.1);
    --border-mid:  rgba(255,255,255,0.04);

    --f-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --f-sans:  'Inter', system-ui, -apple-system, sans-serif;

    --nav-h:      72px;
    --max-w:      1320px;
    --gap:        4px;
    --ease:       cubic-bezier(0.16, 1, 0.3, 1);
    --section-py: clamp(80px, 10vw, 140px);
}

/* --- RESET -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    position: relative; /* iOS Safari: evita que fixed+transform amplíen el scroll width */
}
body {
    font-family: var(--f-sans);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
}
img { display: block; max-width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* --- SCROLLBAR ---------------------------------------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--ocean); border-radius: 3px; }

/* --- UTILITY ------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
}

/* --- NAVBAR ------------------------------------------- */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--nav-h);
    transition: background 0.5s var(--ease), backdrop-filter 0.5s;
}
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-menu { margin-left: auto; }
.nav-logo {
    font-family: var(--f-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    flex-shrink: 0;
}
.logo-y    { color: var(--white); }
.logo-dash { color: var(--ocean-light); }
.logo-ole  { color: var(--gold); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.5vw, 36px);
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: var(--white); }
.nav-cta {
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    color: var(--white) !important;
    transition: background 0.25s, border-color 0.25s;
}
.nav-cta:hover {
    background: var(--ocean);
    border-color: var(--ocean);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transform-origin: center;
    transition: transform 0.35s var(--ease), opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* --- HERO --------------------------------------------- */
.hero {
    position: relative;
    height: 100svh;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,22,40,0.25) 0%,
        rgba(10,22,40,0.5)  40%,
        rgba(10,22,40,0.82) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--nav-h) clamp(20px, 5vw, 48px) 80px;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 2.5vw, 24px);
}
.hero-eyebrow {
    font-size: clamp(0.6rem, 1.1vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
}
.hero-brand {
    font-family: var(--f-serif);
    font-size: clamp(3rem, 20vw, 18rem);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.04em;
    color: var(--white);
    text-shadow: 0 8px 60px rgba(0,0,0,0.4);
    animation: hero-in 1.4s var(--ease) both;
}
.hero-sub {
    font-family: var(--f-serif);
    font-size: clamp(1.2rem, 2.8vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.12em;
    animation: hero-in 1.4s 0.15s var(--ease) both;
}
.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    animation: hero-in 1.4s 0.45s var(--ease) both;
}
.hero-pill {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
}
.hero-gap { height: clamp(40px, 6vw, 76px); }

.hero-scroll-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.25s;
    animation: hero-in 1.4s 0.6s var(--ease) both, float 2.4s 1.5s ease-in-out infinite;
}
.hero-scroll-cta:hover { color: rgba(255,255,255,0.85); }
.hero-scroll-cta svg { width: 18px; height: 18px; }

@keyframes hero-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(7px); }
}

/* --- SECTIONS COMMON ---------------------------------- */
.section { padding: var(--section-py) 0; overflow-x: hidden; max-width: 100%; }

.section-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-label--dim { color: rgba(255,255,255,0.45); }

.section-title {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 24px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.75;
    color: #d0dce8;
    max-width: 580px;
    margin-bottom: 52px;
}

/* --- PRICES BAND -------------------------------------- */
.prices-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 44px;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    background: var(--border-mid);
}
.prices-band--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
}
.price-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vw, 32px) 16px;
    gap: 8px;
    border-right: 1px solid var(--border);
    background: transparent;
    transition: background 0.3s;
}
.price-cell:last-child { border-right: none; }
.price-cell:hover { background: rgba(30,96,145,0.18); }
.pc-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-align: center;
    line-height: 1.4;
}
.pc-amount {
    font-family: var(--f-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}
.pc-amount sup {
    font-size: 0.38em;
    vertical-align: super;
    color: var(--gold);
}
.pc-free {
    font-family: var(--f-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
    font-style: italic;
    color: var(--gold) !important;
    line-height: 1.2;
}

/* --- META ROW ----------------------------------------- */
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 52px;
}
.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    background: rgba(255,255,255,0.07);
}
.meta-chip svg {
    width: 16px;
    height: 16px;
    color: var(--ocean-light);
    flex-shrink: 0;
}

/* --- GALLERY GRID ------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 230px;
    grid-auto-flow: dense;
    gap: var(--gap);
    margin-bottom: 32px;
    border-radius: 2px;
    overflow: hidden;
}
.gi { overflow: hidden; }
.gi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.gi:hover img { transform: scale(1.05); }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

.paseos-footer-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 2px;
}
.paseos-footer-note strong { color: var(--white); font-weight: 600; }

/* --- PASEOS SECTION ----------------------------------- */
.paseos { background: #f5f0e8; }

/* --- ESPECIALES --------------------------------------- */
.especiales {
    background: #0a1628;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: hidden;
}
.especiales-video-wrap {
    height: 340px;
    overflow: hidden;
    position: relative;
}
.especiales-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--ease);
}
.especiales-video-wrap:hover .especiales-video { transform: scale(1.05); }
.especiales-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(10,22,40,0.32) 100%);
    pointer-events: none;
}
.esp-food-note {
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin-bottom: 28px;
}
.especiales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 96px);
    align-items: start;
}
.especiales-left .section-lead { max-width: 100%; }

.reserva-card {
    padding: 32px;
    border: 1px solid rgba(30,96,145,0.4);
    border-radius: 2px;
    background: rgba(30,96,145,0.1);
    margin-top: 8px;
}
.reserva-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}
.reserva-phone {
    display: block;
    font-family: var(--f-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    transition: color 0.2s;
}
.reserva-phone:hover { color: var(--gold); }

/* WhatsApp button */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    background: #25D366;
    color: #fff;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-wa:hover { background: #20c05a; transform: translateY(-2px); }
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wa--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Photo stack */
.photo-stack {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    border-radius: 2px;
    overflow: hidden;
}
.ps-main { height: 340px; overflow: hidden; }
.ps-row   { display: flex; gap: var(--gap); height: 200px; }
.ps-sm    { flex: 1; overflow: hidden; }
.ps-main img,
.ps-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.ps-main:hover img,
.ps-sm:hover img { transform: scale(1.05); }

/* --- PRIVADOS ----------------------------------------- */
.privados {
    position: relative;
    background: linear-gradient(135deg, #0e2040 0%, var(--ocean) 100%);
    overflow: hidden;
    max-width: 100%;
}
.privados-bg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--f-serif);
    font-size: clamp(8rem, 22vw, 26rem);
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}
.privados-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 96px);
    align-items: start;
}
.priv-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
}
.priv-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 22px;
    border-left: 2px solid rgba(255,255,255,0.25);
}
.ps-n {
    font-family: var(--f-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
}
.ps-l {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.privados-right {
    padding: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.priv-contact-intro {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
}
.priv-email {
    display: block;
    font-family: var(--f-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    word-break: break-all;
    line-height: 1.3;
    transition: color 0.2s;
}
.priv-email:hover { color: var(--gold-light); }
.priv-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    font-style: italic;
}

/* --- PASEOS MEDIA ------------------------------------- */
.paseos-media {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--gap);
    height: clamp(420px, 55vw, 680px);
    margin-bottom: 32px;
    border-radius: 2px;
    overflow: hidden;
}
.paseos-media-video,
.paseos-media-img { overflow: hidden; }
.paseos-media-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.paseos-media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s var(--ease);
}
.paseos-media-img:hover img { transform: scale(1.03); }

/* --- PRIVADOS MEDIA ----------------------------------- */
.privados-media {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--gap);
    height: clamp(260px, 35vw, 400px);
    margin-top: 52px;
    border-radius: 2px;
    overflow: hidden;
}
.privados-media-item { overflow: hidden; }
.privados-media-item img,
.privados-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.privados-media-item:hover img,
.privados-media-item:hover video { transform: scale(1.05); }

/* --- GALLERY STRIP ------------------------------------ */
.strip-wrap { overflow: hidden; background: var(--navy); }
.strip {
    display: flex;
    height: clamp(220px, 28vw, 340px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--gap);
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip:active { cursor: grabbing; }
.strip-item {
    flex: 0 0 clamp(200px, 26vw, 380px);
    scroll-snap-align: start;
    overflow: hidden;
    flex-shrink: 0;
}
.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s;
    filter: brightness(0.8) saturate(0.85);
}
.strip-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}

/* --- CONTACT ------------------------------------------ */
.contact { background: #f5f0e8; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 52px;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    background: var(--border-mid);
}
.contact-card {
    padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px);
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}
.contact-card:last-child { border-right: none; }
.contact-card:hover { background: rgba(30,96,145,0.12); }
.cc-icon { font-size: 1.4rem; margin-bottom: 14px; }
.contact-card h4 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.contact-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}
.contact-card a {
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}
.contact-card a:hover { color: var(--white); }
.contact-wa-wrap { text-align: center; }

/* --- FOOTER ------------------------------------------- */
.footer {
    background: #060e1b;
    border-top: 1px solid var(--border);
    padding: clamp(48px, 7vw, 80px) 0 36px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    margin-bottom: clamp(40px, 6vw, 64px);
    padding-bottom: clamp(40px, 6vw, 64px);
    border-bottom: 1px solid var(--border);
}
.footer-logo {
    font-family: var(--f-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1;
}
.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.75;
}
.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; justify-content: center; }
.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.22);
    line-height: 1.7;
    text-align: center;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.45);
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.footer-social a:hover {
    background: rgba(255,255,255,0.14);
    color: var(--white);
}
.footer-social svg { width: 16px; height: 16px; }

/* --- EMBARQUE BLOCK ----------------------------------- */
.embarque-block {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--border-mid);
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.embarque-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    flex-shrink: 0;
    white-space: nowrap;
}
.embarque-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.embarque-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}
.embarque-row svg {
    width: 15px;
    height: 15px;
    color: var(--ocean-light);
    flex-shrink: 0;
}

/* --- DIRECTIONS BUTTON -------------------------------- */
.btn-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--ocean);
    color: var(--white);
    font-family: var(--f-serif);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 0.02em;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-directions:hover {
    background: var(--ocean-mid);
    transform: translateY(-2px);
}
.btn-directions--card {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    padding: 10px 20px;
    text-align: center;
    white-space: normal;
}

/* --- LEGAL PAGES -------------------------------------- */
.legal-section {
    padding: calc(var(--nav-h) + 64px) 0 var(--section-py);
    min-height: calc(100vh - 360px);
}
.legal-content {
    max-width: 760px;
}
.legal-content h1 {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 56px;
    letter-spacing: -0.025em;
    line-height: 1.05;
}
.legal-content h2 {
    font-family: var(--f-serif);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--gold);
    margin-top: 44px;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.legal-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 16px;
}
.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}
.legal-content ul li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}
.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--ocean-light);
}
.legal-content a {
    color: var(--ocean-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--white); }

/* --- LANG SWITCHER ------------------------------------ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.lang-btn {
    font-family: var(--f-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    padding: 4px 6px;
    border-radius: 2px;
    transition: color 0.2s;
    line-height: 1;
    position: relative;
}
.lang-btn:hover { color: rgba(255,255,255,0.85); }
.lang-btn.active {
    color: var(--white);
}
.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6px;
    right: 6px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
}
.lang-sep {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.2);
    user-select: none;
}

/* --- WA FLOAT ----------------------------------------- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: background 0.2s, transform 0.2s;
}
.wa-float:hover { background: #20c05a; transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }

/* --- BTN SALIDAS -------------------------------------- */
.btn-salidas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 22px;
    border: 1px solid rgba(201,169,110,0.45);
    border-radius: 3px;
    font-family: var(--f-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    width: 100%;
    justify-content: center;
}
.btn-salidas:hover {
    background: rgba(201,169,110,0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}
.btn-salidas svg { width: 15px; height: 15px; flex-shrink: 0; }

/* --- SALIDAS MODAL ------------------------------------ */
.salidas-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.salidas-modal[hidden] { display: none; }
.salidas-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,12,24,0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.salidas-modal-box {
    position: relative;
    z-index: 1;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 100%;
    max-width: 520px;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.65);
    animation: modal-in 0.28s var(--ease) both;
}
@keyframes modal-in {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to   { opacity: 1; transform: none; }
}
.salidas-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.salidas-modal-title {
    font-family: var(--f-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}
.salidas-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    border-radius: 2px;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.salidas-modal-close:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.salidas-modal-close svg { width: 18px; height: 18px; }
.salidas-modal-body {
    overflow-y: auto;
    padding: 20px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.salidas-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.salida-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--border-mid);
    transition: background 0.2s;
}
.salida-row:hover { background: rgba(30,96,145,0.14); }
.salida-info { display: flex; flex-direction: column; gap: 3px; }
.salida-fecha {
    font-family: var(--f-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
}
.salida-hora {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.03em;
}
.salida-plazas {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: right;
    white-space: nowrap;
    text-transform: uppercase;
}
.salida-plazas--ok   { color: var(--gold); }
.salida-plazas--sold { color: #e05c5c; }
.salida-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    flex-shrink: 0;
}
.salida-book-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: rgba(30,96,145,0.35);
    border: 1px solid rgba(46,134,193,0.5);
    border-radius: 2px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}
.salida-book-btn:hover {
    background: var(--ocean);
    border-color: var(--ocean-mid);
}
.salidas-status {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.38);
    padding: 32px 0;
}
.salidas-modal-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.32);
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
}

/* --- SCROLL ANIMATIONS -------------------------------- */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
[data-animate].visible {
    opacity: 1;
    transform: none;
}

/* ===== LIGHT SECTIONS — Paseos & Contacto ============= */

.paseos .section-title,
.contact .section-title   { color: #0a1628; }

.paseos .section-lead,
.contact .section-lead    { color: rgba(10,22,40,0.7); }

/* Price band */
.paseos .prices-band,
.contact .prices-band {
    background: #ffffff;
    border-color: #e0d8cc;
    box-shadow: 0 2px 16px rgba(10,22,40,0.07);
}
.paseos .price-cell,
.contact .price-cell      { border-right-color: #e0d8cc; background: #ffffff; }
.paseos .price-cell:hover,
.contact .price-cell:hover { background: #ede8df; }
.paseos .pc-label,
.contact .pc-label        { color: rgba(10,22,40,0.5); }
.paseos .pc-amount,
.contact .pc-amount       { color: #0a1628; }

/* Meta chips — dark pill on cream */
.paseos .meta-chip,
.contact .meta-chip {
    background: #0a1628;
    color: #ffffff;
    border: none;
}
.paseos .meta-chip svg,
.contact .meta-chip svg   { color: rgba(255,255,255,0.7); }

/* Embarque block */
.paseos .embarque-block {
    background: #ffffff;
    border-color: #e0d8cc;
}
.paseos .embarque-row     { color: rgba(10,22,40,0.8); }
.paseos .embarque-row svg { color: var(--ocean); }

/* Directions button */
.paseos .btn-directions,
.contact .btn-directions,
.contact .contact-card .btn-directions {
    background: #0a1628;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
}
.paseos .btn-directions:hover,
.contact .btn-directions:hover,
.contact .contact-card .btn-directions:hover {
    background: var(--gold);
    color: #0a1628;
    transform: translateY(-2px);
}

/* Paseos footer note */
.paseos .paseos-footer-note             { border-color: #e0d8cc; color: rgba(10,22,40,0.55); }
.paseos .paseos-footer-note strong      { color: #0a1628; }

/* Contact grid */
.contact .contact-grid {
    background: #ffffff;
    border-color: #e0d8cc;
    box-shadow: 0 2px 16px rgba(10,22,40,0.07);
}
.contact .contact-card          { border-right-color: #e0d8cc; background: #ffffff; }
.contact .contact-card:hover    { background: #ede8df; }
.contact .contact-card p        { color: rgba(10,22,40,0.7); }
.contact .contact-card a        { color: rgba(10,22,40,0.7); }
.contact .contact-card a:hover  { color: #0a1628; }

/* --- RESPONSIVE --------------------------------------- */
@media (max-width: 1100px) {
    .especiales-grid,
    .privados-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .prices-band--2col { max-width: 100%; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gi-wide { grid-column: span 2; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-card:nth-child(2) { border-right: none; }
    .contact-card:nth-child(3),
    .contact-card:nth-child(4) { border-right: none; }
    .contact-card { border-bottom: 1px solid var(--border); }
    .contact-card:last-child { border-bottom: none; }
    .contact .contact-card { border-bottom-color: #e0d8cc; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .lang-switcher { margin-left: auto; }
    .nav-menu { margin-left: 0; }
    .nav-menu {
        position: fixed;
        inset: 0 0 0 0;
        padding-top: calc(var(--nav-h) + 2rem);
        flex-direction: column;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        justify-content: flex-start;
        align-items: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s var(--ease), visibility 0.35s;
        z-index: 90;
    }
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
        text-align: center;
        padding: 6px 12px;
    }
    .nav-cta { padding: 12px 28px; }

    .prices-band { grid-template-columns: repeat(2, 1fr); }
    .price-cell:nth-child(2) { border-right: none; }
    .price-cell:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
    .price-cell:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
    .paseos .price-cell:nth-child(3) { border-right-color: #e0d8cc; border-top-color: #e0d8cc; }
    .paseos .price-cell:nth-child(4) { border-top-color: #e0d8cc; }

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }

    .privados-media { grid-template-columns: 1fr 1fr; }
    .privados-media-item:first-child { grid-column: span 2; order: 3; }
    .privados-media-item:nth-child(2) { order: 1; }
    .privados-media-item:nth-child(3) { order: 2; }

    .paseos-media { grid-template-columns: 1fr; height: auto; }
    .paseos-media-video { height: 260px; order: 2; }
    .paseos-media-img   { height: auto; order: 1; }
    .paseos-media-img img { object-fit: contain; width: 100%; height: auto; }

    .ps-row { height: 160px; }
    .ps-main { height: 260px; }
    .especiales-video-wrap { height: 260px; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .privados-right { padding: 28px; }
    .priv-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .priv-stat {
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 0 0 12px 0;
        flex: 1 1 120px;
    }

    .embarque-block {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 14px;
    }
    .embarque-info { flex: none; }
    .btn-directions { width: 100%; }
}

@media (max-width: 520px) {
    .prices-band { grid-template-columns: 1fr; }
    .price-cell { border-right: none !important; border-bottom: 1px solid var(--border); }
    .price-cell:last-child { border-bottom: none; }
    .paseos .price-cell { border-bottom-color: #e0d8cc; }

    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gi-tall, .gi-wide { grid-column: 1; grid-row: auto; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { border-right: none !important; }

    .ps-main { height: 220px; }
    .especiales-video-wrap { height: 220px; }
    .ps-row { flex-direction: column; height: auto; }
    .ps-sm { height: 160px; }

    .hero-pills { display: none; }
    .btn-wa { white-space: normal; text-align: center; }
}
