:root {
    --ink: #111614;
    --ink-soft: #37423d;
    --green: #1f6a4d;
    --green-deep: #0b3d2e;
    --green-pale: #eaf4ee;
    --ocean: #0b7f8f;
    --sand: #f2d99b;
    --sand-soft: #fff8e8;
    --coconut: #7b4d2a;
    --white: #ffffff;
    --line: #dde6e1;
    --muted: #6d7873;
    --danger: #a62b2b;
    --success: #1e7a4b;
    --shadow-sm: 0 8px 24px rgba(10, 35, 27, .08);
    --shadow: 0 22px 60px rgba(10, 35, 27, .14);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 34px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fbfdfc;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 92px;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-150%);
    background: var(--ink);
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
    background: var(--green-deep);
    color: #e8f8f0;
    font-size: .84rem;
}
.announcement__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}
.announcement__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sand);
    box-shadow: 0 0 0 5px rgba(242, 217, 155, .12);
}
.announcement a { color: var(--sand); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(23, 58, 45, .08);
    backdrop-filter: blur(16px);
}
.site-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { width: 236px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    color: #34443d;
    font-weight: 750;
    font-size: .91rem;
    transition: .2s ease;
}
.main-nav > a:hover, .main-nav > a.is-active { background: var(--green-pale); color: var(--green-deep); }
.main-nav .nav-cta { background: var(--green-deep); color: white; padding-inline: 18px; }
.main-nav .nav-cta:hover { background: var(--green); color: white; transform: translateY(-1px); }
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--green-pale);
    padding: 11px;
}
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--green-deep); margin: 5px 0; border-radius: 3px; transition: .2s; }

.flash { border-bottom: 1px solid transparent; }
.flash--success { background: #e8f8ef; color: #145e39; border-color: #bce6cf; }
.flash--error { background: #fff0f0; color: #8f2525; border-color: #efc0c0; }
.flash--info { background: #edf6ff; color: #235c85; border-color: #c6dff1; }
.flash__inner { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.flash__inner button { border: 0; background: transparent; font-size: 1.5rem; color: currentColor; }

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    background: #082e2c;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: var(--hero-image) center/cover no-repeat;
    transform: scale(1.02);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 22, 18, .88) 0%, rgba(4, 29, 24, .62) 44%, rgba(4, 29, 24, .18) 75%),
        linear-gradient(0deg, rgba(2, 20, 17, .9) 0%, rgba(2, 20, 17, .05) 58%);
}
.hero__decor {
    position: absolute;
    right: -80px;
    bottom: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.05), 0 0 0 140px rgba(255,255,255,.03);
    z-index: -1;
}
.hero__inner {
    padding-top: 130px;
    padding-bottom: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
    gap: 56px;
    align-items: end;
}
.hero__copy { color: white; max-width: 760px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 900;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--sand); }
.hero h1 {
    margin: 18px 0 20px;
    max-width: 850px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 7vw, 6.7rem);
    line-height: .94;
    letter-spacing: -.055em;
    font-weight: 700;
}
.hero h1 span { color: var(--sand); }
.hero__copy > p { max-width: 650px; font-size: clamp(1.02rem, 2vw, 1.22rem); color: rgba(255,255,255,.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 850;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--primary { background: var(--sand); color: #282014; }
.btn--outline-light { border-color: rgba(255,255,255,.45); color: white; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn--dark { background: var(--ink); color: white; }
.btn--green { background: var(--green-deep); color: white; }
.btn--soft { background: var(--green-pale); color: var(--green-deep); }
.btn--sand { background: var(--sand); color: #2d2619; }
.btn--small { min-height: 40px; padding-inline: 16px; font-size: .9rem; }
.hero__stats {
    display: grid;
    gap: 12px;
    align-self: end;
}
.hero-stat {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(4, 33, 26, .55);
    backdrop-filter: blur(12px);
    color: white;
    border-radius: 20px;
    padding: 20px;
}
.hero-stat strong { display: block; font-family: Georgia, serif; font-size: 1.6rem; line-height: 1.1; }
.hero-stat span { color: rgba(255,255,255,.7); font-size: .9rem; }

.section { padding: 96px 0; }
.section--tight { padding: 68px 0; }
.section--soft { background: var(--green-pale); }
.section--sand { background: var(--sand-soft); }
.section--dark { background: var(--green-deep); color: white; }
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}
.section-heading__copy { max-width: 720px; }
.section-heading h2, .page-hero h1 {
    margin: 10px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4.5vw, 4.3rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}
.section-heading p { color: var(--muted); margin: 12px 0 0; font-size: 1.04rem; }
.section--dark .section-heading p { color: rgba(255,255,255,.7); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-deep); font-weight: 900; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }
.section--dark .text-link { color: var(--sand); }

.intro-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 56px;
    align-items: center;
}
.intro-logo {
    background: white;
    padding: 34px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.intro-logo::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -70px;
    bottom: -80px;
    background: var(--sand);
    opacity: .38;
}
.intro-copy h2 { font-family: Georgia, serif; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.04em; margin: 12px 0 22px; }
.intro-copy p { color: var(--ink-soft); font-size: 1.08rem; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.feature-pill { border: 1px solid var(--line); background: white; padding: 16px; border-radius: 16px; font-weight: 800; color: var(--green-deep); }
.feature-pill small { display: block; color: var(--muted); font-weight: 550; margin-top: 4px; }

.magazine-feature {
    display: grid;
    grid-template-columns: minmax(260px, 390px) 1fr;
    gap: 68px;
    align-items: center;
}
.magazine-cover-wrap { position: relative; padding: 18px 18px 40px; }
.magazine-cover-wrap::before {
    content: "";
    position: absolute;
    inset: 8% -8% 0 14%;
    background: var(--sand);
    border-radius: 30px;
    transform: rotate(4deg);
}
.magazine-cover {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 26px 70px rgba(0,0,0,.3);
}
.magazine-copy h2 { font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.05em; margin: 12px 0 18px; }
.magazine-copy p { color: rgba(255,255,255,.75); font-size: 1.08rem; max-width: 680px; }
.magazine-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 30px; }
.magazine-meta span { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); border-radius: 999px; padding: 8px 12px; color: rgba(255,255,255,.82); font-weight: 700; font-size: .9rem; }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.story-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(12, 49, 37, .05);
    transition: transform .22s ease, box-shadow .22s ease;
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.story-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: #dbe8e2; }
.story-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.story-card:hover .story-card__media img { transform: scale(1.05); }
.story-card__body { padding: 24px; }
.story-card__category { color: var(--green); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 900; }
.story-card h3 { margin: 10px 0 10px; font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.12; letter-spacing: -.025em; }
.story-card p { margin: 0 0 20px; color: var(--muted); }

.business-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.business-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    transition: .2s ease;
}
.business-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.business-card__media { aspect-ratio: 4/2.7; display: grid; place-items: center; padding: 14px; background: #fff; border-bottom: 1px solid var(--line); }
.business-card__media img { width: 100%; height: 100%; object-fit: contain; }
.business-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.business-card__category { color: var(--ocean); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; }
.business-card h3 { margin: 8px 0 7px; font-size: 1.05rem; line-height: 1.25; }
.business-card p { color: var(--muted); font-size: .9rem; margin: 0 0 14px; }
.business-card__location { margin-top: auto; color: var(--ink-soft); font-size: .82rem; font-weight: 700; }
.business-card__whatsapp { margin-top: 12px; width: 100%; display: inline-flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; background: #e9f7ef; border: 1px solid #cbe8d7; color: var(--green-deep); text-decoration: none; transition: .2s ease; }
.business-card__whatsapp:hover { color: var(--green); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(11, 72, 53, .08); }
.business-card__whatsapp-icon { width: 38px; height: 38px; border-radius: 50%; display: inline-grid; place-items: center; background: #25d366; color: #fff; font-size: 1.05rem; flex: 0 0 38px; }
.business-card__whatsapp-copy { display: flex; flex-direction: column; min-width: 0; }
.business-card__whatsapp-copy strong { font-size: .92rem; line-height: 1.1; }
.business-card__whatsapp-copy small { color: var(--ink-soft); font-size: .82rem; line-height: 1.2; }
.business-card__whatsapp-arrow { margin-left: auto; font-weight: 900; }

.category-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-btn {
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    min-height: 42px;
    padding: 0 16px;
    font-weight: 800;
    color: var(--ink-soft);
}
.filter-btn.is-active, .filter-btn:hover { background: var(--green-deep); border-color: var(--green-deep); color: white; }
[data-filter-item].is-hidden { display: none; }

.cta-band {
    border-radius: var(--radius-lg);
    padding: 58px;
    background:
        linear-gradient(110deg, rgba(7, 54, 42, .98), rgba(12, 104, 95, .9)),
        url('../img/art-isla.jpg') center/cover;
    color: white;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow);
}
.cta-band h2 { font-family: Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.9rem); margin: 8px 0 12px; line-height: 1.02; letter-spacing: -.045em; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 720px; margin: 0; }

.page-hero {
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at 85% 20%, rgba(242, 217, 155, .55), transparent 30%),
        linear-gradient(135deg, #eff8f3 0%, #fffaf0 100%);
    border-bottom: 1px solid var(--line);
}
.page-hero__grid { display: grid; grid-template-columns: 1fr .65fr; gap: 50px; align-items: center; }
.page-hero p { max-width: 720px; font-size: 1.08rem; color: var(--muted); }
.page-hero__visual { position: relative; min-height: 300px; }
.page-hero__visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.page-hero__visual::before { content: ""; position: absolute; inset: -18px 20px 24px -18px; border-radius: var(--radius-lg); background: var(--sand); z-index: -1; transform: rotate(-3deg); }

.magazine-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; align-items: start; }
.magazine-grid--single { grid-template-columns: minmax(0, 980px); justify-content: center; }
.magazine-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; height: 100%; box-shadow: var(--shadow-sm); }
.magazine-card--single { display: grid; grid-template-columns: minmax(250px, 360px) 1fr; gap: 34px; align-items: center; padding: 28px; }
.magazine-card__cover { aspect-ratio: 3/4.35; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow-sm); background: #eef4f0; }
.magazine-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.magazine-card__content { display: flex; flex-direction: column; gap: 10px; }
.magazine-card__content .eyebrow { margin-top: 0; }
.magazine-card h3 { font-family: Georgia, serif; font-size: 1.7rem; margin: 0; }
.magazine-card p { color: var(--muted); margin: 0 0 4px; }
.magazine-card__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }

.reader-shell { padding: 50px 0 90px; }
.reader-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.reader-toolbar__copy h1 { font-family: Georgia, serif; margin: 2px 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
.reader-toolbar__copy p { margin: 7px 0 0; color: var(--muted); }
.reader-toolbar__actions { display: flex; flex-wrap: wrap; gap: 9px; }
.pdf-reader {
    width: 100%;
    min-height: 780px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #252a28;
    box-shadow: var(--shadow);
}
.pdf-reader iframe { width: 100%; height: 82vh; min-height: 780px; border: 0; background: #252a28; }
.mobile-pdf-notice { display: none; background: var(--sand-soft); border: 1px solid #efd99f; border-radius: 16px; padding: 18px; margin-bottom: 18px; }
.download-edition { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.download-edition__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.download-edition__cover { margin: 0; }
.download-edition__cover img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: block; }
.download-edition__cover figcaption { margin-top: 10px; color: var(--muted); font-size: .9rem; font-weight: 700; text-align: center; }
.download-edition__cta { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; background: var(--sand-soft); border: 1px solid #efd99f; border-radius: 18px; padding: 18px 20px; }
.download-edition__cta p { margin: 0; color: var(--ink-soft); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 54px; align-items: start; }
.article-header { margin-bottom: 30px; }
.article-header h1 { font-family: Georgia, serif; font-size: clamp(2.6rem, 5.4vw, 5.5rem); line-height: .98; letter-spacing: -.055em; margin: 14px 0 20px; }
.article-header p { color: var(--muted); font-size: 1.15rem; max-width: 850px; }
.article-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 38px; }
.article-body { font-family: Georgia, serif; font-size: 1.18rem; color: #2e3733; }
.article-body p { margin: 0 0 1.45em; }
.article-source { margin-top: 36px; padding: 18px 20px; border-left: 4px solid var(--green); background: var(--green-pale); border-radius: 0 14px 14px 0; color: var(--green-deep); font-family: Inter, sans-serif; font-weight: 800; }
.sidebar-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 120px; }
.sidebar-card h3 { font-family: Georgia, serif; font-size: 1.5rem; margin: 0 0 14px; }
.sidebar-card p { color: var(--muted); }
.sidebar-list { display: grid; gap: 14px; margin-top: 18px; }
.sidebar-list a { display: grid; grid-template-columns: 74px 1fr; gap: 12px; align-items: center; }
.sidebar-list img { width: 74px; height: 60px; object-fit: cover; border-radius: 10px; }
.sidebar-list strong { font-size: .9rem; line-height: 1.2; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 520px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-family: Georgia, serif; font-size: clamp(2.4rem, 4vw, 4.3rem); line-height: 1; letter-spacing: -.05em; }
.about-copy p { color: var(--ink-soft); font-size: 1.07rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.value-card__number { color: var(--sand); font-family: Georgia, serif; font-size: 2.7rem; line-height: 1; text-shadow: 1px 1px 0 var(--green-deep); }
.value-card h3 { margin: 16px 0 8px; }
.value-card p { color: var(--muted); margin: 0; }

.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.package-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: white; position: relative; overflow: hidden; }
.package-card--featured { background: var(--green-deep); color: white; transform: translateY(-8px); box-shadow: var(--shadow); }
.package-card__tag { display: inline-flex; background: var(--green-pale); color: var(--green-deep); border-radius: 999px; padding: 6px 10px; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.package-card--featured .package-card__tag { background: var(--sand); color: #2e261a; }
.package-card h3 { font-family: Georgia, serif; font-size: 2rem; margin: 18px 0 10px; }
.package-card p { color: var(--muted); }
.package-card--featured p { color: rgba(255,255,255,.7); }
.package-card ul { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; }
.package-card li { display: flex; gap: 10px; }
.package-card li::before { content: "✓"; color: var(--green); font-weight: 900; }
.package-card--featured li::before { color: var(--sand); }

.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
.contact-panel { background: var(--green-deep); color: white; border-radius: var(--radius-lg); padding: 38px; position: sticky; top: 120px; overflow: hidden; }
.contact-panel::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(242,217,155,.16); right: -90px; bottom: -100px; }
.contact-panel h2 { font-family: Georgia, serif; font-size: 2.5rem; line-height: 1.05; margin: 10px 0 14px; }
.contact-panel p { color: rgba(255,255,255,.72); }
.contact-points { display: grid; gap: 15px; margin-top: 26px; }
.contact-point { border: 1px solid rgba(255,255,255,.15); padding: 15px; border-radius: 14px; background: rgba(255,255,255,.06); }
.contact-point strong { display: block; }
.contact-point span { color: rgba(255,255,255,.68); font-size: .88rem; }
.contact-point--whatsapp { display: flex; align-items: center; gap: 12px; background: rgba(37, 211, 102, .14); border-color: rgba(37, 211, 102, .42); color: white; text-decoration: none; transition: .2s ease; }
.contact-point--whatsapp:hover { background: rgba(37, 211, 102, .22); border-color: rgba(37, 211, 102, .68); transform: translateY(-1px); }
.contact-whatsapp-icon { width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center; flex: 0 0 42px; background: #25d366; color: white !important; font-size: 1.25rem !important; font-weight: 900; }
.contact-whatsapp-copy { display: flex; flex-direction: column; min-width: 0; }
.contact-whatsapp-copy strong { display: block; color: white; line-height: 1.15; }
.contact-whatsapp-copy span { color: #d9ffea; font-weight: 800; font-size: .95rem; }
.contact-whatsapp-copy small { color: rgba(255,255,255,.72); font-size: .76rem; margin-top: 2px; }
.contact-whatsapp-arrow { margin-left: auto; color: #d9ffea !important; font-size: 1.15rem !important; font-weight: 900; }
.form-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.form-card h2 { margin-top: 0; font-family: Georgia, serif; font-size: 2.3rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .9rem; color: var(--ink-soft); }
.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid #cfdad4;
    border-radius: 14px;
    min-height: 50px;
    padding: 12px 14px;
    background: #fbfdfc;
    color: var(--ink);
    outline: 0;
    transition: .2s;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(31,106,77,.12); background: white; }
.form-note { color: var(--muted); font-size: .84rem; }

.newsletter { background: #0d2f26; color: white; padding: 56px 0; }
.newsletter__inner { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.newsletter h2 { margin: 7px 0 6px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.newsletter p { margin: 0; color: rgba(255,255,255,.66); }
.newsletter__form { display: flex; gap: 10px; min-width: min(100%, 440px); }
.newsletter__form input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); color: white; border-radius: 999px; padding: 0 18px; min-height: 52px; outline: none; }
.newsletter__form input::placeholder { color: rgba(255,255,255,.55); }

.site-footer { background: #071b16; color: white; padding: 70px 0 24px; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr .8fr; gap: 42px; }
.site-footer h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--sand); margin: 0 0 16px; }
.site-footer a { display: block; color: rgba(255,255,255,.7); margin: 9px 0; }
.site-footer a:hover { color: white; }
.site-footer p { color: rgba(255,255,255,.62); }
.footer-logo-card { background: white; border-radius: 18px; padding: 16px; max-width: 290px; }
.site-footer__brand p { max-width: 420px; }
.site-footer__bottom { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.48); font-size: .82rem; }
.social-row { display: flex; flex-wrap: wrap; gap: 9px; }
.social-row a { margin: 0; border: 1px solid rgba(255,255,255,.14); padding: 7px 10px; border-radius: 10px; }

.media-player {
    position: fixed;
    z-index: 1200;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: min(calc(100% - 28px), 820px);
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 48px minmax(0, 1fr) 82px auto 100px 32px;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 22px;
    background: rgba(7, 27, 22, .97);
    color: white;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.12);
    transition: transform .25s ease, opacity .25s ease;
}
.media-player.is-hidden { transform: translate(-50%, 140%); opacity: 0; pointer-events: none; }
.media-player__transport { display: flex; align-items: center; gap: 5px; }
.media-player__toggle { width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--sand); color: #17140e; font-weight: 900; flex: 0 0 48px; }
.media-player__skip { width: 30px; height: 38px; border: 0; border-radius: 10px; background: rgba(255,255,255,.08); color: white; font-size: 1.65rem; line-height: 1; }
.media-player__skip:hover, .media-player__list-toggle:hover { background: rgba(255,255,255,.16); }
.media-player__cover { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; background: white; }
.media-player__copy { overflow: hidden; min-width: 0; }
.media-player__copy strong, .media-player__copy span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.media-player__copy strong { font-size: .94rem; }
.media-player__copy span { color: rgba(255,255,255,.6); font-size: .78rem; }
.media-player__wave { height: 34px; display: flex; justify-content: center; align-items: center; gap: 4px; }
.media-player__wave i { width: 4px; height: 7px; background: var(--sand); border-radius: 3px; opacity: .45; }
.media-player.is-playing .media-player__wave i { animation: wave .75s ease-in-out infinite alternate; opacity: 1; }
.media-player.is-playing .media-player__wave i:nth-child(2) { animation-delay: .12s; }
.media-player.is-playing .media-player__wave i:nth-child(3) { animation-delay: .24s; }
.media-player.is-playing .media-player__wave i:nth-child(4) { animation-delay: .36s; }
.media-player.is-playing .media-player__wave i:nth-child(5) { animation-delay: .48s; }
@keyframes wave { to { height: 30px; } }
.media-player__list-toggle { width: 40px; height: 40px; border: 0; border-radius: 11px; background: rgba(255,255,255,.08); color: white; font-size: 1.25rem; }
.media-player__volume { width: 100%; accent-color: var(--sand); }
.media-player__close { border: 0; background: transparent; color: rgba(255,255,255,.65); font-size: 1.4rem; }
.media-player__playlist {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 10px);
    max-height: 340px;
    overflow: hidden;
    background: #0b2a22;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    box-shadow: 0 20px 55px rgba(0,0,0,.38);
}
.media-player.is-list-open .media-player__playlist { display: block; }
.media-player__playlist-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.media-player__playlist-head span { min-width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: 999px; background: rgba(255,255,255,.08); color: var(--sand); font-size: .78rem; font-weight: 900; }
.media-player__playlist-items { max-height: 270px; overflow-y: auto; padding: 7px; }
.media-player__playlist-item { width: 100%; display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 10px; align-items: center; text-align: left; border: 0; background: transparent; color: white; border-radius: 12px; padding: 10px; }
.media-player__playlist-item:hover, .media-player__playlist-item.is-active { background: rgba(255,255,255,.08); }
.media-player__playlist-number { color: var(--sand); font-weight: 900; font-size: .8rem; }
.media-player__playlist-item strong, .media-player__playlist-item small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.media-player__playlist-item strong { font-size: .88rem; }
.media-player__playlist-item small { color: rgba(255,255,255,.58); font-size: .74rem; margin-top: 2px; }
.media-player-reopen { display: none; position: fixed; z-index: 1190; right: 18px; bottom: 18px; width: 54px; height: 54px; border: 0; border-radius: 50%; background: var(--green-deep); color: white; box-shadow: var(--shadow); font-size: 1.25rem; }
.media-player-reopen.is-visible { display: block; }

.empty-state { border: 1px dashed #b8c8c0; border-radius: var(--radius); padding: 50px; text-align: center; color: var(--muted); }

@media (max-width: 1050px) {
    .main-nav > a { padding-inline: 9px; font-size: .86rem; }
    .brand { width: 205px; }
    .business-grid { grid-template-columns: repeat(3, 1fr); }
    .hero__inner { grid-template-columns: 1fr .5fr; gap: 28px; }
    .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .site-footer__grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
    body { padding-bottom: 90px; }
    .announcement__inner { padding-block: 8px; flex-wrap: wrap; }
    .site-header__inner { min-height: 72px; }
    .brand { width: 205px; }
    .menu-toggle { display: block; position: relative; z-index: 1102; }
    .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(86vw, 390px);
        height: 100dvh;
        background: white;
        z-index: 1101;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 100px 24px 30px;
        transform: translateX(105%);
        transition: transform .26s ease;
        box-shadow: -20px 0 60px rgba(0,0,0,.18);
        overflow-y: auto;
    }
    .main-nav::before { content: "Explora Samaná Conecta"; font-family: Georgia, serif; font-size: 1.55rem; margin-bottom: 14px; }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav > a { justify-content: flex-start; min-height: 50px; border-radius: 12px; padding-inline: 14px; font-size: 1rem; }
    .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { min-height: 720px; }
    .hero__inner { grid-template-columns: 1fr; padding-top: 110px; padding-bottom: 60px; }
    .hero__stats { grid-template-columns: repeat(3, 1fr); }
    .intro-grid, .magazine-feature, .about-grid, .form-layout, .page-hero__grid { grid-template-columns: 1fr; }
    .cards-grid, .magazine-grid { grid-template-columns: repeat(2, 1fr); }
    .business-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid, .package-grid { grid-template-columns: 1fr; }
    .package-card--featured { transform: none; }
    .article-layout { grid-template-columns: 1fr; }
    .sidebar-card { position: static; }
    .cta-band { grid-template-columns: 1fr; padding: 42px; }
    .newsletter__inner { grid-template-columns: 1fr; gap: 24px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__grid > div:last-child { grid-column: auto; }
    .media-player { grid-template-columns: auto 42px minmax(0, 1fr) auto 30px; }
    .media-player__wave, .media-player__volume { display: none; }
    .media-player__transport .media-player__skip { display: none; }
    .magazine-card--single { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .announcement { font-size: .76rem; }
    .announcement__dot { display: none; }
    .brand { width: 185px; }
    .hero { min-height: 690px; }
    .hero::after { background: linear-gradient(0deg, rgba(2,20,17,.94), rgba(3,26,21,.42)); }
    .hero__inner { padding-top: 90px; }
    .hero h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
    .hero__actions { display: grid; }
    .hero__actions .btn { width: 100%; }
    .hero__stats { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .section--tight { padding: 52px 0; }
    .section-heading { display: block; }
    .section-heading .text-link { margin-top: 14px; }
    .feature-list, .cards-grid, .business-grid, .magazine-grid, .form-grid { grid-template-columns: 1fr; }
    .intro-grid, .magazine-feature { gap: 38px; }
    .magazine-cover-wrap { max-width: 340px; margin-inline: auto; }
    .page-hero { padding: 68px 0 52px; }
    .page-hero__visual { min-height: 230px; }
    .reader-toolbar { align-items: flex-start; flex-direction: column; }
    .reader-toolbar__actions { width: 100%; }
    .reader-toolbar__actions .btn { flex: 1; }
    .pdf-reader { display: none; }
    .mobile-pdf-notice { display: block; }
    .download-edition__grid { grid-template-columns: 1fr; }
    .download-edition__cta { align-items: flex-start; }
    .article-header h1 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
    .about-image { min-height: 360px; }
    .cta-band { padding: 32px 24px; border-radius: 24px; }
    .form-card, .contact-panel { padding: 26px; border-radius: 24px; }
    .contact-panel { position: static; }
    .newsletter__form { display: grid; min-width: 0; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__bottom { flex-direction: column; }
    .media-player { bottom: 8px; border-radius: 18px; width: calc(100% - 16px); gap: 8px; padding: 8px; grid-template-columns: auto 40px minmax(0, 1fr) auto 28px; }
    .media-player__cover { width: 40px; height: 40px; }
    .media-player__toggle { width: 44px; height: 44px; flex-basis: 44px; }
    .media-player__list-toggle { width: 36px; height: 36px; }
    .media-player__copy strong { font-size: .85rem; }
    .media-player__copy span { font-size: .7rem; }
    .media-player__playlist { left: -1px; right: -1px; border-radius: 16px; max-height: 300px; }
}

/* Selector de idioma y navegación adaptable */
.mobile-nav-title { display: none; }
.language-selector {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--green-deep);
    flex: 0 0 auto;
}
.language-selector__icon { font-size: .9rem; line-height: 1; }
.language-selector select {
    width: 108px;
    min-height: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--green-deep);
    font-weight: 850;
    cursor: pointer;
}
.language-selector select:focus-visible { box-shadow: 0 0 0 3px rgba(31,106,77,.16); border-radius: 10px; }
.language-noscript { display: flex; gap: 6px; }
.language-noscript a { padding: 6px 8px; border: 1px solid var(--line); border-radius: 8px; }

@media (max-width: 1120px) {
    /* iOS/Safari: evita que el fondo translúcido del header se renderice por encima del menú. */
    .site-header {
        z-index: 5000;
        background: #ffffff;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .main-nav {
        z-index: 5002 !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 1;
        pointer-events: none;
    }
    .main-nav.is-open { pointer-events: auto; }
    .menu-toggle { z-index: 5003 !important; }

    body.menu-open::before { display: none !important; content: none !important; }
.site-header__inner { min-height: 72px; }
    .brand { width: 205px; }
    .menu-toggle { display: block; position: relative; z-index: 1102; }
    .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(88vw, 410px);
        height: 100dvh;
        background: white;
        z-index: 1101;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 7px;
        padding: 94px 24px 32px;
        transform: translateX(105%);
        transition: transform .26s ease;
        box-shadow: -20px 0 60px rgba(0,0,0,.18);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .main-nav::before { display: none !important; content: none !important; }
    .main-nav.is-open { transform: translateX(0); }
    .mobile-nav-title {
        display: block;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.55rem;
        line-height: 1.1;
        color: var(--green-deep);
        margin: 0 0 12px;
    }
    .main-nav > a {
        justify-content: flex-start;
        width: 100%;
        min-height: 48px;
        border-radius: 12px;
        padding-inline: 14px;
        font-size: 1rem;
    }
    .main-nav .nav-cta { justify-content: center; margin-top: 5px; }
    .language-selector {
        width: 100%;
        min-height: 52px;
        margin-top: 10px;
        padding-inline: 14px;
        border-radius: 14px;
        background: var(--green-pale);
    }
    .language-selector select { width: 100%; min-height: 50px; font-size: 1rem; }
    .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 620px) {
    .main-nav { width: min(92vw, 390px); padding-inline: 20px; }
    .language-selector { margin-top: 8px; }
    .hero-stat strong { font-size: 1.45rem; }
    .business-card__body { padding: 20px; }
}

/* Ajustes del reproductor por modo */
.media-player[data-player-mode="radio"] { grid-template-columns: 48px 48px minmax(0,1fr) 82px 100px 32px; }
@media (max-width: 860px) {
    .media-player[data-player-mode="radio"] { grid-template-columns: 44px 42px minmax(0,1fr) 30px; }
}
@media (max-width: 620px) {
    .media-player[data-player-mode="radio"] { grid-template-columns: 44px 40px minmax(0,1fr) 28px; }
}

/* Navegación interna persistente: el reproductor permanece activo mientras cambia el contenido. */
body.is-navigating main#contenido {
    opacity: .55;
    pointer-events: none;
}
main#contenido {
    transition: opacity .14s ease;
}


/* RADJC Travel */
.nav-dropdown { position: relative; }
.nav-dropdown__head { display:flex; align-items:center; }
.nav-dropdown__link { display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:0 7px 0 12px; border-radius:999px 0 0 999px; color:#34443d; font-weight:750; font-size:.91rem; transition:.2s ease; white-space:nowrap; }
.nav-dropdown__toggle { width:28px; height:42px; border:0; background:transparent; color:#34443d; border-radius:0 999px 999px 0; font-weight:900; }
.nav-dropdown:hover .nav-dropdown__head, .nav-dropdown:focus-within .nav-dropdown__head, .nav-dropdown.is-active .nav-dropdown__head { background:var(--green-pale); border-radius:999px; }
.nav-dropdown__menu { position:absolute; top:calc(100% + 8px); left:50%; transform:translate(-50%,8px); width:230px; padding:9px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow); opacity:0; visibility:hidden; pointer-events:none; transition:.18s ease; z-index:5100; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { opacity:1; visibility:visible; pointer-events:auto; transform:translate(-50%,0); }
.nav-dropdown__menu a { display:block; padding:11px 12px; border-radius:10px; color:var(--ink-soft); font-weight:800; font-size:.9rem; }
.nav-dropdown__menu a:hover { background:var(--green-pale); color:var(--green-deep); }
.travel-hero { min-height:590px; display:grid; align-items:end; color:#fff; background:linear-gradient(90deg,rgba(4,27,22,.92),rgba(4,27,22,.26)),var(--travel-hero) center 48%/cover no-repeat; }
.travel-hero__inner { padding:120px 0 72px; max-width:800px; }
.travel-hero h1,.travel-ticket-hero h1 { font-family:Georgia,serif; font-size:clamp(3rem,6vw,5.8rem); line-height:.96; letter-spacing:-.05em; margin:16px 0 20px; }
.travel-hero p,.travel-ticket-hero p { max-width:680px; font-size:1.15rem; color:rgba(255,255,255,.82); }
.travel-category-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.travel-category-card { background:#fff; border:1px solid var(--line); border-radius:26px; overflow:hidden; box-shadow:var(--shadow-sm); transition:.2s ease; }
.travel-category-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.travel-category-card img { width:100%; height:260px; object-fit:cover; }
.travel-category-card>div { padding:25px; }
.travel-category-card span { color:var(--green); font-size:.75rem; letter-spacing:.14em; font-weight:900; }
.travel-category-card h2 { font-family:Georgia,serif; font-size:2rem; line-height:1.05; margin:8px 0 12px; }
.travel-category-card p { color:var(--muted); min-height:78px; }
.travel-category-card strong { color:var(--green-deep); }
.travel-item-grid,.vehicle-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.travel-item-card,.vehicle-card { background:#fff; border:1px solid var(--line); border-radius:24px; overflow:hidden; box-shadow:var(--shadow-sm); }
.travel-item-card__media,.vehicle-card__media { aspect-ratio:4/3; overflow:hidden; background:#eef3f0; }
.travel-item-card__media img,.vehicle-card__media img { width:100%; height:100%; object-fit:cover; }
.travel-item-card__body,.vehicle-card__body { padding:22px; }
.travel-item-card h2,.vehicle-card h2 { font-family:Georgia,serif; font-size:1.65rem; line-height:1.1; margin:8px 0 10px; }
.travel-item-card p,.vehicle-card p { color:var(--muted); }
.travel-item-meta { display:flex; justify-content:space-between; gap:12px; align-items:center; margin-top:18px; }
.travel-item-card__excerpt { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4; overflow:hidden; min-height:6.1em; }
.travel-item-card__more { margin-top:18px; width:100%; }
.travel-item-card__media { display:block; }
.travel-item-card__media img { transition:transform .45s ease; }
.travel-item-card:hover .travel-item-card__media img { transform:scale(1.035); }
.excursion-detail-hero { position:relative; min-height:610px; display:grid; align-items:end; overflow:hidden; background:#082e2c; color:white; }
.excursion-detail-hero__image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.excursion-detail-hero__overlay { position:absolute; inset:0; background:linear-gradient(0deg,rgba(2,20,17,.93) 0%,rgba(2,20,17,.4) 56%,rgba(2,20,17,.2) 100%); }
.excursion-detail-hero__content { position:relative; z-index:2; padding-top:140px; padding-bottom:70px; }
.excursion-detail-back { display:inline-flex; margin-bottom:26px; color:rgba(255,255,255,.82); font-weight:800; }
.excursion-detail-hero h1 { max-width:900px; font-family:Georgia,serif; font-size:clamp(3rem,7vw,6.3rem); line-height:.95; letter-spacing:-.05em; margin:15px 0 22px; }
.excursion-detail-hero__meta { display:flex; flex-wrap:wrap; align-items:center; gap:12px; }
.excursion-detail-hero__meta>* { padding:9px 13px; border-radius:999px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); backdrop-filter:blur(8px); }
.excursion-detail-hero__meta strong { background:var(--sand); color:#272014; border-color:transparent; }
.excursion-detail-layout { display:grid; grid-template-columns:minmax(0,1fr) 360px; gap:56px; align-items:start; }
.excursion-detail-copy h2 { font-family:Georgia,serif; font-size:clamp(2.4rem,4vw,4.2rem); line-height:1; letter-spacing:-.04em; margin:12px 0 24px; }
.excursion-detail-description { font-size:1.08rem; color:var(--ink-soft); line-height:1.85; }
.excursion-detail-facts { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:34px; }
.excursion-detail-facts>div { padding:17px; border:1px solid var(--line); border-radius:16px; background:#fff; }
.excursion-detail-facts small,.excursion-detail-facts strong { display:block; }
.excursion-detail-facts small { color:var(--muted); font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; font-weight:900; margin-bottom:5px; }
.excursion-detail-aside { position:sticky; top:120px; padding:14px; border:1px solid var(--line); border-radius:24px; background:white; box-shadow:var(--shadow-sm); }
.excursion-detail-aside img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:15px; }
.excursion-detail-aside .btn { width:100%; margin-top:13px; }
.excursion-gallery { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.excursion-gallery__item { border:0; padding:0; border-radius:18px; overflow:hidden; background:#dce9e3; aspect-ratio:4/3; cursor:zoom-in; }
.excursion-gallery__item img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.excursion-gallery__item:hover img { transform:scale(1.045); }
.excursion-lightbox[hidden] { display:none; }
.excursion-lightbox { position:fixed; inset:0; z-index:10000; display:grid; place-items:center; padding:24px; background:rgba(2,15,12,.92); }
.excursion-lightbox img { max-width:min(1100px,95vw); max-height:88vh; object-fit:contain; border-radius:16px; }
.excursion-lightbox__close { position:fixed; top:20px; right:20px; width:48px; height:48px; border:1px solid rgba(255,255,255,.25); border-radius:50%; background:rgba(255,255,255,.12); color:white; font-size:2rem; line-height:1; }

.travel-service-strip { padding: 34px 0 0; background: #fbfdfc; }
.travel-service-banner { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1px; overflow:hidden; border:1px solid rgba(31,106,77,.16); border-radius:26px; background:rgba(31,106,77,.14); box-shadow:var(--shadow-sm); }
.travel-service-banner__item { display:flex; gap:18px; align-items:center; padding:26px 28px; background:linear-gradient(135deg,#f0faf4,#fffaf0); }
.travel-service-banner__icon { width:58px; height:58px; flex:0 0 58px; display:grid; place-items:center; border-radius:18px; background:var(--green-deep); box-shadow:0 12px 26px rgba(11,61,46,.18); }
.travel-service-banner__icon--plane { background:var(--ocean); }
.travel-service-banner__icon svg { width:31px; height:31px; fill:white; }
.travel-service-banner__item strong { display:block; color:var(--green-deep); font-size:1.12rem; line-height:1.2; margin-bottom:5px; }
.travel-service-banner__item p { margin:0; color:var(--ink-soft); font-size:.94rem; line-height:1.55; }
.vehicle-price { display:flex; justify-content:space-between; gap:14px; align-items:end; padding:14px 0 18px; margin-top:12px; border-top:1px solid var(--line); }
.vehicle-price span { color:var(--muted); font-size:.85rem; }
.vehicle-price strong { color:var(--green-deep); font-size:1.55rem; }
.vehicle-whatsapp-btn { width:100%; gap:9px; margin-top:2px; }
.vehicle-whatsapp-btn svg { width:21px; height:21px; fill:currentColor; flex:0 0 21px; }
.vehicle-card__body { display:flex; flex-direction:column; min-height:310px; }
.vehicle-card__body > p { flex:1; }
.travel-ticket-hero { padding:120px 0 80px; color:#fff; background:linear-gradient(90deg,rgba(4,27,22,.91),rgba(4,27,22,.42)),url('../img/art-playa.jpg') center/cover; }
.travel-ticket-hero__inner { max-width:820px; }
.travel-ticket-form { max-width:820px; margin-inline:auto; }
@media(max-width:1120px){
  .nav-dropdown { width:100%; }
  .nav-dropdown__head { width:100%; background:transparent!important; border-radius:12px!important; }
  .nav-dropdown__link { flex:1; justify-content:flex-start; min-height:48px; border-radius:12px 0 0 12px; padding-inline:14px; font-size:1rem; }
  .nav-dropdown__toggle { width:50px; min-height:48px; border-radius:0 12px 12px 0; background:var(--green-pale); }
  .nav-dropdown__menu { position:static; transform:none!important; width:100%; box-shadow:none; margin:5px 0 3px; padding:6px 8px 6px 18px; display:none; opacity:1; visibility:visible; pointer-events:auto; border:0; background:#f7fbf9; }
  .nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { display:none; }
  .nav-dropdown.is-open .nav-dropdown__menu { display:block; }
  .travel-category-grid,.travel-item-grid,.vehicle-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:620px){
  .travel-hero { min-height:540px; }
  .travel-hero__inner { padding:100px 0 52px; }
  .travel-category-grid,.travel-item-grid,.vehicle-grid { grid-template-columns:1fr; }
  .travel-category-card img { height:230px; }
  .excursion-detail-hero { min-height:520px; }
  .excursion-detail-hero__content { padding-top:105px; padding-bottom:48px; }
  .excursion-detail-layout { grid-template-columns:1fr; gap:34px; }
  .excursion-detail-aside { position:static; }
  .excursion-detail-facts { grid-template-columns:1fr; }
  .excursion-gallery { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
}


/* ===== Correcciones 1.6: RADJC hover + reproductor móvil ===== */
@media (min-width: 1121px) {
    /* Puente invisible entre el botón y el submenú: evita que se cierre al mover el cursor. */
    .nav-dropdown__menu {
        top: calc(100% + 8px);
        transition: opacity .16s ease, transform .16s ease, visibility 0s linear .38s;
    }
    .nav-dropdown__menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -14px;
        height: 14px;
        background: transparent;
    }
    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu,
    .nav-dropdown.is-open .nav-dropdown__menu {
        transition-delay: 0s;
    }
}

@media (max-width: 620px) {
    body { padding-bottom: 82px; }

    /* Playlist: una sola barra compacta que sí cabe incluso en móviles pequeños. */
    .media-player {
        left: 6px;
        right: 6px;
        bottom: max(6px, env(safe-area-inset-bottom));
        transform: none;
        width: auto;
        min-height: 60px;
        grid-template-columns: 92px minmax(0, 1fr) 32px 24px;
        gap: 6px;
        padding: 7px 8px;
        border-radius: 16px;
    }
    .media-player.is-hidden { transform: translateY(140%); }
    .media-player__cover,
    .media-player__wave,
    .media-player__volume { display: none !important; }
    .media-player__transport { gap: 2px; min-width: 0; }
    .media-player__toggle {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        font-size: .84rem;
    }
    .media-player__skip {
        width: 24px;
        height: 34px;
        padding: 0;
        border-radius: 8px;
        font-size: 1.3rem;
    }
    .media-player__copy { min-width: 0; }
    .media-player__copy strong { font-size: .8rem; line-height: 1.15; }
    .media-player__copy span { font-size: .66rem; line-height: 1.15; margin-top: 3px; }
    .media-player__list-toggle { width: 32px; height: 32px; padding: 0; border-radius: 9px; font-size: 1.05rem; }
    .media-player__close { width: 24px; height: 32px; padding: 0; font-size: 1.15rem; }
    .media-player__playlist {
        left: 0;
        right: 0;
        bottom: calc(100% + 6px);
        max-height: min(56vh, 330px);
        border-radius: 15px;
    }
    .media-player__playlist-items { max-height: min(46vh, 265px); }

    /* Radio: no deja una columna fantasma del cover oculto. */
    .media-player[data-player-mode="radio"] {
        grid-template-columns: 40px minmax(0, 1fr) 24px !important;
    }
    .media-player[data-player-mode="radio"] .media-player__transport { width: 40px; }
}

@media (max-width: 360px) {
    .media-player { grid-template-columns: 88px minmax(0, 1fr) 30px 22px; gap: 4px; padding-inline: 6px; }
    .media-player__skip { width: 22px; }
    .media-player__copy span { display: none; }
    .media-player__list-toggle { width: 30px; }
    .media-player__close { width: 22px; }
    .media-player[data-player-mode="radio"] { grid-template-columns: 40px minmax(0, 1fr) 22px !important; }
}


@media(max-width:620px){
  .travel-service-strip { padding-top:22px; }
  .travel-service-banner { grid-template-columns:1fr; border-radius:20px; }
  .travel-service-banner__item { padding:21px 18px; align-items:flex-start; }
  .travel-service-banner__icon { width:50px; height:50px; flex-basis:50px; border-radius:15px; }
  .travel-service-banner__icon svg { width:27px; height:27px; }
}
