/* ============================================================
   ASIBONGE FUNERAL PARLOR â€” MOBILE APP EXPERIENCE
   Applied ONLY on screens â‰¤ 768px. Zero desktop impact.
   ============================================================ */

/* â”€â”€ Desktop Guard: hide all mobile-only UI on large screens â”€â”€ */
.mobile-app-bar,
.mobile-fab,
.mobile-drawer-overlay,
.drawer-header,
.drawer-emergency-pill,
.drawer-section-label,
.drawer-footer,
.drawer-services-grid,
.drawer-service-card,
.dsc-icon,
.dsc-name,
.dsc-sub,
.drawer-view-all-services,
.nav-arrow,
.nav-icon,
.drawer-only {
    display: none;
}

@media screen and (max-width: 768px) {

    /* ========================================================
       1. APP SHELL: Base layout with safe areas for bottom bar
       ======================================================== */
    body {
        /* Reserve space for the always-visible bottom nav */
        padding-bottom: 80px;
        /* Smooth momentum scrolling on iOS */
        -webkit-overflow-scrolling: touch;
        /* Prevent horizontal scroll */
        overflow-x: hidden;
    }

    /* Global side padding for a spacious, premium feel on all sections */
    .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* ========================================================
       2. HEADER: Compact App-Style Top Bar
       ======================================================== */
    .top-bar {
        display: none !important;
        /* Remove gold info bar on mobile â€” it's in the drawer */
    }

    .main-header {
        position: sticky !important;
        top: 0 !important;
        background: rgba(26, 22, 18, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        padding: 0 !important;
        border-bottom: 1px solid rgba(179, 128, 49, 0.15) !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4) !important;
        height: 80px;
        /* Increased from 60px */
        display: flex;
        align-items: center;
        z-index: 1000;
    }

    .main-header.scrolled {
        height: 70px;
        /* Slightly smaller when scrolled */
        background: rgba(20, 17, 14, 0.99) !important;
    }

    .header-content {
        height: 100%;
        padding: 0 1.25rem;
    }

    .logo-container {
        height: 64px !important;
        /* Increased by ~35-40% from 48px */
    }

    /* Always show white logo on dark mobile header */
    .logo-white {
        opacity: 1 !important;
        height: 100%;
        width: auto;
    }

    .logo-black {
        opacity: 0 !important;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: transparent;
        /* Removed background for a cleaner look */
        border: none !important;
        /* Removed border as requested */
        color: #fff !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-toggle:active {
        background: rgba(255, 255, 255, 0.05);
        transform: scale(0.9);
    }

    /* ========================================================
       3. MOBILE DRAWER â€” Slides from the LEFT
       ======================================================== */

    /* Overlay backdrop */
    .mobile-drawer-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1998;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-drawer-overlay.active {
        display: block;
        opacity: 1;
    }

    /* The drawer panel itself */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed !important;
        top: 0 !important;
        left: -320px !important;
        /* Hidden off-screen left */
        bottom: 0 !important;
        width: 300px !important;
        background: #0F0C09 !important;
        padding: 0 !important;
        gap: 0 !important;
        border: none !important;
        border-right: 1px solid rgba(179, 128, 49, 0.15) !important;
        box-shadow: 6px 0 40px rgba(0, 0, 0, 0.5) !important;
        z-index: 1999 !important;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-links.active {
        left: 0 !important;
    }

    /* Drawer Header: Logo + Close Button */
    .nav-links::before {
        content: '';
        display: block;
        height: 1px;
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.75rem 1.25rem;
        background: linear-gradient(135deg, rgba(179, 128, 49, 0.15) 0%, rgba(26, 22, 18, 0.95) 100%);
        border-bottom: 1px solid rgba(179, 128, 49, 0.2);
    }

    .drawer-brand-lockup {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .drawer-logo {
        height: 42px;
        width: auto;
    }

    .drawer-brand-text {
        display: flex;
        flex-direction: column;
    }

    .drawer-brand-text .brand-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--color-gold-sun);
        line-height: 1.1;
    }

    .drawer-brand-text .brand-tagline {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .drawer-close-btn {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .drawer-close-btn:active {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(0.9);
    }

    .drawer-emergency-pill {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        background: rgba(179, 128, 49, 0.1);
        border: 1px solid rgba(179, 128, 49, 0.25);
        border-radius: 14px;
        padding: 0.85rem 1.1rem;
        margin: 1.25rem;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .drawer-emergency-pill:active {
        background: rgba(179, 128, 49, 0.18);
        transform: translateY(1px);
    }

    .emergency-icon-wrap {
        width: 32px;
        height: 32px;
        background: var(--color-gold-sig);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(179, 128, 49, 0.3);
    }

    .emergency-text {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .emergency-text .label {
        font-size: 0.65rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .emergency-text .phone {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--color-gold-sun);
    }

    .drawer-section-label {
        font-size: 0.68rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(179, 128, 49, 0.6);
        padding: 1.5rem 1.25rem 0.5rem;
    }

    /* Nav Items in Drawer */
    .nav-links>a,
    .nav-item>.nav-link {
        display: flex !important;
        align-items: center !important;
        padding: 1.1rem 1.25rem !important;
        font-size: 0.98rem !important;
        font-weight: 500 !important;
        color: #E0D8CC !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
        transition: all 0.2s ease !important;
        border-radius: 0 !important;
        gap: 1rem;
        text-decoration: none;
    }

    .nav-links>a:active,
    .nav-item>.nav-link:active {
        background: rgba(179, 128, 49, 0.08) !important;
    }

    /* Restore mobile-only elements hidden by the desktop guard */
    .nav-icon,
    .nav-arrow,
    .drawer-only {
        display: inline-flex !important;
    }

    .nav-icon {
        color: var(--color-gold-sig);
        opacity: 0.7;
        flex-shrink: 0;
    }

    .nav-links>a.active .nav-icon,
    .nav-link.active .nav-icon {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(179, 128, 49, 0.4));
    }

    .nav-links>a.active,
    .nav-link.active {
        color: #fff !important;
        background: rgba(179, 128, 49, 0.12) !important;
        font-weight: 600 !important;
        border-left: 4px solid var(--color-gold-sig) !important;
    }

    /* Submenus in drawer */
    .nav-item {
        width: 100% !important;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: none !important;
        border-left: 1px solid rgba(179, 128, 49, 0.2) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0.5rem 0 0.5rem 1rem !important;
        margin: 0 0 0.5rem 2.25rem;
        width: auto !important;
    }

    .dropdown-menu a {
        padding: 0.65rem 0 !important;
        font-size: 0.88rem !important;
        color: rgba(200, 192, 178, 0.7) !important;
        border: none !important;
        display: block !important;
        font-weight: 400 !important;
    }

    .dropdown-menu a:hover {
        color: var(--color-gold-sun) !important;
    }

    .chevron {
        display: none !important;
    }

    /* Drawer Footer */
    .drawer-footer {
        margin-top: auto;
        padding: 1.25rem;
        border-top: 1px solid rgba(179, 128, 49, 0.15);
        background: rgba(179, 128, 49, 0.03);
    }

    .drawer-footer-address {
        font-size: 0.75rem;
        color: rgba(200, 192, 178, 0.4);
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .drawer-social-row {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .drawer-social-row a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #aaa !important;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .drawer-social-row a:hover {
        background: var(--color-gold-sig);
        border-color: var(--color-gold-sig);
        color: #fff !important;
    }

    /* Nav link arrow â€” right-aligned subtle indicator */
    .nav-arrow {
        margin-left: auto;
        color: rgba(179, 128, 49, 0.35);
        flex-shrink: 0;
        transition: color 0.2s, transform 0.2s;
    }

    .nav-links > a:active .nav-arrow,
    .nav-item > .nav-link:active .nav-arrow {
        color: var(--color-gold-sig);
        transform: translateX(2px);
    }

    /* â”€â”€ Services Grid inside the drawer â”€â”€ */
    .drawer-services-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0 1rem 0.5rem;
    }

    .dsc-icon {
        display: flex !important;
    }

    .dsc-name,
    .dsc-sub {
        display: block !important;
    }

    .drawer-view-all-services {
        display: flex !important;
    }

    .drawer-service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        padding: 0.75rem 0.4rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(179, 128, 49, 0.12);
        border-radius: 14px;
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .drawer-service-card:active {
        background: rgba(179, 128, 49, 0.12);
        transform: scale(0.95);
        border-color: rgba(179, 128, 49, 0.35);
    }

    .dsc-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(179, 128, 49, 0.15) 0%, rgba(179, 128, 49, 0.05) 100%);
        border: 1px solid rgba(179, 128, 49, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-gold-sig);
        margin-bottom: 0.1rem;
        transition: background 0.2s;
    }

    .drawer-service-card:active .dsc-icon {
        background: linear-gradient(135deg, rgba(179, 128, 49, 0.3) 0%, rgba(179, 128, 49, 0.15) 100%);
    }

    .dsc-name {
        font-size: 0.62rem;
        font-weight: 700;
        color: #E0D8CC;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        line-height: 1;
    }

    .dsc-sub {
        font-size: 0.52rem;
        font-weight: 400;
        color: rgba(200, 192, 178, 0.45);
        text-align: center;
        line-height: 1;
    }

    /* "View All Services" link row */
    .drawer-view-all-services {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        margin: 0.75rem 1rem 0;
        padding: 0.7rem 1rem;
        background: rgba(179, 128, 49, 0.08);
        border: 1px solid rgba(179, 128, 49, 0.2);
        border-radius: 12px;
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--color-gold-sig) !important;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        transition: all 0.2s ease;
    }

    .drawer-view-all-services:active {
        background: rgba(179, 128, 49, 0.18);
        transform: scale(0.98);
    }

    /* Drawer width: wider for the 3-col service grid */
    .nav-links {
        width: 320px !important;
        left: -340px !important; /* Must exceed width to fully hide */
    }

    .nav-links.active {
        left: 0 !important; /* Slide in */
    }

    /* ========================================================
       4. BOTTOM NAVIGATION BAR â€” Always Visible App-Style
       ======================================================== */
    .mobile-app-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1990;
        background: rgba(10, 8, 5, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(179, 128, 49, 0.2);
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
    }

    .app-bar-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.6rem 0.25rem;
        gap: 4px;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.6);
        /* Lightened from dark beige */
        transition: all 0.2s ease;
        cursor: pointer;
        border: none;
        background: none;
        font-family: var(--font-app);
        min-height: 60px;
        position: relative;
    }

    .app-bar-item:active {
        transform: scale(0.9);
    }

    .app-bar-item.active {
        color: #fff;
        /* Lighter active state */
    }

    .app-bar-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        /* Slightly smaller bar */
        height: 2px;
        background: var(--color-gold-sig);
        border-radius: 0 0 2px 2px;
    }

    .app-bar-icon {
        width: 18px;
        /* Reduced from 22px */
        height: 18px;
        /* Reduced from 22px */
    }

    .app-bar-label {
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    /* Call button â€” urgent gold highlight */
    .app-bar-item.app-call {
        color: #fff;
        background: linear-gradient(135deg, #8B5E1A 0%, #B38031 100%);
        margin: 6px 8px 6px 4px;
        border-radius: 12px;
        min-height: 48px;
        flex: 1.3;
        box-shadow: 0 4px 16px rgba(179, 128, 49, 0.35);
    }

    .app-bar-item.app-call:active {
        transform: scale(0.94);
    }

    /* ========================================================
       5. FLOATING ACTION BUTTON â€” Enroll / Register
       ======================================================== */
    .mobile-fab {
        display: flex;
        position: fixed;
        bottom: 76px;
        /* Sits above the bottom nav bar */
        right: 18px;
        z-index: 1985;
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, #8B5E1A 0%, #C9922A 50%, #B38031 100%);
        box-shadow: 0 6px 24px rgba(179, 128, 49, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        color: #fff;
        font-family: var(--font-app);
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        flex-direction: column;
        gap: 2px;
        text-decoration: none;
    }

    .mobile-fab:active {
        transform: scale(0.88);
        box-shadow: 0 2px 10px rgba(179, 128, 49, 0.3);
    }

    .mobile-fab-icon {
        width: 18px;
        /* Reduced from 22px */
        height: 18px;
        /* Reduced from 22px */
        flex-shrink: 0;
    }

    .mobile-fab-label {
        font-size: 0.5rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        line-height: 1;
    }

    /* Pulse animation on FAB to draw attention */
    @keyframes fab-pulse {

        0%,
        100% {
            box-shadow: 0 6px 24px rgba(179, 128, 49, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        50% {
            box-shadow: 0 6px 24px rgba(179, 128, 49, 0.7), 0 0 0 10px rgba(179, 128, 49, 0.08);
        }
    }

    .mobile-fab {
        animation: fab-pulse 3s ease-in-out infinite;
    }

    /* ========================================================
       6. HERO SECTION â€” Full-Screen App Splash
       ======================================================== */
    .hero {
        height: 548px !important;
        /* Fixed height reduced by 15% from 644px */
        padding: 34px 0 51px !important;
        /* Adjusted padding for the shorter height */
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    /* Generous side padding for a premium, airy look */
    .hero .container {
        padding-left: 1.75rem !important;
        padding-right: 1.75rem !important;
    }

    /* Mobile Hero Image Overrides */
    .hero-background.bg-1 {
        background-image: url('../assets/images/Mobile%20Hero%20Image.jpg') !important;
    }

    .hero-background.bg-2 {
        background-image: url('../assets/images/Mobile%20Hero%202.jpg') !important;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        text-align: left !important;
    }

    .hero-left {
        order: 1;
    }

    .hero-eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.18em;
        margin-bottom: 0.6rem;
    }

    .hero-title {
        font-size: clamp(1.55rem, 6.5vw, 2rem) !important;
        line-height: 1.18 !important;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 0.82rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.75rem;
        opacity: 0.7;
    }

    .hero-cta-row {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.6rem !important;
        flex-wrap: nowrap !important;
        align-items: center;
    }

    /* Primary button â€” compact and refined */
    .hero-cta-row .btn-primary {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        letter-spacing: 0.05em !important;
        box-shadow: 0 3px 12px rgba(100, 60, 10, 0.3) !important;
        white-space: nowrap;
    }

    /* Outline button â€” ghost/light style */
    .hero-cta-row .btn-outline {
        padding: 0.6rem 1.1rem !important;
        font-size: 0.72rem !important;
        font-weight: 500 !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        background: transparent !important;
        color: rgba(255, 255, 255, 0.85) !important;
        white-space: nowrap;
    }

    /* Hide the Asibonge Promise box entirely on mobile */
    .hero-right {
        display: none !important;
    }


    /* ========================================================
       7. QUICK LINKS â€” 2-col app-style icon grid
       ======================================================== */
    .quick-links {
        padding: 2rem 0 !important;
        background: #fff;
    }

    .link-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .link-card {
        padding: 1.25rem 1rem !important;
        border-radius: 12px !important;
        text-align: center;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    }

    .link-card .icon-wrap {
        margin-bottom: 0.75rem;
    }

    .link-card h3 {
        font-size: 0.88rem !important;
        margin-bottom: 0.3rem;
    }

    .link-card p {
        font-size: 0.75rem !important;
        line-height: 1.5;
    }

    /* ========================================================
       8. SERVICES BENTO GRID â€” Vertical Clean Cards
       ======================================================== */
    .services-bento {
        padding: 2.5rem 0 3rem !important;
    }

    .services-bento-header {
        margin-bottom: 1.5rem !important;
        text-align: left;
    }

    .bento-eyebrow {
        font-size: 0.65rem;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 0.75rem !important;
    }

    .bento-image {
        height: 200px !important;
        border-radius: 12px !important;
    }

    .bento-tall {
        grid-row: auto !important;
        height: 200px;
    }

    .bento-text {
        padding: 1.25rem !important;
        border-radius: 12px !important;
        gap: 0.5rem !important;
    }

    .bento-text h3 {
        font-size: 1rem !important;
    }

    .bento-cta {
        grid-column: 1 !important;
        padding: 1.5rem 1.25rem !important;
        border-radius: 12px !important;
        gap: 0.5rem !important;
    }

    .bento-cta h3 {
        font-size: 1.05rem !important;
        max-width: 100% !important;
    }

    .bento-cta p {
        max-width: 100% !important;
        font-size: 0.85rem !important;
    }

    /* ========================================================
       9. BURIAL PLANS â€” App-style scrollable tier cards
       ======================================================== */
    .plans-section {
        padding: 2.5rem 0 3rem !important;
    }

    .plans-section .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
        text-align: left !important;
    }

    .section-sub {
        text-align: left !important;
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* ======================================================
       BURIAL PLANS PAGE â€” Premium Mobile/Tablet UI
       App-quality, compact typography, 140px card gap
       ====================================================== */

    /* Intro section */
    .plans-lede {
        padding: 2.5rem 0 0 !important;
        text-align: center !important;
    }

    .plans-lede .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        margin-bottom: 0.75rem !important;
    }

    .plans-lede p {
        font-size: 0.85rem !important;
        line-height: 1.65 !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    /* Segmented control: pill tabs */
    .pricing-selector {
        margin: 1.5rem auto 2.5rem !important;
        border-radius: 50px !important;
    }

    /* Plans grid: single column, 140px gap for casket bleed room */
    .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 140px !important;
        margin-bottom: 3rem !important;
        padding-bottom: 80px !important; /* Extra room for last casket image */
    }

    /* Plan card: clean, compact, elevated feel */
    .plan-card {
        border-radius: 18px !important;
        overflow: visible !important;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
        transition: none !important; /* Disable hover on touch */
    }

    /* Plan header: tighter, more compact */
    .plan-header {
        padding: 1.4rem 1.25rem 1.1rem !important;
        border-radius: 18px 18px 0 0 !important;
    }

    /* Badge: smaller, crisper */
    .plan-card .badge {
        font-size: 0.5rem !important;
        padding: 0.2rem 0.6rem !important;
        border-radius: 20px !important;
    }

    /* Plan name: compact, readable */
    .plan-card h4 {
        font-size: 1rem !important;
        margin-bottom: 0.6rem !important;
        letter-spacing: 0.02em !important;
    }

    /* Price: solid but not overwhelming */
    .plan-card .price,
    .plan-card .price .p-amount {
        font-size: 1.9rem !important;
        font-weight: 800 !important;
    }

    /* Coverage pill */
    .per-month-pill {
        font-size: 0.55rem !important;
        padding: 0.3rem 0.85rem !important;
        margin-top: 0.5rem !important;
        letter-spacing: 0.12em !important;
    }

    /* Benefits list: compact zebra rows */
    .plan-benefits li {
        padding: 0.65rem 1.1rem !important;
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
        border-bottom: 1px solid #eeebe6 !important;
    }

    /* Highlight benefits */
    .plan-benefits .benefit-highlight {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
    }

    /* Footer area: extra padding to hold the image 100% */
    .plan-footer {
        padding: 0.9rem 1.1rem 6.5rem !important;
    }

    /* Dependants note: tiny, subtle */
    .plan-dependants-note {
        font-size: 0.65rem !important;
        margin-top: 0.75rem !important;
        line-height: 1.55 !important;
    }

    /* CTA button on plans: pill-shaped, premium */
    .btn-plan {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.7rem !important;
        border-radius: 40px !important;
        letter-spacing: 0.06em !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

    /* Casket bleed â€” 100% inside the card as per original request */
    .plan-casket-wrap {
        margin-top: -6rem !important; /* Pull up into the padding */
        margin-bottom: 0 !important; /* No protrusion on mobile */
        padding: 0 0.5rem !important;
        overflow: visible !important;
        position: relative;
        z-index: 5;
    }

    .plan-casket-img {
        width: 100% !important; 
        max-width: 270px !important; 
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)) !important;
    }

    /* Custom Prompt Banner refinements */
    .custom-prompt-banner {
        margin-bottom: 2rem !important;
    }
    
    .custom-prompt-banner p {
        font-size: 0.78rem !important; /* Smaller description */
        margin-bottom: 0.75rem !important;
    }
    
    .custom-prompt-banner .btn {
        padding: 0.5rem 1rem !important; /* Smaller button */
        font-size: 0.75rem !important;
        border-radius: 30px !important;
    }

    /* Plans inclusive tags: more compact */
    .plans-inclusive {
        border-radius: 12px !important;
        padding: 1rem !important;
        margin-bottom: 3rem !important;
    }

    .plans-inclusive strong {
        font-size: 0.82rem !important;
        display: block;
        margin-bottom: 0.5rem;
    }

    .plans-inclusive .tags {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important; 
        gap: 0.4rem !important;
        margin-top: 0.5rem !important;
    }

    .plans-inclusive .tags span {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #F0EBE2 !important;
        border-radius: 18px !important;
        color: #5A4A35 !important;
        font-weight: 700 !important;
        text-align: center !important;
        line-height: 1.1 !important;
        min-height: 36px !important; /* Smaller touch target */
        padding: 0.25rem !important;
    }

    /* Row 1: 2 items */
    .plans-inclusive .tags span:nth-child(1),
    .plans-inclusive .tags span:nth-child(2) {
        grid-column: span 3 !important;
        font-size: 0.62rem !important; /* Even smaller */
    }

    /* Row 2: 3 items */
    .plans-inclusive .tags span:nth-child(3),
    .plans-inclusive .tags span:nth-child(4),
    .plans-inclusive .tags span:nth-child(5) {
        grid-column: span 2 !important;
        font-size: 0.56rem !important; /* Even smaller */
    }

    /* ========================================================
       CTA BANNER â€” Optimized for Mobile
       ======================================================== */
    .cta-banner .container {
        padding: 3.5rem 1.25rem !important;
    }

    .cta-banner h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .cta-banner p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        color: rgba(255,255,255,0.85) !important;
    }

    .cta-banner .btn {
        padding: 0.75rem 2rem !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        border-radius: 40px !important;
        white-space: nowrap !important;
        width: auto !important;
        display: inline-block !important;
    }

    /* ========================================================
       10. CTA BANNER â€” Full-width mobile call-to-action (Alternative Class)
       ======================================================== */
    .cta-banner {
        padding: 2rem 0 !important;
    }

    .cta-banner-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.25rem !important;
    }

    .cta-banner-text h2 {
        font-size: 1.25rem !important;
        margin-bottom: 0.3rem !important;
    }

    .cta-banner-text p {
        font-size: 0.85rem !important;
    }

    .cta-banner-actions {
        justify-content: space-between !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }

    .cta-banner-actions .btn {
        width: calc(50% - 0.25rem) !important;
        text-align: center !important;
        border-radius: 8px !important;
        padding: 0.7rem 0.2rem !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.02em !important;
        white-space: nowrap !important;
    }

    /* ========================================================
       11. WHY CHOOSE US â€” Compact horizontal-scroll cards
       ======================================================== */
    .why-us-section {
        padding: 2.5rem 0 3rem !important;
    }

    .why-intro {
        margin-bottom: 1.5rem !important;
        text-align: left !important;
    }

    .why-intro .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.3rem !important;
    }

    .why-sub {
        font-size: 0.85rem !important;
    }

    .why-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .why-card {
        border-radius: 12px !important;
        flex-direction: row !important;
        align-items: stretch !important;
    }

    .why-card-header {
        background-color: #F8F8F8 !important;
        padding: 1.1rem !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 90px;
        border-bottom: none !important;
        border-right: 1px solid #F0F0F0;
    }

    .why-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 0.5rem !important;
    }

    .why-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .why-card h3 {
        font-size: 0.82rem !important;
        text-align: center;
    }

    .why-card .why-content {
        padding: 1rem !important;
        display: flex;
        align-items: center;
    }

    .why-card p {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
    }

    /* ========================================================
       12. FEATURED TOMBSTONE SECTION
       ======================================================== */
    .shop-feature-section {
        padding: 2.5rem 0 3rem !important;
    }

    .shop-feature-layout {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: left !important;
    }

    .shop-feature-img-wrap {
        border-radius: 14px !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    }

    .shop-feature-content .section-title {
        font-size: 1.4rem !important;
    }

    .featured-desc {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.25rem !important;
    }

    .featured-specs {
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }

    .spec-item {
        font-size: 0.88rem !important;
        gap: 0.6rem !important;
    }

    .shop-cta-wrap {
        margin-top: 1.5rem !important;
    }

    .shop-cta-wrap .btn {
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }

    /* ========================================================
       13. BRAND DIVIDERS â€” Thinner on mobile
       ======================================================== */
    .brand-divider {
        height: 32px !important;
        margin: 0 !important;
    }

    /* ========================================================
       14. SECTION TITLE â€” Global mobile sizing
       ======================================================== */
    .section-title {
        font-size: 1.45rem !important;
        margin-bottom: 1rem !important;
    }

    /* ========================================================
       15. CONTACT / SUBPAGE INFO â€” Clean list view
       ======================================================== */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-info .section-title {
        font-size: 1.3rem !important;
        margin-bottom: 1.25rem !important;
    }

    .contact-detail {
        font-size: 0.88rem !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .contact-cta {
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }

    /* ========================================================
       16. PAGE HERO (Subpages) â€” Mobile-friendly
       ======================================================== */
    .page-hero {
        margin-top: 0 !important;
        min-height: 200px !important;
        height: auto !important;
        padding: 2.5rem 0 !important;
    }

    .page-hero-bg {
        width: 100% !important;
        opacity: 0.2 !important;
        clip-path: none !important;
    }

    .page-hero-ribbon-gold,
    .page-hero-ribbon-dark {
        display: none !important;
    }

    .page-hero-text {
        align-items: flex-start !important;
        text-align: left !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .page-hero h1 {
        font-size: clamp(1.2rem, 5vw, 1.6rem) !important;
    }

    /* ========================================================
       17. FOOTER â€” Premium mobile redesign
       ======================================================== */
    .main-footer {
        padding: 0 !important;
        background: linear-gradient(180deg, #1A1612 0%, #120F0C 100%) !important;
        border-top: 2px solid var(--color-gold-sig) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* Subtle gold glow at top */
    .main-footer::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60% !important;
        height: 1px !important;
        background: radial-gradient(ellipse at center, rgba(179, 128, 49, 0.5) 0%, transparent 70%) !important;
        pointer-events: none !important;
    }

    /* â”€â”€ Brand block â”€â”€ */
    .footer-brand {
        padding: 2rem 1.5rem 1.5rem !important;
        border-bottom: 1px solid rgba(179, 128, 49, 0.15) !important;
        text-align: center !important;
    }

    .footer-logo {
        height: 50px !important;
        margin-bottom: 0.75rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    .slogan {
        font-size: 0.82rem !important;
        font-weight: 400 !important;
        color: rgba(200, 192, 178, 0.75) !important;
        line-height: 1.6 !important;
        font-style: italic !important;
        margin-bottom: 1.1rem !important;
    }

    /* Social icons row */
    .footer-socials {
        display: flex !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }

    .footer-socials a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        border: 1px solid rgba(179, 128, 49, 0.35) !important;
        color: var(--color-gold-sun) !important;
        transition: all 0.2s ease !important;
        background: rgba(179, 128, 49, 0.06) !important;
    }

    /* â”€â”€ Navigation grid: 2 columns â”€â”€ */
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        margin-bottom: 0 !important;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
    }

    .footer-nav,
    .footer-contact {
        padding: 1.4rem 1.5rem !important;
        border-bottom: 1px solid rgba(179, 128, 49, 0.1) !important;
    }

    .footer-nav:first-of-type {
        border-right: 1px solid rgba(179, 128, 49, 0.1) !important;
    }

    .footer-nav h4,
    .footer-contact h4,
    .footer-seo h4 {
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.15em !important;
        text-transform: uppercase !important;
        color: var(--color-gold-sun) !important;
        margin-bottom: 0.9rem !important;
        padding-bottom: 0.5rem !important;
        border-bottom: 1px solid rgba(179, 128, 49, 0.2) !important;
    }

    .footer-nav a {
        font-size: 0.82rem !important;
        font-weight: 400 !important;
        color: rgba(200, 192, 178, 0.85) !important;
        padding: 0.28rem 0 !important;
        letter-spacing: 0.01em !important;
        transition: color 0.2s ease !important;
        display: block !important;
    }

    .footer-nav a:hover {
        color: var(--color-gold-sun) !important;
        transform: none !important;
    }

    /* Contact full-width */
    .footer-contact {
        grid-column: 1 / -1 !important;
        border-right: none !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 1.5rem !important;
        align-items: start !important;
    }

    .footer-contact h4 {
        grid-column: 1 / -1 !important;
    }

    .footer-contact p,
    .footer-contact a {
        font-size: 0.82rem !important;
        font-weight: 400 !important;
        color: rgba(200, 192, 178, 0.85) !important;
        line-height: 1.7 !important;
        margin-bottom: 0.2rem !important;
    }

    .footer-contact a {
        color: var(--color-gold-sun) !important;
        font-weight: 500 !important;
    }

    .footer-contact a:hover {
        opacity: 0.8 !important;
    }

    /* SEO block â€” hide on mobile to keep it clean */
    .footer-seo {
        display: none !important;
    }

    /* â”€â”€ Bottom bar â”€â”€ */
    .footer-bottom {
        padding: 1.1rem 1.5rem !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border-top: 1px solid rgba(179, 128, 49, 0.15) !important;
        text-align: center !important;
    }

    .footer-legal {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.3rem 0.6rem !important;
        font-size: 0.68rem !important;
        color: rgba(200, 192, 178, 0.5) !important;
    }

    .footer-legal a {
        color: rgba(200, 192, 178, 0.5) !important;
        font-weight: 400 !important;
    }

    .footer-legal .sep {
        display: none !important;
    }

    /* ========================================================
       18. MODAL â€” Full-screen sheet on mobile
       ======================================================== */
    .modal-content {
        border-radius: 20px 20px 0 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: fixed !important;
        bottom: 80px !important;
        left: 0 !important;
        right: 0 !important;
        max-height: 85svh !important;
        overflow-y: auto !important;
        transform: translateY(100%) !important;
    }

    .modal-overlay.active .modal-content {
        transform: translateY(0) !important;
    }

    .modal-overlay {
        align-items: flex-end !important;
    }

    .modal-content .enroll-form-top {
        padding: 1.5rem 1.5rem 1rem !important;
    }

    .modal-content .enroll-form-body {
        padding: 1.25rem 1.5rem !important;
    }

    .modal-content .enroll-form-foot {
        padding: 1rem 1.5rem 1.5rem !important;
    }

    /* ========================================================
       19. ENROLLMENT SECTION FULL-PAGE
       ======================================================== */
    .enroll-section-v2 {
        padding: 2.5rem 0 3rem !important;
    }

    .enroll-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .enroll-left h2 {
        font-size: 1.7rem !important;
    }

    .enroll-form-card {
        border-radius: 16px !important;
    }

    .enroll-form-top {
        padding: 1.5rem !important;
    }

    .enroll-form-body {
        padding: 1.5rem !important;
    }

    .enroll-form-foot {
        padding: 1rem 1.5rem 1.5rem !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .ef-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* ========================================================
       20. GENERAL INTERACTIVE IMPROVEMENTS
       ======================================================== */

    /* Better tap targets */
    .btn {
        min-height: 44px !important;
        touch-action: manipulation;
    }

    a,
    button {
        touch-action: manipulation;
    }

    /* Remove hover transform on mobile (no hover on touch) */
    .link-card:hover,
    .plan-card:hover,
    .why-card:hover,
    .bento-card:hover {
        transform: none !important;
    }

    /* Scrollbars hidden for cleaner look */
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    /* Smooth transitions for interactive elements */
    .btn:active {
        transform: scale(0.96) !important;
        transition: transform 0.1s ease !important;
    }

    /* Legacy/About page sections */
    .legacy-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .legacy-image {
        height: 240px !important;
        border-radius: 14px !important;
    }

    .legacy-image::after,
    .legacy-image::before {
        display: none !important;
    }

    .legacy-section {
        padding: 2.5rem 0 3rem !important;
    }

    /* ======================================================
       COMPARISON TABLE â€” Mobile horizontal scroll
       ====================================================== */
    .comparison-section {
        padding: 2.5rem 0 3rem !important;
    }

    .comp-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }

    .comp-header-left h2 {
        font-size: clamp(1.2rem, 5vw, 1.6rem) !important;
        line-height: 1.2 !important;
    }

    .comp-header-right p {
        font-size: 0.8rem !important;
        color: var(--color-text-muted) !important;
    }

    /* Scrollable table container */
    .comparison-container {
        border-radius: 14px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        /* Subtle scrollbar cue */
        box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
    }

    /* Table: min-width forces scroll, each column compact */
    .modern-comp-table {
        min-width: 540px !important;
        font-size: 0.75rem !important;
    }

    .modern-comp-table th,
    .modern-comp-table td {
        padding: 0.65rem 0.8rem !important;
        font-size: 0.72rem !important;
        white-space: nowrap !important;
    }

    .modern-comp-table .feature-label {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        min-width: 120px !important;
    }

    .modern-comp-table th {
        font-size: 0.65rem !important;
        padding: 0.75rem 0.8rem !important;
        letter-spacing: 0.04em !important;
    }

    /* Scroll hint indicator */
    .comparison-container::after {
        content: '';
        position: absolute;
        right: 0; top: 0; bottom: 0;
        width: 30px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
        pointer-events: none;
        border-radius: 0 14px 14px 0;
    }

    /* Subpage body padding override */
    body.subpage {
        padding-bottom: 80px;
    }
}

/* ========================================================
   GLOBAL PREMIUM MODAL SYSTEM
   ======================================================== */

/* Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2100;
    align-items: center; /* Desktop: center */
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Card */
.modal-content.small-modal {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    padding: 0;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modal-overlay.active .small-modal {
    transform: translateY(0);
}

/* Mobile specific bottom-sheet behavior */
@media (max-width: 640px) {
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .modal-content.small-modal {
        max-width: 100%;
        border-radius: 28px 28px 0 0;
        border-bottom: none;
        transform: translateY(100%);
    }
    .modal-content.small-modal::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        margin: 12px auto 0;
    }
}

/* Close button */
.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #333;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: rotate(90deg);
}

/* â”€â”€ Header Band â”€â”€ */
.join-modal-header {
    padding: 2.25rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, rgba(179, 128, 49, 0.05) 0%, transparent 100%);
}

.join-modal-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.join-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.join-modal-sub {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* â”€â”€ Form Body â”€â”€ */
.join-modal-body {
    padding: 2rem;
}

.jf-field {
    margin-bottom: 1.5rem;
}

.jf-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    margin-bottom: 0.5rem;
}

.jf-label svg {
    color: var(--color-gold-sig);
}

.jf-input {
    width: 100%;
    background: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: #1a1a1a;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.25s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.jf-input:focus {
    border-color: var(--color-gold-sig);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(179, 128, 49, 0.1);
}

/* â”€â”€ Subject Chip Selector â”€â”€ */
.subject-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.plan-chip input[type="radio"] {
    display: none;
}

.chip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.chip-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
}

.plan-chip input:checked+.chip-inner {
    background: rgba(179, 128, 49, 0.08);
    border-color: var(--color-gold-sig);
    box-shadow: 0 0 0 2px rgba(179, 128, 49, 0.1);
}

.plan-chip input:checked+.chip-inner .chip-name {
    color: var(--color-gold-sig);
}

/* â”€â”€ Trust Strip â”€â”€ */
.join-trust-strip {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.join-trust-strip span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
}

.join-trust-strip svg {
    stroke: var(--color-gold-sig);
}

/* â”€â”€ Submit Button â”€â”€ */
.join-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #B38031 0%, #8B5E1A 100%);
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(179, 128, 49, 0.3);
    transition: all 0.3s ease;
    font-family: inherit;
}

.join-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(179, 128, 49, 0.4);
}

.join-submit-btn:active {
    transform: scale(0.98);
}

.submit-arrow {
    transition: transform 0.3s;
}

.join-submit-btn:hover .submit-arrow {
    transform: translateX(4px);
}


/* ============================================================
   TABLET (769px â€“ 1024px) â€” Plans Page Optimized
   ============================================================ */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    /* Intro section â€” compact for tablet */
    .plans-lede {
        padding: 4rem 0 1rem !important;
    }

    .plans-lede .section-title {
        font-size: clamp(2rem, 5vw, 2.8rem) !important;
    }

    .plans-lede p {
        font-size: 1rem !important;
        max-width: 700px !important;
        margin-bottom: 2rem !important;
    }

    /* Plans grid: 2Ã—2 on tablet, 140px gap keeps casket images breathing */
    .plans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 140px 2.5rem !important; /* Large vertical gap, comfortable horizontal gap */
        margin-bottom: 4rem !important;
        padding-bottom: 120px !important;
    }

    /* Plan card: slightly compact for tablet */
    .plan-card {
        padding: 2rem 1.5rem !important;
        border-radius: 24px !important;
    }

    .plan-card h4 {
        font-size: 1.2rem !important;
    }

    .plan-card .price,
    .plan-card .price .p-amount {
        font-size: 2.4rem !important;
    }

    .plan-benefits li {
        font-size: 0.9rem !important;
        padding: 0.8rem 1.2rem !important;
    }

    /* Inclusive tags for Tablet: 1 clean row */
    .plans-inclusive {
        padding: 1.75rem 2rem !important;
        border-radius: 20px !important;
        margin: 0 auto 4rem !important;
        max-width: 900px !important;
    }

    /* â”€â”€ Services Page â€” Tablet â”€â”€ */
    .services-intro-inner,
    .service-block-grid,
    .admin-block-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .service-block-grid.reverse { direction: ltr !important; }
    .service-block { padding: 4.5rem 0 !important; }
    .service-block-text h2 { font-size: 1.8rem !important; }
    .service-features { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
    .infra-cards { grid-template-columns: repeat(3, 1fr) !important; border-radius: 16px !important; }

    /* â”€â”€ Claim Page â€” Tablet â”€â”€ */
    .claim-intro-grid, .assistance-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .process-steps { grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
    .process-step { padding: 1.75rem !important; border-radius: 16px !important; }
    .claim-form-wrap { border-radius: 20px !important; }
    .claim-header h2 { font-size: 1.8rem !important; }
    .form-body { padding: 2rem !important; }

    .plans-inclusive strong {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
        display: block !important;
        text-align: center !important;
    }

    .plans-inclusive .tags {
        display: flex !important;
    }

    .modern-comp-table th,
    .modern-comp-table td {
        padding: 0.75rem 0.9rem !important;
        font-size: 0.8rem !important;
    }
}

/* ============================================================
   EXTRA SMALL SCREENS (â‰¤ 400px)
   ============================================================ */
@media screen and (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-cta-row {
        grid-template-columns: 1fr !important;
    }

    .link-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .link-card {
        padding: 1rem 0.75rem !important;
    }

    .link-card h3 {
        font-size: 0.8rem !important;
    }

    .link-card p {
        display: none;
        /* Hide description on very small screens */
    }

    .app-bar-label {
        font-size: 0.55rem !important;
    }


    /* â”€â”€ Home Package Cards â€” Mobile â”€â”€ */
    .home-plans-summary {
        grid-template-columns: 1fr !important;
        gap: 100px !important;      /* Gap covers casket bleed + breathing room */
        padding-bottom: 120px !important;
        margin-bottom: 0 !important;
    }

    .summary-card {
        padding: 1.5rem 1.25rem 7rem !important; /* Reduced bottom padding by 30% (from 10rem) */
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(44, 36, 22, 0.1) !important;
        position: relative !important;
        overflow: visible !important;
    }

    .summary-card .age-label {
        font-size: 0.6rem !important;
        padding: 0.3rem 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }

    .summary-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .starting-from {
        font-size: 0.88rem !important;
        margin-bottom: 0.75rem !important;
    }

    .price-val {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
    }

    .summary-desc {
        font-size: 0.82rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }

    .summary-content {
        margin-bottom: 1rem !important;
    }

    .summary-footer {
        gap: 0.75rem !important;
    }

    .summary-footer .btn {
        font-size: 0.75rem !important;
        padding: 0.8rem 1.5rem !important;
        border-radius: 40px !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        width: auto !important;
        margin-top: 0 !important;
    }

    /* 70% inside card, 30% protrudes below */
    .summary-card .plan-casket-wrap {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        padding: 0 0.75rem !important;
        margin-top: -7rem !important;   /* Exactly 70% of 10rem total height */
        margin-bottom: -3rem !important; /* Exactly 30% of 10rem total height */
        position: relative !important;
        z-index: 10 !important;
        pointer-events: none !important;
        overflow: visible !important;
        transform: translateY(130%) !important; /* Shift entire wrapper downward 130% */
    }

    .summary-card .plan-casket-img {
        width: 80% !important;
        max-width: 240px !important;
        height: auto !important;
        object-fit: contain !important;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25)) !important;
    }

    .join-trust-strip svg {
        stroke: rgba(179, 128, 49, 0.6);
        flex-shrink: 0;
    }

    /* â”€â”€ Submit Button â”€â”€ */
    .join-submit-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
        height: 28px;
        border-radius: 8px;
        background: linear-gradient(135deg, #B38031 0%, #8B5E1A 100%);
        border: none;
        color: #fff;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        box-shadow: 0 8px 28px rgba(179, 128, 49, 0.35);
        transition: all 0.25s ease;
        font-family: inherit;
    }

    .join-submit-btn:active {
        transform: scale(0.97);
        box-shadow: 0 4px 12px rgba(179, 128, 49, 0.2);
    }

    .submit-arrow {
        transition: transform 0.2s;
    }

    .join-submit-btn:active .submit-arrow {
        transform: translateX(4px);
    }

    /* â”€â”€ Light Theme Overrides â”€â”€ */
    .modal-content.small-modal.light-theme {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.1);
    }

    .light-theme .modal-close {
        color: #333;
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .light-theme .modal-content.small-modal::before {
        background: rgba(0, 0, 0, 0.15);
    }

    .light-theme .join-modal-header {
        background: linear-gradient(135deg, rgba(245, 245, 245, 1) 0%, #ffffff 100%);
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }

    .light-theme .join-modal-badge {
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .light-theme .join-modal-title {
        color: #1a1a1a;
    }

    .light-theme .join-modal-sub {
        color: #666;
    }

    .light-theme .jf-label {
        color: #555;
    }

    .light-theme .jf-input {
        background: #f8f8f8;
        border-color: #e0e0e0;
        color: #333;
    }

    .light-theme .jf-input::placeholder {
        color: #999;
    }

    .light-theme .jf-input:focus {
        border-color: var(--color-gold-sig);
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(179, 128, 49, 0.15);
    }

    .light-theme .chip-inner {
        background: #f8f8f8;
        border-color: #e0e0e0;
    }

    .light-theme .chip-name {
        color: #555;
    }

    .light-theme .plan-chip input:checked+.chip-inner {
        background: rgba(179, 128, 49, 0.08);
        border-color: var(--color-gold-sig);
    }

    .light-theme .plan-chip input:checked+.chip-inner .chip-name {
        color: var(--color-gold-sun);
    }

    .light-theme .join-trust-strip span {
        color: #777;
    }

    .light-theme .join-trust-strip svg {
        stroke: var(--color-gold-sun);
    }

        /* â”€â”€ Mobile Pattern Image Overrides â”€â”€ */
    .pattern-bg,
    .brand-divider,
    .summary-card::before {
        background-image: url('../assets/images/Mobile%20Asibonge%20Pattern.png') !important;
        background-size: 100% auto !important;
        /* Fit to screen width, maintain aspect ratio */
    }

    /* â”€â”€ Global Page Refinements â”€â”€ */
    .subpage .page-hero { height: 55vh !important; min-height: 360px !important; margin-top: 0 !important; }
    .subpage .page-hero-bg { width: 100% !important; opacity: 0.15 !important; clip-path: none !important; }
    .subpage .page-hero-text { align-items: center !important; text-align: center !important; width: 100% !important; padding: 0 1.5rem !important; }
    .subpage .page-hero h1 { font-size: 1.6rem !important; line-height: 1.2 !important; }
    .subpage .page-hero-line { margin: 0 auto 1rem !important; }

    /* Button Consistency */
    .subpage .btn { 
        width: 100% !important; 
        padding: 0.85rem 1.5rem !important; 
        font-size: 0.85rem !important; 
        border-radius: 12px !important;
        margin-top: 1rem !important;
    }

    /* â”€â”€ Services Page â€” Mobile â”€â”€ */
    .services-intro { padding: 3rem 0 !important; }
    .services-header { margin-bottom: 2rem !important; }
    .services-header h2 { font-size: 1.35rem !important; margin-bottom: 0.8rem !important; }
    .services-header p { font-size: 0.85rem !important; line-height: 1.6 !important; }
    
    .services-intro-text h2 { font-size: 1.2rem !important; margin-bottom: 0.75rem !important; }
    .services-intro-text p { font-size: 0.85rem !important; }
    
    .services-nav { border-radius: 16px !important; border-color: rgba(179,128,49,0.15) !important; background: rgba(255,255,255,0.02) !important; }
    .services-nav a { font-size: 0.82rem !important; padding: 1rem 1.25rem !important; }
    
    .service-block { padding: 2.5rem 0 !important; }
    .service-block-text h2 { font-size: 1.35rem !important; margin-bottom: 0.8rem !important; }
    .service-block-text p { font-size: 0.85rem !important; line-height: 1.6 !important; }
    .service-block-text .overline { font-size: 0.65rem !important; margin-bottom: 0.5rem !important; }
    
    .service-features { grid-template-columns: 1fr !important; gap: 0.65rem !important; margin: 1.25rem 0 !important; }
    .service-feature-item { font-size: 0.82rem !important; }
    .service-feature-item svg { width: 14px; height: 14px; }
    
    .service-inline-stat { padding: 1.25rem !important; border-radius: 12px !important; gap: 1rem !important; }
    .service-inline-stat .num { font-size: 1.5rem !important; }
    .service-inline-stat .txt { font-size: 0.78rem !important; }
    
    .infra-cards { grid-template-columns: repeat(2, 1fr) !important; border-radius: 12px !important; }
    .infra-card { padding: 1.25rem !important; }
    .infra-card-label { font-size: 0.62rem !important; margin-bottom: 0.4rem !important; }
    .infra-card-value { font-size: 0.8rem !important; }
    
    .admin-block { padding: 3rem 0 !important; }
    .admin-text h2 { font-size: 1.35rem !important; }
    .admin-text p { font-size: 0.85rem !important; }
    .admin-item { padding: 1.15rem !important; border-radius: 14px !important; gap: 1rem !important; }
    .admin-item-icon { width: 32px; height: 32px; }
    .admin-item h4 { font-size: 0.88rem !important; }
    .admin-item p { font-size: 0.78rem !important; }
    
    .emergency-cta { padding: 3rem 0 !important; }
    .emergency-cta h2 { font-size: 1.3rem !important; }
    .emergency-cta p { font-size: 0.85rem !important; }
    .emergency-cta-hotline { border-radius: 14px !important; padding: 1.25rem !important; width: 100% !important; box-sizing: border-box !important; }
    .emergency-cta-hotline .hotline-num { font-size: 1.5rem !important; }
    .emergency-cta-hotline .hotline-label { font-size: 0.72rem !important; }

    /* â”€â”€ Claim Page â€” Mobile â”€â”€ */
    .claim-intro { padding: 2.5rem 0 !important; }
    .claim-intro-text h2 { font-size: 1.3rem !important; }
    .claim-intro-text p { font-size: 0.85rem !important; }
    
    .support-concierge { padding: 1.5rem !important; border-radius: 16px !important; }
    .support-concierge .number { font-size: 1.4rem !important; }
    .support-concierge .note { font-size: 0.78rem !important; }
    
    .claim-steps-section { padding: 3rem 0 !important; }
    .claim-header { margin-bottom: 2.5rem !important; }
    .claim-header h2 { font-size: 1.35rem !important; }
    .claim-header p { font-size: 0.85rem !important; }
    
    .process-steps { gap: 1rem !important; }
    .process-step { padding: 1.5rem !important; border-radius: 14px !important; border-left-width: 4px !important; }
    .process-step h3 { font-size: 1rem !important; }
    .process-step p { font-size: 0.82rem !important; }
    
    .claim-assistance-section { padding: 3rem 0 !important; }
    .docs-panel-header { padding: 1.25rem !important; border-radius: 12px 12px 0 0 !important; }
    .docs-panel-header h3 { font-size: 1rem !important; }
    .doc-item { padding: 1.15rem !important; gap: 0.85rem !important; }
    .doc-item-text h4 { font-size: 0.85rem !important; }
    .doc-item-text p { font-size: 0.75rem !important; }
    
    .claim-form-wrap { border-radius: 16px !important; margin-top: 1.5rem !important; }
    .form-header { padding: 1.5rem !important; }
    .form-header h3 { font-size: 1.1rem !important; }
    .form-body { padding: 1.5rem !important; }
    .field-label { font-size: 0.78rem !important; margin-bottom: 0.3rem !important; }
    .field-input { font-size: 0.85rem !important; padding: 0.75rem 0.9rem !important; border-radius: 8px !important; }
    .form-row { gap: 0.75rem !important; margin-bottom: 0.75rem !important; }
    .form-notice { padding: 0.85rem 1rem !important; border-radius: 8px !important; }
    .form-footer { padding: 1.25rem 1.5rem !important; gap: 1.25rem !important; }
    .form-footer-note { font-size: 0.7rem !important; text-align: center !important; width: 100% !important; }
    .form-footer .btn { width: 100% !important; padding: 1rem !important; border-radius: 12px !important; }
    
    .claim-faq { padding: 3rem 0 !important; }
    .claim-faq-header h2 { font-size: 1.35rem !important; }
    .faq-item summary { font-size: 0.88rem !important; padding: 1.15rem 0 !important; }
    .faq-answer p { font-size: 0.82rem !important; }
}

/* â”€â”€ Mobile Home: Hide Admin Support & All Plans Include â”€â”€ */
@media (max-width: 768px) {
    .bento-card.bento-cta { display: none !important; }
    .plans-inclusive { display: none !important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT US PAGE â€” MOBILE & TABLET
   Applies to .subpage body scoped selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ TABLET (max 1024px) â”€â”€ */
@media (max-width: 1024px) {

    /* Identity Section */
    .identity-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .identity-text h2 {
        font-size: 2rem !important;
    }
    .identity-text p {
        font-size: 0.95rem !important;
    }
    .identity-stat-badge {
        left: 0 !important;
        bottom: -16px !important;
        padding: 1.25rem 1.5rem !important;
    }
    .identity-stat-badge .num {
        font-size: 2rem !important;
    }

    /* Pillars Grid */
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2px !important;
    }
    .pillar-item {
        padding: 2.25rem 2rem !important;
    }
    .pillar-item h3 {
        font-size: 1.25rem !important;
    }

    /* Legacy / Tradition */
    .legacy-inner {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .legacy-content h2 {
        font-size: 2rem !important;
    }

    /* CTA */
    .about-cta-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .about-cta h2 {
        font-size: 1.65rem !important;
    }
    .cta-btn-group {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    .cta-btn-group .btn {
        flex: 1 1 auto !important;
        text-align: center !important;
    }
}

/* â”€â”€ MOBILE (max 768px) â”€â”€ */
@media (max-width: 768px) {

    /* â”€â”€ Page Hero â”€â”€ */
    .page-hero { min-height: 220px !important; margin-top: 0 !important; }
    .page-hero h1 {
        font-size: 1.55rem !important;
        line-height: 1.3 !important;
    }
    .page-hero-eyebrow {
        font-size: 0.68rem !important;
        letter-spacing: 0.14em !important;
    }
    .page-breadcrumb { font-size: 0.72rem !important; }

    /* â”€â”€ Identity Section â”€â”€ */
    .identity-section { padding: 52px 0 70px !important; }
    .identity-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .identity-text .overline {
        font-size: 0.65rem !important;
        margin-bottom: 1rem !important;
    }
    .identity-text h2 {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1.25rem !important;
    }
    .identity-text p {
        font-size: 0.88rem !important;
        line-height: 1.78 !important;
        margin-bottom: 1rem !important;
    }
    /* Inline stat row */
    .identity-text > div[style] {
        gap: 1.5rem !important;
        margin-top: 1.5rem !important;
    }
    .identity-text > div[style] > div > div:first-child {
        font-size: 1.8rem !important;
    }
    .identity-text > div[style] > div > div:last-child {
        font-size: 0.7rem !important;
    }

    /* Identity image */
    .identity-image-wrap { margin-bottom: 2rem !important; }
    .identity-image-wrap img { border-radius: 6px !important; }
    .identity-stat-badge {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        margin-top: 1rem !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 1rem 1.5rem !important;
        border-radius: 6px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .identity-stat-badge .num {
        font-size: 1.75rem !important;
        display: inline !important;
        margin-bottom: 0 !important;
    }
    .identity-stat-badge .label {
        font-size: 0.72rem !important;
    }

    /* â”€â”€ Quote Strip â”€â”€ */
    .quote-strip { padding: 44px 0 !important; }
    .quote-strip blockquote {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        padding: 0 0.5rem !important;
    }
    .quote-strip cite { font-size: 0.7rem !important; }

    /* â”€â”€ Values / Pillars Section â”€â”€ */
    .values-section { padding: 48px 0 !important; }
    .values-header {
        margin-bottom: 2.5rem !important;
        max-width: 100% !important;
    }
    .values-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.6rem !important;
    }
    .values-header p {
        font-size: 0.85rem !important;
        line-height: 1.7 !important;
    }
    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 2px !important;
    }
    .pillar-item {
        padding: 1.75rem 1.5rem !important;
    }
    .pillar-num {
        font-size: 0.65rem !important;
        margin-bottom: 0.75rem !important;
    }
    .pillar-item h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.6rem !important;
    }
    .pillar-item p {
        font-size: 0.84rem !important;
        line-height: 1.72 !important;
    }

    /* â”€â”€ Legacy / Cultural Section â”€â”€ */
    .legacy-section { padding: 48px 0 !important; }
    .legacy-inner {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .legacy-content .subtitle {
        font-size: 0.65rem !important;
    }
    .legacy-content h2 {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1.25rem !important;
    }
    .legacy-content p {
        font-size: 0.87rem !important;
        line-height: 1.78 !important;
    }
    /* CTA button in legacy section */
    .legacy-content .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 0.85rem 1.25rem !important;
        font-size: 0.85rem !important;
        margin-top: 2rem !important;
        display: block !important;
        border-radius: 6px !important;
    }

    /* Tradition Cards */
    .tradition-cards { gap: 1rem !important; }
    .tradition-card {
        padding: 1.35rem 1.5rem !important;
        border-radius: 6px !important;
    }
    .tradition-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
    }
    .tradition-card p {
        font-size: 0.82rem !important;
        line-height: 1.68 !important;
    }

    /* â”€â”€ CTA Section â”€â”€ */
    .about-cta { padding: 48px 0 !important; }
    .about-cta-inner {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
        text-align: center !important;
    }
    .about-cta h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.6rem !important;
    }
    .about-cta p {
        font-size: 0.86rem !important;
        line-height: 1.7 !important;
    }
    .cta-btn-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    .cta-btn-group .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 0.9rem 1.25rem !important;
        font-size: 0.88rem !important;
        border-radius: 8px !important;
    }
}

/* ----------------------------------------------
   SERVICES PAGE ï¿½ MOBILE & TABLET
   ---------------------------------------------- */

/* -- TABLET (max 1024px) -- */
@media (max-width: 1024px) {
    .services-intro-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .services-intro-text h2 { font-size: 1.8rem !important; }
    .service-block-grid, .service-block-grid.reverse, .admin-block-grid { grid-template-columns: 1fr !important; gap: 3rem !important; direction: ltr !important; }
    .service-block-grid.reverse > * { direction: ltr !important; }
    .service-block-text h2 { font-size: 1.75rem !important; }
    .admin-text h2 { font-size: 1.75rem !important; }
    .emergency-cta h2 { font-size: 1.75rem !important; }
    .services-header h2 { font-size: 2rem !important; }
    .infra-cards { grid-template-columns: repeat(2, 1fr) !important; }
}

/* -- MOBILE (max 768px) -- */
@media (max-width: 768px) {
    /* Intro Header */
    .services-intro { padding: 44px 0 !important; }
    .services-header { margin: 0 auto 2.5rem !important; text-align: left !important; }
    .services-header h2 { font-size: 1.5rem !important; line-height: 1.25 !important; margin-bottom: 0.75rem !important; }
    .services-header p { font-size: 0.86rem !important; line-height: 1.72 !important; }
    .services-intro-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .services-intro-text h2 { font-size: 1.35rem !important; margin-bottom: 0.75rem !important; }
    .services-intro-text p { font-size: 0.86rem !important; line-height: 1.72 !important; }
    /* Services Nav */
    .services-nav { border-radius: 8px !important; }
    .services-nav a { font-size: 0.83rem !important; padding: 1rem 1.25rem !important; }
    /* Service Blocks */
    .service-block { padding: 44px 0 !important; }
    .service-block-grid, .service-block-grid.reverse, .admin-block-grid { grid-template-columns: 1fr !important; gap: 2rem !important; direction: ltr !important; }
    .service-block-grid.reverse > * { direction: ltr !important; }
    .service-block-text .overline { font-size: 0.65rem !important; margin-bottom: 0.75rem !important; }
    .service-block-text h2 { font-size: 1.35rem !important; line-height: 1.25 !important; margin-bottom: 1rem !important; }
    .service-block-text p { font-size: 0.86rem !important; line-height: 1.72 !important; margin-bottom: 1rem !important; }
    /* Feature Lists */
    .service-features { grid-template-columns: 1fr !important; gap: 0.6rem !important; margin: 1.25rem 0 1.5rem !important; }
    .service-feature-item { font-size: 0.84rem !important; gap: 0.5rem !important; }
    .service-block-image img { border-radius: 8px !important; }
    /* Inline stat */
    .service-inline-stat { gap: 1rem !important; padding: 1rem 1.25rem !important; flex-wrap: wrap !important; width: 100% !important; }
    .service-inline-stat .num { font-size: 1.5rem !important; }
    .service-inline-stat .txt { font-size: 0.78rem !important; }
    /* Buttons */
    /* Professional Refined Buttons */
    .service-block-text .btn, .service-block-text a.btn { 
        width: fit-content !important; 
        min-width: 220px !important;
        margin: 0 auto !important;
        text-align: center !important; 
        display: block !important; 
        padding: 0.75rem 1.25rem !important; 
        font-size: 0.82rem !important; 
        font-weight: 600 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important; 
    }
    
    .emergency-cta .btn {
        width: fit-content !important;
        min-width: 220px !important;
        margin: 1rem auto 0 !important;
        text-align: center !important;
        display: block !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
    }
    /* Infra Cards */
    .infra-cards { grid-template-columns: 1fr 1fr !important; gap: 1px !important; margin: 1.25rem 0 !important; }
    .infra-card { padding: 1.25rem 1rem !important; }
    .infra-card-label { font-size: 0.65rem !important; margin-bottom: 0.4rem !important; }
    .infra-card-value { font-size: 0.84rem !important; line-height: 1.4 !important; }
    /* Admin Block */
    .admin-block { padding: 44px 0 !important; }
    .admin-text h2 { font-size: 1.35rem !important; line-height: 1.25 !important; margin-bottom: 1rem !important; }
    .admin-text p { font-size: 0.86rem !important; line-height: 1.72 !important; }
    .admin-services { gap: 0.85rem !important; }
    .admin-item { padding: 1.1rem 1.25rem !important; gap: 1rem !important; border-radius: 6px !important; }
    .admin-item-icon { width: 32px !important; height: 32px !important; flex-shrink: 0 !important; }
    .admin-item h4 { font-size: 0.88rem !important; }
    .admin-item p { font-size: 0.78rem !important; line-height: 1.55 !important; }
    /* Emergency CTA */
    .emergency-cta { padding: 44px 0 !important; }
    .emergency-cta h2 { font-size: 1.4rem !important; margin-bottom: 0.75rem !important; }
    .emergency-cta p { font-size: 0.86rem !important; line-height: 1.7 !important; margin-bottom: 1.75rem !important; }
    .emergency-cta-hotline { padding: 1.1rem 1.5rem !important; border-radius: 8px !important; width: 100% !important; justify-content: center !important; box-sizing: border-box !important; }
    .emergency-cta-hotline .hotline-label { font-size: 0.65rem !important; }
    .emergency-cta-hotline .hotline-num { font-size: 1.6rem !important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY US PAGE â€” MOBILE & TABLET
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ TABLET (max 1024px) â”€â”€ */
@media (max-width: 1024px) {
    .whyus-intro { padding: 52px 0 3rem !important; }
    .whyus-intro-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .whyus-heading { position: static !important; }
    .whyus-heading h2 { font-size: 1.85rem !important; }
    .pillar-entry { grid-template-columns: 80px 1fr !important; padding: 3rem 0 !important; }
    .pillar-entry-num { font-size: 2.4rem !important; }
    .pillar-entry-body h3 { font-size: 1.4rem !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2.5rem !important; }
    .stat-number { font-size: 2.2rem !important; }
    .comparison-section { padding: 52px 0 !important; }
    .comparison-header { margin: 0 auto 3rem !important; }
    .comparison-header h2 { font-size: 1.7rem !important; }
    .comparison-table thead th { padding: 1rem 1.25rem !important; font-size: 0.7rem !important; }
    .comparison-table tbody td { padding: 1rem 1.25rem !important; font-size: 0.85rem !important; }
    .trust-cta-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
    .trust-cta-text h2 { font-size: 1.7rem !important; }
}

/* â”€â”€ MOBILE (max 768px) â”€â”€ */
@media (max-width: 768px) {

    /* â”€â”€ Intro / Heading â”€â”€ */
    .whyus-intro { padding: 44px 0 2rem !important; }
    .whyus-intro-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .whyus-heading { position: static !important; }
    .whyus-heading .overline { font-size: 0.65rem !important; margin-bottom: 0.85rem !important; }
    .whyus-heading h2 { font-size: 1.5rem !important; line-height: 1.25 !important; margin-bottom: 0.85rem !important; }
    .whyus-heading p { font-size: 0.86rem !important; line-height: 1.72 !important; }
    .whyus-heading a.btn {
        display: block !important;
        width: fit-content !important;
        min-width: 200px !important;
        text-align: center !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
        margin-top: 1.5rem !important;
    }

    /* â”€â”€ Pillar Entries â”€â”€ */
    .pillar-entry {
        grid-template-columns: 1fr !important;
        padding: 2rem 0 !important;
        gap: 0.5rem !important;
    }
    .pillar-entry-num {
        font-size: 1.5rem !important;
        padding-top: 0 !important;
        margin-bottom: 0.25rem !important;
        line-height: 1 !important;
    }
    .pillar-entry-tag {
        font-size: 0.62rem !important;
        margin-bottom: 0.5rem !important;
    }
    .pillar-entry-body h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.65rem !important;
        line-height: 1.3 !important;
    }
    .pillar-entry-body p {
        font-size: 0.84rem !important;
        line-height: 1.72 !important;
        max-width: 100% !important;
    }
    .pillar-entry-detail { gap: 0.5rem !important; margin-top: 1rem !important; }
    .detail-chip {
        font-size: 0.72rem !important;
        padding: 0.3rem 0.75rem !important;
        border-radius: 100px !important;
    }

    /* â”€â”€ Stats Banner â”€â”€ */
    .stats-banner { padding: 40px 0 !important; }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.75rem !important;
    }
    .stat-number { font-size: 1.75rem !important; margin-bottom: 0.4rem !important; }
    .stat-label { font-size: 0.68rem !important; letter-spacing: 0.1em !important; }

    /* â”€â”€ Comparison Section â”€â”€ */
    .comparison-section { padding: 44px 0 !important; }
    .comparison-header { margin: 0 auto 2rem !important; text-align: left !important; }
    .comparison-header h2 { font-size: 1.35rem !important; margin-bottom: 0.6rem !important; }
    .comparison-header p { font-size: 0.84rem !important; line-height: 1.7 !important; }

    /* Comparison Table â€” mobile scrollable */
    .comparison-table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        font-size: 0.78rem !important;
        border-radius: 6px !important;
    }
    .comparison-table thead th {
        padding: 0.85rem 0.9rem !important;
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }
    .comparison-table tbody td {
        padding: 0.85rem 0.9rem !important;
        font-size: 0.78rem !important;
        white-space: nowrap !important;
    }
    .check-yes { font-size: 0.76rem !important; gap: 0.3rem !important; }
    .check-no { font-size: 0.76rem !important; }

    /* â”€â”€ CTA Banner (Trust) â”€â”€ */
    .cta-banner-content {
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: flex-start !important;
    }
    .cta-banner-text h2 { font-size: 1.35rem !important; line-height: 1.25 !important; }
    .cta-banner-text p { font-size: 0.86rem !important; line-height: 1.72 !important; }
    /* Buttons in CTA banner */
    .cta-banner-text div[style] {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
    }
    .cta-banner-text div[style] .btn {
        display: block !important;
        width: fit-content !important;
        min-width: 200px !important;
        text-align: center !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
    }
    /* Hide trust image on mobile for cleaner layout */
    .trust-cta-image { display: none !important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY US â€” CTA Banner Mobile Polish
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {

    /* Tighter section padding */
    .cta-banner { padding: 44px 0 !important; }

    /* Stack content cleanly */
    .cta-banner .cta-banner-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        text-align: left !important;
    }

    /* Eyebrow / subtitle */
    .cta-banner .cta-banner-text .subtitle,
    .cta-banner .cta-banner-text span {
        font-size: 0.66rem !important;
        letter-spacing: 0.18em !important;
        text-transform: uppercase !important;
        margin-bottom: 0.6rem !important;
        display: block !important;
    }

    /* Heading */
    .cta-banner .cta-banner-text h2 {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.85rem !important;
    }

    /* Body text */
    .cta-banner .cta-banner-text p {
        font-size: 0.85rem !important;
        line-height: 1.72 !important;
        opacity: 0.88 !important;
        margin-bottom: 1.75rem !important;
    }

    /* Button group wrapper */
    .cta-banner .cta-banner-text div[style],
    .cta-banner .cta-banner-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-top: 0 !important;
    }

    /* Both buttons â€” unified, professional */
    .cta-banner .cta-banner-text div[style] .btn,
    .cta-banner .cta-banner-text div[style] a,
    .cta-banner .cta-banner-actions .btn {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0.82rem 1.25rem !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
        text-decoration: none !important;
    }

    /* Primary button â€” solid dark */
    .cta-banner .cta-banner-text div[style] .btn-primary,
    .cta-banner .cta-banner-actions .btn-primary {
        background: #1A1208 !important;
        color: var(--color-gold-sun) !important;
        border: 1.5px solid rgba(179, 128, 49, 0.5) !important;
    }

    /* Outline/light button â€” gold border on transparent */
    .cta-banner .cta-banner-text div[style] .btn-outline-light,
    .cta-banner .cta-banner-actions .btn-outline-light {
        background: transparent !important;
        color: #fff !important;
        border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    }

    /* Hide image if present */
    .cta-banner .trust-cta-image { display: none !important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STORY PAGE â€” MOBILE & TABLET
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ TABLET (max 1024px) â”€â”€ */
@media (max-width: 1024px) {
    .legacy-section { padding: 52px 0 !important; }
    .legacy-inner {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .legacy-image { height: 280px !important; border-radius: 6px !important; }
    .legacy-content h2 { font-size: 1.8rem !important; }
    .legacy-content p { font-size: 0.95rem !important; }

    .pull-quote { padding: 52px 0 !important; }
    .pull-quote blockquote { font-size: 1.35rem !important; }

    .timeline-section { padding: 52px 0 !important; }
    .timeline-header { margin: 0 auto 3.5rem !important; }
    .timeline-header h2 { font-size: 1.8rem !important; }
    .timeline-content h3 { font-size: 1.3rem !important; }

    .philosophy-section { padding: 52px 0 !important; }
    .philosophy-inner {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .philosophy-text h2 { font-size: 1.8rem !important; }

    .story-cta { padding: 52px 0 !important; }
    .story-cta h2 { font-size: 1.7rem !important; }
}

/* â”€â”€ MOBILE (max 768px) â”€â”€ */
@media (max-width: 768px) {

    /* â”€â”€ Opening / Legacy Section â”€â”€ */
    .legacy-section { padding: 44px 0 !important; }
    .legacy-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .legacy-image {
        height: 220px !important;
        border-radius: 8px !important;
        order: -1 !important;
    }
    .legacy-content .subtitle { font-size: 0.65rem !important; margin-bottom: 0.6rem !important; }
    .legacy-content h2 {
        font-size: 1.4rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1rem !important;
    }
    .legacy-content p {
        font-size: 0.86rem !important;
        line-height: 1.75 !important;
        margin-bottom: 0.85rem !important;
    }

    /* â”€â”€ Pull Quote â”€â”€ */
    .pull-quote { padding: 40px 0 !important; }
    .pull-quote blockquote {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        padding: 0 0.25rem !important;
    }
    .pull-quote cite { font-size: 0.66rem !important; }

    /* â”€â”€ Timeline Section â”€â”€ */
    .timeline-section { padding: 44px 0 !important; }
    .timeline-header {
        text-align: left !important;
        margin: 0 0 2.25rem !important;
    }
    .timeline-header .subtitle { font-size: 0.65rem !important; }
    .timeline-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.65rem !important;
    }
    .timeline-header p {
        font-size: 0.84rem !important;
        line-height: 1.7 !important;
    }

    /* Timeline list â€” tighten left line and entry grid */
    .timeline-list { max-width: 100% !important; }
    .timeline-entry {
        grid-template-columns: 36px 1fr !important;
        gap: 1.25rem !important;
        margin-bottom: 2.25rem !important;
    }
    .timeline-dot {
        width: 12px !important;
        height: 12px !important;
        left: -5px !important;
    }

    /* Timeline cards */
    .timeline-content {
        padding: 1.35rem 1.25rem !important;
        border-radius: 6px !important;
    }
    .timeline-phase {
        font-size: 0.62rem !important;
        margin-bottom: 0.5rem !important;
    }
    .timeline-content h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.3 !important;
    }
    .timeline-content p {
        font-size: 0.83rem !important;
        line-height: 1.72 !important;
    }
    .timeline-content .highlight {
        margin-top: 0.85rem !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        line-height: 1.55 !important;
    }

    /* â”€â”€ Philosophy Section â”€â”€ */
    .philosophy-section { padding: 44px 0 !important; }
    .philosophy-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .philosophy-img img { border-radius: 6px !important; }
    .philosophy-text h2 {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1rem !important;
    }
    .philosophy-text p {
        font-size: 0.86rem !important;
        line-height: 1.75 !important;
        margin-bottom: 0.85rem !important;
    }
    /* Philosophy button */
    .philosophy-text a.btn {
        display: block !important;
        width: fit-content !important;
        min-width: 200px !important;
        text-align: center !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
        margin-top: 1.25rem !important;
    }

    /* â”€â”€ Story CTA â”€â”€ */
    .story-cta { padding: 44px 0 !important; text-align: center !important; }
    .story-cta .bento-eyebrow { font-size: 0.65rem !important; margin-bottom: 0.85rem !important; }
    .story-cta h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.65rem !important;
    }
    .story-cta p {
        font-size: 0.84rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
    }
    /* CTA buttons */
    .story-cta div[style] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        justify-content: center !important;
    }
    .story-cta div[style] .btn {
        display: block !important;
        width: fit-content !important;
        min-width: 200px !important;
        text-align: center !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOW TO CLAIM PAGE â€” MOBILE & TABLET
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ TABLET (max 1024px) â”€â”€ */
@media (max-width: 1024px) {
    .claim-intro { padding: 3.5rem 0 2.5rem !important; }
    .claim-intro-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
    .claim-intro-text h2 { font-size: 1.6rem !important; }

    .claim-steps-section { padding: 52px 0 !important; }
    .claim-header { margin: 0 auto 3rem !important; }
    .claim-header h2 { font-size: 1.55rem !important; }
    .process-steps { grid-template-columns: repeat(3, 1fr) !important; gap: 1.25rem !important; }

    .claim-assistance-section { padding: 52px 0 !important; }
    .assistance-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }

    .claim-faq { padding: 52px 0 !important; }
    .claim-faq-header h2 { font-size: 1.55rem !important; }
    .faq-list { max-width: 100% !important; }
}

/* â”€â”€ MOBILE (max 768px) â”€â”€ */
@media (max-width: 768px) {

    /* â”€â”€ Intro â”€â”€ */
    .claim-intro { padding: 2.5rem 0 2rem !important; }
    .claim-intro-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .claim-intro-text .eyebrow { font-size: 0.64rem !important; margin-bottom: 0.6rem !important; }
    .claim-intro-text h2 {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.85rem !important;
    }
    .claim-intro-text p {
        font-size: 0.84rem !important;
        line-height: 1.72 !important;
        margin-bottom: 0.7rem !important;
    }

    /* Support Concierge card */
    .support-concierge { padding: 1.5rem !important; border-radius: 6px !important; }
    .support-concierge .label { font-size: 0.62rem !important; margin-bottom: 0.6rem !important; }
    .support-concierge .number {
        font-size: 1.4rem !important;
        margin-bottom: 0.4rem !important;
    }
    .support-concierge .note { font-size: 0.79rem !important; line-height: 1.55 !important; }
    .support-concierge .divider { margin: 1rem 0 !important; }
    .support-concierge .email { font-size: 0.78rem !important; }

    /* â”€â”€ Process Steps â”€â”€ */
    .claim-steps-section { padding: 44px 0 !important; }
    .claim-header {
        text-align: left !important;
        margin: 0 0 2rem !important;
    }
    .claim-header .subtitle { font-size: 0.64rem !important; }
    .claim-header h2 {
        font-size: 1.35rem !important;
        margin-bottom: 0.55rem !important;
    }
    .claim-header p { font-size: 0.83rem !important; line-height: 1.7 !important; }

    /* Steps: 3-col â†’ single col */
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .process-step {
        padding: 1.35rem 1.25rem !important;
        border-radius: 6px !important;
    }
    .step-tag { font-size: 0.6rem !important; margin-bottom: 0.6rem !important; }
    .process-step h3 { font-size: 1rem !important; margin-bottom: 0.5rem !important; }
    .process-step p { font-size: 0.82rem !important; line-height: 1.7 !important; }

    /* â”€â”€ Docs + Form Section â”€â”€ */
    .claim-assistance-section { padding: 44px 0 !important; }
    .assistance-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Docs panel header */
    .docs-panel-header { padding: 1.25rem 1.25rem !important; }
    .docs-panel-header h3 { font-size: 1rem !important; margin-bottom: 0.2rem !important; }
    .docs-panel-header p { font-size: 0.76rem !important; }

    /* Doc items */
    .doc-item { padding: 1rem 1.25rem !important; gap: 0.75rem !important; }
    .doc-item-text h4 { font-size: 0.85rem !important; margin-bottom: 0.1rem !important; }
    .doc-item-text p { font-size: 0.76rem !important; }

    /* Docs footer */
    .docs-panel-footer { padding: 1rem 1.25rem !important; }
    .docs-panel-footer p { font-size: 0.78rem !important; line-height: 1.55 !important; }

    /* Section title above docs panel */
    .assistance-text .subtitle { font-size: 0.64rem !important; }
    .assistance-text .section-title { font-size: 1.35rem !important; margin-bottom: 1.25rem !important; }

    /* â”€â”€ Claim Form â”€â”€ */
    .claim-form-wrap { border-radius: 6px !important; }
    .form-header { padding: 1.25rem 1.25rem !important; }
    .form-header h3 { font-size: 1.05rem !important; margin-bottom: 0.25rem !important; }
    .form-header p { font-size: 0.79rem !important; }

    /* Step tabs */
    .step-tab { padding: 0.75rem 0.5rem !important; font-size: 0.7rem !important; }

    /* Form body */
    .form-body { padding: 1.25rem !important; }
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .field-label { font-size: 0.76rem !important; margin-bottom: 0.3rem !important; }
    .field-input {
        padding: 0.75rem 0.9rem !important;
        font-size: 0.85rem !important;
        border-radius: 5px !important;
    }
    textarea.field-input { min-height: 90px !important; }
    .form-notice { padding: 0.85rem 1rem !important; gap: 0.6rem !important; }
    .form-notice p { font-size: 0.76rem !important; }

    /* Form footer */
    .form-footer {
        padding: 1.25rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.85rem !important;
    }
    .form-footer-note { font-size: 0.75rem !important; }
    .form-footer .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 0.8rem 1.25rem !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
    }

    /* â”€â”€ FAQ â”€â”€ */
    .claim-faq { padding: 44px 0 !important; }
    .claim-faq-header { margin-bottom: 2rem !important; }
    .claim-faq-header .bento-eyebrow { font-size: 0.64rem !important; margin-bottom: 0.65rem !important; }
    .claim-faq-header h2 { font-size: 1.35rem !important; margin-bottom: 0.5rem !important; }
    .claim-faq-header p { font-size: 0.83rem !important; line-height: 1.7 !important; }
    .faq-list { max-width: 100% !important; }
    details.faq-item summary {
        padding: 1.1rem 0 !important;
        font-size: 0.88rem !important;
    }
    details.faq-item summary::after { font-size: 1.2rem !important; }
    details.faq-item .faq-answer {
        padding-bottom: 1.1rem !important;
        font-size: 0.83rem !important;
        line-height: 1.72 !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHOP PAGE â€” MOBILE & TABLET
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ TABLET (max 1024px) â”€â”€ */
@media (max-width: 1024px) {
    /* Main container padding */
    .shop-intro { padding: 52px 0 2rem !important; }
    .shop-intro .bento-eyebrow { font-size: 0.7rem !important; }
    .shop-intro .section-title { font-size: 1.75rem !important; }
    .shop-intro p { font-size: 0.9rem !important; }

    /* Coming soon wrap */
    .shop-coming-soon-wrap { border-radius: 12px !important; margin-bottom: 3rem !important; }
    .shop-preview-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* Coming soon overlay */
    .coming-soon-title { font-size: 1.6rem !important; }
    .coming-soon-copy { font-size: 0.84rem !important; }

    /* Member benefit banner */
    .benefit-banner { padding: 2.5rem !important; border-radius: 12px !important; margin-bottom: 4rem !important; }
    .benefit-banner h3 { font-size: 1.6rem !important; }
    .benefit-banner p { font-size: 0.88rem !important; }

    /* Custom form */
    .form-container { padding: 2.5rem !important; }
    .form-grid { grid-template-columns: 1fr 1fr !important; gap: 1.25rem !important; }
}

/* â”€â”€ MOBILE (max 768px) â”€â”€ */
@media (max-width: 768px) {

    /* â”€â”€ Outer container padding â”€â”€ */
    section.container[style] { padding: 44px 0 !important; }

    /* â”€â”€ Shop Intro â”€â”€ */
    .shop-intro {
        padding: 0 0 1.5rem !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    .shop-intro .bento-eyebrow { font-size: 0.65rem !important; }
    .shop-intro .section-title {
        font-size: 1.35rem !important;
        margin-top: 0.5rem !important;
    }
    .shop-intro p {
        font-size: 0.84rem !important;
        line-height: 1.72 !important;
        max-width: 100% !important;
    }
    .shop-intro p span {
        font-size: 0.8rem !important;
        margin-top: 0.5rem !important;
    }

    /* â”€â”€ Coming Soon Wrap â”€â”€ */
    .shop-coming-soon-wrap {
        border-radius: 10px !important;
        margin-bottom: 2rem !important;
    }

    /* Blurred preview grid: 2-col on mobile */
    .shop-preview-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.6rem !important;
    }
    .preview-card { border-radius: 8px !important; }
    .preview-card-img { height: 120px !important; }
    .preview-card-body { padding: 0.75rem 0.7rem !important; }
    .preview-card-title { font-size: 0.78rem !important; margin-bottom: 0.2rem !important; }
    .preview-card-desc { font-size: 0.68rem !important; line-height: 1.4 !important; margin-bottom: 0.5rem !important; }
    .preview-card-btn { font-size: 0.6rem !important; padding: 0.45rem !important; }
    .p-tag { font-size: 0.62rem !important; }

    /* â”€â”€ Coming Soon Overlay â”€â”€ */
    .coming-soon-overlay { padding: 1.75rem 1.25rem !important; }
    .coming-soon-badge {
        font-size: 0.58rem !important;
        padding: 0.4rem 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    .coming-soon-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.65rem !important;
        line-height: 1.25 !important;
    }
    .coming-soon-rule { margin: 0 auto 1rem !important; }
    .coming-soon-copy {
        font-size: 0.81rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.25rem !important;
        max-width: 100% !important;
    }
    .coming-soon-cta {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.72rem !important;
        border-radius: 6px !important;
        gap: 0.4rem !important;
    }
    .coming-soon-note { font-size: 0.68rem !important; margin-top: 0.75rem !important; }

    /* â”€â”€ Member Benefit Banner â”€â”€ */
    .benefit-banner {
        padding: 2rem 1.25rem !important;
        border-radius: 10px !important;
        margin-bottom: 2.5rem !important;
    }
    .benefit-banner h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.75rem !important;
    }
    .benefit-banner p {
        font-size: 0.83rem !important;
        line-height: 1.7 !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    .benefit-banner .btn {
        display: block !important;
        width: fit-content !important;
        min-width: 200px !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
    }

    /* â”€â”€ Custom Design Request Form â”€â”€ */
    .form-container {
        padding: 1.5rem 1.25rem !important;
        border-radius: 10px !important;
        margin: 0 !important;
    }
    .form-container div[style*="text-align: center"] h2 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    .form-container div[style*="text-align: center"] p {
        font-size: 0.82rem !important;
        line-height: 1.65 !important;
        margin-bottom: 0 !important;
    }
    .form-container div[style*="margin-bottom: 3rem"] {
        margin-bottom: 1.75rem !important;
    }

    /* Form grid â†’ single column */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .form-group label {
        font-size: 0.78rem !important;
        margin-bottom: 0.3rem !important;
        display: block !important;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem !important;
        padding: 0.75rem 0.9rem !important;
        border-radius: 5px !important;
        width: 100% !important;
    }
    .form-group textarea { min-height: 90px !important; }

    /* Submit button */
    .form-container div[style*="margin-top: 2rem"] {
        margin-top: 1.25rem !important;
    }
    .form-container .btn[type="submit"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.85rem !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHOP PAGE â€” Mobile Container Side Padding
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
    section.container[style] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT PAGE â€” MOBILE & TABLET
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ TABLET (max 1024px) â”€â”€ */
@media (max-width: 1024px) {
    .contact-intro { padding: 52px 0 3rem !important; }
    .contact-intro-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .contact-intro-left h1 { font-size: 1.9rem !important; }
    .contact-map-wrap { padding: 1.75rem !important; border-radius: 12px !important; }

    .contact-form-section { padding: 52px 0 4rem !important; }
    .contact-form-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .form-info-panel h2 { font-size: 1.65rem !important; }

    .branches-section { padding: 52px 0 !important; }
    .branches-header h2 { font-size: 1.6rem !important; }
    .branches-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }

    .emergency-strip { padding: 44px 0 !important; }
    .emergency-inner { flex-direction: column !important; gap: 2rem !important; align-items: flex-start !important; }
}

/* â”€â”€ MOBILE (max 768px) â”€â”€ */
@media (max-width: 768px) {

    /* â”€â”€ Global container padding for Contact â”€â”€ */
    .contact-intro .container,
    .contact-form-section .container,
    .branches-section .container,
    .emergency-strip .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* â”€â”€ Intro Section â”€â”€ */
    .contact-intro { padding: 36px 0 2rem !important; }
    .contact-intro-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .contact-intro-left .overline { font-size: 0.62rem !important; margin-bottom: 0.85rem !important; }
    .contact-intro-left h1 {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.85rem !important;
    }
    .contact-intro-left p {
        font-size: 0.85rem !important;
        line-height: 1.72 !important;
        max-width: 100% !important;
    }

    /* Channel cards */
    .contact-channels { gap: 0.75rem !important; margin-top: 1.5rem !important; }
    .channel-card {
        padding: 0.9rem 1.1rem !important;
        border-radius: 8px !important;
        gap: 1rem !important;
    }
    .channel-icon { width: 36px !important; height: 36px !important; border-radius: 8px !important; }
    .channel-label { font-size: 0.6rem !important; }
    .channel-value { font-size: 0.85rem !important; }

    /* Map card */
    .contact-map-wrap {
        padding: 1.25rem !important;
        border-radius: 10px !important;
    }
    .map-location-badge { padding: 0.75rem 1rem !important; border-radius: 8px !important; }
    .map-badge-icon { width: 30px !important; height: 30px !important; border-radius: 6px !important; }
    .map-badge-text strong { font-size: 0.78rem !important; }
    .map-badge-text span { font-size: 0.68rem !important; }

    /* â”€â”€ Contact Form Section â”€â”€ */
    .contact-form-section { padding: 36px 0 3rem !important; }
    .contact-form-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }

    /* Left info panel */
    .form-info-panel h2 {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1rem !important;
    }
    .form-info-panel p {
        font-size: 0.84rem !important;
        line-height: 1.72 !important;
        margin-bottom: 1.25rem !important;
    }
    .response-sla {
        font-size: 0.78rem !important;
        padding: 0.85rem 1rem !important;
        border-radius: 6px !important;
        margin-bottom: 1.25rem !important;
    }
    .office-hours li { font-size: 0.78rem !important; padding: 0.5rem 0 !important; }

    /* Form card */
    .contact-form-card { border-radius: 12px !important; }
    .form-card-header {
        padding: 1.25rem 1.25rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    .form-card-header-text h3 { font-size: 1.1rem !important; }
    .form-card-header-text span { font-size: 0.75rem !important; }
    .form-secure-badge { font-size: 0.62rem !important; }

    /* Form body */
    .form-body { padding: 1.25rem !important; }
    .cf-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .cf-label { font-size: 0.7rem !important; }
    .cf-input, .cf-select, .cf-textarea {
        font-size: 0.85rem !important;
        padding: 0.75rem 0.9rem !important;
        border-radius: 6px !important;
    }
    .cf-textarea { min-height: 90px !important; }

    /* Inquiry type chips */
    .inquiry-type-row { gap: 0.45rem !important; }
    .inquiry-chip {
        font-size: 0.72rem !important;
        padding: 0.38rem 0.85rem !important;
        border-radius: 20px !important;
    }

    /* Form footer */
    .form-footer {
        padding: 1.1rem 1.25rem 1.5rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.85rem !important;
    }
    .form-footer-note { font-size: 0.7rem !important; }
    .btn-submit-contact {
        width: 100% !important;
        padding: 0.82rem 1.25rem !important;
        font-size: 0.8rem !important;
        border-radius: 6px !important;
    }

    /* â”€â”€ Branches Section â”€â”€ */
    .branches-section { padding: 36px 0 !important; }
    .branches-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        margin-bottom: 1.75rem !important;
    }
    .branches-header h2 { font-size: 1.35rem !important; }
    .branches-header p { font-size: 0.83rem !important; }
    .branches-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .branch-item {
        padding: 1.25rem !important;
        border-radius: 8px !important;
    }
    .branch-status { font-size: 0.62rem !important; margin-bottom: 0.5rem !important; }
    .branch-item h3 { font-size: 1.05rem !important; margin-bottom: 0.4rem !important; }
    .branch-item address { font-size: 0.8rem !important; line-height: 1.6 !important; margin-bottom: 0.85rem !important; }
    .branch-link { font-size: 0.78rem !important; }

    /* â”€â”€ Emergency Strip â”€â”€ */
    .emergency-strip { padding: 36px 0 !important; }
    .emergency-inner {
        flex-direction: column !important;
        gap: 1.75rem !important;
        align-items: flex-start !important;
    }
    .emergency-text span { font-size: 0.62rem !important; }
    .emergency-text h2 { font-size: 1.3rem !important; margin-bottom: 0.6rem !important; }
    .emergency-text p { font-size: 0.84rem !important; line-height: 1.7 !important; }
    .emergency-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    .btn-emergency-call, .btn-emergency-email {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0.82rem 1.25rem !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        border-radius: 6px !important;
        text-align: center !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE â€” Hide Top Header Completely
   Keep: footer app bar + FAB
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
    /* Hide the entire top header bar */
    header,
    .site-header,
    #site-header {
        display: none !important;
    }

    /* Hide the mobile drawer overlay (no header = no drawer needed) */
    .mobile-drawer-overlay,
    .mobile-drawer,
    .nav-drawer {
        display: none !important;
    }

    /* Remove any body top-padding that was reserved for the fixed header */
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Subpages: hero sits flush at top with no gap */
    .subpage .page-hero,
    .page-hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* ══════════════════════════════════════════════
   MOBILE — New Top Header & Left-to-Right Drawer
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Hide the old desktop top header bar entirely */
    .site-header {
        display: none !important;
    }

    /* Reset body padding/margin reserved for old fixed header */
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .subpage .page-hero,
    .page-hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* New Mobile Header Container */
    .mobile-header-bar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 20px;
        background: #1A1208; /* Dark premium background */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    body {
        padding-top: 60px !important; /* Make room for the new fixed header */
    }

    .mobile-header-logo img {
        height: 35px;
        width: auto;
        display: block;
    }

    .mobile-menu-toggle {
        background: none;
        border: none;
        color: var(--color-gold-sun);
        padding: 0.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Side Drawer (Left to Right) */
    .new-mobile-drawer {
        position: fixed;
        top: 0;
        left: -280px; /* Hidden off-screen left */
        width: 280px;
        height: 100vh;
        background: #1A1208;
        z-index: 1002;
        transition: transform 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(179, 128, 49, 0.2);
    }

    .new-mobile-drawer.active {
        transform: translateX(280px);
    }

    .drawer-top {
        padding: 1.25rem 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .drawer-top img {
        height: 30px;
    }

    .drawer-close {
        background: none;
        border: none;
        color: #fff;
        padding: 0.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .drawer-links {
        padding: 1.5rem 0;
        overflow-y: auto;
        flex: 1;
    }

    .drawer-links a {
        display: block;
        padding: 0.85rem 20px;
        color: #fff;
        font-size: 0.95rem;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .drawer-links a:hover {
        color: var(--color-gold-sig);
        background: rgba(255,255,255,0.02);
    }

    /* Drawer Backdrop */
    .new-drawer-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .new-drawer-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}
@media (min-width: 769px) {
    .mobile-header-bar, .new-mobile-drawer, .new-drawer-backdrop {
        display: none !important;
    }
}

/* ══════════════════════════════════════════════════════
   NEW MOBILE HEADER & RIGHT-SLIDE PREMIUM DRAWER
   ══════════════════════════════════════════════════════ */

/* ── HEADER BAR ─────────────────────────────────────── */
@media (max-width: 768px) {
    /* Override older header-hide rules completely */
    .site-header { display: none !important; }

    body {
        padding-top: 85px !important;
        margin-top: 0 !important;
    }

    /* Header bar: elegant glassmorphism feel */
    .mobile-header-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important;
        height: 85px !important; /* Taller to accommodate larger logo */
        padding: 0 20px !important;
        background: rgba(255, 255, 255, 0.45) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
        box-shadow: 0 4px 30px rgba(0,0,0,0.05) !important;
        z-index: 999 !important;
    }

    .mobile-header-logo img {
        height: 60px !important; /* Reduced 20% from 75px */
        width: auto !important;
        display: block !important;
    }

    .mobile-header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .mobile-header-join-btn {
        background: #B38031 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        padding: 8px 16px !important;
        border: none !important;
        border-radius: 6px !important;
        letter-spacing: 0.03em !important;
        box-shadow: 0 4px 12px rgba(179, 128, 49, 0.25) !important;
        cursor: pointer !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }
    .mobile-header-join-btn:active { 
        transform: scale(0.96) !important;
        box-shadow: 0 2px 6px rgba(179, 128, 49, 0.2) !important;
    }

    /* Animated hamburger button - elegant */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        width: 44px !important;
        height: 44px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        padding: 0 !important;
        transition: background 0.3s ease !important;
    }
    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:active {
        background: rgba(179, 128, 49, 0.08) !important;
    }
    .hamburger-line {
        display: block !important;
        width: 22px !important;
        height: 1.5px !important;
        background: #1A1208 !important;
        border-radius: 2px !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, width 0.3s ease !important;
        transform-origin: center !important;
    }
    /* Animated X state when drawer is open */
    .mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg) !important;
    }
    .mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
        opacity: 0 !important;
        width: 0 !important;
    }
    .mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg) !important;
    }

    /* ── DRAWER PANEL ─────────────────────────────── */
    .new-mobile-drawer {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;      /* hidden off-screen right */
        left: auto !important;
        width: 82vw !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 1001 !important;
        display: flex !important;
        flex-direction: column !important;
        border-left: 1px solid #EDE8E1 !important;
        box-shadow: -8px 0 40px rgba(0,0,0,0.12) !important;
        transition: right 0.38s cubic-bezier(0.32, 0.72, 0, 1) !important;
        transform: none !important;
    }
    .new-mobile-drawer.active {
        right: 0 !important;
    }

    /* Drawer header */
    .nmd-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 20px !important;
        height: 58px !important;
        border-bottom: 1px solid #F0ECE6 !important;
        flex-shrink: 0 !important;
    }
    .nmd-logo {
        height: 30px !important;
        width: auto !important;
    }
    .nmd-close {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 34px !important;
        height: 34px !important;
        border: 1px solid #E8E4DC !important;
        border-radius: 8px !important;
        background: #F5F2EE !important;
        color: #333 !important;
        cursor: pointer !important;
        transition: background 0.2s ease, color 0.2s ease !important;
    }
    .nmd-close:hover { background: #EDE8E1 !important; }

    /* Nav links */
    .nmd-nav {
        flex: 1 !important;
        overflow-y: auto !important;
        padding: 8px 0 !important;
    }
    .nmd-link {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 13px 20px !important;
        text-decoration: none !important;
        border-bottom: 1px solid #F7F5F1 !important;
        transition: background 0.18s ease !important;
    }
    .nmd-link:hover,
    .nmd-link:active {
        background: #FDFCFA !important;
    }
    .nmd-dash {
        display: inline-block !important;
        width: 16px !important;
        color: #B38031 !important;
        font-weight: 300 !important;
        font-size: 1.15rem !important;
        flex-shrink: 0 !important;
        transition: transform 0.2s ease, color 0.2s ease !important;
    }
    .nmd-link:hover .nmd-dash {
        transform: translateX(4px) !important;
    }
    .nmd-label {
        flex: 1 !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        color: #1A1208 !important;
        letter-spacing: 0.01em !important;
    }
    .nmd-arrow {
        color: #C5BFB5 !important;
        flex-shrink: 0 !important;
        transition: transform 0.18s ease, color 0.18s ease !important;
    }
    .nmd-link:hover .nmd-arrow {
        transform: translateX(3px) !important;
        color: #B38031 !important;
    }

    /* Active page highlight */
    .nmd-link.is-active .nmd-label { color: #B38031 !important; font-weight: 600 !important; }
    .nmd-link.is-active .nmd-dash { color: #B38031 !important; font-weight: 600 !important; transform: translateX(4px) !important; }

    /* Drawer footer */
    .nmd-footer {
        padding: 16px 20px !important;
        border-top: 1px solid #F0ECE6 !important;
        flex-shrink: 0 !important;
        background: #FDFCFA !important;
    }
    .nmd-emergency-btn {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 11px 16px !important;
        background: #1A1208 !important;
        color: #fff !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.04em !important;
        width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    .nmd-tagline {
        margin: 9px 0 0 !important;
        font-size: 0.7rem !important;
        color: #B5AEAA !important;
        text-align: center !important;
    }

    /* Backdrop */
    .new-drawer-backdrop {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(26,18,8,0.45) !important;
        backdrop-filter: blur(2px) !important;
        -webkit-backdrop-filter: blur(2px) !important;
        z-index: 1000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.35s ease, visibility 0.35s ease !important;
    }
    .new-drawer-backdrop.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Desktop — hide all mobile-only elements */
@media (min-width: 769px) {
    .mobile-header-bar,
    .new-mobile-drawer,
    .new-drawer-backdrop { display: none !important; }
}
