:root {
    --ink: #172026;
    --muted: #5a6872;
    --paper: #f7faf8;
    --brand: #0c8f7f;
    --brand-dark: #06665c;
    --accent: #f4b740;
    --white: #ffffff;
    --line: #dce7e2;
    --shadow: 0 18px 50px rgba(23, 32, 38, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(18px, 4vw, 64px);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
    color: var(--muted);
}

.nav a:hover, .nav-admin { color: var(--brand-dark); }
.nav-toggle {
    display: none;
    border: 0;
    background: var(--brand);
    color: var(--white);
    min-width: 72px;
    height: 42px;
    border-radius: 8px;
    font-weight: 800;
}

.hero {
    min-height: 680px;
    display: grid;
    align-items: center;
    padding: 90px clamp(20px, 6vw, 80px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6, 45, 48, .86), rgba(6, 45, 48, .38)),
        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.hero-copy { max-width: 720px; }
.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1, h2, h3 { line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.8rem, 7vw, 5.9rem); max-width: 880px; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); max-width: 880px; }
h3 { font-size: 1.25rem; }

.hero p:not(.eyebrow) {
    max-width: 620px;
    font-size: 1.16rem;
    color: rgba(255, 255, 255, .88);
}

.hero-actions, .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.primary { background: #25d366; color: #073b21; box-shadow: var(--shadow); }
.btn.secondary { background: rgba(255, 255, 255, .16); color: var(--white); border: 1px solid rgba(255,255,255,.38); }

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.stats div {
    padding: 28px clamp(18px, 4vw, 60px);
    background: var(--white);
}

.stats strong { display: block; font-size: 2rem; color: var(--brand-dark); }
.stats span { color: var(--muted); font-weight: 700; }

.section { padding: 82px clamp(18px, 5vw, 72px); }
.section-heading { margin-bottom: 34px; }

.destination-grid, .portfolio-grid, .service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.destination-card, .portfolio-item, .service-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(23, 32, 38, .08);
}

.destination-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.destination-card div, .portfolio-item div, .service-grid article { padding: 22px; }
.destination-card span { color: var(--brand); font-weight: 800; font-size: .92rem; }
.destination-card p, .portfolio-item p, .service-grid p, .contact p { color: var(--muted); }
.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    color: var(--brand-dark);
}

.portfolio-band { background: #eaf3ef; }
.portfolio-item img, .portfolio-item video, .portfolio-item iframe {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 0;
}

.contact {
    justify-content: space-between;
    padding: 64px clamp(18px, 5vw, 72px);
    background: var(--ink);
    color: var(--white);
}

.contact > div { max-width: 720px; }
.contact p { color: rgba(255,255,255,.78); }

footer {
    padding: 26px;
    text-align: center;
    background: #0f171b;
    color: rgba(255,255,255,.76);
}

@media (max-width: 900px) {
    .destination-grid, .portfolio-grid, .service-grid, .stats { grid-template-columns: 1fr; }
    .nav {
        position: absolute;
        top: 79px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
    }
    .nav.open { display: flex; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .hero { min-height: 620px; }
}
