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

:root {
    --plum-50:  #fdf2f9;
    --plum-100: #fce7f3;
    --plum-200: #fbcfe8;
    --plum-300: #f9a8d4;
    --plum-400: #f472b6;
    --plum-500: #6B2D5B;
    --plum-600: #581247;
    --plum-700: #3d0c32;
    --plum-800: #2a0823;
    --plum-900: #1a0516;

    --amber-50:  #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #F5C77E;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;

    --cream:    #FAF6F3;
    --cream-dk: #F0EBE5;
    --warm-white: #FFFCF9;
    --text-dark:  #1a1a1a;
    --text-mid:   #4a4a4a;
    --text-light: #7a7a7a;

    --radius-sm:  12px;
    --radius-md:  20px;
    --radius-lg:  32px;
    --radius-xl:  48px;

    --shadow-sm:  0 2px 8px rgba(107, 45, 91, 0.06);
    --shadow-md:  0 8px 30px rgba(107, 45, 91, 0.10);
    --shadow-lg:  0 16px 60px rgba(107, 45, 91, 0.14);
    --shadow-sm-amber: 0 4px 20px rgba(245, 199, 126, 0.30);

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-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-dark);
    background: var(--cream);
    line-height: 1.65;
    -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; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--plum-500); color: #fff;
    padding: .5rem 1rem; border-radius: var(--radius-sm);
    z-index: 1000; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 246, 243, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(107, 45, 91, 0.08);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

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

.logo {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--plum-500);
    font-weight: 400;
}
.logo-light { color: var(--plum-200); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--plum-100); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-toggle-bar {
    width: 22px; height: 2px;
    background: var(--plum-500);
    border-radius: 2px;
    transition: var(--transition);
}

#navMenu { display: flex; align-items: center; }
#navMenu ul { display: flex; align-items: center; gap: .25rem; }
#navMenu a {
    padding: .5rem .875rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
}
#navMenu a:hover { color: var(--plum-500); background: var(--plum-50); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--plum-500);
    color: #fff;
    box-shadow: 0 4px 20px rgba(107, 45, 91, 0.3);
}
.btn-primary:hover {
    background: var(--plum-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 45, 91, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--plum-500);
    border: 2px solid var(--plum-200);
}
.btn-outline:hover {
    background: var(--plum-50);
    border-color: var(--plum-400);
}
.btn-outline-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
}
.btn-sm { padding: .5rem 1.125rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    background: var(--plum-500);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(245, 199, 126, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(157, 75, 130, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(245, 199, 126, 0.15);
    border: 1px solid rgba(245, 199, 126, 0.3);
    color: var(--amber-300);
    padding: .4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--amber-300);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.5); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-headline em {
    color: var(--amber-300);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.hero-stats {
    display: flex; align-items: center; gap: 1.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--amber-300);
    line-height: 1;
}
.stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .25rem;
}
.stat-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.hero-img-main {
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    width: 100%;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-accent {
    position: absolute;
    bottom: -1rem;
    left: -2rem;
    width: 180px; height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--plum-500);
    box-shadow: var(--shadow-md);
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.hero-stamp {
    position: absolute;
    top: 1.5rem; right: -1rem;
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--plum-500);
    background: var(--plum-100);
    padding: .35rem 1rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--plum-700);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--plum-400); }

/* ===== ABOUT ===== */
.about {
    padding: 7rem 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images {
    position: relative;
    min-height: 600px;
}
.about-img-lg {
    border-radius: var(--radius-lg) 4px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.about-img-lg img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sm {
    position: absolute;
    bottom: 2rem; right: -1.5rem;
    width: 200px; height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--cream);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-pattern {
    position: absolute;
    top: -1rem; right: 2rem;
    z-index: 0;
    opacity: 0.6;
}
.about-content { max-width: 520px; }
.about-content p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}
.about-features {
    margin-top: 2rem;
    display: grid;
    gap: .75rem;
}
.about-features li {
    display: flex; align-items: center; gap: .75rem;
    font-weight: 500;
    color: var(--text-dark);
}
.feature-icon {
    width: 32px; height: 32px;
    background: var(--plum-100);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ===== MENU ===== */
.menu {
    padding: 7rem 0;
    background: var(--warm-white);
}
.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.menu-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
}
.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(107, 45, 91, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.menu-card-accent {
    background: var(--plum-500);
    border-color: transparent;
}
.menu-card-accent .menu-card-icon svg { stroke: var(--amber-300); }
.menu-card-accent .menu-card-title { color: #fff; }
.menu-card-accent .menu-card-desc { color: rgba(255,255,255,0.7); }
.menu-card-accent .menu-list li span { color: rgba(255,255,255,0.9); }
.menu-card-accent .menu-list li span:last-child { color: rgba(255,255,255,0.5); }
.menu-card-accent::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245,199,126,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.menu-card-badge {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: var(--amber-300);
    color: var(--plum-800);
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.menu-card-icon {
    width: 64px; height: 64px;
    background: var(--plum-100);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.menu-card-accent .menu-card-icon { background: rgba(245,199,126,0.2); }
.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--plum-700);
    margin-bottom: .5rem;
}
.menu-card-desc {
    color: var(--text-mid);
    font-size: .9rem;
    margin-bottom: 1.25rem;
}
.menu-list { display: flex; flex-direction: column; gap: .6rem; }
.menu-list li {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(107, 45, 91, 0.08);
}
.menu-list li:last-child { border-bottom: none; padding-bottom: 0; }
.menu-list li span { font-size: .9rem; }
.menu-list li span:first-child { font-weight: 600; color: var(--text-dark); }
.menu-list li span:last-child {
    font-size: .78rem;
    color: var(--text-light);
    font-weight: 400;
}
.menu-note {
    text-align: center;
    margin-top: 2rem;
    font-size: .85rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto; margin-right: auto;
}

/* ===== STORY ===== */
.story {
    padding: 7rem 0;
    background: var(--cream);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-content { max-width: 520px; }
.story-content p {
    color: var(--text-mid);
    font-size: 1.02rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}
.story-visual {
    position: relative;
    min-height: 500px;
}
.story-img-stack { position: relative; }
.story-img-1 {
    border-radius: var(--radius-lg) 4px var(--radius-sm) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.story-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.story-img-2 {
    position: absolute;
    bottom: -2rem; right: -1.5rem;
    width: 220px; height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--cream);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.story-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.story-accent-shape {
    position: absolute;
    top: 2rem; left: -1rem;
    width: 100px; height: 100px;
    background: var(--plum-200);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

/* ===== VISIT ===== */
.visit {
    padding: 7rem 0;
    background: var(--plum-500);
    position: relative;
    overflow: hidden;
}
.visit::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 90% 50%, rgba(245,199,126,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(157,75,130,0.25) 0%, transparent 50%);
    pointer-events: none;
}
.visit-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.visit-content { color: #fff; }
.visit-content .section-label {
    background: rgba(245,199,126,0.2);
    color: var(--amber-300);
}
.visit-content .section-title { color: #fff; }
.visit-content .section-title em { color: var(--amber-300); }

.visit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}
.visit-item {
    display: flex; gap: 1rem; align-items: flex-start;
}
.visit-item-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--amber-300);
}
.visit-item strong {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: .25rem;
}
.visit-item p {
    font-size: .95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}
.visit-item a {
    color: var(--amber-300);
    transition: var(--transition);
}
.visit-item a:hover { color: #fff; }

.visit-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
}
.visit-image {
    border-radius: var(--radius-lg) 4px var(--radius-sm) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 600px;
}
.visit-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOOTER ===== */
.footer {
    background: var(--plum-800);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    margin-top: 1rem;
    font-size: .9rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer h4 {
    color: var(--amber-300);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}
.footer p { font-size: .9rem; line-height: 1.8; }
.footer a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer a:hover { color: var(--amber-300); }
.footer .closed { color: rgba(255,255,255,0.35); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: .8rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--amber-300); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
}
@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(30px);
    }
    .reveal.visible[data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ===== MOBILE MENU ===== */
.nav-overlay {
    position: fixed; inset: 0;
    background: rgba(107, 45, 91, 0.5);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { justify-content: flex-start; }
    .hero-img-main { max-width: 360px; }
    .hero-img-accent { width: 140px; height: 140px; left: 0; bottom: -0.5rem; }
    .about-grid, .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-images { min-height: 400px; }
    .menu-categories { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .visit-card { grid-template-columns: 1fr; }
    .visit-image { max-height: 400px; order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; z-index: 101; }
    #navMenu {
        position: fixed;
        top: 0; right: 0;
        width: 280px; height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 6rem 1.5rem 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }
    #navMenu.open { transform: translateX(0); }
    #navMenu ul { flex-direction: column; gap: .25rem; }
    #navMenu a { padding: .75rem 1rem; font-size: 1rem; }
    #navMenu .btn { justify-content: center; margin-top: .5rem; }

    .hero { padding-top: 72px; }
    .hero-grid { padding: 2rem 0 4rem; }
    .hero-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-img-accent { display: none; }
    .hero-stamp { right: 0; top: 1rem; }
    .hero-stats { gap: 1rem; }
    .stat-num { font-size: 1.5rem; }

    .about, .menu, .story, .visit { padding: 4rem 0; }
    .about-img-sm { width: 140px; height: 140px; right: -0.5rem; bottom: 1rem; }
    .story-img-2 { width: 160px; height: 160px; right: -0.75rem; bottom: -1rem; }
    .visit-details { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .visit-actions { flex-direction: column; }
    .visit-actions .btn { justify-content: center; }
}
