/* ─────────────────────────────────────────────
   Antique Liquor Inc — Custom Styles
   Palette: Midnight Blue #0A1628 · Mint #98D4C8
   ───────────────────────────────────────────── */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0A1628;
    --midnight-light: #132240;
    --midnight-mid: #1a2d4a;
    --mint: #98D4C8;
    --mint-light: #b8e6dc;
    --mint-dark: #6fb8a8;
    --cream: #f8f7f4;
    --white: #ffffff;
    --gray-100: #f1f0ec;
    --gray-200: #e2e0d9;
    --gray-300: #c4c1b8;
    --gray-400: #9e9b91;
    --gray-500: #6e6b63;
    --gray-600: #4a4841;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--midnight);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(152, 212, 200, 0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand-letter {
    font-family: var(--font-display), serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--mint);
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(152, 212, 200, 0.3);
    border-radius: 8px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-brand:hover .nav-brand-letter {
    border-color: var(--mint);
    background: rgba(152, 212, 200, 0.08);
}

.nav-brand-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.nav-brand:hover .nav-brand-text {
    color: rgba(255, 255, 255, 0.95);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--mint) !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    font-size: 13px !important;
    transition: color 0.3s ease !important;
}

.nav-phone::after {
    display: none !important;
}

.nav-phone:hover {
    color: var(--mint-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 20px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-toggle.active span {
    background: var(--mint) !important;
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--midnight);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(152, 212, 200, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(152, 212, 200, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 32px;
}

.hero-tag-line {
    width: 32px;
    height: 1px;
    background: var(--mint);
    opacity: 0.5;
}

.hero-headline {
    font-family: var(--font-display), serif;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--mint);
    font-weight: 300;
}

.hero-sub {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 420px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 4px;
    transition: all 0.35s var(--ease-out-expo);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
}

.btn-primary:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(152, 212, 200, 0.25);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 580px;
}

.hero-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.hero-card-main {
    width: 320px;
    height: 420px;
    top: 40px;
    right: 0;
    z-index: 2;
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 22px;
    border-radius: 12px;
    z-index: 3;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.hero-card-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.stat-1 {
    bottom: 200px;
    left: -20px;
}

.stat-2 {
    bottom: 40px;
    left: 30px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(152, 212, 200, 0.12);
    color: var(--mint);
    flex-shrink: 0;
}

.stat-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.stat-value {
    display: block;
    font-family: var(--font-display), serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(152, 212, 200, 0.2), transparent);
}

/* ─────────────────────────────────────────────
   SECTION LABELS & TITLES
   ───────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background: var(--mint-dark);
}

.section-title {
    font-family: var(--font-display), serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--midnight);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--mint-dark);
    font-weight: 300;
}

.section-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 480px;
    font-weight: 300;
}

/* ─────────────────────────────────────────────
   ABOUT
   ───────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-visual {
    position: relative;
}

.about-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10, 22, 40, 0.12);
}

.about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}

.about-image-wrap:hover img {
    transform: scale(1.03);
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 1px solid var(--mint);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.4;
}

.about-content {
    padding-left: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    color: var(--mint-dark);
    opacity: 0.5;
}

.about-divider-line {
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 400;
}

.about-features li svg {
    color: var(--mint-dark);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   PRODUCTS
   ───────────────────────────────────────────── */
.products {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-sub {
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--midnight);
    background: var(--mint);
    padding: 4px 10px;
    border-radius: 3px;
}

.product-card-body {
    padding: 24px 20px;
}

.product-card-title {
    font-family: var(--font-display), serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray-500);
    font-weight: 300;
}

/* ─────────────────────────────────────────────
   VISIT
   ───────────────────────────────────────────── */
.visit {
    padding: 120px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(152, 212, 200, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 90%, rgba(152, 212, 200, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.visit .section-label {
    color: var(--mint);
}

.visit .section-label::before {
    background: var(--mint);
}

.visit .section-title {
    color: var(--white);
}

.visit .section-title em {
    color: var(--mint);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.visit-info {
    padding: 20px 0;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.visit-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(152, 212, 200, 0.08);
    border: 1px solid rgba(152, 212, 200, 0.15);
    color: var(--mint);
    flex-shrink: 0;
}

.visit-detail-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
}

.visit-detail-value {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 300;
}

.visit-detail-value a {
    color: var(--mint);
    text-decoration: none;
    transition: color 0.3s ease;
}

.visit-detail-value a:hover {
    color: var(--mint-light);
}

.visit-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.visit-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.visit-map iframe {
    border-radius: 12px;
    filter: saturate(0.7) brightness(0.85) contrast(1.1);
    transition: filter 0.4s ease;
}

.visit-map:hover iframe {
    filter: saturate(0.9) brightness(0.9) contrast(1.05);
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
    background: #060e1a;
    padding: 64px 0 40px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand-letter {
    font-family: var(--font-display), serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--mint);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(152, 212, 200, 0.25);
    border-radius: 6px;
}

.footer-brand-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.3);
    max-width: 400px;
    font-weight: 300;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(152, 212, 200, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--mint);
}

/* ─────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        order: 2;
        max-width: 440px;
        margin: 0 auto;
    }

    .hero-card-main {
        width: 260px;
        height: 340px;
    }

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

    .about-content {
        padding-left: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit-map-wrap {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid rgba(152, 212, 200, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.5s var(--ease-out-expo), opacity 0.4s ease;
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-card-main {
        width: 200px;
        height: 270px;
        top: 20px;
        right: 10px;
    }

    .stat-1 {
        bottom: 120px;
        left: -10px;
        padding: 14px 16px;
    }

    .stat-2 {
        bottom: 20px;
        left: 20px;
        padding: 12px 14px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }

    .stat-value {
        font-size: 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about {
        padding: 80px 0;
    }

    .products {
        padding: 80px 0;
    }

    .visit {
        padding: 80px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-card-main {
        width: 170px;
        height: 230px;
    }

    .hero-card-stat {
        padding: 12px 14px;
        gap: 10px;
    }

    .stat-label {
        font-size: 9px;
    }

    .stat-value {
        font-size: 13px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 12px;
    }
}
