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

:root {
    --primary: #8B7355;
    --primary-light: #C4A77D;
    --primary-dark: #6B5A45;
    --cream: #FAF9F7;
    --cream-dark: #F5F4F0;
    --text: #2C2C2C;
    --text-light: #666;
    --line: rgba(44,44,44,0.12);
    --shadow-soft: 0 24px 70px rgba(32,32,32,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: radial-gradient(rgba(32,32,32,0.8) 0.5px, transparent 0.5px);
    background-size: 4px 4px;
    mix-blend-mode: multiply;
}

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

a {
    color: inherit;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 92px;
    padding: 18px 46px;
    background: rgba(250,249,247,0.94);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(14px);
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-actions {
    justify-content: flex-end;
}

.nav a {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.logo {
    justify-self: center;
}

.logo img {
    height: 52px;
    width: auto;
}

.reserve-btn,
.hero-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border: 1px solid var(--primary);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}

.reserve-btn,
.hero-btn {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.reserve-btn:hover,
.hero-btn:hover {
    background: #1f1d1a;
    border-color: #1f1d1a;
}

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

.page-hero {
    min-height: 78vh;
    padding: 152px 50px 86px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(22,20,18,0.78), rgba(22,20,18,0.34)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-inner,
.container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.eyebrow,
.section-tag {
    display: block;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 18px;
}

/* On photographic hero backgrounds the brand-tone eyebrow can drop into
   highlights and disappear — give it weight + a soft halo so it reads
   reliably on any image without losing the warm tone. */
.page-hero .eyebrow {
    color: #E5CDA0;
    font-weight: 500;
    text-shadow:
        0 1px 18px rgba(0,0,0,0.6),
        0 0 2px rgba(0,0,0,0.55);
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.08;
}

h1 {
    max-width: 850px;
    font-size: clamp(48px, 7vw, 92px);
}

.hero-copy {
    max-width: 680px;
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255,255,255,0.86);
}

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

section {
    padding: 104px 50px;
}

.intro-grid,
.content-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 74px;
    align-items: center;
}

.section-title {
    font-size: clamp(38px, 5vw, 62px);
    color: var(--text);
}

.section-copy,
.content-copy p {
    font-size: 15px;
    line-height: 1.95;
    color: var(--text-light);
}

.content-copy p + p {
    margin-top: 18px;
}

.cream-band {
    background: var(--cream-dark);
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.proof-strip div {
    background: var(--cream-dark);
    padding: 36px;
}

.proof-strip strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
}

.proof-strip span {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.image-panel {
    overflow: hidden;
    background: var(--cream-dark);
}

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

.feature-list,
.faq-list {
    display: grid;
    gap: 16px;
    margin-top: 40px;
}

.feature-list {
    list-style: none;
}

.feature-list li,
details {
    border-top: 1px solid var(--line);
    padding: 22px 0;
}

.feature-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 400;
}

.feature-list li,
details p {
    color: var(--text-light);
    line-height: 1.85;
}

summary {
    cursor: pointer;
    font-size: 18px;
    color: var(--text);
}

details p {
    max-width: 780px;
    margin-top: 14px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 54px;
}

.card {
    background: #fff;
    border: 1px solid transparent;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(139,115,85,0.16);
    box-shadow: var(--shadow-soft);
}

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

.card-copy {
    padding: 32px;
}

.card h3 {
    font-size: 30px;
    font-weight: 400;
}

.card p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.85;
    color: var(--text-light);
}

.text-link {
    display: inline-flex;
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 4px;
}

.closing-cta {
    background: #1f1d1a;
    color: #fff;
}

.closing-cta .section-title {
    color: #fff;
}

.closing-cta .eyebrow,
.closing-cta .section-tag {
    color: var(--primary-light);
}

.closing-cta p {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255,255,255,0.78);
    line-height: 1.9;
}

.closing-cta .ghost-btn {
    color: #fff;
    border-color: rgba(255,255,255,0.68);
}

.footer {
    padding: 58px 50px 34px;
    background: #151515;
    color: #fff;
}

.footer-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links,
.footer-contact {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a,
.footer-copy {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.62);
}

.footer-copy {
    justify-self: end;
}

.footer-contact {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
}

.menu-btn,
.mobile-menu {
    display: none;
}

@media (max-width: 900px) {
    .nav {
        display: flex;
        justify-content: center;
        padding: 16px 22px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-btn {
        display: flex;
        position: absolute;
        right: 22px;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        background: transparent;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .menu-btn span {
        width: 18px;
        height: 1px;
        background: var(--text);
    }

    .mobile-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        z-index: 99;
        background: var(--cream);
        padding: 24px;
        flex-direction: column;
        gap: 18px;
        border-bottom: 1px solid var(--line);
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        font-size: 12px;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        text-decoration: none;
    }

    .page-hero {
        min-height: 72vh;
        padding: 132px 24px 64px;
        background-image: linear-gradient(rgba(22,20,18,0.36), rgba(22,20,18,0.8)), var(--hero-image-mobile, var(--hero-image));
    }

    section {
        padding: 72px 24px;
    }

    .intro-grid,
    .content-grid,
    .proof-strip,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer-copy {
        justify-self: center;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 44px;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .proof-strip div,
    .card-copy {
        padding: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
