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

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

body {
    background-color: #1A0F13;
    color: #F2DEE1;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Scroll Reveal (progressive enhancement) ─────────────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 0;
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-up { transform: translateY(40px); }
    .reveal-left { transform: translateX(-40px); }
    .reveal-right { transform: translateX(40px); }

    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* ── Navbar ──────────────────────────────────────────────── */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 1rem;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-fixed.scrolled {
    background-color: rgba(26, 15, 19, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(109, 45, 56, 0.3);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #D4A24E;
    transition: width 0.3s ease;
}

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

/* Mobile menu */
.nav-menu {
    background-color: rgba(26, 15, 19, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/31907940/pexels-photo-31907940.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 15, 19, 0.92) 0%,
        rgba(45, 26, 33, 0.85) 40%,
        rgba(74, 44, 58, 0.75) 100%
    );
}

.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(212, 162, 78, 0.06) 0%, transparent 70%);
}

.hero-deco-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(109, 45, 56, 0.15) 0%, transparent 70%);
}

.hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Hero badge */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amber-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #D4A24E, transparent);
    flex-shrink: 0;
}

/* Hero floating cards */
.hero-cards {
    position: relative;
}

.float-card {
    position: absolute;
    background: rgba(45, 26, 33, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 162, 78, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.float-card-body {
    padding: 1rem 1.25rem;
}

.float-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 162, 78, 0.1);
    border: 1px solid rgba(212, 162, 78, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-1 {
    top: 0;
    right: 0;
    width: 280px;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 180px;
    right: 40px;
    width: 260px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 0;
    right: 20px;
    width: 280px;
    animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(212, 162, 78, 0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: #D4A24E;
    color: #1A0F13;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    border: 1px solid #D4A24E;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e0b05e;
    border-color: #e0b05e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 162, 78, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F2DEE1;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    border: 1px solid rgba(148, 73, 90, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #D4A24E;
    color: #D4A24E;
    transform: translateY(-2px);
}

/* ── Section shared ──────────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D4A24E;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, #D4A24E, transparent);
}

.section-about,
.section-drinks {
    position: relative;
}

.section-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(109, 45, 56, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.section-pattern-dark {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 80% 20%, rgba(212, 162, 78, 0.04) 0%, transparent 50%),
                      radial-gradient(ellipse at 20% 80%, rgba(109, 45, 56, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* ── About ───────────────────────────────────────────────── */
.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 4px;
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 162, 78, 0.2);
    border-radius: 4px;
    z-index: -1;
}

/* ── Experience Cards ────────────────────────────────────── */
.experience-card {
    background: rgba(45, 26, 33, 0.5);
    border: 1px solid rgba(109, 45, 56, 0.3);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.experience-card:hover {
    border-color: rgba(212, 162, 78, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.experience-card-img {
    overflow: hidden;
}

.experience-card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .experience-card-img img {
    transform: scale(1.05);
}

.experience-card-body {
    padding: 2rem;
}

.experience-card-icon {
    width: 48px;
    height: 48px;
    color: #D4A24E;
    opacity: 0.8;
}

/* ── Drink Cards ─────────────────────────────────────────── */
.drink-card {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.drink-card-img {
    position: relative;
    overflow: hidden;
}

.drink-card-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.drink-card:hover .drink-card-img img {
    transform: scale(1.05);
}

.drink-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 15, 19, 0.95) 0%,
        rgba(26, 15, 19, 0.7) 40%,
        rgba(26, 15, 19, 0.2) 70%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

/* ── Visit Section ───────────────────────────────────────── */
.visit-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 162, 78, 0.08);
    border: 1px solid rgba(212, 162, 78, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-hours {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit-hours .font-body {
    line-height: 1.8;
}

/* Map */
.map-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background:
        linear-gradient(135deg, rgba(45, 26, 33, 0.9), rgba(74, 44, 58, 0.8)),
        url('https://images.pexels.com/photos/34386530/pexels-photo-34386530.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=800&h=900') center center / cover no-repeat;
    border-radius: 4px;
    border: 1px solid rgba(109, 45, 56, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    padding: 3rem;
}

/* ── CTA Section ─────────────────────────────────────────── */
.section-cta {
    position: relative;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/34387170/pexels-photo-34387170.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center center / cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 15, 19, 0.93) 0%,
        rgba(45, 26, 33, 0.88) 50%,
        rgba(26, 15, 19, 0.93) 100%
    );
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-form {
    background: rgba(45, 26, 33, 0.5);
    border: 1px solid rgba(109, 45, 56, 0.3);
    border-radius: 4px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A24E;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(26, 15, 19, 0.6);
    border: 1px solid rgba(109, 45, 56, 0.4);
    border-radius: 2px;
    padding: 0.875rem 1rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    color: #F2DEE1;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #8C3A4A;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(212, 162, 78, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: #0D080A;
    border-top: 1px solid rgba(109, 45, 56, 0.2);
}

.footer a:hover {
    color: #D4A24E;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-cards {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero-text p {
        max-width: 100%;
    }

    .hero-text .flex {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding-top: 6rem;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

    .section-about,
    .section-experience,
    .section-drinks,
    .section-visit,
    .section-cta,
    .section-contact {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .font-display.text-4xl {
        font-size: 2.25rem;
    }

    .about-img-wrapper img {
        height: 450px;
    }

    .about-img-accent {
        display: none;
    }

    .drink-card-img img {
        height: 400px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .map-wrapper,
    .map-placeholder {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-text .flex {
        flex-direction: column;
    }
}
