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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6D3;
    --blush-light: #FDF3EB;
    --blush-dark: #E8CDB8;
    --cream: #FFFAF6;
    --text: #2D1F24;
    --text-light: #6B5458;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(123,45,59,0.08);
    --shadow-md: 0 4px 20px rgba(123,45,59,0.12);
    --shadow-lg: 0 8px 40px rgba(123,45,59,0.16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --font-body: 'Nunito', sans-serif;
    --font-display: 'Lora', serif;
    --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(--text);
    background: var(--cream);
    line-height: 1.7;
    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; }
ul { list-style: none; }

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

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

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,250,246,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123,45,59,0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    color: var(--blush);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
}
.logo-wordmark {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--burgundy);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--burgundy);
    background: rgba(123,45,59,0.08);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(123,45,59,0.08); }
.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--burgundy);
    position: relative;
    transition: all var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: all var(--transition);
}
.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); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123,45,59,0.3);
}
.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(123,45,59,0.4);
}
.btn-secondary {
    background: var(--white);
    color: var(--burgundy);
    border: 2px solid rgba(123,45,59,0.2);
}
.btn-secondary:hover {
    border-color: var(--burgundy);
    background: rgba(123,45,59,0.05);
    transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ─── Section shared ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    background: rgba(123,45,59,0.1);
    color: var(--burgundy);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── Hero ─── */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--burgundy) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--burgundy);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.hero-badge svg { opacity: 0.8; }

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
}
.hero-headline em {
    color: var(--burgundy);
    font-style: italic;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
    height: 500px;
}
.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
}
.hero-card--main {
    width: 380px;
    height: 420px;
    right: 0;
    top: 20px;
}
.hero-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card--stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.hero-card--stat:hover { transform: translateY(-4px); transition: transform var(--transition); }
.hero-card--left {
    left: -20px;
    bottom: 60px;
}
.hero-card--right {
    right: -10px;
    bottom: 180px;
}
.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.stat-text { display: flex; flex-direction: column; }
.stat-text strong {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.3;
}
.stat-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ─── Menu ─── */
.menu-section {
    padding: 100px 0;
    background: var(--white);
}
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}
.menu-cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--blush-light);
    transition: all var(--transition);
}
.menu-cat-btn:hover { color: var(--burgundy); background: rgba(123,45,59,0.08); }
.menu-cat-btn.active {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(123,45,59,0.3);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.menu-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.menu-card-body {
    padding: 20px;
}
.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 8px;
}
.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}
.menu-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ─── About ─── */
.about-section {
    padding: 100px 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 600px;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--cream);
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2px;
}
.value-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ─── Gallery ─── */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    aspect-ratio: 5/4;
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ─── Visit ─── */
.visit-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--blush-light) 0%, var(--cream) 100%);
}
.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.visit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.visit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 20px;
}
.visit-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
}
.visit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}
.visit-card a {
    color: var(--burgundy);
    font-weight: 600;
    transition: color var(--transition);
}
.visit-card a:hover { color: var(--burgundy-deep); }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ─── Contact ─── */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    transition: color var(--transition);
}
.contact-detail:hover { color: var(--burgundy); }
.contact-detail svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(123,45,59,0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(123,45,59,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--blush-dark);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(123,45,59,0.08);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
    font-weight: 600;
    font-size: 0.95rem;
}
.form-success svg { flex-shrink: 0; }

/* ─── Footer ─── */
.site-footer {
    background: var(--burgundy-deep);
    color: var(--blush);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand .logo-wordmark { color: var(--blush); }
.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.75;
}
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--blush);
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--white); }
.footer-links li:not(:last-child) { font-size: 0.9rem; opacity: 0.7; }

.footer-bottom {
    border-top: 1px solid rgba(245,230,211,0.15);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ─── Scroll to top ─── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 90;
    transition: all var(--transition);
}
.scroll-top:hover { transform: translateY(-3px); background: var(--burgundy-deep); }
.scroll-top[hidden] { display: none; }

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 400px; order: -1; }
    .hero-card--main { width: 280px; height: 320px; right: 20px; }
    .hero-card--left { left: 0; bottom: 40px; }
    .hero-card--right { right: 0; bottom: 140px; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 400px; }
    .about-img-float { right: -10px; bottom: -20px; width: 200px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,250,246,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(123,45,59,0.1);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { padding: 12px 16px; width: 100%; text-align: center; }
    .nav-toggle { display: flex; }

    .hero { padding: 96px 0 60px; min-height: auto; }
    .hero-visual { height: 320px; }
    .hero-card--main { width: 220px; height: 260px; right: 10px; top: 10px; }
    .hero-card--stat { padding: 12px 16px; }
    .stat-icon { width: 40px; height: 40px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-visual { height: 260px; }
    .hero-card--main { width: 180px; height: 220px; }
    .hero-card--left { left: -10px; bottom: 20px; }
    .hero-card--right { right: -10px; bottom: 100px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-img-float { width: 160px; }
    .menu-grid { grid-template-columns: 1fr; }
}
