:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f6f3ee;
    --color-dark: #1f1d1b;
    --color-text: #2b2a28;
    --color-muted: #6b6660;
    --color-accent: #b08d57;
    --color-accent-dark: #8d6f3f;
    --color-border: #e6e0d6;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --maxw: 1140px;
    --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { color: var(--color-accent); }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

p { margin: 0 0 1em; }

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

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
}
.eyebrow-light { color: #d6b97e; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}
.logo img { max-height: 56px; width: auto; }

.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover { border-color: var(--color-accent); color: var(--color-accent); }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    margin: 5px auto;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    transition: all 0.25s;
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}
.btn-outline:hover {
    background: var(--color-dark);
    color: #fff;
}
.btn-outline-light {
    color: #fff;
    border-color: #fff;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--color-dark);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
}
.hero-image {
    position: absolute;
    inset: 0;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 120px;
    color: #fff;
    text-align: center;
}
.hero-content h1 { color: #fff; margin-bottom: 0.4em; }
.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f0e9dd;
    font-weight: 300;
}

/* Sections */
.section { padding: 96px 0; }
.section-light { background: var(--color-bg-alt); }
.section-dark {
    background: var(--color-dark);
    color: #d8d3cb;
}
.section-dark h2 { color: #fff; }
.section-dark a { color: #f0d9aa; }
.section-dark a:hover { color: #fff; }

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

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

.image-frame img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.4s;
}
.gallery img:hover { transform: scale(1.02); }

/* Hours */
.hours {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 1.05rem;
}
.hours th, .hours td {
    padding: 14px 4px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.hours th { font-weight: 500; color: var(--color-dark); }
.hours td { text-align: right; color: var(--color-muted); }

/* Booking section */
.booking-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}
.booking-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 64px 48px;
    background: #fff;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 30px 80px rgba(31, 29, 27, 0.08);
    border: 1px solid var(--color-border);
}
.booking-card h2 { margin-bottom: 0.4em; }
.booking-lead {
    color: var(--color-muted);
    font-size: 1.1rem;
    max-width: 440px;
    margin: 0 auto 36px;
}
.booking-card .booking-fallback {
    margin: 28px 0 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1rem;
    letter-spacing: 0.06em;
}

@media (max-width: 600px) {
    .booking-card { padding: 48px 24px; }
}


/* Contact */
address {
    font-style: normal;
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.section-dark address strong { color: #fff; }
.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    aspect-ratio: 4 / 3;
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Footer */
.site-footer {
    background: #14120f;
    color: #8a857d;
    padding: 40px 0;
    font-size: 0.9rem;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 64px 0; }
    .hero-content { padding: 100px 0 80px; }

    .nav-toggle { display: block; }
    .main-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 12px 24px 24px;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }
    .main-nav.is-open ul { display: flex; }
    .main-nav a { padding: 12px 0; display: block; border-bottom: 1px solid var(--color-border); }
}

@media (max-width: 480px) {
    .gallery { grid-template-columns: 1fr; }
    .hero-content { padding: 80px 0 60px; }
}
