/* ============================================
   POP Café & Bar — Huron, SD
   Editorial Bold × Midnight Blue & Mint
   ============================================ */

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

:root {
    --midnight-950: #040d1a;
    --midnight-900: #0a1628;
    --midnight-800: #0f2137;
    --midnight-700: #152d4a;
    --midnight-600: #1b3a5e;
    --midnight-500: #234972;
    
    --mint-400: #34d399;
    --mint-300: #6ee7b7;
    --mint-200: #a7f3d0;
    --mint-100: #d1fae5;
    --mint-50: #ecfdf5;
    
    --cream-50: #fafaf8;
    --cream-100: #f5f5f0;
    --cream-200: #e8e8e0;
    
    --white: #ffffff;
    --black: #000000;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--midnight-900);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-400);
    background: var(--midnight-900);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.heading-accent {
    color: var(--mint-400);
}

.heading-dark {
    color: var(--midnight-900);
}

.heading-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--midnight-600);
    max-width: 560px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
}

.btn-primary {
    background: var(--mint-400);
    color: var(--midnight-900);
}

.btn-primary:hover {
    background: var(--mint-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 211, 153, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--mint-400);
    color: var(--mint-400);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--midnight-900);
}

.btn-light:hover {
    background: var(--mint-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

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

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

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

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--mint-400);
    color: var(--midnight-900);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-logo:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--midnight-900);
    background: var(--mint-400);
    padding: 10px 22px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
    background: var(--mint-300);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 6px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--midnight-950);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    padding: 12px 24px;
    transition: color 0.3s ease;
}

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

.mobile-cta {
    color: var(--mint-400) !important;
    margin-top: 16px;
}

.mobile-contact {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.8;
}

.mobile-contact a {
    color: var(--mint-400);
    transition: color 0.3s ease;
}

.mobile-contact a:hover {
    color: var(--mint-300);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--midnight-900);
    overflow: hidden;
    padding: 120px 24px 80px;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 13, 26, 0.92) 0%,
        rgba(10, 22, 40, 0.85) 40%,
        rgba(15, 33, 55, 0.75) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mint-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    padding: 8px 16px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 100px;
}

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

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

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 32px;
    max-width: 900px;
}

.headline-line {
    display: block;
}

.headline-accent {
    color: var(--mint-400);
    font-style: italic;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin-bottom: 48px;
}

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

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    right: 24px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.stat-card {
    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: 20px 24px;
    min-width: 160px;
    transition: all 0.4s var(--ease-out-expo);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-4px);
    border-color: rgba(52, 211, 153, 0.3);
}

.stat-card--accent {
    background: var(--mint-400);
    border-color: var(--mint-400);
}

.stat-card--accent .stat-number {
    color: var(--midnight-900);
}

.stat-card--accent .stat-label {
    color: var(--midnight-800);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--cream-50);
}

.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: 20px;
}

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

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

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--midnight-600);
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.signature-line {
    width: 48px;
    height: 2px;
    background: var(--mint-400);
}

.signature-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--midnight-700);
}

/* ── Menu ── */
.menu {
    padding: 120px 0;
    background: var(--midnight-900);
}

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

.menu .section-subtitle {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.55);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 28px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-out-expo);
}

.menu-tab:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-tab.active {
    color: var(--midnight-900);
    background: var(--mint-400);
    border-color: var(--mint-400);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

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

.menu-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 211, 153, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.menu-card--dark {
    background: rgba(255, 255, 255, 0.06);
}

.menu-card-image {
    height: 200px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.menu-card-body {
    padding: 28px;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.menu-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.menu-card-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-card-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.875rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-card-items li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-card-items li span:first-child {
    font-weight: 600;
    color: var(--white);
}

.menu-card-items li span:last-child {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

/* ── Vibe ── */
.vibe {
    padding: 120px 0;
    background: var(--cream-50);
}

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

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

.vibe-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.vibe-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.vibe-gallery-item:hover img {
    transform: scale(1.03);
}

.vibe-gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    height: 400px;
}

.vibe-gallery-item:not(.vibe-gallery-item--large):not(.vibe-gallery-item--tall) {
    height: 192px;
}

.vibe-gallery-item--tall {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
    height: 400px;
}

.vibe-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(4, 13, 26, 0.8));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

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

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

.visit-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.visit-icon {
    width: 48px;
    height: 48px;
    background: var(--mint-50);
    border: 1px solid var(--mint-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-400);
    flex-shrink: 0;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--midnight-400);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--midnight-800);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--midnight-800);
    transition: color 0.3s ease;
}

.visit-detail-value a:hover {
    color: var(--mint-400);
}

/* Hours */
.hours-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-900);
    margin-bottom: 24px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

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

.hours-row:first-child {
    border-top: 1px solid var(--cream-200);
}

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

.hours-time {
    color: var(--midnight-500);
    font-size: 0.9375rem;
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--midnight-400);
    font-style: italic;
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: var(--midnight-900);
}

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

.contact-text-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 20px;
}

/* Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.form-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-color: var(--mint-400);
    background: rgba(52, 211, 153, 0.06);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.1);
}

.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='rgba(255,255,255,0.4)' 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 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-select option {
    background: var(--midnight-800);
    color: var(--white);
}

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

/* Success State */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

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

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(52, 211, 153, 0.1);
    border: 2px solid var(--mint-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-400);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.success-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 100px 0;
    background: var(--midnight-800);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(52, 211, 153, 0.06) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-pre {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-400);
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

/* ── Footer ── */
.footer {
    background: var(--midnight-950);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mint-400);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
}

.footer-nav-title,
.footer-contact h4,
.footer-hours h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
    line-height: 1.5;
}

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

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

.footer-copy,
.footer-credit {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ── Scroll Reveal ── */
[data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 48px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 140px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vibe-gallery-item--large {
        grid-column: 1 / 7;
    }
    
    .vibe-gallery-item--tall {
        grid-column: 7 / 13;
        grid-row: auto;
        height: 300px;
    }
    
    .visit-grid {
        gap: 48px;
    }
    
    .contact-grid {
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 24px 100px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrap img {
        height: 350px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .vibe-gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .vibe-gallery-item--large {
        grid-column: 1 / -1;
        height: 280px;
    }
    
    .vibe-gallery-item--tall {
        grid-column: 1 / -1;
        height: 280px;
    }
    
    .vibe-gallery-item:not(.vibe-gallery-item--large):not(.vibe-gallery-item--tall) {
        height: 180px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tab {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .vibe-gallery {
        grid-template-columns: 1fr;
    }
    
    .vibe-gallery-item--large,
    .vibe-gallery-item--tall,
    .vibe-gallery-item:not(.vibe-gallery-item--large):not(.vibe-gallery-item--tall) {
        grid-column: auto;
        height: 220px;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .menu-card:hover {
        transform: none;
    }
    
    .menu-card:hover .menu-card-image img {
        transform: none;
    }
}
