:root {
    --black: #0b0b0d;
    --deep: #121218;
    --charcoal: #1a1a22;
    --gold: #c5a059;
    --gold-light: #e0c68a;
    --champagne: #f3e5c9;
    --bronze: #8c6b3f;
    --white: #f8f6f2;
    --muted: #9e9aa6;
    --line: rgba(197,160,89,.18);
    --shadow: 0 16px 45px rgba(0,0,0,.35);
    --font: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color .25s; }
a:hover { color: var(--champagne); }
ul { list-style: none; }

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

.section { padding: 92px 0; }
.section-title {
    font-family: var(--font);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 600;
    color: var(--champagne);
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.section-lead {
    color: var(--muted);
    max-width: 680px;
    font-size: 1.05rem;
    margin-bottom: 44px;
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(11,11,13,.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: background .3s, padding .3s;
    padding: 14px 0;
}
.header-scrolled { background: rgba(11,11,13,.96); padding: 10px 0; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 52px; width: auto; }
.logo-text {
    font-family: var(--font);
    font-size: 1.35rem;
    color: var(--champagne);
    letter-spacing: .04em;
    font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; gap: 26px; }
.nav-list a {
    color: var(--white);
    font-size: .9rem;
    font-weight: 500;
    position: relative;
}
.nav-list a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-list a:hover::after { width: 100%; }

.header-contact { display: flex; align-items: center; gap: 18px; }
.header-phone {
    font-family: var(--font);
    color: var(--gold-light);
    font-size: .95rem;
}
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 2px;
    font-size: .82rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; border: 1px solid var(--gold);
    color: var(--gold); background: transparent;
    cursor: pointer; transition: all .3s;
}
.btn:hover { background: var(--gold); color: var(--black); }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 102; }
.burger span { width: 26px; height: 2px; background: var(--champagne); transition: .3s; }

.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 78%; max-width: 320px; height: 100vh;
    background: var(--deep);
    padding: 90px 30px 30px;
    z-index: 99;
    transition: right .4s ease;
    border-left: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 24px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--white); font-size: 1.1rem; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--champagne); font-size: 2rem; cursor: pointer; }

.overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.6);
    z-index: 98; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.overlay.open { opacity: 1; pointer-events: all; }

/* Hero */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 140px 0 80px;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -1;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,11,13,.82) 0%, rgba(11,11,13,.55) 55%, rgba(11,11,13,.78) 100%);
    z-index: -1;
}
.hero-content {
    text-align: center; max-width: 840px; margin: 0 auto;
    opacity: 0; transform: translateY(40px);
    animation: fadeUp 1s ease .3s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-kicker {
    color: var(--gold); letter-spacing: .22em; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 {
    font-family: var(--font);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    color: var(--champagne);
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 600;
}
.hero p {
    color: var(--white); font-size: 1.15rem; max-width: 640px; margin: 0 auto 30px;
    opacity: .92;
}
.hero-disclaimer {
    display: inline-block;
    background: rgba(197,160,89,.12);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 10px 22px;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Booking form */
.booking-bar {
    background: var(--deep);
    border: 1px solid var(--line);
    padding: 28px;
    margin-top: -70px;
    position: relative;
    z-index: 5;
}
.booking-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
    background: var(--charcoal);
    border: 1px solid var(--line);
    color: var(--white);
    padding: 12px 14px;
    font-family: var(--sans); font-size: .95rem;
    border-radius: 0;
    outline: none;
    transition: border .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group .error-msg { color: #d66; font-size: .78rem; min-height: 1em; }
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #d66; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
    background: var(--deep);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { overflow: hidden; aspect-ratio: 4/3; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; }
.card h3 { font-family: var(--font); color: var(--champagne); font-size: 1.5rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }

/* Rooms */
.room-meta { display: flex; gap: 14px; color: var(--gold); font-size: .8rem; margin-bottom: 14px; }
.room-meta span { display: flex; align-items: center; gap: 5px; }
.price { font-family: var(--font); color: var(--gold-light); font-size: 1.6rem; }
.price span { color: var(--muted); font-size: .85rem; }

/* Services */
.service-icon { width: 52px; height: 52px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--gold); }

/* Testimonials */
.testimonial { background: var(--deep); border: 1px solid var(--line); padding: 32px; position: relative; }
.testimonial::before { content: '"'; font-family: var(--font); font-size: 4.5rem; color: var(--gold); opacity: .3; position: absolute; top: 12px; left: 22px; line-height: 1; }
.testimonial p { position: relative; z-index: 1; font-style: italic; margin-bottom: 20px; }
.testimonial .author { color: var(--gold-light); font-weight: 600; }

/* CTA */
.cta { background: linear-gradient(90deg, var(--charcoal), var(--deep)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; }
.cta .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }

/* Footer */
.footer { background: var(--deep); padding: 72px 0 24px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr 1.1fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 46px; }
.footer-col h4 { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: .92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--champagne); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: .3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { fill: var(--black); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: .8rem; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--deep); border-top: 1px solid var(--gold);
    padding: 18px 0; z-index: 110;
    transform: translateY(100%);
    transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cookie-banner p { font-size: .9rem; color: var(--white); }
.cookie-banner .cookie-actions { display: flex; gap: 12px; }

/* Popup */
.popup {
    position: fixed; inset: 0; z-index: 120;
    display: none; align-items: center; justify-content: center;
    background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
}
.popup.show { display: flex; }
.popup-box {
    background: var(--deep); border: 1px solid var(--gold);
    padding: 42px; max-width: 420px; text-align: center;
    box-shadow: var(--shadow); animation: pop .35s ease;
}
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-box h3 { font-family: var(--font); color: var(--champagne); font-size: 1.7rem; margin-bottom: 12px; }
.popup-box p { color: var(--muted); margin-bottom: 22px; }

/* Fade-in on scroll */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; }
.disclaimer-box {
    background: rgba(197,160,89,.1); border-left: 3px solid var(--gold);
    padding: 22px 26px; margin: 28px 0; color: var(--champagne); font-size: .92rem;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info p { margin-bottom: 10px; color: var(--muted); }
.contact-info strong { color: var(--gold); display: inline-block; min-width: 90px; }
.map-link { display: inline-block; margin-top: 8px; font-weight: 600; }

/* Legal content */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font); color: var(--champagne); font-size: 1.6rem; margin: 36px 0 14px; }
.legal-content p { color: var(--muted); margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; color: var(--muted); }
.legal-content li { margin-bottom: 8px; }

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta .container { flex-direction: column; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-list, .header-phone { display: none; }
    .burger { display: flex; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .booking-form { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .cookie-banner .container { flex-direction: column; text-align: center; }
    .section { padding: 62px 0; }
    h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .container { width: 94%; }
    .btn { padding: 11px 22px; font-size: .75rem; }
    .card-body { padding: 20px; }
}

/* Print */
@media print { .header, .footer, .cookie-banner, .popup { display: none; } body { color: #000; background: #fff; } }
