:root {
    --bg: #f8f5f1;
    --surface: #ffffff;
    --ink: #181614;
    --muted: #7d7771;
    --line: #e9e2dc;
    --accent: #a98570;
    --accent-dark: #806552;

    --container: 1280px;
    --radius: 22px;

    --sans: "Montserrat", sans-serif;
    --serif: "Playfair Display", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 245, 241, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(233, 226, 220, 0.8);
}

.header-inner {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 205px;
}

.brand-name {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.brand-sub {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #514c47;
    padding: 8px 0;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 1px;
    background: var(--accent);
    transition: right .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    right: 0;
}

.desktop-nav a.active {
    color: var(--ink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: .2s ease;
}

.booking-btn:hover {
    transform: translateY(-1px);
    background: var(--accent-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 16px;
    height: 1px;
    background: var(--ink);
}

.mobile-nav {
    display: none;
}

/* TEMPORARY PAGE SHELL */

.page-shell {
    min-height: 62vh;
    padding: 110px 0 130px;
}

.page-kicker {
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .24em;
}

.page-title {
    max-width: 850px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
}

.page-intro {
    max-width: 610px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 17px;
    font-weight: 300;
}

/* FOOTER */

.site-footer {
    background: #171513;
    color: #eee9e4;
    padding: 70px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    font-family: var(--serif);
    font-size: 31px;
}

.footer-copy {
    max-width: 360px;
    color: #aaa29b;
    font-size: 13px;
}

.footer-title {
    margin-bottom: 15px;
    color: #817a74;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 7px 0;
    color: #ccc5bf;
    font-size: 13px;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #77716c;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
