:root {
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --warm-gray: #F0EDE8;
    --gold: #C9A96E;
    --gold-light: #E8D5A8;
    --green: #5A7A5E;
    --dark: #2A2A2A;
    --medium: #5A5A5A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s;
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.nav-brand span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--medium);
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
}

#home {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    animation: hz 12s ease-out forwards;
}

@keyframes hz {
    from {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.35), rgba(90, 122, 94, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 5%;
    max-width: 800px;
    animation: fu 1.2s ease both;
}

@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-tag {
    display: inline-block;
    font-size: 0.73rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(201, 169, 110, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-content h1 strong {
    font-weight: 700;
    display: block;
    color: var(--gold-light);
}

.hero-content p {
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 30px;
    border-radius: 40px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold {
    background: var(--gold);
    color: white;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.btn-gold:hover {
    background: #B8924A;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    transform: translateY(-2px);
}

section {
    padding: 90px 5%;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--medium);
    font-size: 0.97rem;
    font-weight: 300;
    max-width: 550px;
    line-height: 1.75;
}

.divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1.2rem 0;
}

#video {
    background: var(--dark);
    padding: 80px 5%;
    text-align: center;
}

#video .section-title {
    color: white;
}

#video .section-sub {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

#video .section-label {
    color: var(--gold-light);
}

#video .divider {
    margin: 1.2rem auto;
}

.video-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.video-wrapper video {
    width: 100%;
    display: block;
    background: #000;
}

#about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.about-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.about-images img:first-child {
    grid-column: 1/-1;
    height: 260px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.about-badge .num {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .txt {
    font-size: 0.58rem;
    text-align: center;
    letter-spacing: 0.04em;
}

#services {
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-header .section-sub {
    margin: 0 auto;
}

.services-header .divider {
    margin: 1.2rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--warm-gray);
    border-radius: 14px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    
}

.service-card p {
    color: var(--medium);
    font-size: 0.88rem;
    line-height: 1.6;
}

#rooms {
    background: var(--cream);
}

.rooms-header {
    margin-bottom: 3rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.room-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-info p {
    color: var(--medium);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.room-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-tag {
    background: linear-gradient(135deg, var(--gold), #B8924A);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room-btn {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

#gallery {
    background: var(--dark);
    padding: 90px 5%;
}

#gallery .section-title {
    color: white;
}

#gallery .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

#gallery .section-label {
    color: var(--gold-light);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header .divider {
    margin: 1.2rem auto;
}

.gallery-header .section-sub {
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
}

.lightbox-close:hover {
    opacity: 1;
}

#location {
    background: var(--cream);
    padding: 0;
}

.map-header {
    text-align: center;
    padding: 70px 5% 2rem;
}

.map-header .divider {
    margin: 1rem auto;
}

.map-header .section-sub {
    margin: 0 auto;
}

.map-embed {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

#contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), #B8924A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.contact-item-text span,
.contact-item-text a {
    color: var(--medium);
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    line-height: 1.6;
}

.contact-item-text a:hover {
    color: var(--gold);
}

.call-btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: white;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(90, 122, 94, 0.35);
}

.call-btn-lg:hover {
    background: #4A6A4E;
    transform: translateY(-2px);
}

.contact-form {
    background: var(--warm-gray);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--medium);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(201, 169, 110, 0.2);
    border-radius: 8px;
    background: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    height: 110px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 40px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.05em;
}

.form-submit:hover {
    background: #B8924A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

footer {
    background: #1A1A1A;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.footer-brand span {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-col h4 {
    color: white;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col p,
.footer-col a {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom span {
    color: var(--gold);
}

@media(max-width:768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem 5%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 1.2rem;
    }

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 2;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 5%;
    }
}