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

:root {
    --plum-50: #faf5f7;
    --plum-100: #f3eaf0;
    --plum-200: #e8d0e0;
    --plum-300: #d4a8c4;
    --plum-400: #b87aa8;
    --plum-500: #96548c;
    --plum-600: #7a3d70;
    --plum-700: #5e2d56;
    --plum-800: #4A2C5A;
    --plum-900: #3a2042;
    --plum-950: #1e0f22;

    --amber-50: #fef9ee;
    --amber-100: #fdf3dc;
    --amber-200: #fce8b4;
    --amber-300: #f8d078;
    --amber-400: #f0b840;
    --amber-500: #D4A04A;
    --amber-600: #c48a2e;
    --amber-700: #a06a1e;
    --amber-800: #7a5016;
    --amber-900: #52350e;

    --white: #ffffff;
    --off-white: #faf8f6;
    --cream: #f7f3ef;
    --warm-gray-50: #f9f7f5;
    --warm-gray-100: #f0ebe6;
    --warm-gray-200: #e0d8d0;
    --warm-gray-300: #c4b8aa;
    --warm-gray-400: #a09080;
    --warm-gray-500: #7a6c60;
    --warm-gray-600: #5a4e44;
    --warm-gray-700: #3d342c;
    --warm-gray-800: #2a231e;
    --warm-gray-900: #1a1510;

    --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-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--warm-gray-800);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 44, 90, 0.08);
    transition: background var(--transition);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--plum-800);
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm-gray-500);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray-600);
    transition: color var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--plum-800);
}

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

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

.nav-toggle-bar {
    width: 22px;
    height: 1.5px;
    background: var(--warm-gray-700);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 15, 34, 0.55) 0%,
        rgba(74, 44, 90, 0.7) 50%,
        rgba(30, 15, 34, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl);
    max-width: 720px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber-300);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto var(--space-xl);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--amber-500);
    color: var(--warm-gray-900);
    border-color: var(--amber-500);
}

.btn-primary:hover {
    background: var(--amber-600);
    border-color: var(--amber-600);
    transform: translateY(-1px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

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

.btn-dark:hover {
    background: var(--plum-900);
    border-color: var(--plum-900);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── LABEL ── */
.label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
}

/* ── ABOUT ── */
.about {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

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

.about-image-wrap {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrap:hover img {
    transform: scale(1.02);
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--plum-800);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.about-text p {
    font-size: 0.9375rem;
    color: var(--warm-gray-600);
    line-height: 1.85;
    margin-bottom: var(--space-sm);
}

.about-divider {
    width: 48px;
    height: 1px;
    background: var(--amber-500);
    margin: var(--space-lg) 0;
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.stat {
    flex: 1;
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--plum-800);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--warm-gray-500);
    line-height: 1.5;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--warm-gray-200);
    flex-shrink: 0;
}

/* ── MENU ── */
.menu {
    padding: var(--space-3xl) 0;
    background: var(--plum-950);
}

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

.menu .label {
    color: var(--amber-400);
}

.menu .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.menu .section-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 960px;
    margin: 0 auto;
}

.menu-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 160, 74, 0.3);
    transform: translateY(-2px);
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 160, 74, 0.3);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    color: var(--amber-400);
}

.menu-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.menu-card > p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.menu-list li {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

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

.menu-list li::before {
    content: '';
    width: 4px;
    height: 1px;
    background: var(--amber-500);
    flex-shrink: 0;
}

/* ── SPACE ── */
.space {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

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

.space-text .label {
    color: var(--plum-500);
}

.space-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--plum-800);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.space-text p {
    font-size: 0.9375rem;
    color: var(--warm-gray-600);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.space-text .btn {
    margin-top: var(--space-md);
}

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

.space-img-main {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.space-img-main img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.space-img-row img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── VISIT ── */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

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

.visit-info .label {
    color: var(--plum-500);
}

.visit-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--plum-800);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.visit-desc {
    font-size: 0.9375rem;
    color: var(--warm-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.visit-detail svg {
    color: var(--amber-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.visit-detail-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
}

.visit-detail span,
.visit-detail a {
    font-size: 0.9375rem;
    color: var(--warm-gray-700);
    line-height: 1.6;
}

.visit-detail a:hover {
    color: var(--plum-700);
    text-decoration: underline;
    text-decoration-color: var(--amber-500);
    text-underline-offset: 3px;
}

/* ── FORM ── */
.visit-form-wrap {
    background: var(--white);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.visit-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--plum-800);
    margin-bottom: var(--space-xs);
}

.form-desc {
    font-size: 0.875rem;
    color: var(--warm-gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray-500);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--warm-gray-800);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--warm-gray-200);
    outline: none;
    transition: border-color var(--transition);
    resize: none;
}

.form-input::placeholder {
    color: var(--warm-gray-300);
}

.form-input:focus {
    border-color: var(--amber-500);
}

.form-textarea {
    line-height: 1.7;
}

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--plum-50);
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-md);
    color: var(--plum-700);
    font-size: 0.875rem;
    margin-top: var(--space-md);
}

.form-success svg {
    color: var(--plum-500);
    flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
    background: var(--plum-950);
    padding: var(--space-2xl) 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.footer-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 248, 246, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition);
    }

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

    .nav-link {
        font-size: 0.875rem;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-layout,
    .space-layout,
    .visit-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image-wrap {
        max-height: 400px;
    }

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

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

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-lg);
    }

    .btn {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .visit-form-wrap {
        padding: var(--space-lg);
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
