:root {
    --bg: #ffffff;
    --surface: #f7f3eb;
    --surface-2: #efe7d7;
    --text: #17130d;
    --muted: #6f675b;

    --primary: #c9a24d;
    --primary-dark: #9f7a2b;

    --black: #0b0b0b;
    --black-soft: #15130f;
    --gold: #c9a24d;
    --border: #e7dfd0;
    --white: #ffffff;

    --success: #2e7d4f;
    --danger: #a33d33;

    --container: 1180px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow: 0 18px 60px rgba(18, 14, 8, 0.10);
    --shadow-lg: 0 30px 90px rgba(13, 10, 5, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--bg);

    line-height: 1.65;
}

body,
input,
textarea,
select,
button {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-weight: 600;
    line-height: 1.05;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(
        calc(100% - 32px),
        var(--container)
    );

    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid
        var(--border);

    backdrop-filter: blur(14px);
}

.nav {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    width: 110px;
    height: 70px;

    object-fit: contain;

    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;

    gap: 22px;

    font-size: 0.93rem;
    font-weight: 600;
}

.nav-menu > a:not(.btn) {
    position: relative;

    padding:
        31px
        0;
}

.nav-menu > a:not(.btn)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 22px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width
        0.2s ease;
}

.nav-menu > a:not(.btn):hover::after,
.nav-menu > a:not(.btn).active::after {
    width: 100%;
}

.nav-toggle {
    display: none;

    border: 0;

    background: transparent;

    padding: 8px;

    cursor: pointer;
}

.nav-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px 0;

    background: var(--text);
}

.hero {
    min-height: 700px;

    display: grid;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.80),
            rgba(8, 8, 8, 0.38)
        ),
        url("../images/hero-home-1.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: var(--white);
}

.hero__content {
    max-width: 850px;

    padding-block: 110px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--primary-dark);

    font-size: 0.76rem;
    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(
        255,
        255,
        255,
        0.88
    );
}

.eyebrow--gold {
    color: var(--gold);
}

.hero h1 {
    max-width: 820px;

    margin: 0;

    font-size:
        clamp(
            3.1rem,
            7vw,
            6.2rem
        );

    letter-spacing: -0.045em;
}

.hero p {
    max-width: 680px;

    margin:
        28px
        0
        34px;

    color: rgba(
        255,
        255,
        255,
        0.84
    );

    font-size: 1.08rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0
        22px;

    border:
        1px solid
        transparent;

    border-radius: 999px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform:
        translateY(-1px);
}

.btn--primary {
    color: var(--black);

    background: var(--primary);
}

.btn--primary:hover {
    background: #ddb85e;
}

.btn--ghost {
    color: var(--white);

    border-color:
        rgba(
            255,
            255,
            255,
            0.55
        );

    background:
        rgba(
            0,
            0,
            0,
            0.10
        );
}

.btn--light {
    color: var(--black);

    background: var(--white);
}

.btn--outline {
    color: var(--text);

    border-color: var(--border);

    background: var(--white);
}

.btn--small {
    min-height: 40px;

    padding-inline: 16px;
}

.btn--block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.55;

    cursor: not-allowed;
}

.trust-strip {
    border-bottom:
        1px solid
        var(--border);

    background: var(--white);
}

.trust-grid {
    min-height: 108px;

    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );

    align-items: center;
}

.trust-grid > div {
    padding:
        18px
        28px;

    border-right:
        1px solid
        var(--border);
}

.trust-grid > div:first-child {
    padding-left: 0;
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong {
    display: block;

    margin-bottom: 2px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.5rem;
}

.trust-grid span {
    color: var(--muted);

    font-size: 0.88rem;
}

.section {
    padding:
        96px
        0;
}

.section--soft {
    background: var(--surface);
}

.section--black {
    color: var(--white);

    background: var(--black);
}

.split-layout,
.destination-detail,
.payment-layout,
.contact-layout,
.login-shell,
.membership-note {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 76px;

    align-items: center;
}

.section h2,
.split-layout h2,
.destination-detail h2,
.membership-note h2 {
    margin: 0;

    font-size:
        clamp(
            2.5rem,
            5vw,
            4.4rem
        );

    letter-spacing: -0.035em;
}

.lead {
    font-size: 1.12rem;
}

.section p,
.split-layout p,
.destination-detail p,
.membership-note p {
    color: var(--muted);
}

.text-link {
    display: inline-flex;

    margin-top: 8px;

    color: var(--primary-dark);

    font-weight: 800;
}

.section-heading {
    margin-bottom: 38px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 28px;
}

.section-heading h2 {
    margin: 0;

    font-size:
        clamp(
            2.6rem,
            5vw,
            4.6rem
        );
}

.destination-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 24px;
}

.destination-card {
    overflow: hidden;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);
}

.destination-card__image {
    position: relative;

    min-height: 280px;

    display: block;

    background-size: cover;
    background-position: center;
}

.destination-card__type {
    position: absolute;

    left: 18px;
    top: 18px;

    padding:
        7px
        11px;

    color: var(--black);

    background:
        rgba(
            255,
            255,
            255,
            0.90
        );

    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.04em;
}

.destination-card__body {
    padding: 24px;
}

.destination-card__country {
    color: var(--primary-dark);

    font-size: 0.78rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.destination-card__body h3 {
    margin:
        4px
        0
        8px;

    font-size: 2rem;
}

.destination-card__body p {
    min-height: 52px;

    margin:
        0
        0
        10px;

    color: var(--muted);
}

.membership-highlight {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            #17130d,
            #0b0b0b
        );
}

.membership-layout {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 70px;

    align-items: center;
}

.membership-panel h2 {
    margin: 0;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.9rem
        );
}

.membership-panel p {
    margin:
        22px
        0
        28px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );
}

.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 18px;
}

.benefit-card {
    padding: 26px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.13
        );

    border-radius: var(--radius);

    background:
        rgba(
            255,
            255,
            255,
            0.04
        );
}

.benefit-card > span {
    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 800;
}

.benefit-card h3 {
    margin:
        14px
        0
        8px;

    font-size: 1.75rem;
}

.benefit-card p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.66
        );
}

.benefit-grid--light .benefit-card--light {
    color: var(--text);

    border-color: var(--border);

    background: var(--white);

    box-shadow: var(--shadow);
}

.benefit-grid--light .benefit-card--light p {
    color: var(--muted);
}

.experience-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 20px;
}

.experience-card {
    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: end;

    padding: 28px;

    color: var(--white);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #493c28,
            #17130d
        );
}

.experience-card:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            #6d5937,
            #241d13
        );
}

.experience-card:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            #2b241a,
            #0c0c0c
        );
}

.experience-card span {
    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.experience-card h3 {
    margin:
        10px
        0
        0;

    font-size: 2rem;
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 20px;
}

.testimonial-grid blockquote {
    margin: 0;

    padding: 28px;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.55rem;
    line-height: 1.35;
}

.testimonial-grid cite {
    display: block;

    margin-top: 18px;

    color: var(--muted);

    font-family:
        Inter,
        sans-serif;

    font-size: 0.84rem;
    font-style: normal;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.final-cta h2 {
    margin: 0;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );
}

.final-cta p {
    max-width: 680px;

    color:
        rgba(
            255,
            255,
            255,
            0.68
        );
}

.page-hero,
.destination-hero {
    min-height: 470px;

    display: grid;
    align-items: end;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.78),
            rgba(8, 8, 8, 0.35)
        ),
        url("../images/hero-home-1.webp");

    background-size: cover;
    background-position: center;
}

.page-hero__content,
.destination-hero__content {
    max-width: 780px;

    padding:
        100px
        0
        76px;
}

.page-hero h1,
.destination-hero h1 {
    margin: 0;

    font-size:
        clamp(
            3rem,
            6vw,
            5.4rem
        );
}

.page-hero p,
.destination-hero p {
    max-width: 640px;

    color:
        rgba(
            255,
            255,
            255,
            0.78
        );

    font-size: 1.06rem;
}

.values-grid,
.service-grid,
.activity-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 20px;
}

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

.value-card,
.service-card,
.activity-grid article {
    padding: 30px;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: var(--shadow);
}

.value-card > span,
.service-card > span,
.activity-number {
    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 800;
}

.value-card h3,
.service-card h3,
.activity-grid h3 {
    margin:
        14px
        0
        8px;

    font-size: 2rem;
}

.value-card p,
.service-card p,
.activity-grid p {
    margin: 0;

    color: var(--muted);
}

.destination-filter {
    margin-bottom: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.filter-tabs a {
    padding:
        9px
        14px;

    border:
        1px solid
        var(--border);

    border-radius: 999px;

    font-weight: 700;
}

.filter-tabs a.active {
    color: var(--black);

    border-color: var(--gold);

    background: var(--gold);
}

.search-box {
    display: flex;

    gap: 8px;
}

.search-box input {
    width: 260px;
}

.form-card {
    padding: 32px;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 18px;
}

.form-field {
    display: grid;

    gap: 7px;
}

.form-field--full {
    grid-column:
        1
        / -1;
}

.form-field label {
    font-size: 0.84rem;
    font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select,
.search-box input {
    width: 100%;

    padding:
        13px
        14px;

    color: var(--text);

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background: var(--white);

    outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.search-box input:focus {
    border-color: var(--gold);

    box-shadow:
        0
        0
        0
        3px
        rgba(
            201,
            162,
            77,
            0.12
        );
}

.contact-list {
    display: grid;

    gap: 12px;

    margin-top: 28px;
}

.contact-list a {
    padding: 18px;

    display: grid;

    border:
        1px solid
        var(--border);

    border-radius: 14px;
}

.contact-list strong {
    margin-bottom: 2px;
}

.contact-list span {
    color: var(--muted);
}

.alert {
    margin-bottom: 18px;

    padding: 13px 15px;

    border-radius: 12px;

    font-size: 0.9rem;
}

.alert--success {
    color: #1d5735;

    background: #e5f4eb;
}

.alert--error {
    color: #7c2c25;

    background: #f8e7e4;
}

.payment-card {
    padding: 34px;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius-lg);

    background: var(--surface);

    box-shadow: var(--shadow);
}

.payment-card h3 {
    margin:
        12px
        0
        8px;

    font-size: 2rem;
}

.status-badge {
    display: inline-flex;

    padding:
        7px
        11px;

    border-radius: 999px;

    color: var(--primary-dark);

    background: #f4ead0;

    font-size: 0.72rem;
    font-weight: 800;
}

.check-list {
    padding: 0;

    list-style: none;
}

.check-list li {
    position: relative;

    padding:
        10px
        0
        10px
        28px;

    border-bottom:
        1px solid
        var(--border);
}

.check-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--gold);

    font-weight: 900;
}

.login-section {
    min-height: 70vh;

    display: grid;
    align-items: center;
}

.login-shell--admin {
    max-width: 900px;
}

.login-copy h1,
.login-shell h1 {
    margin: 0;

    font-size:
        clamp(
            3rem,
            5vw,
            5rem
        );
}

.legal-hero {
    padding:
        90px
        0
        54px;

    background: var(--surface);
}

.legal-hero h1 {
    margin: 0;

    font-size:
        clamp(
            3rem,
            5vw,
            4.8rem
        );
}

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    margin-top: 34px;

    font-size: 2.3rem;
}

.legal-content p {
    color: var(--muted);
}

.legal-note {
    margin-top: 40px;

    padding: 20px;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    background: var(--surface);
}

.empty-state {
    padding:
        70px
        24px;

    text-align: center;
}

.empty-state h1,
.empty-state h2 {
    margin-top: 0;
}

.admin-heading {
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.admin-heading h1 {
    margin: 0;

    font-size: 4rem;
}

.table-wrap {
    overflow-x: auto;

    border:
        1px solid
        var(--border);

    border-radius: 14px;
}

table {
    width: 100%;

    border-collapse: collapse;

    background: var(--white);
}

th,
td {
    padding: 14px;

    border-bottom:
        1px solid
        var(--border);

    text-align: left;

    vertical-align: top;
}

th {
    background: var(--surface);

    font-size: 0.8rem;

    text-transform: uppercase;
}

.site-footer {
    padding:
        64px
        0
        24px;

    color:
        rgba(
            255,
            255,
            255,
            0.70
        );

    background: var(--black);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.2fr;

    gap: 44px;
}

.footer-logo {
    width: 120px;
    height: 84px;

    object-fit: contain;

    margin-bottom: 14px;
}

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

.footer-grid h4 {
    margin:
        0
        0
        15px;

    color: var(--white);

    font-family:
        Inter,
        sans-serif;

    font-size: 0.92rem;
}

.footer-grid a {
    display: block;

    margin:
        8px
        0;

    font-size: 0.9rem;
}

.footer-grid a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 46px;

    padding-top: 22px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );

    font-size: 0.82rem;
}

.whatsapp-float {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 900;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    color: var(--black);

    background: var(--gold);

    border-radius: 50%;

    box-shadow: var(--shadow-lg);

    font-size: 0.76rem;
    font-weight: 900;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;

        top: 88px;
        left: 16px;
        right: 16px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 14px;

        background: var(--white);

        border:
            1px solid
            var(--border);

        border-radius: 16px;

        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu > a:not(.btn) {
        padding: 12px;
    }

    .nav-menu > a:not(.btn)::after {
        display: none;
    }

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

    .trust-grid > div {
        border-bottom:
            1px solid
            var(--border);
    }

    .split-layout,
    .destination-detail,
    .payment-layout,
    .contact-layout,
    .login-shell,
    .membership-note,
    .membership-layout {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .destination-grid,
    .experience-grid,
    .testimonial-grid,
    .values-grid,
    .activity-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

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

    .destination-filter {
        align-items: stretch;
        flex-direction: column;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 620px;
    }

    .hero__content {
        padding-block: 80px;
    }

    .section {
        padding:
            70px
            0;
    }

    .trust-grid,
    .destination-grid,
    .experience-grid,
    .testimonial-grid,
    .benefit-grid,
    .values-grid,
    .service-grid,
    .activity-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        padding:
            18px
            0;
    }

    .section-heading,
    .final-cta,
    .admin-heading,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .destination-card__image {
        min-height: 240px;
    }

    .page-hero,
    .destination-hero {
        min-height: 390px;
    }

    .page-hero__content,
    .destination-hero__content {
        padding:
            80px
            0
            54px;
    }

    .form-card {
        padding: 22px;
    }

    .search-box {
        flex-direction: column;
    }

    .footer-bottom {
        display: flex;
    }
}
