:root {
    --sage: #7d9a7a;
    --sage-deep: #5d7a5c;
    --gold: #c9a96a;
    --gold-deep: #b8924a;
    --cream: #f4efe6;
    --ivory: #f7f3ea;
    --forest: #2a3d33;
    --text: #3a4a41;
    --muted: #6a7a70;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(42, 61, 51, 0.12);
    --radius: 28px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", system-ui, sans-serif;
    font-weight: 300;
    color: var(--text);
    background:
        radial-gradient(1200px 600px at 90% -10%, rgba(201, 169, 106, 0.16), transparent 55%),
        radial-gradient(900px 500px at -10% 20%, rgba(125, 154, 122, 0.22), transparent 50%),
        var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    color: var(--forest);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.85rem, 3.2vw, 2.7rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: 1.7rem; }

.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 8;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.9rem;
}

.lede,
.philosophy-lead,
.space-copy p,
.reserve-intro p {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 38rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 7vw;
    background: rgba(244, 239, 230, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(125, 154, 122, 0.16);
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 96px;
    width: 96px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
}

.footer .logo img {
    height: 120px;
    width: 120px;
}

.nav {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    color: var(--forest);
}

.nav a {
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 1px;
    background: var(--forest);
    margin: 8px 0;
    transition: 0.3s ease;
}

.hero,
.philosophy,
.services,
.space,
.reserve,
.footer {
    padding: 6.5rem 7vw;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 0;
    padding: 2rem 7vw 3.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 420px;
    height: 380px;
    border-radius: 48% 52% 42% 58% / 42% 38% 62% 58%;
    box-shadow: var(--shadow);
}

.hero-visual figcaption {
    margin-top: 1rem;
    font-style: italic;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);
    color: var(--forest);
}

.btn-primary:hover {
    background: var(--gold-deep);
    color: var(--white);
}

.btn-ghost {
    border-color: rgba(125, 154, 122, 0.45);
    color: var(--forest);
    background: var(--white);
}

.marquee {
    padding: 1.4rem 0;
    border-block: 1px solid rgba(125, 154, 122, 0.22);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3.2rem;
    width: max-content;
    animation: drift 28s linear infinite;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--sage);
}

@keyframes drift {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.values {
    list-style: none;
    display: grid;
    gap: 1.6rem;
}

.values li {
    padding: 1.4rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(125, 154, 122, 0.16);
}

.values span {
    color: var(--gold);
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    margin-top: 2.8rem;
}

.service {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(42, 61, 51, 0.06);
}

.service img {
    width: 140px;
    height: 140px;
    border-radius: 22px;
}

.meta {
    color: var(--sage);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.space {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

blockquote {
    margin-top: 2rem;
    padding-left: 1.2rem;
    border-left: 2px solid var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--forest);
}

cite {
    display: block;
    margin-top: 0.7rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--muted);
}

.space-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.space-gallery img {
    height: 240px;
    border-radius: 24px;
}

.space-gallery .wide {
    grid-column: 1 / -1;
    height: 280px;
    border-radius: 32px;
}

.reserve {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background:
        linear-gradient(180deg, transparent, rgba(125, 154, 122, 0.14));
}

.hours {
    list-style: none;
    margin-top: 2rem;
}

.hours li {
    display: flex;
    justify-content: space-between;
    max-width: 22rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(125, 154, 122, 0.22);
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.6rem;
    background: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--forest);
}

.form input,
.form select,
.form textarea {
    border: 1px solid rgba(125, 154, 122, 0.22);
    background: var(--ivory);
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
    font: inherit;
    color: var(--text);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: 2px solid rgba(201, 169, 106, 0.65);
    border-color: transparent;
}

.full {
    grid-column: 1 / -1;
}

.form-message {
    grid-column: 1 / -1;
    color: var(--forest);
    background: rgba(125, 154, 122, 0.14);
    padding: 0.8rem 1rem;
    border-radius: 12px;
}

.form-message.is-error {
    color: #6b2d2d;
    background: rgba(180, 80, 80, 0.12);
}

.footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(125, 154, 122, 0.18);
    color: var(--muted);
}

.copyright {
    grid-column: 1 / -1;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .menu-toggle { display: block; }

    .nav {
        position: absolute;
        inset: 110px 7vw auto;
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
        background: var(--white);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .nav.open { display: flex; }

    .hero,
    .philosophy-grid,
    .service-list,
    .space,
    .reserve,
    .form,
    .footer {
        grid-template-columns: 1fr;
    }

    .hero-visual img {
        height: 300px;
        max-width: 320px;
        border-radius: 36px;
    }

    .service {
        grid-template-columns: 1fr;
    }

    .service img {
        width: 100%;
        height: 200px;
    }
}
