/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #2c1a0a;
    background: #fdf8f3;
}

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

ul {
    list-style: none;
}

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

/* ===== HEADER ===== */
header {
    background: #3d1f00;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #f5d88a;
    line-height: 1.2;
}

.logo-text small {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #c9a76a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-phone {
    text-align: center;
}

.header-phone .phone-label {
    font-size: 11px;
    color: #c9a76a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.header-phone a {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #f5d88a;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.header-phone a:hover {
    color: #fff;
}

.header-phone .phone-addr {
    font-size: 12px;
    color: #c9a76a;
    margin-top: 3px;
}

.header-amenities {
    text-align: right;
    font-size: 13px;
    color: #c9a76a;
    line-height: 1.7;
}

nav {
    background: #5c2f00;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li a {
    display: block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #e8c97a;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #fff;
    border-bottom-color: #f5d88a;
    background: rgba(255, 255, 255, 0.05);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #2c1a00;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 60%);
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-badge {
    background: rgba(61, 31, 0, 0.85);
    border: 2px solid #f5d88a;
    border-radius: 8px;
    padding: 30px 40px;
    max-width: 380px;
    backdrop-filter: blur(4px);
}

.hero-badge h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #f5d88a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-badge ul {
    list-style: none;
}

.hero-badge ul li {
    color: #e0cba8;
    font-size: 14px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge ul li::before {
    content: '✓';
    color: #f5d88a;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-badge .work-hours {
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #f5d88a;
    border-top: 1px solid rgba(245, 216, 138, 0.3);
    padding-top: 12px;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 60px 40px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #3d1f00;
    margin-bottom: 8px;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #f5d88a;
    margin-top: 10px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: #7a5c3a;
    margin-top: 6px;
    margin-bottom: 30px;
}

/* ===== ABOUT ===== */
.about {
    background: #fff;
}

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

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a3020;
    margin-bottom: 16px;
}

.about-text p strong {
    color: #3d1f00;
}

.about-text .highlight {
    background: #fdf0d3;
    border-left: 4px solid #f5d88a;
    padding: 14px 18px;
    border-radius: 0 6px 6px 0;
    font-size: 15px;
    color: #4a3020;
    margin-top: 20px;
}

.about-text .highlight strong {
    color: #8b4400;
}

.amenities-list {
    background: #fdf8f3;
    border: 1px solid #e8d5b0;
    border-radius: 10px;
    padding: 28px;
}

.amenities-list h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #3d1f00;
    margin-bottom: 18px;
}

.amenities-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #4a3020;
    padding: 8px 0;
    border-bottom: 1px solid #ede0c8;
}

.amenities-list ul li:last-child {
    border-bottom: none;
}

.amenities-list ul li .icon {
    font-size: 20px;
}

/* ===== PRICES ===== */
.prices {
    background: #fdf8f3;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.price-card {
    background: #fff;
    border: 1px solid #e8d5b0;
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(92, 47, 0, 0.12);
}

.price-card .price-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.price-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #5c2f00;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card .price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #3d1f00;
}

.price-card .price-unit {
    font-size: 13px;
    color: #8b7355;
    margin-top: 4px;
}

.price-table-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #3d1f00;
    margin-bottom: 14px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

thead {
    background: #5c2f00;
}

thead th {
    padding: 14px 20px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #f5d88a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid #f0e6d3;
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:nth-child(even) {
    background: #fdf8f3;
}

tbody td {
    padding: 12px 20px;
    font-size: 15px;
    color: #4a3020;
}

tbody td:first-child {
    font-weight: 600;
}

.price-notes {
    background: #fff;
    border: 1px solid #e8d5b0;
    border-radius: 10px;
    padding: 24px 28px;
}

.price-notes p {
    font-size: 15px;
    color: #4a3020;
    padding: 7px 0;
    border-bottom: 1px solid #f0e6d3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-notes p:last-child {
    border-bottom: none;
}

.price-notes p strong {
    color: #3d1f00;
}

.price-notes .price-note-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #8b4400;
}

/* ===== GALLERY ===== */
.gallery {
    background: #fff;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #e8d5b0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 31, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5d88a;
    font-size: 36px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 6px;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 40px;
    color: #f5d88a;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-nav {
    display: flex;
    gap: 24px;
    margin-top: 18px;
}

.lightbox-nav button {
    background: rgba(245, 216, 138, 0.15);
    border: 2px solid #f5d88a;
    color: #f5d88a;
    font-size: 24px;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-nav button:hover {
    background: rgba(245, 216, 138, 0.3);
}

/* ===== CTA ===== */
.cta {
    background: #5c2f00;
    text-align: center;
    padding: 60px 40px;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #f5d88a;
    margin-bottom: 12px;
}

.cta p {
    font-size: 17px;
    color: #c9a76a;
    margin-bottom: 30px;
}

.btn-phone {
    display: inline-block;
    padding: 16px 48px;
    background: #f5d88a;
    color: #3d1f00;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.15s;
}

.btn-phone:hover {
    background: #fce9a8;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: #2a1200;
    color: #8b7355;
    padding: 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #f5d88a;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #8b7355;
}

.footer-col a {
    color: #c9a76a;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #f5d88a;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #c9a76a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-col ul li {
    font-size: 14px;
    padding: 5px 0;
}

.footer-col ul li a {
    color: #8b7355;
}

.footer-col ul li a:hover {
    color: #f5d88a;
}

.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #3d2200;
    font-size: 13px;
    color: #6b5340;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .header-top {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .header-amenities {
        text-align: center;
    }

    .hero-overlay {
        padding: 20px;
        align-items: flex-end;
    }

    .hero-badge {
        max-width: 100%;
    }

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

    .price-cards {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .section {
        padding: 40px 20px;
    }

    .header-top {
        padding: 16px 20px;
    }

    .hero {
        height: 320px;
    }

    nav ul {
        flex-wrap: wrap;
    }

    nav ul li a {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-badge h1 {
        font-size: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    footer {
        padding: 30px 20px;
    }

    .footer-inner {
        gap: 30px;
    }

    .gallery {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}