:root {
    --gold: #c4a35a;
    --gold-soft: #e8d7a8;
    --gold-deep: #9a7843;
    --black: #2c241c;
    --ink: #2c241c;
    --brown: #5c4a38;
    --cream: #fbf8f2;
    --ivory: #fffcf7;
    --white: #ffffff;
    --muted: #7a6e60;
    --line: #eadfcd;
    --shadow: 0 18px 40px rgba(90, 70, 40, 0.08);
    --radius: 18px;
    --header: 112px;
    --panel: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background: var(--ivory);
    font-weight: 300;
    line-height: 1.7;
}
img { max-width: 100%; display: block; background: #f0eadf; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, .font-serif {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.15;
}
.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1440px, calc(100% - 32px)); margin: 0 auto; }

.btn, button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    padding: 14px 28px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
    font-family: inherit;
    font-weight: 500;
    transition: 0.25s ease;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-dark { background: var(--black); color: var(--cream); }
.btn-dark:hover { background: var(--brown); }
.btn-line { background: transparent; color: var(--ink); border: 1px solid var(--gold); }
.btn-line-dark { background: transparent; color: var(--ink); border: 1px solid var(--gold); }
.btn-full { width: 100%; }

.eyebrow {
    color: var(--gold);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 11px;
    margin: 0 0 10px;
}
.section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(36px, 5vw, 56px); margin: 0 0 12px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,252,247,0.96); backdrop-filter: blur(16px); color: var(--ink); border-bottom: 1px solid var(--line); }
.header-top { border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: 0.12em; }
.header-top-inner, .header-main-inner, .footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.header-top-inner { min-height: 38px; color: var(--gold-deep); }
.header-top-links { display: flex; gap: 18px; }
.header-main-inner { min-height: 74px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    width: 42px; height: 42px; border: 1px solid var(--gold);
    display: grid; place-items: center;
    font-family: "Cormorant Garamond", serif; color: var(--gold-deep); font-size: 16px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 600; }
.logo-text em { font-style: normal; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 13px; letter-spacing: 0.08em; }
.site-nav a { opacity: 0.82; }
.site-nav a:hover, .site-nav a.active { opacity: 1; color: var(--gold-deep); }
.nav-cta { background: var(--gold); color: #fff !important; padding: 10px 16px; opacity: 1 !important; }
.nav-toggle { display: none; background: none; border: 0; width: 36px; padding: 0; }
.nav-toggle span { display: block; height: 1px; background: var(--ink); margin: 7px 0; }

.flash { width: min(1240px, calc(100% - 40px)); margin: 16px auto 0; padding: 14px 18px; border-radius: 8px; }
.flash-success { background: #e8f5e9; color: #1b5e20; }
.flash-error { background: #fdecea; color: #8a1c12; }

.hero {
    position: relative; min-height: 92vh; color: #fff;
    display: grid; align-items: end;
    background: #111 center/cover no-repeat;
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,9,0.25), rgba(12,11,9,0.72)); }
.hero-content { position: relative; z-index: 1; padding: 0 0 80px; }
.hero h1 { font-size: clamp(48px, 8vw, 96px); margin: 0 0 12px; max-width: 900px; }
.hero p.lead { max-width: 560px; font-size: 18px; color: #efe6d4; }

.search-panel {
    position: relative; z-index: 2;
    margin: -70px auto 0; width: min(1240px, calc(100% - 40px));
    background: #fff; padding: 28px; box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
}
.search-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr) auto;
    gap: 12px; align-items: end;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
    border: 1px solid #e6dcc8; background: var(--ivory); padding: 12px 12px;
    font: inherit; color: inherit; width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }

.stats-bar {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 28px;
}
.stat-card {
    background: #fff; color: var(--ink); padding: 22px 18px; text-align: center;
    border-top: 3px solid var(--gold); box-shadow: var(--shadow);
}
.stat-card strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 32px; color: var(--gold-deep); }
.stat-card span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.card-grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.hotel-card, .room-card, .sweet-card, .facility-card, .offer-card, .review-card {
    background: #fff; overflow: hidden; box-shadow: 0 10px 30px rgba(12,11,9,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hotel-card:hover, .room-card:hover, .sweet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.media { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #efe8d9; }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hotel-card:hover .media img, .room-card:hover .media img { transform: scale(1.06); }
.media-tag {
    position: absolute; top: 16px; left: 16px;
    background: rgba(12,11,9,0.78); color: var(--gold); padding: 6px 10px;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.price-tag {
    position: absolute; right: 16px; bottom: 16px; background: var(--gold); color: var(--black);
    padding: 8px 12px; font-size: 13px; font-weight: 500;
}
.card-body { padding: 22px; }
.card-body h3 { margin: 0 0 6px; font-size: 28px; }
.meta { color: var(--muted); font-size: 13px; margin: 0 0 10px; }
.stars { color: var(--gold); letter-spacing: 2px; }

.dest-tile {
    position: relative; min-height: 280px; color: #fff; overflow: hidden;
    display: flex; align-items: flex-end; padding: 24px;
}
.dest-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dest-tile span, .dest-tile strong { position: relative; z-index: 1; }
.dest-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); }
.dest-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 16px; }
.dest-tile:first-child { grid-row: 1 / 3; min-height: 100%; }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 560px; }
.split img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { padding: 72px 56px; background: #fff8ee; color: var(--ink); display: flex; flex-direction: column; justify-content: center; }
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
.split.reverse img { order: 2; }

.page-hero { min-height: 46vh; display: grid; align-items: end; color: #fff; position: relative; background: #111 center/cover no-repeat; padding: 80px 0 48px; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,9,.2), rgba(12,11,9,.72)); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); margin: 0; }

.filters {
    background: #fff; padding: 22px; margin-top: -40px; position: relative; z-index: 2;
    box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.check-row { display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 8px 0; }
.check-row label { display: flex; gap: 8px; align-items: center; font-size: 13px; }

.layout-sidebar { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
.sidebar { background: #fff; padding: 24px; height: fit-content; position: sticky; top: 128px; }
.sidebar h3 { margin-top: 0; }

.gallery-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-strip .main { grid-row: 1 / 3; min-height: 460px; }
.gallery-strip a { overflow: hidden; display: block; min-height: 225px; position: relative; background: #efe8d9; }

.detail-grid { display: grid; grid-template-columns: 1.5fr 0.8fr; gap: 32px; margin-top: 36px; }
.book-box { background: #fff; color: var(--ink); padding: 28px; position: sticky; top: 128px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.book-box h3 { margin-top: 0; color: var(--gold-deep); }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; padding: 0; list-style: none; }
.amenity-list li::before { content: "◆ "; color: var(--gold); font-size: 10px; }

.badge { display: inline-block; padding: 4px 10px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.badge-available { background: #e8f5e9; color: #1b5e20; }
.badge-booked { background: #fdecea; color: #8a1c12; }
.badge-reserved { background: #fff4e5; color: #9a5b00; }
.badge-cleaning { background: #e3f2fd; color: #0d47a1; }
.badge-maintenance { background: #eceff1; color: #37474f; }
.badge-pending { background: #fff8e1; color: #f57f17; }
.badge-confirmed, .badge-checked_in, .badge-completed, .badge-checked_out { background: #e8f5e9; color: #1b5e20; }
.badge-cancelled { background: #fce4ec; color: #880e4f; }

.table { width: 100%; border-collapse: collapse; background: #fff; }
.table th, .table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid #eee4d4; font-size: 14px; }
.table th { letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; color: var(--muted); }

.form-card { background: #fff; padding: 36px; max-width: 520px; margin: 48px auto; box-shadow: var(--shadow); }
.form-card.wide { max-width: 920px; }
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--header)); }
.auth-visual { background: #111 center/cover no-repeat; position: relative; }
.auth-visual::after { content: ""; position: absolute; inset: 0; background: rgba(12,11,9,.4); }
.auth-panel { display: grid; place-items: center; padding: 40px 24px; }

.confirm-sheet { background: #fff; padding: 48px; max-width: 780px; margin: 48px auto; border-top: 4px solid var(--gold); }
.confirm-sheet dl { display: grid; grid-template-columns: 180px 1fr; gap: 8px 16px; }
.confirm-sheet dt { color: var(--muted); }

.review-card { padding: 28px; }
.quote { font-family: "Cormorant Garamond", serif; font-size: 22px; font-style: italic; margin: 0 0 16px; }

.faq details { background: #fff; padding: 18px 22px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 500; }

.pagination { display: flex; gap: 8px; justify-content: center; margin: 36px 0; flex-wrap: wrap; }
.pagination a { min-width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); }
.pagination a.active { background: var(--gold); color: #fff; }

.site-footer { background: #f4efe6; color: var(--ink); margin-top: 40px; border-top: 1px solid var(--line); }
.footer-cta { background: #fff; border-bottom: 1px solid var(--line); }
.footer-cta-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 48px 0; }
.footer-cta h2 { color: var(--ink); margin: 0; font-size: 36px; }
.newsletter-form { display: flex; gap: 8px; min-width: 360px; }
.newsletter-form input { flex: 1; background: #fff; border: 1px solid var(--gold); color: var(--ink); padding: 12px 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding: 56px 0; }
.footer-grid a { display: block; margin: 8px 0; color: var(--brown); }
.footer-grid h4 { color: var(--gold-deep); letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; font-family: Outfit, sans-serif; }
.footer-blurb { color: var(--muted); max-width: 360px; }
.footer-bottom { border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }
.footer-bottom-inner { min-height: 56px; }

.masonry { columns: 3; column-gap: 16px; }
.masonry a { break-inside: avoid; display: block; margin-bottom: 16px; }
.masonry img { width: 100%; }

.status-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.dot-available { background: #2e7d32; }
.dot-booked { background: #c62828; }
.dot-reserved { background: #ef6c00; }
.dot-cleaning { background: #1565c0; }
.dot-maintenance { background: #546e7a; }

.room-status-board { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.room-chip { background: #fff; padding: 14px; border-left: 4px solid var(--gold); }
.room-chip.booked { border-color: #c62828; }
.room-chip.reserved { border-color: #ef6c00; }
.room-chip.cleaning { border-color: #1565c0; }
.room-chip.maintenance { border-color: #546e7a; }

.page-home .section-pools { background: #fff8ee; color: var(--ink); }
.page-sweets { background: #faf6ef; }
.page-sweets .sweet-card .media { aspect-ratio: 1; }
.text-card { border-top: 3px solid var(--gold); min-height: 180px; background: #fff; }
.page-pool .split-copy { background: #eef6f7; color: var(--ink); }
.page-facilities .facility-card .media { aspect-ratio: 16/10; }
.page-about .timeline { border-left: 1px solid var(--gold); padding-left: 24px; }
.page-about .timeline h3 { margin-bottom: 4px; }

.errors { background: #fdecea; color: #8a1c12; padding: 12px 16px; margin-bottom: 16px; }
.errors li { margin: 4px 0; }

@media (max-width: 1024px) {
    .search-grid, .stats-bar, .grid-4, .filters, .dest-grid, .gallery-strip, .detail-grid, .layout-sidebar, .auth-layout, .footer-grid, .split, .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .dest-grid { grid-template-rows: none; }
    .gallery-strip .main, .split img, .split-copy { grid-row: auto; order: 0; min-height: 280px; }
    .auth-visual { display: none; }
    .masonry { columns: 2; }
}
@media (max-width: 760px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none; position: absolute; left: 0; right: 0; top: 112px;
        background: #fff; flex-direction: column; padding: 20px; gap: 14px; color: var(--ink);
    }
    .site-nav.open { display: flex; }
    .header-top { display: none; }
    .search-grid, .stats-bar, .grid-4, .grid-3, .grid-2, .filters, .footer-cta-inner, .footer-grid, .confirm-sheet dl, .amenity-list {
        grid-template-columns: 1fr;
    }
    .newsletter-form { min-width: 0; width: 100%; flex-direction: column; }
    .masonry { columns: 1; }
    .hero { min-height: 78vh; }
}
