:root {
    --primary: #c79a4b;
    --primary-dark: #8f642b;
    --bg: #f8f5ef;
    --surface: #ffffff;
    --text: #1f1b16;
    --muted: #6d655d;
    --border: #e8dfd0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a,
a:visited {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:focus-visible,
button:focus-visible {
    outline: none;
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    background:
        linear-gradient(135deg, rgba(7, 7, 7, 0.92), rgba(45, 28, 12, 0.86)),
        url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    background-size: cover;
    color: white;
    padding-bottom: 4rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.btn-primary,
.btn-primary:visited {
    background: linear-gradient(135deg, var(--primary), #d7a55a);
    color: white;
}

.btn-whatsapp,
.btn-whatsapp:visited {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1ebc5a, #0f6b62);
}

.btn-secondary,
.btn-secondary:visited {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-color: transparent;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
    padding: 3.2rem 0 2.2rem;
}

.hero-side {
    display: grid;
    gap: 1rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.stats {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    flex-wrap: wrap;
}

.stats li {
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.stats li:last-child {
    border-right: none;
}

.stats strong {
    font-size: 1.05rem;
}

.stats span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
}

.hero-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-card-content {
    padding: 1.1rem 1.2rem 1.25rem;
    color: var(--text);
}

.hero-card-content h3 {
    margin-bottom: 0.35rem;
}

.premium-section {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.premium-card {
    max-width: 900px;
    margin: 0 auto;
}

.premium-bottom {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.premium-bottom-content {
    text-align: left;
    margin: 0;
}

.premium-bottom-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: #f2ebde;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-heading h2,
.about-content h2,
.amenities-grid h2,
.contact-box h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin: 0 0 0.8rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.1rem 1.2rem 1.2rem;
}

.card h3,
.amenity h3 {
    margin: 0 0 0.4rem;
}

.card p,
.amenity p,
.about-content p,
.contact-box p,
.section-heading p {
    color: var(--muted);
}

.card ul {
    padding-left: 1rem;
    color: var(--muted);
    margin: 0.8rem 0 1rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.card-footer a {
    color: var(--primary-dark);
}

.amenities-grid,
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.amenities-list {
    display: grid;
    gap: 1rem;
}

.amenity {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.testimonial {
    background: var(--surface);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.05rem;
    color: var(--text);
}

.contact-section {
    padding-top: 2rem;
}

.contact-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, #8a5b21, var(--primary));
    color: white;
    padding: 2.2rem;
    border-radius: 28px;
    gap: 1.5rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.contact-box-column {
    flex-direction: column;
}

.contact-box p {
    color: rgba(255,255,255,0.88);
}

.form-note {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #fff7e8;
    font-weight: 500;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.booking-form {
    width: 100%;
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.14);
    padding: 1.2rem;
    border-radius: 22px;
    backdrop-filter: blur(8px);
}

.hero-booking-form {
    background: rgba(255, 255, 255, 0.97);
    padding: 1.1rem;
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(199, 154, 75, 0.18);
}

.hero-booking-form label {
    color: var(--text);
    font-size: 0.9rem;
}

.hero-booking-form input {
    background: #fff;
    border: 2px solid #d9c08c;
    padding: 0.8rem 0.9rem;
}

.hero-booking-form input:focus,
.booking-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(199, 154, 75, 0.16);
}

.hero-booking-form .btn-whatsapp {
    margin-top: 0.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.booking-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.booking-form input {
    border: 2px solid #d9c08c;
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    font: inherit;
    color: var(--text);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.booking-form input:focus {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    border-color: transparent;
}

.booking-form input::placeholder {
    color: #8a7f74;
}

.booking-form button {
    border: none;
    cursor: pointer;
    width: fit-content;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.booking-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    background: linear-gradient(135deg, #1ebc5a, #0f6b62);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.footer-content p {
    margin: 0;
    color: rgba(31, 27, 22, 0.72);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .hero-content,
    .amenities-grid,
    .about-grid,
    .cards,
    .premium-bottom {
        grid-template-columns: 1fr;
    }

    .premium-bottom {
        align-items: start;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .contact-actions .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        justify-content: space-between;
    }

    .footer-content {
        width: 100%;
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .nav {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .hero {
        padding-bottom: 3rem;
    }

    .section {
        padding: 4rem 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.4rem;
    }
}