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

:root {
    --burgundy: #722F37;
    --burgundy-dark: #5A242C;
    --burgundy-light: #8B3A44;
    --blush: #F5E6D3;
    --blush-light: #FBF5EE;
    --blush-dark: #E8D5C0;
    --cream: #FFFAF5;
    --text-dark: #2C1810;
    --text-medium: #5C4033;
    --text-light: #8B7355;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', Georgia, 'Times New Roman', serif;
    --nav-width: 260px;
    --nav-width-collapsed: 80px;
}

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

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

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

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

ul {
    list-style: none;
}

/* ===== SIDE NAVIGATION ===== */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100vh;
    background: var(--burgundy);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 1.75rem;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand {
    text-align: center;
}

.nav-brand-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blush);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nav-brand-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--blush-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--blush-dark);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1.5em;
    background: rgba(245, 230, 211, 0.1);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blush);
}

.nav-link.active::before,
.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    font-weight: 600;
}

.nav-footer {
    border-top: 1px solid rgba(245, 230, 211, 0.15);
    padding-top: 1.25rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--blush-dark);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--blush);
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 1100;
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 2px 12px rgba(114, 47, 55, 0.3);
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blush);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

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

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: var(--nav-width);
    min-height: 100vh;
}

.section {
    min-height: 100vh;
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.section-title em {
    font-style: italic;
    color: var(--burgundy);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    justify-content: flex-end;
    padding-bottom: 4rem;
}

.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 right,
        rgba(44, 24, 16, 0.85) 0%,
        rgba(114, 47, 55, 0.7) 50%,
        rgba(114, 47, 55, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding-left: 4rem;
    padding-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

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

.hero-desc {
    font-size: 1.1rem;
    color: rgba(245, 230, 211, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--blush);
    border: 2px solid var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--blush);
    border: 2px solid rgba(245, 230, 211, 0.4);
}

.btn-outline:hover {
    border-color: var(--blush);
    background: rgba(245, 230, 211, 0.1);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

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

/* ===== ABOUT ===== */
.about {
    background: var(--cream);
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: 0 16px 48px rgba(44, 24, 16, 0.12);
}

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

.about-accent {
    position: absolute;
    top: 55%;
    left: -1rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.accent-line {
    width: 40px;
    height: 3px;
    background: var(--burgundy);
    border-radius: 2px;
}

.accent-text {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--burgundy);
    letter-spacing: 0.1em;
    font-style: italic;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.about-text {
    padding: 1rem 0;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

/* ===== MENU ===== */
.menu {
    background: var(--blush-light);
}

.menu .container:first-of-type {
    text-align: center;
    margin-bottom: 1rem;
}

.menu .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--blush);
}

.category-header svg {
    color: var(--burgundy);
}

.category-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

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

.menu-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.menu-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    white-space: nowrap;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--cream);
    padding-bottom: 4rem;
}

.gallery .container:first-of-type {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.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.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.7), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    font-style: italic;
}

.gallery-item--tall {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 500px;
}

.gallery-item--wide {
    grid-column: span 8;
    min-height: 280px;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 4;
    min-height: 240px;
}

/* ===== VISIT ===== */
.visit {
    background: var(--blush-light);
}

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

.visit-desc {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-value a {
    color: var(--burgundy);
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

.visit-cta {
    margin-top: 0.5rem;
}

.visit-map {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--burgundy);
    color: var(--blush);
    padding: 4rem 3rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush-dark);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--blush-dark);
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--blush-dark);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 230, 211, 0.15);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--blush-dark);
    letter-spacing: 0.05em;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --nav-width: 220px;
    }

    .hero-content {
        padding-left: 3rem;
    }

    .about-grid {
        gap: 2.5rem;
    }

    .about-images {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .side-nav {
        transform: translateX(-100%);
    }

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

    .menu-toggle {
        display: flex;
    }

    .menu-overlay {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-scroll {
        display: none;
    }

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

    .about-images {
        height: 350px;
        order: -1;
    }

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

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

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

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

    .gallery-item--tall {
        min-height: 300px;
    }

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

    .visit-map {
        height: 300px;
    }

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

@media (max-width: 480px) {
    .section {
        padding: 4rem 1.25rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

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

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

    .gallery-item--tall {
        grid-column: span 1;
    }
}
