:root {
    --ink: #11100f;
    --graphite: #1c1b19;
    --gold: #c89b52;
    --gold-light: #e2c17b;
    --cream: #f4efe6;
    --muted: #b8b0a4;
    --line: rgba(226, 193, 123, .24);
    --white: #fffaf2;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Arial, Helvetica, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    line-height: 1.65
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(1160px, calc(100% - 48px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(17, 16, 15, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px)
}

.header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 1.15rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.brand__mark {
    width: 128px;
    height: 128px;
    object-fit: contain
}

.nav__list {
    display: flex;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .78rem;
    letter-spacing: .13em;
    text-transform: uppercase
}

.nav__link {
    color: var(--muted);
    transition: color .2s
}

.nav__link:hover,
.nav__link--active {
    color: var(--gold-light)
}

.header__contact {
    display: none;
    color: var(--muted);
    font-size: .8rem
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--cream);
    padding: 8px
}

.menu-toggle__line {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    margin: 5px
}

.hero {
    min-height: 640px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(17, 16, 15, .96), rgba(17, 16, 15, .62), rgba(17, 16, 15, .88)), url('/images/resort-facade.jpg') center/cover
}

.hero--inner {
    min-height: 390px;
    background: linear-gradient(90deg, rgba(17, 16, 15, .94), rgba(17, 16, 15, .6)), url('/images/hotel-lobby.jpg') center/cover
}

.hero__content {
    max-width: 760px;
    padding: 90px 0
}

.eyebrow {
    color: var(--gold-light);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: bold
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    font-weight: 400;
    line-height: 1.03;
    margin: 18px 0
}

.hero__subtitle {
    max-width: 590px;
    color: var(--muted);
    font-size: 1.1rem
}

.offline-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gold);
    padding: 10px 16px;
    color: var(--gold-light);
    font-size: .74rem;
    letter-spacing: .11em;
    font-weight: bold
}

.offline-badge__icon {
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(200, 155, 82, .16)
}

.button {
    display: inline-block;
    margin-top: 24px;
    padding: 13px 25px;
    background: var(--gold);
    color: var(--ink);
    border: 1px solid var(--gold);
    font-weight: bold;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: .75rem;
    transition: .2s
}

.button:hover {
    background: transparent;
    color: var(--gold-light)
}

.button--outline {
    background: transparent;
    color: var(--gold-light)
}

.section {
    padding: 90px 0
}

.section--cream {
    background: var(--cream);
    color: var(--ink)
}

.section__heading {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin: 8px 0 20px
}

.section__intro {
    max-width: 700px;
    color: var(--muted)
}

.section--cream .section__intro {
    color: #665f55
}

.grid {
    display: grid;
    gap: 28px
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr)
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr)
}

.about__copy {
    max-width: 760px
}

.card {
    border: 1px solid var(--line);
    background: var(--graphite);
    padding: 26px
}

.section--cream .card {
    background: #fffaf2;
    border-color: #ddd1bd
}

.card__image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: #2b2925;
    margin: -26px -26px 24px;
    width: calc(100% + 52px)
}

.card h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
    margin: 0 0 8px
}

.card p {
    color: var(--muted);
    margin: 0
}

.section--cream .card p {
    color: #665f55
}

.price {
    display: block;
    color: var(--gold);
    font-weight: bold;
    margin-top: 16px
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 42px
}

.stat {
    background: var(--ink);
    padding: 28px
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.7rem;
    color: var(--gold-light);
    font-weight: 400
}

.stat span {
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.list {
    padding-left: 20px;
    color: var(--muted)
}

.list li {
    margin: 7px 0
}

.notice {
    border-left: 3px solid var(--gold);
    background: #25231f;
    padding: 25px 28px;
    color: var(--muted)
}

.notice strong {
    color: var(--gold-light)
}

.steps {
    counter-reset: step;
    display: grid;
    gap: 14px
}

.step {
    display: flex;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding: 18px 0
}

.step:before {
    counter-increment: step;
    content: '0' counter(step);
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.3rem
}

.form {
    max-width: 760px
}

.form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px
}

.field--full {
    grid-column: 1/-1
}

.field label {
    color: var(--muted);
    font-size: .82rem
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: #24221f;
    border: 1px solid var(--line);
    color: var(--cream);
    padding: 12px 14px
}

.field textarea {
    min-height: 140px;
    resize: vertical
}

.form__status {
    display: none;
    color: #a9d5a2;
    margin-top: 14px
}

.form__status--visible {
    display: block
}

.legal {
    max-width: 850px
}

.legal h2 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--gold-light);
    font-size: 1.65rem;
    margin: 34px 0 8px
}

.legal p,
.legal li {
    color: var(--muted)
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 55px 0 22px;
    background: #0c0b0a
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px
}

.footer__title {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-light)
}

.footer__list {
    list-style: none;
    padding: 0;
    color: var(--muted);
    font-size: .9rem
}

.footer__list li {
    margin: 7px 0
}

.footer__bottom {
    border-top: 1px solid var(--line);
    margin-top: 35px;
    padding-top: 20px;
    color: #776f65;
    font-size: .75rem;
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.contact-link {
    text-decoration: underline;
    text-decoration-color: var(--gold)
}

.muted {
    color: var(--muted)
}


.cookie-banner--visible {
    display: flex
}

.cookie-banner__content {
    max-width: 760px
}

.cookie-banner h2 {
    margin: 0 0 5px;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem
}

.cookie-banner p a {
    color: var(--gold-light);
    text-decoration: underline
}

.cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px
}

.cookie-banner__button {
    margin-top: 0;
    padding: 11px 18px;
    white-space: nowrap
}

@media(max-width:900px) {
    .header__contact {
        display: block
    }

    .nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--graphite);
        border-bottom: 1px solid var(--line);
        padding: 20px 24px
    }

    .nav--open {
        display: block
    }

    .nav__list {
        align-items: stretch;
        flex-direction: column;
        gap: 0
    }

    .nav__list li {
        padding: 12px 0;
        border-bottom: 1px solid var(--line)
    }

    .menu-toggle {
        display: block
    }

    .grid--3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .container {
        width: min(100% - 32px, 1160px)
    }

    .header__inner {
        min-height: 68px
    }

    .brand {
        font-size: .92rem
    }

    .brand__mark {
        width: 34px;
        height: 34px
    }

    .header__contact {
        display: none
    }

    .hero {
        min-height: 600px
    }

    .hero--inner {
        min-height: 320px
    }

    .hero__content {
        padding: 65px 0
    }

    .hero h1 {
        font-size: clamp(2.35rem, 13vw, 4rem)
    }

    .section {
        padding: 62px 0
    }

    .grid--2,
    .grid--3,
    .form__grid {
        grid-template-columns: 1fr
    }

    .field--full {
        grid-column: auto
    }

    .stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat strong {
        font-size: 2.1rem
    }

    .footer__grid {
        grid-template-columns: 1fr
    }

    .footer__bottom {
        flex-direction: column
    }

    .offline-badge {
        font-size: .64rem
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        padding: 20px
    }

    .cookie-banner__actions {
        width: 100%
    }

    .cookie-banner__button {
        flex: 1
    }
}