:root {
    --color-primary: #b8862b;
    --color-primary-dark: #96691c;
    --color-dark: #1c1a17;
    --color-dark-2: #2a2621;
    --color-cream: #faf6ef;
    --color-text: #3a352e;
    --color-muted: #7a7268;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--color-dark);
}

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

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

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 43, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 12px;
}

.section-head p {
    color: var(--color-muted);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
    background: rgba(28, 26, 23, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    backdrop-filter: blur(6px);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.brand .logo-mark {
    width: 42px;
    height: 42px;
    display: block;
    flex-shrink: 0;
}

.brand .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.1;
}

.brand .brand-name span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    color: #f1ede4;
    font-weight: 500;
    font-size: 0.94rem;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
}

.header-phone i {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(20, 18, 15, 0.72), rgba(20, 18, 15, 0.55)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="1000"><rect width="1600" height="1000" fill="%232a2621"/></svg>');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(184, 134, 43, 0.25), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(184, 134, 43, 0.18), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 680px;
    padding-top: 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-badge .stars {
    color: #f2b84b;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--color-primary);
}

.hero p.lead {
    color: #e8e3d8;
    font-size: 1.08rem;
    max-width: 560px;
    margin-bottom: 34px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats div {
    border-left: 2px solid var(--color-primary);
    padding-left: 14px;
}

.hero-stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #fff;
}

.hero-stats span {
    font-size: 0.82rem;
    color: #cfc9bc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    opacity: 0.75;
    font-size: 0.8rem;
    text-align: center;
    z-index: 2;
}

.scroll-cue i {
    display: block;
    margin-top: 6px;
    animation: bounce 1.8s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media .frame {
    border-radius: var(--radius);
    background: linear-gradient(135deg, #2a2621, #1c1a17);
    height: 420px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-media .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-media .float-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 20px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-media .float-card i {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.about-media .float-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.about-media .float-card span {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 18px;
}

.about-text p {
    color: var(--color-muted);
    margin-bottom: 22px;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.94rem;
}

.about-list i {
    color: var(--color-primary);
}

/* ---------- Amenities ---------- */
.amenities {
    padding: 100px 0;
    background: var(--color-cream);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
}

.amenity-card:hover {
    transform: translateY(-6px);
}

.amenity-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(184, 134, 43, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--color-primary);
    font-size: 1.6rem;
}

.amenity-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.amenity-card p {
    color: var(--color-muted);
    font-size: 0.88rem;
}

/* ---------- Rooms / Gallery ---------- */
.rooms {
    padding: 100px 0;
    background: #fff;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.room-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--color-cream);
}

.room-media {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #fff;
}

.room-media.shade-1 { background: linear-gradient(135deg, #b8862b, #8a5f1c); }
.room-media.shade-2 { background: linear-gradient(135deg, #2a2621, #4a423a); }
.room-media.shade-3 { background: linear-gradient(135deg, #6f7a63, #454d3d); }

.room-body {
    padding: 22px 24px 26px;
}

.room-body h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.room-body p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.room-tags span {
    background: rgba(184, 134, 43, 0.12);
    color: var(--color-primary-dark);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
}

/* ---------- Reviews ---------- */
.reviews {
    padding: 100px 0;
    background: var(--color-dark);
    color: #fff;
}

.reviews .section-head p {
    color: #cfc9bc;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--color-dark-2);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.review-card .stars {
    color: #f2b84b;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.review-card p {
    color: #d8d3c7;
    font-size: 0.94rem;
    margin-bottom: 18px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.review-author strong {
    display: block;
    font-size: 0.92rem;
}

.review-author span {
    font-size: 0.78rem;
    color: #a39c8d;
}

/* ---------- Location / Contact ---------- */
.contact {
    padding: 100px 0;
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-grid-single {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.contact-info {
    background: var(--color-dark);
    color: #fff;
    border-radius: var(--radius);
    padding: 40px;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 8px;
}

.contact-info > p {
    color: #cfc9bc;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item .icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(184, 134, 43, 0.18);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 3px;
}

.contact-item span, .contact-item a {
    color: #cfc9bc;
    font-size: 0.92rem;
}

.map-frame {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-frame iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #14120f;
    color: #cfc9bc;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand {
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #a39c8d;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: #1c1a17;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: #7d766a;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links,
    .header-phone {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-dark);
        flex-direction: column;
        padding: 20px 24px;
        gap: 18px;
    }

    .amenity-grid,
    .room-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        gap: 24px;
    }
}
