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

:root {
    --burgundy: #6B1D2A;
    --burgundy-deep: #4A0E1A;
    --burgundy-light: #8B2E3F;
    --blush: #F4D4CE;
    --blush-light: #FDF0ED;
    --blush-cream: #FFFAF8;
    --cream: #FFFBF9;
    --charcoal: #1A1412;
    --charcoal-light: #2D2421;
    --warm-gray: #6B5E5A;
    --warm-gray-light: #9E8E8A;
    --gold: #C8965E;
    --gold-light: #E8C090;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 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-sans);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ===== Typography ===== */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--warm-gray);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--space-lg);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 29, 42, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn--light {
    background: var(--white);
    color: var(--burgundy);
}

.btn--light:hover {
    background: var(--blush);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

.btn--large {
    padding: 1rem 2.25rem;
    font-size: 0.9375rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(26, 20, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
}

.nav__logo-icon {
    color: var(--blush);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.nav__link:hover {
    color: var(--white);
}

.nav__cta-btn {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav__cta-btn:hover {
    background: var(--burgundy-light);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    color: var(--white);
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        transition: right var(--transition);
        padding: var(--space-md);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav__cta-btn {
        margin-top: var(--space-sm);
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 20, 18, 0.55) 0%,
        rgba(74, 14, 26, 0.65) 50%,
        rgba(26, 20, 18, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-md);
    color: var(--white);
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.hero__headline em {
    font-style: italic;
    color: var(--blush);
}

.hero__subhead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin: 0 auto var(--space-md);
    line-height: 1.7;
}

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

.hero__scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Marquee ===== */
.marquee {
    background: var(--burgundy);
    padding: 0.875rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    gap: var(--space-md);
    animation: scroll 20s linear infinite;
}

.marquee__item {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    flex-shrink: 0;
}

.marquee__sep {
    color: var(--gold);
    font-size: 0.5rem;
    flex-shrink: 0;
    align-self: center;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Menu ===== */
.menu {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.menu__categories {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.menu__cat {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    color: var(--warm-gray);
    border: 1.5px solid var(--blush);
    background: transparent;
    transition: all var(--transition);
}

.menu__cat:hover,
.menu__cat.active {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-md);
}

.menu__card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 20, 18, 0.06);
    transition: all var(--transition);
}

.menu__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 20, 18, 0.12);
}

.menu__card-img {
    height: 220px;
    overflow: hidden;
}

.menu__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu__card:hover .menu__card-img img {
    transform: scale(1.05);
}

.menu__card-body {
    padding: var(--space-md);
}

.menu__card-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: 0.5rem;
}

.menu__card-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
}

.menu__card-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-light);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.menu__card-desc {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* ===== About ===== */
.about {
    padding: var(--space-2xl) 0;
    background: var(--blush-light);
}

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

.about__image-col {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 20, 18, 0.15);
}

.about__img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 20, 18, 0.2);
    border: 4px solid var(--blush-light);
}

.about__img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about__text-col {
    padding: var(--space-md) 0;
}

.about__body {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.about__stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--blush);
}

.about__stat {
    text-align: left;
}

.about__stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about__stat-label {
    font-size: 0.8125rem;
    color: var(--warm-gray-light);
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .about__layout {
        grid-template-columns: 1fr;
    }

    .about__img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: var(--space-sm);
    }

    .about__img-main img {
        height: 360px;
    }
}

/* ===== Features ===== */
.features {
    padding: var(--space-2xl) 0;
    background: var(--charcoal);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: all var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(200, 150, 94, 0.3);
    transform: translateY(-4px);
}

.feature-card__icon {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.625rem;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .features__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Gallery ===== */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

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

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery__item--wide {
    grid-column: span 7;
    height: 320px;
}

.gallery__item--tall {
    grid-column: span 5;
    grid-row: span 2;
    height: 100%;
    min-height: 400px;
}

.gallery__item:not(.gallery__item--wide):not(.gallery__item--tall) {
    height: 200px;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__item--wide {
        grid-column: span 2;
        height: 240px;
    }

    .gallery__item--tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 240px;
    }

    .gallery__item:not(.gallery__item--wide):not(.gallery__item--tall) {
        height: 200px;
    }
}

/* ===== Visit ===== */
.visit {
    padding: var(--space-2xl) 0;
    background: var(--blush-light);
}

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

.visit__body {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.visit__detail-icon {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.visit__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 0.125rem;
}

.visit__detail-value {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.visit__detail-link {
    color: var(--burgundy);
    font-weight: 500;
    transition: color var(--transition);
}

.visit__detail-link:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.visit__map-col {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 20, 18, 0.12);
    height: 480px;
}

.visit__map-col iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .visit__layout {
        grid-template-columns: 1fr;
    }

    .visit__map-col {
        height: 300px;
    }
}

/* ===== CTA ===== */
.cta {
    padding: var(--space-2xl) 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 150, 94, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    color: var(--white);
}

.cta__eyebrow {
    color: var(--blush);
}

.cta__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.cta__body {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    padding: var(--space-lg) 0 var(--space-md);
    color: var(--white);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-md);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer__logo-icon {
    color: var(--blush);
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.375rem;
    margin-left: 2.875rem;
}

.footer__links {
    display: flex;
    gap: var(--space-md);
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 600px) {
    .footer__top {
        flex-direction: column;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

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

/* ===== Scroll Reveal (progressive enhancement) ===== */
@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.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fallback: ensure content is visible without JS */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
