/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a2e;
    background: #fdfaf6;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ========== SKIP LINK ========== */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #5B2C6F; color: #fff; padding: .5rem 1rem;
    border-radius: 0 0 6px 6px; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ========== CUSTOM PROPERTIES ========== */
:root {
    --plum: #5B2C6F;
    --plum-deep: #3D1D4D;
    --plum-light: #7D3C99;
    --amber: #F59E0B;
    --amber-light: #FCD34D;
    --amber-dark: #D97706;
    --cream: #FDFAF6;
    --cream-dark: #F5F0E8;
    --neutral-100: #F7F7F8;
    --neutral-200: #E8E8EC;
    --neutral-300: #D1D1DB;
    --neutral-500: #6B6B7B;
    --neutral-700: #3A3A4A;
    --neutral-900: #1A1A2E;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(26,26,46,.06), 0 1px 2px rgba(26,26,46,.04);
    --shadow: 0 4px 20px rgba(26,26,46,.08);
    --shadow-lg: 0 12px 40px rgba(26,26,46,.12);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--neutral-900); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .875rem 1.75rem; border-radius: 50px;
    font-weight: 600; font-size: .9375rem;
    transition: all var(--transition); white-space: nowrap;
}
.btn-amber {
    background: var(--amber); color: var(--neutral-900);
    box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.45); }
.btn-outline {
    background: transparent; color: var(--plum);
    border: 2px solid var(--plum);
}
.btn-outline:hover { background: var(--plum); color: #fff; transform: translateY(-2px); }
.btn-outline-light {
    background: rgba(255,255,255,.12); color: #fff;
    border: 2px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: #fff; color: var(--plum); border-color: #fff; }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }

/* ========== HEADER ========== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,250,246,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex; align-items: center;
    padding-top: 1rem; padding-bottom: 1rem;
    gap: 1rem;
}
.logo {
    display: flex; align-items: center; gap: .625rem;
    text-decoration: none; flex-shrink: 0;
}
.logo-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 800;
    color: var(--plum); line-height: 1;
}
.logo-wordmark {
    font-size: .875rem; font-weight: 600;
    color: var(--neutral-700); letter-spacing: .02em;
    display: none;
}
@media (min-width: 640px) { .logo-wordmark { display: inline; } }

.site-nav ul { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
    padding: .5rem .875rem; border-radius: 8px;
    font-size: .9375rem; font-weight: 500; color: var(--neutral-700);
    transition: all var(--transition);
}
.site-nav a:hover { color: var(--plum); background: rgba(91,44,111,.06); }

.nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    margin-left: auto; flex-shrink: 0;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 20px; height: 2px;
    background: var(--neutral-700); border-radius: 2px;
    transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.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 (min-width: 900px) { .nav-toggle { display: none; } }

@media (max-width: 899px) {
    .site-nav {
        position: fixed; top: 65px; left: 0; right: 0;
        background: rgba(253,250,246,.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--neutral-200);
        padding: 1rem 1.5rem 1.5rem;
        transform: translateY(-110%); opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .site-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
    .site-nav a { padding: .75rem 1rem; font-size: 1rem; }
}

/* ========== HERO ========== */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(160deg, var(--cream) 0%, #f3e8f5 50%, var(--cream-dark) 100%);
    overflow: hidden; position: relative;
}
.hero-bg-pattern {
    position: absolute; inset: 0; pointer-events: none; opacity: .03;
    background-image: radial-gradient(circle at 2px 2px, var(--plum) 1px, transparent 0);
    background-size: 32px 32px;
}
.hero-grid {
    display: grid; gap: 3rem;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding: 6rem 0 6rem; }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(91,44,111,.08); border: 1px solid rgba(91,44,111,.15);
    border-radius: 50px; padding: .375rem 1rem;
    font-size: .8125rem; font-weight: 600; color: var(--plum);
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--amber); flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.3); } }

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1.25rem; color: var(--neutral-900);
    line-height: 1.15;
}
.hero-headline em { color: var(--plum); font-style: normal; }
.hero-sub {
    font-size: 1.125rem; color: var(--neutral-500);
    max-width: 520px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Hero visual */
.hero-visual { position: relative; min-height: 420px; }
.hero-card {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-card--main {
    width: 100%; aspect-ratio: 4/3;
    display: block;
}
@media (min-width: 1024px) {
    .hero-card--main { position: absolute; top: 0; right: 0; width: 85%; aspect-ratio: auto; height: 460px; }
}
.hero-card--main img, .hero-card--stat img { width: 100%; height: 100%; object-fit: cover; }

.stat-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem;
    z-index: 2;
}
.stat-card--wine { bottom: 38%; left: -1rem; }
.stat-card--spirit { bottom: 18%; left: 2%; }
.stat-card--beer { top: 0; left: 10%; }
@media (min-width: 1024px) {
    .stat-card--wine { bottom: 32%; left: -2rem; }
    .stat-card--spirit { bottom: 10%; left: 0; }
    .stat-card--beer { top: -10px; left: 5%; }
}
.stat-card-inner { display: flex; align-items: center; gap: .875rem; }
.stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-card--wine .stat-icon { background: rgba(91,44,111,.1); color: var(--plum); }
.stat-card--spirit .stat-icon { background: rgba(245,158,11,.15); color: var(--amber-dark); }
.stat-card--beer .stat-icon { background: rgba(91,44,111,.1); color: var(--plum); }
.stat-number { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.375rem; font-weight: 800; color: var(--neutral-900); line-height: 1; }
.stat-label { display: block; font-size: .8125rem; color: var(--neutral-500); margin-top: .125rem; }

/* ========== SECTIONS ========== */
.section { padding: 5rem 0; }
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header--centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-tag {
    display: inline-block;
    font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--plum); margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}
.section-desc { font-size: 1.0625rem; color: var(--neutral-500); line-height: 1.7; }

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SELECTION ========== */
.selection { background: var(--cream); }
.selection-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.category-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--neutral-200);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--plum-light); }
.category-card-img {
    overflow: hidden; aspect-ratio: 4/3;
}
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover .category-card-img img { transform: scale(1.05); }
.category-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.category-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(91,44,111,.08); color: var(--plum);
    display: flex; align-items: center; justify-content: center;
}
.category-card-title { font-size: 1.25rem; }
.category-card-desc { font-size: .9375rem; color: var(--neutral-500); line-height: 1.65; }

/* ========== ABOUT ========== */
.about { background: var(--neutral-100); }
.about-grid {
    display: grid; gap: 3rem;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.1fr 1fr; } }

.about-images { position: relative; min-height: 500px; }
.about-img-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 52/60; }
.about-img-accent {
    position: absolute; bottom: -2rem; right: -1rem;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid #fff;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 300/260; }
@media (min-width: 900px) {
    .about-img-accent { width: 55%; }
}
.about-accent-box {
    position: absolute; top: -1.5rem; left: -1rem;
    background: var(--plum); color: #fff;
    border-radius: var(--radius); padding: 1rem 1.25rem;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: var(--shadow-lg);
}
.accent-box-number { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.accent-box-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.125rem; font-weight: 700; }

.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-body { font-size: 1.0625rem; color: var(--neutral-500); line-height: 1.75; }
.about-features { display: grid; gap: .75rem; margin-top: .5rem; }
.about-feature {
    display: flex; align-items: center; gap: .875rem;
    padding: .75rem 1rem; border-radius: 10px;
    background: #fff; border: 1px solid var(--neutral-200);
    font-size: .9375rem; font-weight: 500; color: var(--neutral-700);
}
.about-feature-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(245,158,11,.12); color: var(--amber-dark);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ========== WHY ========== */
.why { background: var(--plum); color: #fff; }
.why .section-tag { color: var(--amber); }
.why .section-title { color: #fff; }
.why-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.why-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}
.why-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.why-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem; font-weight: 800; color: rgba(245,158,11,.3);
    line-height: 1; margin-bottom: 1rem;
}
.why-card-title { font-size: 1.25rem; color: #fff; margin-bottom: .75rem; }
.why-card-body { font-size: .9375rem; color: rgba(255,255,255,.7); line-height: 1.7; }

/* ========== VISIT ========== */
.visit { background: var(--cream); }
.visit-layout {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1fr;
    align-items: stretch;
}
@media (min-width: 900px) { .visit-layout { grid-template-columns: 1fr 1fr; } }

.visit-content { display: flex; flex-direction: column; gap: 1.5rem; padding: 2.5rem; background: var(--plum); border-radius: var(--radius-lg); color: #fff; }
.visit-content .section-tag { color: var(--amber); }
.visit-content .section-title { color: #fff; }
.visit-body { font-size: 1.0625rem; color: rgba(255,255,255,.75); line-height: 1.75; }
.visit-details { display: grid; gap: 1.25rem; }
.visit-detail { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.visit-detail-label {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8125rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; color: var(--amber);
}
.visit-detail dd { font-size: .9375rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.visit-address { white-space: pre-line; }
.visit-detail a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.visit-detail a:hover { color: var(--amber); }
.visit-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.visit-actions .btn-amber { flex-shrink: 0; }

.visit-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; }
.map-placeholder { position: relative; height: 100%; min-height: 400px; }
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(91,44,111,.3), transparent);
    display: flex; align-items: center; justify-content: center;
}
.map-pin { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--neutral-900); color: rgba(255,255,255,.6);
    padding: 4rem 0 2rem;
}
.footer-inner {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-brand .logo-mark { font-size: 2rem; }
.footer-brand .logo-wordmark { color: rgba(255,255,255,.7); font-size: 1rem; }
.footer-tagline { font-size: .9375rem; line-height: 1.7; max-width: 300px; }
.footer-label {
    display: block; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--amber); margin-bottom: .875rem;
}
.footer-links ul { display: grid; gap: .5rem; }
.footer-links a { font-size: .9375rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: .9375rem; line-height: 1.7; }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--amber); }
.footer-legal {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 2rem; margin-top: 1rem;
    display: grid; gap: .5rem;
    font-size: .8125rem;
}
.footer-legal p:last-child { opacity: .6; }
