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

:root {
    --burgundy: #7B1E3A;
    --burgundy-deep: #5C1528;
    --blush: #F4C2C2;
    --blush-light: #FDE8E8;
    --blush-pale: #FFF5F5;
    --cream: #FFFAF8;
    --dark: #1A0A0E;
    --dark-soft: #3D1F28;
    --text: #2A1520;
    --text-muted: #7A5A64;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(123, 30, 58, 0.08);
    --shadow-lg: 0 12px 48px rgba(123, 30, 58, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

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

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--burgundy); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius);
    z-index: 9999; font-weight: 700;
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem;
    transition: var(--transition); border: 2px solid transparent;
    letter-spacing: 0.01em;
}
.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 24px rgba(123, 30, 58, 0.3);
}
.btn--ghost {
    background: transparent; color: var(--burgundy);
    border-color: var(--burgundy);
}
.btn--ghost:hover {
    background: var(--burgundy); color: var(--white);
    transform: translateY(-2px);
}
.btn--white {
    background: var(--white); color: var(--burgundy);
    border-color: var(--white);
}
.btn--white:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; background: rgba(255, 250, 248, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 30, 58, 0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 250, 248, 0.95);
    box-shadow: 0 2px 20px rgba(123, 30, 58, 0.06);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 900; font-size: 1.25rem; color: var(--dark);
}
.logo-mark {
    width: 40px; height: 40px;
    background: var(--burgundy); color: var(--white);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif; font-weight: 700;
    letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.9rem; font-weight: 500;
    color: var(--text-muted); transition: var(--transition);
    position: relative;
}
.nav-links a:not(.btn):hover { color: var(--burgundy); }
.nav-links a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--burgundy);
    transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
    display: none; background: none; border: none;
    width: 40px; height: 40px; position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 24px; height: 2px;
    background: var(--dark); border-radius: 2px;
    transition: var(--transition);
}
.hamburger { position: relative; margin: 0 auto; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--cream); flex-direction: column;
        padding: 32px 24px; gap: 24px;
        transform: translateY(-120%); opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(123, 30, 58, 0.08);
        box-shadow: var(--shadow);
    }
    .nav-links.open { transform: translateY(0); opacity: 1; }
    .nav-links a { font-size: 1.1rem; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; padding: 120px 0 80px;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--blush-pale) 0%, var(--cream) 50%, var(--blush-light) 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle {
    position: absolute; border-radius: 50%;
    background: var(--burgundy); opacity: 0.04;
}
.geo-circle--1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.geo-circle--2 { width: 300px; height: 300px; bottom: -80px; left: -60px; opacity: 0.06; }
.geo-rect {
    position: absolute; border-radius: var(--radius-lg);
    background: var(--burgundy); opacity: 0.03;
}
.geo-rect--1 { width: 200px; height: 400px; top: 10%; left: 5%; transform: rotate(15deg); }
.geo-rect--2 { width: 120px; height: 120px; bottom: 15%; right: 10%; transform: rotate(-30deg); background: var(--blush); opacity: 0.15; }
.geo-dots {
    position: absolute; width: 120px; height: 120px;
    bottom: 20%; left: 8%;
    background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
    background-size: 16px 16px; opacity: 0.12;
}

.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-content { max-width: 540px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--blush);
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; color: var(--burgundy);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--burgundy); animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 20px; line-height: 1.1;
    color: var(--dark);
}
.hero-headline .highlight {
    color: var(--burgundy);
    font-style: italic;
}
.hero-sub {
    font-size: 1.1rem; color: var(--text-muted);
    margin-bottom: 32px; max-width: 460px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex; align-items: center; gap: 24px;
    padding-top: 32px; border-top: 1px solid rgba(123, 30, 58, 0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--burgundy);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.stat-divider {
    width: 1px; height: 40px; background: rgba(123, 30, 58, 0.15);
}

.hero-visual { position: relative; }
.hero-img-stack { position: relative; height: 650px; }
.hero-img {
    position: absolute; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--1 { width: 300px; height: 400px; top: 0; right: 0; }
.hero-img--2 { width: 260px; height: 180px; bottom: 200px; right: 80px; z-index: 2; }
.hero-img--3 { width: 200px; height: 140px; bottom: 40px; left: 0; z-index: 2; }
.hero-float-card {
    position: absolute; bottom: 180px; left: -20px;
    background: var(--white); border-radius: var(--radius);
    padding: 16px 20px; box-shadow: var(--shadow-lg); z-index: 3;
    display: flex; flex-direction: column; gap: 4px;
}
.float-card-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 700; }
.float-card-value { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--burgundy); }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: 100%; }
    .hero-visual { display: none; }
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--burgundy); margin-bottom: 16px;
}
.section-tag::before {
    content: ''; width: 24px; height: 2px; background: var(--burgundy);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.text-accent { color: var(--burgundy); font-style: italic; }
.section-desc {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 520px; line-height: 1.7; margin-bottom: 48px;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-accent {
    position: absolute; width: 200px; height: 200px;
    bottom: -30px; right: -30px;
    background: var(--burgundy); opacity: 0.06;
    border-radius: var(--radius-lg); z-index: -1;
}
.about-content .section-desc { margin-bottom: 24px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-features li {
    display: flex; align-items: flex-start; gap: 14px;
    font-weight: 500; color: var(--text);
}
.feature-icon {
    width: 24px; height: 24px; flex-shrink: 0;
    color: var(--burgundy); margin-top: 2px;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-main img { height: 350px; }
}

/* ===== MENU ===== */
.menu { padding: 100px 0; background: var(--cream); }
.menu .container { text-align: center; }
.menu .section-desc { margin-left: auto; margin-right: auto; }

.menu-tabs {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 48px; flex-wrap: wrap;
}
.menu-tab {
    padding: 10px 24px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 700;
    background: transparent; border: 2px solid rgba(123, 30, 58, 0.15);
    color: var(--text-muted); 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-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.menu-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img { height: 200px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 24px; }
.menu-card-body h3 {
    font-size: 1.2rem; margin-bottom: 8px; color: var(--dark);
}
.menu-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0 80px; background: var(--white); }
.gallery .container { text-align: center; margin-bottom: 48px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px; padding: 0 24px;
    max-width: 1400px; margin: 0 auto;
}
.gallery-item {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 14, 0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 24px;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white); font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
}
.gallery-item--wide { grid-column: span 6; }
.gallery-item--tall { grid-column: span 3; grid-row: span 2; }

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
    .gallery-item, .gallery-item--wide, .gallery-item--tall { height: 220px; }
}
@media (max-width: 500px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
    .gallery-item, .gallery-item--wide, .gallery-item--tall { height: 200px; }
}

/* ===== VISIT ===== */
.visit { padding: 100px 0; background: linear-gradient(135deg, var(--blush-pale) 0%, var(--cream) 100%); }
.visit-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.visit-detail {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 28px;
}
.visit-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--burgundy); color: var(--white);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center;
}
.visit-icon svg { width: 20px; height: 20px; }
.visit-detail strong {
    display: block; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px;
}
.visit-detail p { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.visit-detail a { color: var(--burgundy); font-weight: 700; }
.visit-detail a:hover { text-decoration: underline; }
.visit-map {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); margin-top: 16px;
}

.cta-card {
    background: var(--burgundy); border-radius: var(--radius-lg);
    padding: 48px 40px; position: relative; overflow: hidden;
    color: var(--white);
}
.cta-card-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(244, 194, 194, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(244, 194, 194, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h3 {
    font-size: 1.8rem; margin-bottom: 28px; color: var(--white);
    line-height: 1.3;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius); background: rgba(255, 255, 255, 0.1);
    color: var(--white); font-family: inherit; font-size: 0.95rem;
    transition: var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--blush); background: rgba(255, 255, 255, 0.15);
}
.form-success {
    text-align: center; padding: 24px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.form-success svg { width: 48px; height: 48px; color: var(--blush); }
.form-success p { color: var(--white); font-size: 1rem; }

@media (max-width: 900px) {
    .visit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .cta-card { padding: 32px 24px; }
    .cta-card h3 { font-size: 1.4rem; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark); color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo-mark { width: 48px; height: 48px; font-size: 1rem; }
.footer-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900; font-size: 1.3rem; color: var(--white);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong, .footer-contact strong {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.4);
}
.footer-links a {
    font-size: 0.9rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; }
.footer-contact a { color: var(--blush); font-weight: 700; }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0; display: flex;
    justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem; color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
