/* ============================================
   BOARDWALK CAFE ATL — DESIGN SYSTEM
   Palette: Plum (#7B2D8E / #5A1D6B / #2D0F35) 
            Amber (#D4882C / #F0A840 / #FFF3E0)
   Fonts: Playfair Display (headlines) + Inter (body)
   ============================================ */

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

:root {
    /* Plum palette */
    --plum-50: #faf5fc;
    --plum-100: #f3e8f7;
    --plum-200: #e8d0ef;
    --plum-300: #d4aad9;
    --plum-400: #b874be;
    --plum-500: #7B2D8E;
    --plum-600: #5A1D6B;
    --plum-700: #421652;
    --plum-800: #2D0F35;
    --plum-900: #1A0A1E;
    --plum-950: #0D0510;

    /* Amber palette */
    --amber-50: #FFF8F0;
    --amber-100: #FFF3E0;
    --amber-200: #FFE4B8;
    --amber-300: #D4882C;
    --amber-400: #F0A840;
    --amber-500: #E89520;
    --amber-600: #C47810;

    /* Neutrals */
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-700: #616161;
    --neutral-800: #424242;
    --neutral-900: #212121;

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

    /* Spacing */
    --container-max: 1200px;
    --section-padding: clamp(80px, 12vw, 140px);
    --container-padding: clamp(20px, 4vw, 48px);
}

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

body {
    font-family: var(--font-sans);
    color: var(--neutral-900);
    background-color: var(--plum-950);
    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;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--amber-400);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--amber-400);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: var(--amber-200);
}

@media (prefers-reduced-motion: reduce) {
    .cursor-dot, .cursor-ring { display: none; }
    html { scroll-behavior: auto; }
}

/* --- Typography --- */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--amber-400);
    display: inline-block;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
}

.section-heading .serif-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--plum-500);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-700);
    max-width: 520px;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-primary {
    background: var(--amber-400);
    color: var(--plum-950);
}

.btn-primary:hover {
    background: var(--amber-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 136, 44, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--neutral-900);
    border: 1.5px solid var(--plum-200);
}

.btn-ghost:hover {
    border-color: var(--amber-400);
    color: var(--plum-600);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: var(--neutral-900);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
    border-color: var(--amber-400);
    color: var(--amber-400);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

/* --- Badge --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--amber-200);
    background: rgba(212, 136, 44, 0.12);
    border: 1px solid rgba(212, 136, 44, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 60px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(13, 5, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(123, 45, 142, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.navbar.scrolled .nav-logo {
    color: var(--neutral-50);
}

.nav-logo-icon {
    color: var(--amber-400);
}

.nav-logo-text .accent {
    color: var(--amber-400);
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-800);
    transition: color 0.25s ease;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--plum-200);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber-400);
    transition: width 0.3s ease;
}

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

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

.navbar.scrolled .nav-link:hover {
    color: var(--amber-400);
}

.nav-cta {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--plum-500) !important;
    background: var(--amber-100);
    border: 1.5px solid var(--amber-300);
    padding: 0.5rem 1.125rem;
    border-radius: 60px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--amber-400);
    color: var(--plum-950) !important;
    transform: translateY(-1px);
}

.navbar.scrolled .nav-cta {
    color: var(--plum-950) !important;
    background: var(--amber-400);
    border-color: var(--amber-400);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--amber-300);
    border-color: var(--amber-300);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    width: 22px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger {
    background: var(--neutral-50);
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--plum-950);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--neutral-50);
    padding: 8px;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--plum-200);
    padding: 1rem 0;
    transition: color 0.25s ease;
}

.mobile-nav-link:hover {
    color: var(--amber-400);
}

.mobile-nav-divider {
    width: 48px;
    height: 1px;
    background: var(--plum-700);
    margin: 0.75rem 0;
}

.mobile-nav-phone,
.mobile-nav-email {
    font-family: var(--font-sans) !important;
    font-size: 0.9375rem !important;
    color: var(--plum-300) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.mobile-nav-phone:hover,
.mobile-nav-email:hover {
    color: var(--amber-400) !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--plum-950);
}

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 5, 16, 0.88) 0%,
        rgba(45, 15, 53, 0.75) 50%,
        rgba(13, 5, 16, 0.85) 100%
    );
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 5, 16, 0.3) 0%,
        rgba(13, 5, 16, 0) 30%,
        rgba(13, 5, 16, 0) 70%,
        rgba(13, 5, 16, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    padding-top: 6rem;
    padding-bottom: 8rem;
    width: 100%;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--neutral-50);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-headline .serif-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--amber-300);
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--plum-200);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions .btn-ghost {
    color: var(--neutral-50);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-ghost:hover {
    border-color: var(--amber-400);
    color: var(--amber-400);
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    bottom: 6rem;
    right: var(--container-padding);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-card {
    width: 200px;
}

.stat-card-inner {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.125rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-card-inner {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 136, 44, 0.3);
    transform: translateX(-4px);
}

.stat-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 136, 44, 0.15);
    border-radius: 10px;
    color: var(--amber-400);
    flex-shrink: 0;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-50);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--plum-300);
    line-height: 1.3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--plum-300);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--amber-400), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    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; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--plum-950);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

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

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--amber-400);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.about-text-col {
    padding: 1rem 0;
}

.about-body {
    font-size: 1.0625rem;
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-body em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--plum-600);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-100);
    border-radius: 10px;
    color: var(--plum-500);
    flex-shrink: 0;
}

/* ============================================
   DIVIDER
   ============================================ */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--plum-700), transparent);
}

.divider-icon {
    color: var(--amber-400);
    flex-shrink: 0;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    padding: var(--section-padding) 0;
    background: var(--plum-950);
}

.menu .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu .section-label {
    justify-content: center;
}

.menu .section-label::before {
    display: none;
}

.menu .section-subtitle {
    margin: 0 auto;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--plum-300);
    background: transparent;
    border: 1.5px solid var(--plum-700);
    padding: 0.625rem 1.5rem;
    border-radius: 60px;
    transition: all 0.3s ease;
}

.menu-tab:hover {
    border-color: var(--amber-400);
    color: var(--amber-400);
}

.menu-tab.active {
    background: var(--amber-400);
    border-color: var(--amber-400);
    color: var(--plum-950);
}

.menu-content {
    max-width: 900px;
    margin: 0 auto;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--plum-800);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-50);
}

.menu-item-dots {
    flex: 1;
    height: 1px;
    background: var(--plum-700);
}

.menu-item-price,
.menu-item-signature {
    font-size: 0.8125rem;
    color: var(--plum-300);
    white-space: nowrap;
    font-weight: 500;
}

.menu-item-signature {
    color: var(--amber-400);
    font-weight: 600;
}

.menu-item-desc {
    font-size: 0.875rem;
    color: var(--plum-300);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--plum-800);
}

.menu-note p {
    font-size: 0.875rem;
    color: var(--plum-400);
    font-style: italic;
}

/* ============================================
   VIBE
   ============================================ */
.vibe {
    padding: var(--section-padding) 0;
    background: var(--plum-950);
}

.vibe-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vibe-header .section-label {
    justify-content: center;
}

.vibe-header .section-label::before {
    display: none;
}

.vibe-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 1rem;
}

.vibe-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

.vibe-card:hover img {
    transform: scale(1.08);
}

.vibe-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 5, 16, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vibe-card:hover .vibe-card-overlay {
    opacity: 1;
}

.vibe-card-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--amber-400);
    letter-spacing: 0.04em;
}

.vibe-card--tall {
    grid-column: span 3;
    grid-row: span 2;
}

.vibe-card--wide {
    grid-column: span 5;
}

.vibe-card--short {
    grid-column: span 4;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: var(--section-padding) 0;
    background: var(--plum-950);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.visit-body {
    font-size: 1.0625rem;
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--plum-100);
    border: 1px solid var(--plum-200);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: var(--plum-200);
    border-color: var(--amber-400);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-500);
    border-radius: 12px;
    color: var(--amber-400);
    flex-shrink: 0;
}

.contact-card-content {
    flex: 1;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: 0.125rem;
}

.contact-card-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-900);
    line-height: 1.4;
}

.contact-card-arrow {
    color: var(--plum-400);
    transition: color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.contact-card:hover .contact-card-arrow {
    color: var(--amber-400);
    transform: translate(4px, -4px);
}

.visit-map-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--plum-700);
}

.hours-card {
    background: var(--plum-100);
    border: 1px solid var(--plum-200);
    border-radius: 16px;
    padding: 1.5rem;
}

.hours-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum-600);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hours-card-header svg {
    color: var(--amber-400);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--plum-200);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.hours-time {
    font-size: 0.875rem;
    color: var(--plum-500);
    font-weight: 600;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    position: relative;
    padding: clamp(80px, 12vw, 120px) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 5, 16, 0.92) 0%,
        rgba(45, 15, 53, 0.85) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta .hero-badge {
    margin: 0 auto 1.5rem;
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--neutral-50);
    margin-bottom: 1rem;
}

.cta-heading .serif-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--amber-300);
}

.cta-sub {
    font-size: 1.125rem;
    color: var(--plum-200);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--plum-950);
    border-top: 1px solid var(--plum-800);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-50);
    margin-bottom: 1rem;
}

.footer-logo-icon {
    color: var(--amber-400);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--plum-300);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-400);
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    font-size: 0.9375rem;
    color: var(--plum-200);
    padding: 0.375rem 0;
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--plum-800);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--plum-400);
}

.footer-address {
    font-size: 0.8125rem;
    color: var(--plum-400);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 var(--container-padding) 3rem;
        max-width: var(--container-max);
        margin: 0 auto;
    }

    .stat-card {
        width: auto;
        flex: 1;
        min-width: 160px;
    }

    .vibe-gallery {
        grid-template-rows: repeat(2, 200px);
    }

    .vibe-card--tall {
        grid-column: span 4;
        grid-row: span 1;
    }

    .vibe-card--wide {
        grid-column: span 4;
    }

    .vibe-card--short {
        grid-column: span 4;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-col {
        order: -1;
    }

    .about-image-wrapper {
        aspect-ratio: 16/10;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .vibe-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .vibe-card--tall,
    .vibe-card--wide,
    .vibe-card--short {
        grid-column: span 1;
        grid-row: span 1;
    }

    .vibe-card {
        height: 220px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        width: 100%;
    }

    .vibe-gallery {
        grid-template-columns: 1fr;
    }

    .vibe-card {
        height: 200px;
    }

    .menu-tabs {
        gap: 0.375rem;
    }

    .menu-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .stat-card:hover .stat-card-inner {
        transform: none;
    }

    .contact-card:hover {
        transform: none;
    }

    .vibe-card img {
        transition: none;
    }

    .scroll-line {
        animation: none;
    }
}
