/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --plum: #5C3D5E;
    --plum-deep: #3E2741;
    --plum-light: #7E5A7D;
    --plum-pale: #F3EDF4;
    --amber: #D4A03C;
    --amber-light: #E8C06A;
    --amber-pale: #FDF6E3;
    --cream: #FAFAF8;
    --white: #FFFFFF;
    --ink: #1A1A1A;
    --ink-light: #4A4A4A;
    --ink-faint: #8A8A8A;
    --line: #E8E4E0;
    --line-light: #F0ECE8;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius: 4px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--plum);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--amber);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ── Skip Link ────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--plum);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ── Top Bar ──────────────────────────────────────────── */
.top-bar {
    background: var(--plum-deep);
    padding: 0.5rem 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
}

.top-bar-text {
    color: rgba(255,255,255,0.6);
}

.top-bar-divider {
    color: rgba(255,255,255,0.3);
}

.top-bar-link {
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}

.top-bar-link:hover {
    color: var(--amber-light);
}

/* ── Header ───────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,250,248,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

/* ── Logo ─────────────────────────────────────────────── */
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--ink);
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--plum);
    line-height: 1;
    border: 1.5px solid var(--plum);
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ink);
}

/* ── Navigation ───────────────────────────────────────── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-light);
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--ink);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    color: var(--plum) !important;
    border: 1px solid var(--plum);
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--plum);
    color: var(--white) !important;
}

/* ── Mobile Nav Toggle ────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.btn-primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--plum);
    color: var(--plum);
}

.btn-full {
    width: 100%;
}

/* ── Section Shared ───────────────────────────────────── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.thin-rule {
    width: 60px;
    height: 1px;
    background: var(--amber);
    margin-bottom: var(--space-lg);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    padding: var(--space-3xl) 0 var(--space-3xl);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ink-light);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 680/860;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-img-wrapper:hover img {
    transform: scale(1.02);
}

.hero-accent-line {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-left: 1px solid var(--amber);
    border-bottom: 1px solid var(--amber);
    pointer-events: none;
}

/* ── Story ────────────────────────────────────────────── */
.story {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--line);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-light);
    margin-bottom: var(--space-md);
}

.story-image {
    position: relative;
}

.story-image img {
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-accent {
    position: absolute;
    bottom: var(--space-lg);
    right: calc(-20px - var(--space-lg));
    background: var(--plum);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius);
}

.accent-stat {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--amber-light);
}

.accent-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* ── Menu ─────────────────────────────────────────────── */
.menu {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.menu-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ink-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.menu-column {
    padding: var(--space-xl);
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--line-light);
}

.menu-column-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--plum);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.column-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--amber);
}

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

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--line-light);
    gap: var(--space-sm);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--ink);
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: var(--ink-faint);
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ink-faint);
    margin-top: var(--space-xl);
    font-style: italic;
}

/* ── Atmosphere ───────────────────────────────────────── */
.atmosphere {
    padding: var(--space-3xl) 0;
}

.atmosphere-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-sm);
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item--tall {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    min-height: 500px;
}

.gallery-item:not(.gallery-item--tall) {
    min-height: 240px;
}

.gallery-item--wide {
    grid-column: 6 / 13;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(30,20,30,0.7));
    color: rgba(255,255,255,0.9);
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ── Visit ────────────────────────────────────────────── */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: 1px solid var(--line);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit-address {
    font-style: normal;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: var(--space-lg);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--line);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--plum);
}

.visit-hours-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    font-size: 0.9375rem;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--line-light);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--ink-light);
}

.hours-time {
    color: var(--ink);
    font-weight: 400;
}

.visit-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 450px;
    border: 1px solid var(--line);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
    padding: var(--space-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-light);
    margin-top: var(--space-md);
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(92,61,94,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-faint);
}

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--plum-pale);
    border-radius: var(--radius);
    color: var(--plum);
    font-size: 0.9375rem;
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--plum);
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
    background: var(--plum-deep);
    color: rgba(255,255,255,0.7);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-mark {
    border-color: rgba(255,255,255,0.4);
    color: var(--amber-light);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-tagline {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--amber-light);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ── Scroll Animations ────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid,
    .story-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-wrapper {
        aspect-ratio: 4/5;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item--tall {
        grid-column: 1 / 7;
        min-height: 360px;
    }

    .gallery-item:not(.gallery-item--tall) {
        grid-column: span 1;
        min-height: 200px;
    }

    .gallery-item--wide {
        grid-column: 1 / 13;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 3.5rem;
    }

    .top-bar-inner {
        justify-content: center;
        font-size: 0.75rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem var(--space-lg) var(--space-xl);
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition);
        border-left: 1px solid var(--line);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--tall {
        grid-column: 1;
        grid-row: auto;
        min-height: 280px;
    }

    .gallery-item:not(.gallery-item--tall) {
        grid-column: 1;
        min-height: 220px;
    }

    .gallery-item--wide {
        grid-column: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }

    .hero-accent-line {
        display: none;
    }

    .story-image-accent {
        right: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .menu-column {
        padding: var(--space-md);
    }

    .contact-form-wrap {
        padding: var(--space-md);
    }
}
