/* ========================================
   Meet & Whiskey — Styles
   Deep Navy + Warm Gold · Editorial
   ======================================== */

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

:root {
    --navy: #0a1628;
    --navy-light: #132240;
    --navy-mid: #1a2d4a;
    --gold: #c8a45a;
    --gold-light: #dbb96e;
    --gold-dark: #a8873e;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --white: #ffffff;
    --text-light: #c8c4bc;
    --text-muted: #8a8578;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

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

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(200, 164, 90, 0.15);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    border: 1px solid var(--gold);
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.nav__link--cta {
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav__link--cta:hover {
    background: var(--gold);
    color: var(--navy);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(19, 34, 64, 0.85) 35%,
        rgba(26, 45, 74, 0.78) 60%,
        rgba(40, 30, 15, 0.82) 100%
    );
    z-index: 1;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        transparent 0%,
        rgba(10, 22, 40, 0.4) 100%
    );
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 860px;
    padding: 0 2rem;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero__headline em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero__subhead {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.8s 1.5s forwards;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s infinite;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 164, 90, 0.3);
}

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

.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--lg {
    padding: 1.15rem 2.5rem;
    font-size: 0.9rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Section Shared
   ======================================== */
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-headline em {
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 500;
}

/* ========================================
   About
   ======================================== */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 40%;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

.about__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4538;
    margin-bottom: 1.25rem;
}

.about__text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Drinks
   ======================================== */
.drinks {
    padding: 8rem 0;
    background: var(--navy);
}

.drinks__header {
    text-align: center;
    margin-bottom: 4rem;
}

.drinks__header .section-eyebrow {
    color: var(--gold);
}

.drinks__header .section-headline {
    color: var(--white);
}

.drinks__header .section-headline em {
    color: var(--gold);
}

.drinks__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.drinks__column {
    background: var(--navy-light);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.drinks__column:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.drinks__column-image {
    overflow: hidden;
    height: 280px;
}

.drinks__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.drinks__column:hover .drinks__img {
    transform: scale(1.05);
}

.drinks__column-content {
    padding: 2.5rem;
}

.drinks__column-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.drinks__column-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.drinks__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.drinks__list li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 1.25rem;
    position: relative;
}

.drinks__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

/* ========================================
   Space
   ======================================== */
.space {
    padding: 8rem 0;
    background: var(--cream);
}

.space__showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.space__image-group {
    position: relative;
}

.space__img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
}

.space__img--main {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.space__img--accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    height: 250px;
    object-fit: cover;
    border: 4px solid var(--cream);
}

.space__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4538;
    margin-bottom: 1.25rem;
}

.space__features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.space__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.space__icon {
    width: 20px;
    height: 20px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.space__feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
}

/* ========================================
   Visit
   ======================================== */
.visit {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.visit__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.visit__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.93) 0%,
        rgba(19, 34, 64, 0.88) 100%
    );
}

.visit__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.visit__content .section-eyebrow {
    color: var(--gold);
}

.visit__content .section-headline {
    color: var(--white);
}

.visit__content .section-headline em {
    color: var(--gold);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2.5rem 0;
}

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

.visit__icon {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.15em;
}

.visit__detail strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.visit__detail p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.visit__detail a {
    color: var(--text-light);
    transition: var(--transition);
}

.visit__detail a:hover {
    color: var(--gold);
}

/* ========================================
   Contact
   ======================================== */
.contact {
    padding: 8rem 0;
    background: var(--cream-dark);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4538;
}

.contact__form-wrap {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.08);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.contact__success {
    text-align: center;
    padding: 3rem 2rem;
}

.contact__success svg {
    width: 48px;
    height: 48px;
    color: var(--gold-dark);
    margin: 0 auto 1rem;
}

.contact__success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact__success p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--navy);
    padding: 4rem 0 2rem;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(200, 164, 90, 0.15);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.footer__name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.footer__links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__bottom a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__bottom a:hover {
    color: var(--gold);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .about__grid,
    .space__showcase,
    .contact__grid {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .drinks__split {
        grid-template-columns: 1fr;
    }

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

    .space__img--accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 50%;
        margin-top: -60px;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        font-size: 1rem;
    }

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

    .about__image {
        height: 350px;
    }

    .about__image-accent {
        display: none;
    }

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

    .footer__top {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .space__img--accent {
        width: 65%;
    }

    .contact__form-wrap {
        padding: 1.5rem;
    }
}
