/* ==========================================================================
   Luxe Glo Client Layout & Flow Styles
   ========================================================================== */

/* Mobile Header */
.mobile-header {
    display: none;
}

.desktop-only {
    display: block;
}

/* When used as a flex row (admin sidebar brand + bell), keep flex on desktop */
.desktop-only.admin-sidebar-brand-row {
    display: flex;
}

/* Animated High-End Burger Toggle */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1005;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.burger-bar {
    display: block;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.35s ease,
                width 0.35s ease,
                background 0.3s ease;
    transform-origin: center;
}

.burger-bar.bar-1 { width: 26px; }
.burger-bar.bar-2 { width: 18px; }
.burger-bar.bar-3 { width: 22px; }

.mobile-menu-btn:hover .burger-bar {
    background: var(--accent);
    width: 26px;
}

/* Morphing Burger into Luxury Close 'X' */
.mobile-menu-btn.open .burger-bar.bar-1 {
    width: 26px;
    transform: translateY(8px) rotate(45deg);
    background: var(--accent);
}

.mobile-menu-btn.open .burger-bar.bar-2 {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.open .burger-bar.bar-3 {
    width: 26px;
    transform: translateY(-8px) rotate(-45deg);
    background: var(--accent);
}

/* Left Hero Panel (Desktop Fixed Sidebar) */
.hero-panel {
    width: 40vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 3.5rem 4rem;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 10;
    background: #362D26;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 125%;
    min-height: 125%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    transform: translateY(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(248, 244, 240, 0.12) 0%, rgba(54, 45, 38, 0.38) 100%);
    z-index: 1;
    pointer-events: none;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-style: italic;
    letter-spacing: -1px;
    cursor: pointer;
    color: var(--text-main);
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    user-select: none;
    pointer-events: auto;
}

.brand-logo:hover {
    color: var(--accent);
}

.step-indicator {
    font-size: 10rem;
    font-family: var(--font-serif);
    line-height: 1;
    color: var(--text-main);
    font-weight: 300;
    opacity: 0.25;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    user-select: none;
    transition: opacity 0.5s ease;
}

/* Right Content Panel */
.content-panel {
    flex: 1;
    margin-left: 40vw;
    width: 60vw;
    padding: 5rem 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

/* Top Navigation */
.top-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.mobile-nav-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link-number {
    display: none;
}

.mobile-menu-footer {
    display: none;
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--accent);
}

.user-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-main);
    box-shadow: var(--shadow-subtle);
}

/* View Header */
.view-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: var(--text-main);
}

.view-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Auth Tabs Container */
.auth-tabs-wrap {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* High-End Popup Menu Modal & Backdrop (Global Fixed Overlay) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(30, 22, 17, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-popup-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(54, 45, 38, 0.28);
    width: 100%;
    max-width: 440px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 2rem 1.75rem;
    transform: scale(0.92) translateY(-15px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.open .menu-popup-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.menu-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1.25rem;
}

.menu-brand-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1;
}

.menu-brand-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-top: 0.3rem;
    font-weight: 600;
}

.menu-close-btn {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-close-btn:hover {
    background: var(--text-main);
    color: var(--surface);
    transform: rotate(90deg);
}

.menu-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.menu-nav-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.menu-nav-card:hover,
.menu-nav-card:active {
    background: var(--surface-hover);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.menu-nav-card.active {
    background: var(--surface-hover);
    border-color: var(--accent);
    box-shadow: 0 0 0 1.5px var(--accent);
}

.menu-card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(163, 130, 96, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.menu-nav-card:hover .menu-card-icon {
    background: var(--accent);
    color: #FFFFFF;
}

.menu-card-text {
    flex: 1;
    min-width: 0;
}

.menu-card-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.1rem;
}

.menu-card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-card-arrow {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.menu-nav-card:hover .menu-card-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.menu-card-badge {
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    min-width: 22px;
    text-align: center;
}

.menu-popup-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.15rem;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.user-avatar-dot {
    width: 32px;
    height: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .app-container {
        flex-direction: column;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 1002;
        width: 100%;
    }

    .desktop-only,
    .desktop-only.admin-sidebar-brand-row {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .top-nav {
        display: none;
    }

    .hero-panel {
        width: 100%;
        height: 36vh;
        min-height: 240px;
        max-height: 320px;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        position: relative;
    }

    .hero-image-wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none !important;
    }

    .step-indicator {
        display: none;
    }

    .content-panel {
        margin-left: 0;
        padding: 2.5rem 1.5rem;
        width: 100%;
    }

    .view-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .content-panel {
        padding: 1.5rem 1rem;
    }

    .hero-panel {
        height: 20vh;
        min-height: 150px;
    }

    .view-title {
        font-size: 2rem;
    }

    .service-card-content .service-name {
        font-size: 1.5rem;
    }

    .avatar-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    .controls {
        flex-direction: column;
        align-items: stretch;
    }

    .controls .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .auth-tabs-wrap {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .auth-tabs-wrap .tab-btn {
        flex: 1;
        text-align: center;
    }
}

/* ===== Service search (booking step 1) ===== */
.service-search-bar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.9rem;
    margin: 0 0 1rem;
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 0.5rem;
    z-index: 20;
}

.service-search-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.service-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.service-search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.85;
}

.service-search-clear {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-hover, #f5f5f5);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.service-search-clear:hover {
    color: var(--text-main);
    border-color: var(--accent);
}

.service-search-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: -0.35rem 0 1rem;
}

.service-search-meta .link-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
    padding: 0;
}

.service-search-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.service-search-results {
    margin: 1.25rem 0 0.5rem;
}

.service-search-results-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.service-search-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-search-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    text-align: left;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    font-family: inherit;
    color: var(--text-main);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.service-search-result:hover,
.service-search-result:focus-visible {
    border-color: var(--accent);
    box-shadow: var(--shadow-subtle);
    outline: none;
}

.service-search-result.selected {
    border-color: var(--accent);
    background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}

.service-search-result-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.service-search-result-name {
    font-weight: 600;
    font-size: 0.98rem;
}

.service-search-result-cat {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.service-search-result-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.service-search-result-check {
    font-size: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .service-search-bar {
        top: 0.25rem;
        padding: 0.75rem 0.85rem;
        /* Avoid iOS zoom on focus: keep font-size >= 16px */
    }

    .service-search-input {
        font-size: 16px;
    }

    .service-search-result {
        flex-wrap: wrap;
        padding: 0.85rem 0.9rem;
    }

    .service-search-result-meta {
        width: 100%;
        white-space: normal;
        order: 3;
    }
}

/* ==========================================================================
   Site Footer — Contact · Hours · Map · Social (public client views)
   Desktop: sits in the right content column (hero is position:fixed 40vw)
   Mobile/tablet: full-width under stacked layout
   ========================================================================== */

.site-footer {
    width: 100%;
    background: linear-gradient(180deg, #2C241C 0%, #1F1914 100%);
    color: #F3EAE2;
    margin-top: 0;
    border-top: 1px solid rgba(163, 130, 96, 0.25);
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

/* Align with fixed left hero (40vw) so footer is never covered on desktop */
@media (min-width: 901px) {
    .site-footer {
        margin-left: 40vw;
        width: 60vw;
        max-width: 60vw;
    }

    .footer-inner {
        max-width: none;
        margin: 0;
        padding: 3rem 4rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr) minmax(0, 1.15fr);
        gap: 1.75rem 1.5rem;
    }

    .footer-brand {
        font-size: 1.55rem;
    }

    .footer-tagline {
        margin-bottom: 1.15rem;
    }

    .footer-map-frame {
        min-height: 180px;
        aspect-ratio: 4 / 3;
    }
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem 1.75rem;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1.2fr;
    gap: 2.75rem;
    align-items: start;
}

.footer-col {
    min-width: 0; /* prevent grid blowout / clipping */
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.footer-tagline {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-address {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #E8DDD2;
}

.footer-icon {
    color: var(--accent);
    font-size: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-address-text {
    word-break: break-word;
}

.footer-address-text div + div {
    margin-top: 0.1rem;
}

.footer-muted {
    color: rgba(243, 234, 226, 0.45);
    font-style: italic;
}

.footer-contact-lines {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #E8DDD2;
    font-size: 0.88rem;
    transition: var(--transition);
    word-break: break-word;
}

.footer-contact-link i {
    color: var(--accent);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.footer-contact-link:hover {
    color: #FFFFFF;
}

.footer-socials {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(234, 220, 208, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F3EAE2;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(163, 130, 96, 0.35);
}

.footer-col-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(234, 220, 208, 0.08);
    font-size: 0.85rem;
}

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

.footer-day {
    color: rgba(243, 234, 226, 0.7);
    font-weight: 500;
    letter-spacing: 0.4px;
    min-width: 2.25rem;
    flex-shrink: 0;
}

.footer-time {
    color: #FFFFFF;
    font-variant-numeric: tabular-nums;
    text-align: right;
    white-space: nowrap;
}

.footer-time.closed {
    color: rgba(243, 234, 226, 0.4);
    font-style: italic;
}

.footer-map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    min-height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(234, 220, 208, 0.15);
    background: #1A1511;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.footer-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.15) contrast(1.05);
}

.footer-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    color: rgba(243, 234, 226, 0.45);
    font-size: 0.85rem;
}

.footer-map-placeholder i {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(234, 220, 208, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: rgba(243, 234, 226, 0.45);
    letter-spacing: 0.3px;
}

.footer-bottom-meta {
    color: rgba(243, 234, 226, 0.32);
}

body:has(.site-footer) .app-container {
    min-height: auto;
}

/* Mid-width content column: stack map under brand + hours */
@media (min-width: 901px) and (max-width: 1200px) {
    .footer-inner {
        padding: 2.75rem 2.5rem 1.35rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 1.5rem;
    }

    .footer-map-col {
        grid-column: 1 / -1;
    }

    .footer-map-frame {
        aspect-ratio: 21 / 9;
        min-height: 160px;
    }
}

/* Tablet / mobile — hero is no longer fixed, footer is full width */
@media (max-width: 900px) {
    .site-footer {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .footer-inner {
        padding: 2.75rem 1.5rem 1.5rem;
    }

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

    .footer-map-col {
        grid-column: 1 / -1;
    }

    .footer-map-frame {
        aspect-ratio: 16 / 9;
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        padding: 2.25rem 1.15rem 1.35rem;
    }

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

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-map-col {
        grid-column: auto;
    }

    .footer-map-frame {
        min-height: 220px;
        aspect-ratio: 4 / 3;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}
