:root {
    --bg: #fbf8f3;
    --bg-muted: #f1ece2;
    --ink: #1f1a14;
    --ink-soft: #5a5247;
    --gold: #8a6a2c;
    --gold-deep: #6b5121;
    --line: rgba(31, 26, 20, .12);
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Inter", system-ui, sans-serif;
    --container: 1180px;
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: .2px
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: .6em
}

h3 {
    font-size: 1.35rem;
    margin-bottom: .4em
}

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: .72rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500
}

.lede {
    font-size: 1.125rem;
    color: var(--ink-soft);
    max-width: 36rem
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 248, 243, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--gold-deep)
}

.brand img {
    border-radius: 6px
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: .92rem
}

.nav-links a {
    color: var(--ink);
    transition: color .2s
}

.nav-links a:hover {
    color: var(--gold)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: .3s
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: .04em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .25s ease;
    font-family: var(--sans)
}

.btn-sm {
    padding: 10px 20px;
    font-size: .85rem
}

.btn-primary {
    background: var(--gold);
    color: #fff
}

.btn-primary:hover {
    background: var(--gold-deep);
    transform: translateY(-1px)
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .6)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .15)
}

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 15, 8, .35), rgba(20, 15, 8, .65));
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px;
    max-width: 760px
}

.hero .eyebrow {
    color: #e9d8b1
}

.hero h1 {
    color: #fff;
    margin-bottom: 1rem
}

.hero .lede {
    color: rgba(255, 255, 255, .88);
    font-size: 1.2rem;
    margin-bottom: 2rem
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

/* Sections */
.section {
    padding: clamp(64px, 9vw, 120px) 0
}

.section-muted {
    background: var(--bg-muted)
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px
}

.section-head .sub {
    color: var(--ink-soft)
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.grid-2 p {
    color: var(--ink-soft);
    margin-bottom: 1rem
}

.frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(31, 26, 20, .35)
}

.frame img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 30px -18px rgba(31, 26, 20, .25);
    transition: transform .3s, box-shadow .3s
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -20px rgba(31, 26, 20, .3)
}

.card img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%
}

.card-body {
    padding: 24px
}

.card-body p {
    color: var(--ink-soft);
    font-size: .95rem
}

/* Amenities */
.amenities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.amenities li {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg)
}

.amenities p {
    color: var(--ink-soft);
    font-size: .95rem
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.gallery img {
    object-fit: center;
    border-radius: 10px;
    transition: transform .4s;
}

.gallery img:hover {
    transform: scale(1.02)
}

/* Contact */
.contact-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 16px
}

.contact-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line)
}

.contact-list strong {
    font-weight: 500;
    color: var(--gold-deep);
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase
}

.contact-list a:hover {
    color: var(--gold)
}

.form {
    background: var(--bg-muted);
    padding: 36px;
    border-radius: var(--radius);
    display: grid;
    gap: 14px
}

.form label {
    display: grid;
    gap: 6px;
    font-size: .85rem;
    color: var(--ink-soft);
    font-weight: 500
}

.form input,
.form textarea {
    font-family: var(--sans);
    font-size: 1rem;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--gold)
}

.form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form button {
    margin-top: 8px;
    justify-self: start
}

.form-msg {
    font-size: .9rem;
    color: var(--gold-deep);
    min-height: 1.2em
}

/* Footer */
.site-footer {
    background: #1a160f;
    color: #cdc4b3;
    padding: 48px 0
}

.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.foot .brand {
    color: #e9d8b1
}

.foot p {
    font-size: .85rem;
    color: #8c8472
}

.foot-links {
    display: flex;
    gap: 24px;
    font-size: .9rem
}

.foot-links a:hover {
    color: #e9d8b1
}

/* Responsive */
@media (max-width:880px) {
    .nav-toggle {
        display: flex
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 20px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: .25s
    }

    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line)
    }

    .nav-links a:last-child {
        border: 0;
        margin-top: 8px;
        text-align: center
    }

    .nav-links.open {
        transform: none;
        opacity: 1;
        pointer-events: auto
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .cards,
    .amenities {
        grid-template-columns: 1fr
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero {
        min-height: 80vh
    }

    .hero-content {
        padding: 80px 24px
    }

    .contact-list li {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    .form {
        padding: 24px
    }

    .form .row {
        grid-template-columns: 1fr
    }

    .foot {
        flex-direction: column;
        text-align: center
    }
}