:root {
    --bg: #f6f0e7;
    --surface: #ffffff;
    --ink: #192026;
    --accent: #c95b2f;
    --accent-dark: #a64822;
    --secondary: #264653;
    --secondary-dark: #17323d;
    --muted: #5e6367;
    --line: #d8cec2;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

.hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(125deg, #18242b 0%, #305566 55%, #a25c3b 100%);
    background-size: cover;
    background-position: center;
}

.hero--image {
    background-color: #1a2328;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 16, 20, 0.24) 0%, rgba(11, 16, 20, 0.64) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 3.2rem 0;
}

.hero h1 {
    margin: 0.35rem 0;
    font-size: clamp(2rem, 6vw, 4rem);
}

.tag {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.slogan {
    margin-top: 0.45rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.hero__address {
    margin: 0.75rem 0 0;
}

.hero__actions {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section {
    padding: 3.8rem 0;
}

.section--alt {
    background: #eee5d9;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h2 {
    margin-top: 0;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
}

.lead {
    color: var(--muted);
    max-width: 900px;
}

.gallery-grid {
    margin-top: 1.3rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-image,
.gallery-placeholder {
    border: 1px solid var(--line);
    min-height: 220px;
    background: var(--surface);
}

.gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-placeholder {
    display: grid;
    place-items: center;
    color: var(--muted);
    background: repeating-linear-gradient(45deg, #dfd6cb, #dfd6cb 10px, #d4c9bd 10px, #d4c9bd 20px);
}

.room-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.room-card {
    border: 1px solid var(--line);
    background: var(--surface);
    display: flex;
    flex-direction: column;
}

.room-card__image,
.room-card__image-placeholder {
    width: 100%;
    min-height: 190px;
}

.room-card__image {
    height: 190px;
    object-fit: cover;
}

.room-card__image-placeholder {
    display: grid;
    place-items: center;
    background: repeating-linear-gradient(45deg, #dfd6cb, #dfd6cb 10px, #d4c9bd 10px, #d4c9bd 20px);
    color: #4d4f4d;
    font-size: 0.9rem;
}

.room-card__body {
    padding: 1rem;
}

.cta-panel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.6rem;
}

.btn {
    display: inline-block;
    border: 0;
    padding: 0.72rem 1.2rem;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-dark);
}

.btn--secondary {
    background: var(--secondary);
}

.btn--secondary:hover {
    background: var(--secondary-dark);
}

.booking-form {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.booking-form div {
    display: grid;
    gap: 0.35rem;
}

.booking-form .field-wide {
    grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid #c9b9a6;
    padding: 0.6rem;
    font: inherit;
    background: #fff;
}

.booking-form button {
    width: fit-content;
}

.contact-grid {
    display: grid;
    gap: 0.4rem;
}

.notice {
    border-left: 4px solid;
    padding: 0.75rem;
    margin: 1rem 0;
    background: #fff;
}

.notice--ok {
    border-color: #1d7b2e;
}

.notice--error {
    border-color: #af1f1f;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 1.5rem 0;
    text-align: center;
}

@media (max-width: 640px) {
    .section {
        padding: 2.8rem 0;
    }

    .hero {
        min-height: 56vh;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}
