/* ============================================
   Keenan's Bar — Styles
   Burgundy + Blush | Clean Minimalist
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6E0;
    --blush-light: #FBF4F1;
    --blush-mid: #EFD6CC;
    --cream: #FAF7F5;
    --white: #FFFFFF;
    --text-dark: #1A1214;
    --text-body: #3D2C30;
    --text-muted: #7A6569;
    --text-light: #A89094;
    --line: #E8D8D4;
    --line-light: #F0E4E0;
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --nav-height: 72px;
    --container-max: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--burgundy-deep);
    transform: translateY(-1px);
}

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

.btn-ghost:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--burgundy);
    border: 1px solid var(--burgundy);
}

.btn-outline:hover {
    background-color: var(--burgundy);
    color: var(--white);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background-color: rgba(250, 247, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-light);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(123, 45, 59, 0.06);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background-color: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    border-radius: var(--radius-sm);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--burgundy);
}

.nav-cta {
    padding: 9px 20px !important;
    background-color: var(--burgundy);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 500 !important;
}

.nav-cta:hover {
    background-color: var(--burgundy-deep);
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-line {
    width: 20px;
    height: 1.5px;
    background-color: var(--text-dark);
    transition: all var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
}

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

.mobile-menu-link {
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-body);
    border-bottom: 1px solid var(--line-light);
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--burgundy);
}

.mobile-menu-phone {
    border-bottom: none;
    color: var(--burgundy);
    font-weight: 500;
}

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 18, 20, 0.82) 0%,
        rgba(92, 31, 43, 0.72) 50%,
        rgba(26, 18, 20, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
}

.hero-card {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blush-mid);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(250, 247, 245, 0.78);
    margin-bottom: 40px;
    max-width: 460px;
}

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

/* Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.13);
    transform: translateX(4px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--blush);
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--white);
    font-style: italic;
}

.stat-label {
    font-size: 12px;
    color: rgba(250, 247, 245, 0.6);
    letter-spacing: 0.04em;
}

/* --- About --- */
.about {
    padding: 140px 0;
    background-color: var(--cream);
}

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

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

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--blush-mid);
    border-radius: var(--radius-lg);
    z-index: -1;
}

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

.about-content p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-divider {
    width: 60px;
    height: 1px;
    background-color: var(--burgundy);
    margin: 32px 0;
}

.about-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-signature-label {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--burgundy);
}

.about-signature-location {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* --- Drinks --- */
.drinks {
    padding: 120px 0;
    background-color: var(--white);
}

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

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

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

.drink-card {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--line-light);
}

.drink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.08);
}

.drink-card-image {
    overflow: hidden;
}

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

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

.drink-card-body {
    padding: 28px 28px 32px;
}

.drink-card-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.drink-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* --- Atmosphere --- */
.atmosphere {
    padding: 140px 0;
    background-color: var(--cream);
}

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

.atmosphere-text {
    order: 1;
}

.atmosphere-text p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.atmosphere-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-body);
}

.atmosphere-feature-line {
    width: 32px;
    height: 1px;
    background-color: var(--burgundy);
    flex-shrink: 0;
}

.atmosphere-images {
    order: 2;
    position: relative;
    min-height: 620px;
}

.atmosphere-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
}

.atmosphere-img-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.atmosphere-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border: 4px solid var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.atmosphere-img-secondary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background-color: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

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

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

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

.visit-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
    flex-shrink: 0;
}

.visit-detail-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit-phone-link {
    color: var(--burgundy);
    font-weight: 500;
    transition: color var(--transition);
}

.visit-phone-link:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

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

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    border: 1px solid var(--line);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* --- Footer --- */
.footer {
    background-color: var(--text-dark);
    color: var(--blush);
    padding: 72px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

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

.footer-logo-mark {
    width: 44px;
    height: 44px;
    background-color: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(245, 230, 224, 0.5);
    max-width: 240px;
    line-height: 1.6;
}

.footer-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone {
    font-size: 17px;
    color: var(--white);
    font-weight: 400;
    transition: color var(--transition);
}

.footer-phone:hover {
    color: var(--blush);
}

.footer-address {
    font-size: 14px;
    color: rgba(245, 230, 224, 0.5);
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(245, 230, 224, 0.35);
}

/* --- Scroll Reveal (progressive enhancement) --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 160px;
    }
    
    .about-grid,
    .atmosphere-layout,
    .visit-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .atmosphere-images {
        order: 1;
        min-height: 400px;
    }
    
    .atmosphere-text {
        order: 2;
    }
    
    .about-image-wrap {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: var(--nav-height);
    }
    
    .hero-content {
        padding: 80px 24px 60px;
    }
    
    .hero-headline {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-image-wrap::after {
        display: none;
    }
    
    .about-image-wrap img {
        height: 360px;
    }
    
    .drinks {
        padding: 80px 0;
    }
    
    .drinks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .atmosphere {
        padding: 80px 0;
    }
    
    .atmosphere-images {
        min-height: 300px;
    }
    
    .atmosphere-img-main img {
        height: 400px;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .visit-map {
        min-height: 280px;
    }
    
    .visit-map iframe {
        min-height: 280px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-contact {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .visit-actions {
        flex-direction: column;
    }
    
    .visit-actions .btn {
        justify-content: center;
    }
}
