:root {
    --ink: #10212b;
    --muted: #5c6b73;
    --line: #dfe7ea;
    --sea: #007f8c;
    --sun: #f2b544;
    --leaf: #2f8f5b;
    --coral: #e35d4f;
    --paper: #f8fbfb;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(16, 33, 43, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px clamp(16px, 4vw, 56px);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(16, 33, 43, .06);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    display: block;
    width: clamp(190px, 24vw, 300px);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.brand img {
    width: 100%;
    max-height: 64px;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.main-nav a:hover,
.main-nav .active {
    background: #e7f5f4;
    color: var(--sea);
}

.login-link {
    background: var(--ink);
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 8px;
    font-size: 24px;
}

.hero {
    min-height: 78vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(24px, 5vw, 60px);
    padding: clamp(18px, 4vw, 56px);
    background: var(--white);
}

.hero-media {
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-content h1,
.page-title h1 {
    margin: 8px 0 18px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-content p,
.page-title p {
    max-width: 680px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 800;
    color: var(--coral);
    font-size: 13px;
}

.hero-actions,
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    border: 0;
    font-weight: 800;
    cursor: pointer;
}

.btn.primary {
    background: var(--sea);
    color: var(--white);
}

.btn.with-icon svg {
    width: 17px;
    height: 17px;
    max-width: 17px;
    max-height: 17px;
    flex: 0 0 auto;
    fill: currentColor;
}

.btn.secondary {
    background: var(--sun);
    color: #231909;
}

.quick-panel {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) 1.15fr;
    gap: clamp(18px, 4vw, 44px);
    align-items: center;
    margin: 0 clamp(16px, 4vw, 56px);
    padding: clamp(18px, 3vw, 28px);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 33, 43, .08);
}

.quick-intro h2 {
    margin: 0 0 8px;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.08;
}

.quick-intro p:last-child,
.card-body p,
.small-note {
    color: var(--muted);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px;
}

.quick-actions a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    background: #f2fbf7;
    border: 1px solid #cceee0;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.quick-actions a:hover {
    transform: translateY(-2px);
    border-color: #15a65c;
    box-shadow: 0 12px 26px rgba(18, 183, 99, .16);
}

.quick-actions svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    flex: 0 0 auto;
    padding: 5px;
    border-radius: 50%;
    color: var(--white);
    fill: currentColor;
    background: #12b763;
}

.section-heading,
.page-title {
    padding: clamp(38px, 6vw, 82px) clamp(16px, 4vw, 56px) 24px;
}

.section-heading h2,
.split-band h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 0 clamp(16px, 4vw, 56px) 56px;
}

.destination-card,
.wide-card,
.contact-card,
.contact-form,
.login-form,
.detail-content aside,
.admin-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(16, 33, 43, .08);
}

.destination-card {
    overflow: hidden;
}

.destination-card a {
    text-decoration: none;
}

.destination-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 4px 0 8px;
    font-size: 22px;
}

.card-body span {
    color: var(--sea);
    font-weight: 800;
}

.split-band {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
    padding: clamp(38px, 6vw, 70px) clamp(16px, 4vw, 56px);
    background: #10212b;
    color: var(--white);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list span,
.mini-grid a {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 700;
}

.destination-list {
    display: grid;
    gap: 18px;
    padding: 0 clamp(16px, 4vw, 56px) 64px;
}

.wide-card {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 24px;
    padding: 16px;
    align-items: center;
}

.wide-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 6px;
}

.wide-card h2,
.contact-card h2,
.contact-form h2,
.detail-content h2 {
    margin: 0 0 10px;
}

.wide-card p,
.detail-content p,
.detail-content li,
.contact-card p {
    color: var(--muted);
    line-height: 1.55;
}

.detail-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(22px, 4vw, 48px);
    padding: clamp(20px, 4vw, 56px);
    align-items: center;
    background: var(--white);
}

.detail-hero img {
    width: 100%;
    height: min(64vh, 560px);
    object-fit: cover;
    border-radius: 8px;
}

.detail-hero h1 {
    margin: 8px 0;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.02;
}

.detail-hero h2 {
    margin: 0 0 16px;
    color: var(--sea);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    padding: 44px clamp(16px, 4vw, 56px);
}

.detail-content ul {
    margin: 12px 0 0;
    padding-left: 22px;
}

.detail-content aside {
    padding: 22px;
}

.compact {
    padding-top: 18px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 clamp(16px, 4vw, 56px) 56px;
}

.mini-grid a {
    color: var(--white);
    background: var(--leaf);
    text-decoration: none;
    text-align: center;
}

.contact-layout,
.login-screen {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
    padding: 0 clamp(16px, 4vw, 56px) 64px;
}

.contact-card,
.contact-form,
.login-form {
    padding: 24px;
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 12px;
    font: inherit;
    background: var(--white);
}

.login-screen {
    align-items: center;
    min-height: 68vh;
    padding-top: 42px;
}

.login-form {
    max-width: 460px;
    width: 100%;
    justify-self: end;
}

.float-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #20c66b, #0a8f4b);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(10, 143, 75, .34);
    border: 3px solid rgba(255, 255, 255, .94);
    transition: transform .18s ease, box-shadow .18s ease;
}

.float-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(10, 143, 75, .42);
}

.float-whatsapp svg {
    width: 23px;
    height: 23px;
    max-width: 23px;
    max-height: 23px;
    fill: currentColor;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 390px) 1fr auto;
    gap: clamp(18px, 4vw, 46px);
    align-items: center;
    padding: 30px clamp(16px, 4vw, 56px);
    background: #050d13;
    color: var(--white);
}

.footer-brand {
    display: block;
}

.footer-brand img {
    width: min(100%, 300px);
    height: auto;
    max-height: 102px;
    object-fit: contain;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.site-footer span {
    display: block;
    color: rgba(255, 255, 255, .78);
    line-height: 1.5;
}

.site-footer a {
    font-weight: 800;
}

.social-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 74px;
    min-height: 74px;
    padding: 6px;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    transition: transform .18s ease, background .18s ease;
}

.social-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .1);
}

.social-pill svg {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 50%;
    color: var(--white);
    fill: currentColor;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.social-pill span {
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    line-height: 1;
}

.social-pill.facebook svg {
    background: #1d5fbf;
}

.social-pill.instagram svg {
    background: linear-gradient(135deg, #6f45d8, #e05278 55%, #f2a33a);
}

.social-pill.whatsapp svg {
    background: #13a85b;
}

.social-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: clamp(14px, 4vw, 44px);
    padding: 28px clamp(16px, 6vw, 84px) 34px;
    background: #f4f7fb;
    border-top: 1px solid #e2e9ef;
}

.social-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 12px;
    color: var(--ink);
    text-decoration: none;
    border-radius: 8px;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(16, 33, 43, .08);
}

.social-card .icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    max-width: 42px;
    max-height: 42px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 12px 24px rgba(16, 33, 43, .18);
    overflow: hidden;
}

.social-card .icon svg {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    fill: currentColor;
    display: block;
}

.social-card strong {
    font-size: 15px;
}

.social-card.facebook .icon {
    background: #2463e7;
}

.social-card.instagram .icon {
    background: linear-gradient(135deg, #7d42d9, #ec3f8f 55%, #ff9a33);
}

.social-card.whatsapp .icon {
    background: #12b763;
}

.site-footer {
    grid-template-columns: minmax(220px, 310px) minmax(230px, 1fr) minmax(150px, .45fr) minmax(220px, .8fr);
    align-items: start;
    padding-top: 48px;
    padding-bottom: 48px;
    background: #0d1726;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    width: 100%;
    max-height: none;
    padding: 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.footer-info strong,
.footer-links strong,
.footer-newsletter strong {
    display: block;
    margin-bottom: 14px;
    color: var(--white);
}

.footer-info span {
    margin-bottom: 7px;
}

.footer-links {
    display: grid;
    gap: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-newsletter .btn {
    width: 100%;
    margin-top: 4px;
    background: #ff8f35;
    color: #231909;
}

.site-footer .socials {
    display: none;
}

.admin-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
}

.admin-panel {
    max-width: 560px;
    padding: 28px;
    text-align: center;
}

.admin-panel img {
    width: 220px;
    margin: 0 auto 18px;
}

@media (max-width: 1050px) {
    .destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
    }

    .brand-mark {
        width: 180px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 84px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px 16px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
    }

    .main-nav.open {
        display: flex;
    }

    .hero,
    .detail-hero,
    .split-band,
    .wide-card,
    .detail-content,
    .contact-layout,
    .login-screen,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media,
    .hero-media img {
        min-height: 300px;
    }

    .quick-panel,
    .destination-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        padding-bottom: 40px;
    }

    .wide-card img {
        height: 230px;
    }

    .detail-content {
        padding-top: 28px;
    }

    .login-form {
        justify-self: stretch;
        max-width: none;
    }

    .site-footer {
        padding-bottom: 88px;
    }

    .social-strip {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 26px 16px 32px;
    }

    .social-card {
        grid-template-columns: 38px 1fr;
        justify-items: start;
        align-items: center;
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
        padding: 12px 14px;
        background: var(--white);
        box-shadow: 0 10px 24px rgba(16, 33, 43, .08);
    }

    .social-card .icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        max-width: 36px;
        max-height: 36px;
    }

    .social-card .icon svg {
        width: 17px;
        height: 17px;
        max-width: 17px;
        max-height: 17px;
    }

    .footer-brand {
        max-width: 330px;
    }

    .footer-brand img {
        width: 100%;
    }

    .footer-newsletter .btn {
        width: auto;
    }
}

@media (max-width: 460px) {
    .hero-content h1,
    .page-title h1,
    .detail-hero h1 {
        font-size: 34px;
    }

    .hero-content p,
    .page-title p {
        font-size: 17px;
    }

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