/* ========================================
   2nd Chance Bar & Grill — Styles
   Charcoal + Coral | Vibrant Modern
======================================== */

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

:root {
    --coral: #E85D4A;
    --coral-light: #F07868;
    --coral-dark: #C94A38;
    --charcoal: #1A1D23;
    --charcoal-light: #2A2D35;
    --charcoal-mid: #3A3D45;
    --offwhite: #F5F0EC;
    --cream: #FAF7F4;
    --white: #FFFFFF;
    --text-dark: #1A1D23;
    --text-light: #F5F0EC;
    --text-muted: #8A8D95;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

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

/* ─── Typography ─── */
.text-coral {
    color: var(--coral);
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 29, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 93, 74, 0.15);
    transition: transform 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-display);
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
    transform: rotate(0deg);
}

.logo-text {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
}

.logo-sub {
    color: var(--coral);
    font-weight: 600;
}

/* ─── Main Nav ─── */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--coral);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
}

/* ─── Nav Toggle ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ─── Nav Overlay ─── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.nav-overlay-link {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.nav-overlay-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/39195756/pexels-photo-39195756.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 29, 35, 0.92) 0%,
        rgba(26, 29, 35, 0.80) 50%,
        rgba(232, 93, 74, 0.25) 100%
    );
}

/* Geometric shapes */
.hero-geo {
    position: absolute;
    pointer-events: none;
}

.hero-geo-1 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    border-radius: 50%;
    top: -100px;
    right: -80px;
    opacity: 0.08;
}

.hero-geo-2 {
    width: 200px;
    height: 200px;
    border: 3px solid var(--coral);
    top: 20%;
    left: 5%;
    transform: rotate(45deg);
    opacity: 0.15;
}

.hero-geo-3 {
    width: 120px;
    height: 120px;
    background: var(--coral);
    bottom: 15%;
    right: 15%;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
    opacity: 0.12;
}

.hero-geo-4 {
    width: 60px;
    height: 60px;
    background: var(--coral);
    border-radius: 50%;
    top: 35%;
    right: 25%;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 93, 74, 0.15);
    border: 1px solid rgba(232, 93, 74, 0.3);
    color: var(--coral);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-coral:hover {
    background: var(--coral-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 93, 74, 0.35);
}

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

.btn-outline-coral:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-3px);
}

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

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

/* ─── Hero Stats ─── */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ─── Scroll Indicator ─── */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

/* ─── Marquee ─── */
.marquee {
    background: var(--coral);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 24px;
}

.marquee-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    padding: 0 16px;
    align-self: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Section Labels ─── */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--coral);
    flex-shrink: 0;
}

/* ─── Section Titles ─── */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 48px;
}

/* ─── Menu Section ─── */
.menu {
    position: relative;
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.menu-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(26, 29, 35, 0.12);
}

.menu-card--coral {
    background: var(--charcoal);
    color: var(--white);
}

.menu-card--coral .menu-card-title {
    color: var(--white);
}

.menu-card--coral .menu-card-desc {
    color: var(--text-muted);
}

.menu-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, transparent 50%, rgba(232, 93, 74, 0.08) 50%);
    border-radius: 0 var(--radius-lg) 0 0;
}

.menu-card--coral .menu-card-accent {
    background: linear-gradient(135deg, transparent 50%, rgba(232, 93, 74, 0.15) 50%);
}

.menu-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 24px;
}

.menu-card--coral .menu-card-icon {
    background: rgba(232, 93, 74, 0.2);
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.menu-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.menu-card-tag {
    display: inline-block;
    background: var(--charcoal);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-card--coral .menu-card-tag {
    background: var(--coral);
}

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

/* Geometric decorations */
.menu-geo {
    position: absolute;
    pointer-events: none;
}

.menu-geo-1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(232, 93, 74, 0.08);
    border-radius: 50%;
    top: -50px;
    left: -100px;
}

.menu-geo-2 {
    width: 150px;
    height: 150px;
    background: rgba(232, 93, 74, 0.05);
    bottom: 50px;
    right: -30px;
    transform: rotate(45deg);
}

/* ─── About Section ─── */
.about {
    position: relative;
    padding: 120px 0;
    background: var(--charcoal);
    overflow: hidden;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--charcoal);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

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

.about-img-accent {
    position: absolute;
    top: -30px;
    left: -30px;
}

.accent-block {
    background: var(--coral);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 16px 32px rgba(232, 93, 74, 0.3);
}

.accent-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}

.accent-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.about-content {
    color: var(--white);
}

.about-content .section-title {
    color: var(--white);
}

.about-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.coral {
    background: rgba(232, 93, 74, 0.15);
    color: var(--coral);
}

.feature-icon.charcoal {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.about-feature strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 14px;
    color: var(--text-muted);
}

.about-geo {
    position: absolute;
    pointer-events: none;
}

.about-geo-1 {
    width: 500px;
    height: 500px;
    border: 2px solid rgba(232, 93, 74, 0.06);
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
}

.about-geo-2 {
    width: 100px;
    height: 100px;
    background: rgba(232, 93, 74, 0.08);
    top: 60px;
    right: 60px;
    transform: rotate(45deg);
}

/* ─── Gallery ─── */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery .container {
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 29, 35, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

.gallery-item--tall {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 500px;
}

.gallery-item:not(.gallery-item--tall) {
    min-height: 240px;
}

.gallery-item--wide {
    grid-column: span 6;
    min-height: 240px;
}

/* ─── Visit Section ─── */
.visit {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

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

.visit-info {
    color: var(--white);
}

.visit-info .section-title {
    color: var(--white);
}

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

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

.detail-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 93, 74, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.visit-detail a:hover {
    color: var(--coral);
}

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

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

/* ─── Footer ─── */
.footer {
    position: relative;
    background: #141619;
    padding: 64px 0 32px;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 48px;
}

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

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

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-brand a:hover {
    color: var(--coral);
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--coral);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-geo {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--coral);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    opacity: 0.04;
    pointer-events: none;
}

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

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

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .marquee-track {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-grid {
        gap: 60px;
    }
    
    .menu-grid {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 500px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        min-height: 350px;
    }
    
    .visit-map iframe {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 80px;
    }
    
    .hero-title {
        letter-spacing: -1px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-num {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--tall {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .gallery-item--wide {
        grid-column: span 2;
    }
    
    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
        min-height: 200px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .about-img-secondary {
        right: -20px;
        bottom: -20px;
    }
    
    .about-img-accent {
        top: -20px;
        left: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
    }
    
    .menu-card {
        padding: 28px 24px;
    }
    
    .nav-overlay-link {
        font-size: 28px;
    }
}
