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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9B3D4E;
    --blush: #F5E6D3;
    --blush-light: #FAF3EC;
    --blush-pale: #FDF8F4;
    --cream: #FFFCF8;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --line: rgba(123, 45, 59, 0.12);
    --line-strong: rgba(123, 45, 59, 0.25);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 72px;
    transition: background 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth), backdrop-filter 0.5s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--line);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--burgundy);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.7; }

.nav-logo-icon {
    color: var(--burgundy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.75rem !important;
    border: 1px solid var(--burgundy);
    padding: 0.5rem 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy) !important;
    transition: background 0.3s, color 0.3s !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--burgundy) !important;
    color: var(--cream) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 1px;
    background: var(--burgundy);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 72px 3rem 4rem;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.4;
}

.hero-bg-lines span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}

.hero-bg-lines span:nth-child(1) { left: 15%; }
.hero-bg-lines span:nth-child(2) { left: 35%; }
.hero-bg-lines span:nth-child(3) { left: 55%; }
.hero-bg-lines span:nth-child(4) { left: 75%; }
.hero-bg-lines span:nth-child(5) { left: 90%; }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text { padding-right: 1rem; }

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

.hero-em {
    font-style: italic;
    font-weight: 300;
    color: var(--burgundy);
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 0;
    animation: fadeIn 1.2s var(--ease-out) 0.6s forwards;
}

.hero-img {
    overflow: hidden;
    position: relative;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

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

.hero-img--main {
    aspect-ratio: 3/4;
}

.hero-img--accent {
    aspect-ratio: 4/3;
}

.hero-stamp {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    color: var(--burgundy);
    opacity: 0.25;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.btn-primary {
    background: var(--burgundy);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
}

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

.btn-full { width: 100%; }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: var(--line-strong);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--burgundy);
    animation: scrollDown 2s var(--ease-smooth) infinite;
}

/* ─── SECTIONS ─── */
section {
    padding: 7rem 0;
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
    background: var(--blush-pale);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 0.5rem;
    position: sticky;
    top: 100px;
}

.thin-line {
    width: 40px;
    height: 1px;
    background: var(--burgundy);
}

.philosophy-label p {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.philosophy-body blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 300;
    font-style: italic;
    color: var(--burgundy);
    line-height: 1.5;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--burgundy);
}

.philosophy-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.philosophy-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ─── MENU ─── */
.menu {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-desc {
    margin: 0 auto;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.menu-tab:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.menu-tab.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.menu-card {
    padding: 2rem;
    border: 1px solid var(--line);
    background: var(--cream);
    transition: all 0.4s var(--ease-out);
    opacity: 1;
}

.menu-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 12px 40px rgba(123, 45, 59, 0.08);
    transform: translateY(-4px);
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.menu-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--charcoal);
}

.menu-card-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

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

.menu-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2.5rem;
    font-style: italic;
}

/* ─── SPACE ─── */
.space {
    background: var(--blush-pale);
    border-top: 1px solid var(--line);
}

.space-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.space-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.space-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.space-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text);
}

.space-feature svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

.space-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.space-img { overflow: hidden; }

.space-img--1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.space-img--2 { grid-column: 2; grid-row: 1; }
.space-img--3 { grid-column: 2; grid-row: 2; }

.space-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

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

.space-img--1 img { aspect-ratio: 5/7; }
.space-img--2 img { aspect-ratio: 5/4; }
.space-img--3 img { aspect-ratio: 5/4; }

/* ─── VISIT ─── */
.visit {
    background: var(--cream);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.visit-detail-label {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
}

.visit-detail-value {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.visit-detail-value a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--line-strong);
    transition: color 0.3s, border-color 0.3s;
}

.visit-detail-value a:hover {
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.visit-form {
    background: var(--blush-pale);
    border: 1px solid var(--line);
    padding: 2.5rem;
}

.visit-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    border: 1px solid var(--line-strong);
    padding: 0.7rem 0.85rem;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 3rem 1rem;
}

.form-success.show {
    display: flex;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--charcoal);
    color: var(--blush);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--blush);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.8;
}

.footer-brand a {
    color: rgba(245, 230, 211, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-brand a:hover { color: var(--blush); }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(245, 230, 211, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-hours p {
    font-size: 0.82rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.8;
}

.footer-hours strong {
    color: var(--blush);
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245, 230, 211, 0.3);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-col {
        max-width: 500px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-label {
        position: static;
        flex-direction: row;
        align-items: center;
    }

    .philosophy-label p {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .space-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visit-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav { padding: 0 1.5rem; }

    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--ease-out);
        border-bottom: 1px solid var(--line);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero { padding: 100px 1.5rem 4rem; }

    .hero-content { gap: 2.5rem; }

    .hero-stamp { display: none; }

    .hero-scroll { left: 1.5rem; }

    section { padding: 4.5rem 0; }

    .container { padding: 0 1.5rem; }

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

    .space-images {
        grid-template-columns: 1fr;
    }

    .space-img--1 {
        grid-column: 1;
        grid-row: auto;
    }

    .space-img--2,
    .space-img--3 {
        grid-column: 1;
        grid-row: auto;
    }

    .space-img--1 img { aspect-ratio: 4/5; }

    .visit-form { padding: 1.75rem; }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.4rem;
    }

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

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

    .philosophy-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .space-features {
        grid-template-columns: 1fr;
    }
}
