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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: #FEFCF8;
    color: #1A1614;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    line-height: 1.75;
}

/* =================== FLOATING BOOK BUTTON =================== */
#float-book {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FF5A5F;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 90, 95, 0.4);
    transform: translateY(80px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.2s;
    letter-spacing: 0.03em;
}

#float-book.visible {
    transform: translateY(0);
    opacity: 1;
}

#float-book:hover {
    box-shadow: 0 6px 28px rgba(255, 90, 95, 0.55);
    background: #e04e53;
}

#float-book svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* =================== HEADER =================== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 800;
    padding: 16px 0;
    transition: padding 0.3s, background 0.3s, box-shadow 0.3s;
    background: transparent;
}

#site-header.scrolled {
    padding: 10px 0;
    background: rgba(254, 252, 248, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    transition: color 0.2s;
}

#site-header.scrolled .nav-logo {
    color: #1A1614;
    text-shadow: none;
}

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

.nav-links a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    transition: color 0.2s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.nav-links a:hover { color: #fff; }

#site-header.scrolled .nav-links a {
    color: #5A5248;
    text-shadow: none;
}

#site-header.scrolled .nav-links a:hover { color: #8B6A52; }

.nav-links .nav-cta {
    background: #fff;
    color: #1A1614 !important;
    padding: 8px 20px;
    border-radius: 50px;
    text-shadow: none !important;
    transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover { background: #f0ebe3; }

#site-header.scrolled .nav-links .nav-cta {
    background: #8B6A52;
    color: #fff !important;
}

#site-header.scrolled .nav-links .nav-cta:hover { background: #6E5340; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

#site-header.scrolled .nav-toggle span { background: #1A1614; }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================== HERO =================== */
#hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    z-index: 0;
}

.hero-bg.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.28) 0%,
        rgba(0,0,0,0.45) 55%,
        rgba(0,0,0,0.62) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 24px;
    width: 100%;
}

.hero-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.75;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

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

.btn-primary {
    background: #8B6A52;
    color: #fff;
    box-shadow: 0 4px 16px rgba(139,106,82,0.35);
}

.btn-primary:hover {
    background: #6E5340;
    box-shadow: 0 6px 22px rgba(139,106,82,0.45);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.85);
}

.btn-book {
    background: #FF5A5F;
    color: #fff;
    padding: 16px 40px;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(255,90,95,0.3);
}

.btn-book:hover {
    background: #e04e53;
    box-shadow: 0 6px 28px rgba(255,90,95,0.45);
}

/* =================== INFO STRIP =================== */
#info-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #F0EAE0;
    border-bottom: 1px solid rgba(139,106,82,0.15);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 32px;
    gap: 4px;
    position: relative;
    text-align: center;
}

.info-item + .info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(139,106,82,0.2);
}

.info-item svg {
    width: 22px;
    height: 22px;
    color: #8B6A52;
    margin-bottom: 2px;
}

.info-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B6A52;
    line-height: 1;
}

.info-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9A9088;
    font-weight: 600;
}

/* =================== INTRO =================== */
#intro {
    padding: 88px 0;
    background: #FEFCF8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.intro-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #1A1614;
    margin-bottom: 20px;
    line-height: 1.15;
}

.intro-text p {
    color: #5A5248;
    font-size: 1.02rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.intro-text strong { color: #8B6A52; font-weight: 700; }

.intro-text .btn { margin-top: 10px; }

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(139,106,82,0.1);
    color: #5A5248;
    font-size: 0.95rem;
    line-height: 1.55;
}

.detail-row:last-child { border-bottom: none; }

.detail-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.detail-icon svg {
    width: 18px;
    height: 18px;
    color: #8B6A52;
}

/* =================== SECTION HEADERS =================== */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: #1A1614;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-sub {
    text-align: center;
    color: #9A9088;
    font-size: 1rem;
    margin-bottom: 48px;
}

/* =================== GALLERY =================== */
#gallery {
    padding: 88px 0 0;
    background: #F0EAE0;
}

#gallery .container {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 4px;
    width: 100%;
}

.gal-item {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,22,20,0);
    transition: background 0.3s;
}

.gal-item:hover::after {
    background: rgba(26,22,20,0.15);
}

.gal-span2 { grid-column: span 2; }

.gal-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(transparent, rgba(26,22,20,0.78));
    color: #fff;
    padding: 36px 18px 14px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 700;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gal-item:hover .gal-label {
    transform: translateY(0);
}

/* =================== AMENITIES =================== */
#amenities {
    padding: 88px 0;
    background: #FEFCF8;
}

.amenity-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.amenity-group h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #1A1614;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(139,106,82,0.18);
    font-weight: 700;
}

.amenity-group h3 svg {
    width: 16px;
    height: 16px;
    color: #8B6A52;
    flex-shrink: 0;
}

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

.chip {
    display: inline-block;
    background: #F0EAE0;
    color: #5A5248;
    border: 1px solid rgba(139,106,82,0.15);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.82rem;
    line-height: 1.4;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.chip:hover {
    background: #e8ddd3;
    color: #1A1614;
}

/* =================== LOCATION =================== */
#location {
    padding: 88px 0;
    background: #F0EAE0;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.loc-card {
    background: #FEFCF8;
    border-radius: 8px;
    border: 1px solid rgba(139,106,82,0.15);
    padding: 28px 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.loc-card:hover {
    box-shadow: 0 8px 24px rgba(139,106,82,0.12);
    transform: translateY(-2px);
}

.loc-dist {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #8B6A52;
    margin-bottom: 6px;
    line-height: 1.1;
}

.loc-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9A9088;
    font-weight: 600;
}

/* =================== BOOK CTA =================== */
#book {
    padding: 96px 0;
    background: #1A1614;
    text-align: center;
}

.book-inner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #FEFCF8;
    margin-bottom: 14px;
}

.book-inner p {
    color: rgba(254,252,248,0.65);
    font-size: 0.98rem;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

/* =================== FOOTER =================== */
#site-footer {
    background: #120F0D;
    text-align: center;
    padding: 44px 24px;
    border-top: 1px solid rgba(139,106,82,0.18);
}

.footer-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: #FEFCF8;
    margin-bottom: 6px;
}

.footer-place {
    color: #6A625A;
    font-size: 0.82rem;
    margin-bottom: 3px;
}

.footer-mgr {
    color: #4A4440;
    font-size: 0.75rem;
    margin-bottom: 14px;
}

.footer-copy {
    color: #2E2A27;
    font-size: 0.7rem;
}

/* =================== RESPONSIVE =================== */
@media (min-width: 640px) {
    .amenity-groups { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
    .intro-grid { grid-template-columns: 1.15fr 1fr; }
    .amenity-groups { grid-template-columns: repeat(3, 1fr); }
    .loc-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
    }
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0; right: 0;
        background: rgba(254,252,248,0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 16px;
        gap: 0;
        border-bottom: 1px solid rgba(139,106,82,0.12);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .nav-links.open { display: flex; }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: block;
        padding: 13px 24px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 14px;
        color: #333 !important;
        text-shadow: none !important;
    }

    .nav-links .nav-cta {
        margin: 12px 24px 0;
        text-align: center;
        border-radius: 50px;
        padding: 12px 24px;
        border-bottom: none;
        background: #8B6A52 !important;
        color: #fff !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gal-span2 { grid-column: span 2; }

    .gal-label { transform: translateY(0) !important; }

    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }

    .info-item { padding: 16px 18px; }
    .info-item + .info-item::before { display: none; }

    #float-book { bottom: 16px; right: 16px; padding: 10px 18px; font-size: 12px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .gal-span2 { grid-column: span 1; }
}
