/* ============================================
   Element Cocktail Lounge — Stylesheet
   Bold editorial · Emerald + Cream
   ============================================ */

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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50: #fefdf8;
    --cream-100: #fef9ef;
    --cream-200: #fef3c7;
    --cream-300: #fde68a;
    --warm-gray-50: #fafaf8;
    --warm-gray-100: #f5f4f0;
    --warm-gray-200: #e8e6df;
    --warm-gray-400: #98958a;
    --warm-gray-600: #5c5a54;
    --warm-gray-800: #2a2824;
    --warm-gray-900: #1a1814;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 3px rgba(26, 24, 20, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 24, 20, 0.1);
    --shadow-lg: 0 12px 40px rgba(26, 24, 20, 0.15);
    --shadow-xl: 0 24px 60px rgba(26, 24, 20, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--warm-gray-800);
    background-color: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ---------- Typography ---------- */
.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: var(--space-sm);
}

.section__eyebrow--light {
    color: var(--cream-200);
}

.section__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--warm-gray-900);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section__headline--light {
    color: var(--cream-50);
}

.section__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--warm-gray-600);
    max-width: 640px;
}

.section__body--light {
    color: rgba(254, 253, 248, 0.75);
}

.section__header--center {
    text-align: center;
}

.section__header--center .section__body {
    margin: 0 auto;
}

.section__center {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--emerald-700);
    color: var(--cream-50);
    border: 2px solid var(--emerald-700);
}

.btn--primary:hover {
    background-color: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background-color: transparent;
    color: var(--cream-50);
    border: 2px solid rgba(254, 253, 248, 0.4);
}

.btn--ghost:hover {
    border-color: var(--cream-50);
    background-color: rgba(254, 253, 248, 0.1);
    transform: translateY(-2px);
}

.btn--outline-light {
    background-color: transparent;
    color: var(--cream-100);
    border: 2px solid rgba(254, 253, 248, 0.3);
}

.btn--outline-light:hover {
    border-color: var(--cream-200);
    background-color: rgba(254, 253, 248, 0.08);
    transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(6, 78, 59, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(254, 253, 248, 0.08);
    transition: background-color 0.3s ease;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cream-200);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream-200);
    border-radius: var(--radius-sm);
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cream-50);
    letter-spacing: 0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(254, 253, 248, 0.7);
    transition: color 0.25s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--cream-200);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--cream-50);
}

.nav__link::after:hover {
    width: 100%;
}

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(254, 253, 248, 0.3);
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.nav__link--cta:hover {
    border-color: var(--cream-200);
    background-color: rgba(254, 253, 248, 0.1);
}

.nav__link--cta::after {
    display: none;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--cream-50);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--emerald-900);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    align-items: center;
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
}

.hero__content {
    padding-right: var(--space-xl);
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-300);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background-color: var(--cream-300);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--cream-50);
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(254, 253, 248, 0.7);
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(254, 253, 248, 0.55);
    letter-spacing: 0.04em;
}

.hero__trust-item svg {
    color: var(--cream-300);
}

/* Hero Image */
.hero__image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero__image {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

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

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    max-width: 560px;
    height: 100%;
    border: 2px solid rgba(254, 243, 199, 0.2);
    border-radius: var(--radius-lg);
    z-index: 0;
}

/* ---------- Sections ---------- */
.section {
    padding: var(--space-3xl) 0;
}

.section--dark {
    background-color: var(--warm-gray-900);
}

.section--cream {
    background-color: var(--cream-100);
}

/* ---------- About ---------- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__content .section__headline {
    margin-top: var(--space-xs);
}

.about__content .section__body {
    margin-bottom: var(--space-md);
}

.about__stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--warm-gray-200);
}

.stat__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--emerald-700);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--warm-gray-400);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---------- Drinks ---------- */
.drinks__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.drink-card {
    background-color: rgba(254, 253, 248, 0.04);
    border: 1px solid rgba(254, 253, 248, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.drink-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(254, 253, 248, 0.15);
}

.drink-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.drink-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.drink-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 24, 20, 0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drink-card:hover .drink-card__overlay {
    opacity: 1;
}

.drink-card__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    background-color: var(--emerald-700);
    color: var(--cream-50);
}

.drink-card__tag--light {
    background-color: var(--cream-200);
    color: var(--warm-gray-900);
}

.drink-card__body {
    padding: var(--space-md);
}

.drink-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: 0.5rem;
}

.drink-card__name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream-50);
    letter-spacing: -0.01em;
}

.drink-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(254, 253, 248, 0.6);
}

/* ---------- Bites ---------- */
.bites__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.bites__layout .bites__content .section__headline {
    margin-top: var(--space-xs);
}

.bites__list {
    list-style: none;
    margin: var(--space-lg) 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.bites__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--warm-gray-600);
}

.bites__item-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--emerald-700);
    color: var(--cream-50);
    margin-top: 2px;
}

.bites__item-mark svg {
    width: 11px;
    height: 11px;
}

.bites__image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ---------- Ambiance ---------- */
.ambiance__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.ambiance__card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--cream-50);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ambiance__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.ambiance__card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ambiance__card:hover img {
    transform: scale(1.05);
}

.ambiance__card-content {
    padding: var(--space-md);
}

.ambiance__card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--warm-gray-900);
    margin-bottom: 0.375rem;
}

.ambiance__card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--warm-gray-600);
}

/* ---------- CTA / Visit ---------- */
.section--cta {
    background: linear-gradient(135deg, var(--emerald-900) 0%, #044d38 50%, var(--emerald-800) 100%);
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.cta__text .section__headline {
    margin-bottom: var(--space-sm);
}

.cta__text .section__body {
    margin-bottom: var(--space-lg);
}

.cta__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cta__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: rgba(254, 253, 248, 0.06);
    border: 1px solid rgba(254, 253, 248, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
}

.cta__detail:hover {
    background-color: rgba(254, 253, 248, 0.1);
    border-color: rgba(254, 253, 248, 0.2);
}

.cta__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background-color: rgba(254, 243, 199, 0.15);
    color: var(--cream-200);
}

.cta__detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.cta__detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(254, 253, 248, 0.5);
}

.cta__detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-50);
    line-height: 1.5;
}

.cta__detail-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-200);
    transition: color 0.2s ease;
}

.cta__detail-link:hover {
    color: var(--cream-50);
    text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--warm-gray-900);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: var(--space-sm);
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cream-50);
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(254, 253, 248, 0.5);
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-200);
    margin-bottom: var(--space-md);
}

.footer__link {
    display: block;
    font-size: 0.9375rem;
    color: rgba(254, 253, 248, 0.55);
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--cream-50);
}

.footer__address {
    font-size: 0.9375rem;
    color: rgba(254, 253, 248, 0.55);
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(254, 253, 248, 0.3);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .hero__content {
        padding-right: 0;
        order: 1;
    }

    .hero__eyebrow {
        justify-content: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image-wrap {
        justify-content: center;
        order: 2;
    }

    .hero__image {
        max-width: 480px;
    }

    .hero__image-accent {
        display: none;
    }

    .about__grid,
    .bites__layout,
    .cta__inner {
        grid-template-columns: 1fr;
    }

    .about__image-col {
        order: -1;
    }

    .bites__image-col {
        order: -1;
    }

    .drinks__grid {
        grid-template-columns: 1fr;
    }

    .ambiance__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-color: rgba(6, 78, 59, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        padding: var(--space-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(254, 253, 248, 0.08);
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero__split {
        min-height: auto;
        padding: var(--space-lg) var(--space-md);
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .about__stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    :root {
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .cta__detail {
        flex-direction: column;
        gap: var(--space-sm);
    }
}
