:root {
    --bg: #fbf7f1;
    --paper: #ffffff;
    --ink: #171311;
    --soft-ink: #5d534d;
    --gold: #c9a46a;
    --gold-deep: #9a7440;
    --dark: #0e0c0b;
    --border: rgba(23, 19, 17, 0.08);
    --shadow: 0 24px 60px rgba(11, 9, 8, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 241, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 82px;
}
.brand {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 0 0 auto;
}
.brand-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.brand-sub { font-size: 0.9rem; color: var(--gold-deep); }
.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex: 1 1 auto;
}
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.nav-menu a { position: relative; }
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after { transform: scaleX(1); }
.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 999px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold { background: var(--gold); color: #20160e; }
.button-dark { background: var(--dark); color: #fff; }
.button-outline,
.button-outline-dark {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
}
.button-outline-dark {
    border: 1px solid rgba(23, 19, 17, 0.2);
    color: var(--ink);
}
.hero-visual-section {
    background: #efe8dd;
    padding: 0;
}
.hero-visual-image {
    width: 100%;
    min-height: 46vw;
    max-height: 78vh;
    object-fit: cover;
    object-position: center;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.75rem;
}
h1, h2, h3 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.04;
    margin: 0 0 1rem;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.75rem; }
.hero-copy, .narrow { max-width: 48rem; }
.cta-actions,
.home-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.section { padding: 5rem 0; }
.section-dark {
    background: var(--dark);
    color: #fff;
}
.section-soft { background: #f2ede6; }
.quick-links-section {
    margin-top: -3.5rem;
    position: relative;
    z-index: 2;
}
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.quick-link-card,
.service-card,
.contact-card,
.cta-card,
.gallery-placeholder,
.staff-card,
.price-image-wrap {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.quick-link-card {
    padding: 1.75rem;
}
.quick-link-card h2 {
    font-size: clamp(1.7rem, 2vw, 2.3rem);
    margin-bottom: 0.4rem;
}
.quick-link-card-action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.image-panel img,
.gallery-card img,
.price-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.section-heading.center,
.center { text-align: center; }
.section-heading { max-width: 760px; margin: 0 auto 2rem; }
.compact-heading { margin-bottom: 1.5rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.service-card {
    padding: 1.6rem;
    min-height: 210px;
}
.page-hero {
    padding: 6rem 0 2.4rem;
    background: radial-gradient(circle at top left, rgba(201,164,106,0.22), transparent 35%), linear-gradient(180deg, #faf3ea 0%, #fbf7f1 100%);
}
.compact-page-hero {
    padding-top: 5.25rem;
    padding-bottom: 1.75rem;
}
.gallery-grid,
.gallery-preview-grid,
.staff-grid {
    display: grid;
    gap: 1.25rem;
}
.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-preview-grid {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.contact-card { padding: 2rem; }
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
}
.staff-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
}
.staff-card {
    padding: 2rem 1.5rem;
    text-align: center;
}
.staff-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    border: 6px solid #f6efe6;
    box-shadow: 0 14px 28px rgba(17, 12, 8, 0.16);
}
.price-image-wrap {
    padding: 1rem;
}
.price-image {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
}
.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0 1.5rem;
}
.footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.8);
}
.top-space { margin-top: 1.5rem; }
.top-space-lg { margin-top: 2rem; }
.narrow-copy { max-width: 680px; }
.prose-area { max-width: 850px; }

@media (max-width: 980px) {
    .split-grid,
    .contact-grid,
    .footer-grid,
    .quick-links-grid,
    .services-grid,
    .gallery-grid,
    .gallery-preview-grid,
    .staff-grid { grid-template-columns: 1fr; }
    .nav-wrap {
        min-height: 74px;
        flex-wrap: wrap;
    }
    .menu-toggle { display: inline-flex; }
    .site-nav {
        position: absolute;
        top: 82px;
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: #fff;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .nav-menu {
        flex-direction: column;
        justify-content: flex-start;
    }
    .nav-book,
    .button { width: 100%; }
    .quick-links-section { margin-top: 0; }
}

@media (max-width: 640px) {
    .section { padding: 4rem 0; }
    .compact-page-hero { padding-top: 4.6rem; }
    .hero-visual-image {
        min-height: 52vw;
        max-height: none;
    }
    .quick-link-card,
    .contact-card,
    .staff-card,
    .service-card { padding: 1.35rem; }
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }
}
