/* ========================================
   Corby's Bar — Classic & Elegant Styles
   Palette: Deep Navy (#0f1c3f) + Warm Gold (#c9a84c)
   Fonts: Playfair Display + Lato
======================================== */

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

:root {
    --navy: #0f1c3f;
    --navy-light: #1a2d56;
    --navy-dark: #091229;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #b8943f;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --charcoal: #2a2a2a;
    --text-dark: #1a1a1a;
    --text-light: #f5f0e8;
    --text-muted: #6b6b6b;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Segoe UI', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-light);
    line-height: 1.7;
    -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;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

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

/* ---------- Typography ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

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

.section-eyebrow--dark {
    color: var(--navy);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 24px;
}

.section-title--light {
    color: var(--cream);
}

.section-title--dark {
    color: var(--navy-dark);
}

.title-accent {
    font-style: italic;
    color: var(--gold);
}

.title-accent-light {
    font-style: italic;
    color: var(--gold-light);
}

.title-accent-dark {
    font-style: italic;
    color: var(--navy);
}

.section-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 20px;
}

.section-lead--light {
    color: rgba(245, 240, 232, 0.7);
    max-width: 480px;
}

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

.section-header--center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.4);
}

.btn--outline:hover {
    border-color: var(--cream);
    background: rgba(245, 240, 232, 0.1);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
}

.btn--dark:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 28, 63, 0.3);
}

.btn--full {
    width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 28, 63, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-initial {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 4px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.75);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--cream);
}

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

.nav-link--cta {
    color: var(--gold);
}

.nav-link--cta:hover {
    color: var(--gold-light);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 18, 41, 0.97);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.nav-overlay.active .nav-menu-mobile {
    display: flex;
}

.nav-menu-mobile {
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.nav-menu-mobile .nav-link {
    font-size: 1.25rem;
    letter-spacing: 0.12em;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    padding-top: 72px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 28px;
}

.title-accent {
    font-style: italic;
    color: var(--gold);
}

.hero-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
}

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

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9375rem;
}

.hero-detail a {
    color: rgba(245, 240, 232, 0.6);
}

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

.hero-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    pointer-events: none;
}

.hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.4;
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 16px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    width: 20px;
    height: 20px;
}

/* Hero Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px 40px;
    color: var(--gold);
    opacity: 0.5;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* ---------- Section Base ---------- */
.section {
    padding: 100px 0;
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-group {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 28, 63, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 28, 63, 0.2);
    border: 4px solid var(--cream-light);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent-block {
    position: absolute;
    top: -24px;
    left: -24px;
    background: var(--navy);
    color: var(--gold);
    padding: 20px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(15, 28, 63, 0.25);
}

.accent-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.accent-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 4px;
}

.about-text-col .section-lead {
    margin-bottom: 16px;
}

.about-text-col p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---------- Drinks ---------- */
.section--dark {
    background: var(--navy);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.drink-card {
    background: var(--navy-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all var(--transition);
}

.drink-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.drink-card-image {
    overflow: hidden;
    height: 220px;
}

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

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

.drink-card-content {
    padding: 28px;
}

.drink-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.drink-card-content p {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

.section-cta {
    text-align: center;
}

/* ---------- Atmosphere ---------- */
.atmosphere-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.atmosphere-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.atm-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 28, 63, 0.12);
}

.atm-img--large {
    height: 100%;
}

.atm-img--large img,
.atm-img--small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atm-img--small {
    height: 200px;
}

.atmosphere-text .section-lead {
    margin-bottom: 16px;
}

.atmosphere-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.atmosphere-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.atm-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-top: 6px;
    line-height: 1.4;
}

.atm-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--cream-dark);
}

/* ---------- Visit ---------- */
.section--gold {
    background: var(--gold);
    padding: 80px 0;
}

.visit-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.section-eyebrow--dark {
    color: var(--navy);
    opacity: 0.6;
}

.section-title--dark {
    color: var(--navy-dark);
}

.title-accent-dark {
    color: var(--navy);
    opacity: 0.7;
}

.visit-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.visit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: var(--navy-dark);
}

.visit-item strong {
    font-family: var(--font-serif);
    font-size: 1rem;
    display: block;
}

.visit-item span,
.visit-item a {
    font-size: 0.9375rem;
    color: var(--navy);
    opacity: 0.8;
}

.visit-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

.visit-icon {
    width: 24px;
    height: 24px;
    color: var(--navy-dark);
    opacity: 0.7;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.contact-detail a:hover {
    color: var(--gold-dark);
}

/* ---------- Contact Form ---------- */
.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--cream-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1.5px solid var(--cream-dark);
    border-radius: 4px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    color: var(--navy);
    font-size: 0.9375rem;
    font-weight: 500;
}

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

.form-success.show {
    display: flex;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-brand .logo-initial {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.55);
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.55);
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.35);
}

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .about-grid,
    .atmosphere-split,
    .contact-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 60px 24px 40px;
        gap: 48px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

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

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

    .hero-details {
        align-items: center;
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-accent {
        top: -10px;
        right: -10px;
    }

    .hero-image-badge {
        bottom: -12px;
        left: -12px;
    }

    .about-grid,
    .atmosphere-split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-group {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-img-secondary {
        right: -20px;
        bottom: -24px;
    }

    .about-accent-block {
        left: -16px;
        top: -16px;
    }

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

    .atmosphere-images {
        max-width: 480px;
        margin: 0 auto;
    }

    .atmosphere-stats {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .section {
        padding: 72px 0;
    }

    .contact-form {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .visit-info {
        flex-direction: column;
        gap: 32px;
    }

    .about-img-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: 16px;
    }

    .about-image-group {
        display: flex;
        flex-direction: column;
    }
}
