* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #f6f7fb;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container { width: min(1120px, 92%); margin: auto; }
.site-header {
    background: #102542;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo span { display: block; font-weight: 800; font-size: 24px; letter-spacing: .5px; }
.logo small { color: #d6b56d; font-size: 12px; }
nav { display: flex; gap: 18px; align-items: center; }
nav a { color: #fff; font-weight: 600; padding: 8px 10px; border-radius: 8px; }
nav a:hover, nav a.active { background: #d6b56d; color: #102542; }
.menu-toggle { display: none; background: none; color: #fff; border: 0; font-size: 28px; }
.hero {
    min-height: 520px;
    background: linear-gradient(rgba(16,37,66,.68), rgba(16,37,66,.68)), url('../images/hotel-hero.svg') center/cover no-repeat;
    color: #fff;
    display: grid;
    align-items: center;
    text-align: center;
}
.hero h1 { font-size: clamp(36px, 6vw, 66px); margin: 0 0 14px; }
.hero p { font-size: 20px; margin-bottom: 26px; }
.btn {
    display: inline-block;
    background: #d6b56d;
    color: #102542;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 800;
    border: none;
    cursor: pointer;
}
.btn:hover { filter: brightness(.95); }
.section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title h2 { color: #102542; font-size: 34px; margin-bottom: 8px; }
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.card-body { padding: 22px; }
.card h3 { color: #102542; margin-top: 0; }
.room-image, .gallery-image {
    height: 210px;
    background: linear-gradient(135deg, #102542, #d6b56d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    font-weight: bold;
}
.price { color: #b18735; font-size: 22px; font-weight: 800; }
.features { padding-left: 18px; }
.form-box {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { font-weight: 700; display: block; margin-bottom: 6px; color: #102542; }
input, select, textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d8dce6;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 16px;
}
textarea { min-height: 130px; resize: vertical; }
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    background: #e7f7ec;
    color: #176b35;
    border: 1px solid #bce5c7;
}
.info-list { list-style: none; padding: 0; }
.info-list li { background: #fff; margin-bottom: 12px; padding: 16px; border-radius: 12px; }
.map iframe { width: 100%; height: 360px; border: 0; border-radius: 18px; }
.site-footer { background: #102542; color: #fff; padding: 42px 0 16px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 26px; }
.site-footer h3, .site-footer h4 { color: #d6b56d; }
.copyright { text-align: center; color: #c9d2e0; margin-top: 28px; font-size: 14px; }
@media (max-width: 800px) {
    .menu-toggle { display: block; }
    nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #102542; flex-direction: column; padding: 18px; }
    nav.show { display: flex; }
    .grid-3, .grid-2, .form-row, .footer-grid { grid-template-columns: 1fr; }
    .hero { min-height: 430px; }
}
