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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2C;
    --burgundy-light: #9B3D4E;
    --blush: #F2D0C4;
    --blush-light: #FBE8E2;
    --blush-pale: #FFF5F1;
    --cream: #FDF8F5;
    --charcoal: #1A1A1A;
    --graphite: #2D2D2D;
    --warm-gray: #6B6560;
    --light-gray: #B8B0AA;
    --off-white: #FAFAF8;
    --white: #FFFFFF;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 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-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(123, 45, 59, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--charcoal);
}

.logo__mark {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.logo__mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--blush);
    border-radius: 50%;
}

.logo__mark--light {
    background: var(--white);
}

.logo__mark--light::after {
    background: var(--burgundy);
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* NAV */
.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--warm-gray);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    transition: var(--transition);
}

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

.nav__link--cta:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

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

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

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    padding-top: 120px;
    padding-bottom: var(--space-xl);
    background: var(--cream);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    min-height: calc(100vh - 120px);
}

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

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.hero__accent {
    color: var(--burgundy);
    font-style: italic;
}

.hero__subhead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: var(--space-md);
}

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

.hero__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hero__detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--warm-gray);
}

.hero__detail a {
    color: var(--burgundy);
    font-weight: 500;
    transition: var(--transition);
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

.btn--ghost:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

.btn--outline-light:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 40px;
    font-size: 0.9375rem;
}

/* HERO IMAGE STACK */
.hero__image-stack {
    position: relative;
    height: 600px;
}

.hero__image {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero__image--main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 1;
}

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

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

.hero__image--accent {
    width: 260px;
    height: 180px;
    bottom: 100px;
    left: 0;
    z-index: 2;
    border: 4px solid var(--cream);
}

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

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

.hero__image--small {
    width: 200px;
    height: 130px;
    bottom: 0;
    right: 40px;
    z-index: 3;
    border: 4px solid var(--cream);
}

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

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

/* ========== SECTION COMMON ========== */
.section__eyebrow {
    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-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

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

/* ========== ABOUT ========== */
.about {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

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

.about__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.stat {
    flex: 1;
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.section__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.menu__tab {
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid var(--blush);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--warm-gray);
    transition: var(--transition);
}

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

.menu__tab--active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

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

.menu__panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu__panel--active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.menu__category h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--burgundy);
    display: inline-block;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu__item-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.menu__item-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--warm-gray);
}

.menu__note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--light-gray);
    margin-top: var(--space-md);
    font-style: italic;
}

/* ========== ATMOSPHERE ========== */
.atmosphere {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

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

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

.atmosphere__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

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

.atmosphere__feature svg {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.atmosphere__feature strong {
    display: block;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.atmosphere__feature span {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

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

.atmosphere__gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.atmosphere__gallery-item--large {
    grid-row: 1 / 3;
}

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

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

.visit__info {
    padding-right: var(--space-md);
}

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

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

.visit__detail svg {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 3px;
}

.visit__detail strong {
    display: block;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

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

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

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

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    min-height: 450px;
}

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

/* ========== 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: rgba(242, 208, 196, 0.08);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: var(--space-sm);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.cta__text {
    font-size: 1.125rem;
    color: var(--blush);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
    color: var(--light-gray);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 320px;
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links strong,
.footer__contact strong {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__links a,
.footer__contact li {
    font-size: 0.9375rem;
    color: var(--light-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer__contact a {
    color: var(--light-gray);
}

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

.footer__bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

/* ========== MOBILE NAV OVERLAY ========== */
.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(253, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.nav__overlay--open {
    display: flex;
}

.nav__overlay .nav__link {
    font-size: 1.25rem;
    text-transform: none;
    letter-spacing: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero__image-stack {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__content {
        text-align: center;
    }

    .hero__subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__details {
        align-items: center;
    }

    .about__grid,
    .atmosphere__grid,
    .visit__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about__image {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .nav__list {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero__grid {
        min-height: auto;
    }

    .hero__image-stack {
        height: 320px;
    }

    .hero__image--main {
        width: 260px;
        height: 340px;
    }

    .hero__image--accent {
        width: 180px;
        height: 120px;
    }

    .hero__image--small {
        width: 150px;
        height: 100px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .menu__tabs {
        flex-direction: column;
        align-items: center;
    }

    .menu__tab {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

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

    .atmosphere__gallery-item--large {
        grid-row: auto;
    }

    .visit__info {
        padding-right: 0;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .hero__image-stack {
        height: 280px;
    }

    .hero__image--main {
        width: 200px;
        height: 270px;
    }

    .hero__image--accent {
        width: 140px;
        height: 95px;
    }

    .hero__image--small {
        width: 120px;
        height: 80px;
    }

    .section__title {
        font-size: 1.875rem;
    }
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--visible {
    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; }
