/* =========================================================
   WOW INTERIORS — RESPONSIVE STYLESHEET
   ========================================================= */

/* ---------- Large desktop tighten ---------- */
@media (max-width: 1180px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .subprod-grid { grid-template-columns: repeat(3, 1fr); }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
    .timeline::before { display: none; }
}

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
    .nav-menu, .nav-actions .btn-gold { display: none; }
    .nav-toggle { display: flex; }
    .nav-actions { gap: 10px; }

    .split { grid-template-columns: 1fr; gap: 34px; }
    .split-media { order: -1; }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .mini-stats { grid-template-columns: repeat(3, 1fr); }
    .mini-stats .ms-item:nth-child(3) { border-right: none; }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .form-grid { grid-template-columns: 1fr; }
    .budget-options { grid-template-columns: 1fr 1fr 1fr; }
    .cta-banner { flex-direction: column; align-items: flex-start; }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .check-list { grid-template-columns: 1fr; }
}

/* ---------- Small tablet / large mobile ---------- */
@media (max-width: 768px) {
    :root { --header-h: 70px; }

    .container { padding: 0 18px; }
    .section { padding: 60px 0; }
    .section-sm { padding: 44px 0; }

    .brand-text .brand-wow { font-size: 1.2rem; }
    .brand-text .brand-sub { letter-spacing: 0.22em; font-size: 0.56rem; }
    .brand .brand-mark { font-size: 1.3rem; }

    .home-hero { height: 92vh; }
    .hero-controls { padding: 0 18px 18px; }
    .page-hero { min-height: 380px; }
    .hero-badges { gap: 18px; }

    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }

    .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; }
    .subprod-grid { grid-template-columns: 1fr 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr 1fr; }

    .mini-stats { grid-template-columns: 1fr 1fr; }
    .mini-stats .ms-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-top { padding: 50px 0 30px; }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
    }
    .filter-tabs button { flex-shrink: 0; }

    .budget-options { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .cta-strip .container { flex-direction: column; align-items: flex-start; }

    .logos-strip { gap: 26px; }
    .logos-strip img { height: 34px; }

    .form-card { padding: 24px; }
    .lead-gate-card { padding: 32px 24px; }
    .lg-form-row { grid-template-columns: 1fr; }
    .info-strip { justify-content: flex-start; }
}

/* ---------- Mobile ---------- */
@media (max-width: 480px) {
    .grid-3, .grid-4, .grid-5, .subprod-grid, .mini-stats, .timeline {
        grid-template-columns: 1fr;
    }

    .stats-bar .container { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr; }

    .hero-title,
    .home-hero .hero-title { font-size: 1.9rem; }

    .hero-cta-row,
    .cta-banner .cta-right {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-row .btn,
    .cta-banner .cta-right .btn {
        justify-content: center;
    }

    .office-card { flex-direction: column; }
    .office-card img { width: 100%; height: 140px; }
    .float-actions { right: 14px; bottom: 16px; }
    .float-btn { width: 46px; height: 46px; }
}


/* =========================================================
   WOW INTERIORS — HEADER & MOBILE NAVIGATION
   White header / dark gold navigation
   ========================================================= */

.site-header {
    background: #ffffff;
    color: #B8860B;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10000;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

.site-header .brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header .site-logo {
    display: block;
    width: 180px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.site-header .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-header .nav-menu > li {
    position: relative;
}

.site-header .nav-menu a.nav-link {
    color: #B8860B;
    font-weight: 600;
}

.site-header .nav-menu a.nav-link:hover,
.site-header .nav-menu > li.active > a.nav-link {
    color: #111111;
}

.site-header .nav-menu .caret {
    stroke: currentColor;
}

.site-header .dropdown {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.site-header .dropdown a { color: #B8860B; }

.site-header .dropdown a:hover {
    color: #111111;
    background: rgba(184, 134, 11, 0.06);
}

.site-header .btn-gold {
    background: #B8860B;
    color: #ffffff;
    border-color: #B8860B;
}

.site-header .btn-gold:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}


/* =========================================================
   MOBILE HEADER & NAVIGATION
   ========================================================= */

@media (max-width: 992px) {

    .site-header {
        position: relative !important;
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        background: #ffffff !important;
        overflow: visible !important;
        z-index: 10000;
    }

    .site-header .navbar {
        display: flex !important;
        flex-wrap: wrap !important;
        position: relative !important;
        width: 100%;
        height: auto !important;
        min-height: 70px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        background: #ffffff !important;
        overflow: visible !important;
        box-sizing: border-box;
    }

    .site-header .brand {
        display: flex !important;
        align-items: center;
        flex: 1 1 auto !important;
        width: auto;
        min-width: 0;
        height: 70px;
    }

    .site-header .site-logo {
        display: block !important;
        width: 145px !important;
        height: auto !important;
        max-height: 60px !important;
        object-fit: contain;
    }

    .site-header .nav-actions {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto !important;
        width: auto;
        height: 70px;
        margin-left: auto;
        position: relative;
        z-index: 10003;
    }

    .site-header .nav-actions .btn-gold {
        display: none !important;
    }

    .site-header .nav-toggle {
        display: flex !important;
        position: relative;
        z-index: 10004;
        width: 48px;
        height: 48px;
        margin: 0;
        padding: 8px;
        border: 0 !important;
        outline: none;
        background: transparent !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        color: #B8860B;
    }

    .site-header .nav-toggle span {
        display: block !important;
        width: 27px !important;
        height: 2px !important;
        margin: 0 !important;
        background: #B8860B !important;
        border-radius: 2px;
        opacity: 1;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .site-header .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

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

    .site-header .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }


    /* ---------- Closed mobile menu ---------- */

    .site-header .nav-menu {
        display: none !important;
        position: static !important;
        order: 20;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-direction: column !important;
        align-items: stretch !important;
        background: #ffffff !important;
        border-top: 1px solid #eee4cc;
        border-bottom: 1px solid #eee4cc;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-sizing: border-box;
        list-style: none;
    }


    /* ---------- Open mobile menu ---------- */

    .site-header .nav-menu.mobile-open {
        display: flex !important;
        position: static !important;
        order: 20;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-direction: column !important;
        align-items: stretch !important;
        background: #ffffff !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        box-sizing: border-box;
        z-index: 10001;
    }

    .site-header .nav-menu.mobile-open > li {
        display: block !important;
        position: relative;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #eee4cc;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        overflow: visible !important;
        box-sizing: border-box;
    }

    .site-header .nav-menu.mobile-open > li:last-child {
        border-bottom: none;
    }

    .site-header .nav-menu.mobile-open > li > a.nav-link {
        display: flex !important;
        position: relative;
        width: 100% !important;
        height: auto !important;
        min-height: 56px !important;
        margin: 0 !important;
        padding: 16px 30px !important;
        align-items: center;
        justify-content: space-between;
        background: #ffffff !important;
        color: #B8860B !important;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.3;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-sizing: border-box;
        text-decoration: none;
    }

    .site-header .nav-menu.mobile-open > li > a.nav-link:hover {
        color: #111111 !important;
        background: #fafafa !important;
    }

    .site-header .nav-menu.mobile-open > li.active > a.nav-link {
        color: #111111 !important;
    }

    .site-header .nav-menu.mobile-open > li > a.nav-link::after {
        display: none !important;
    }


    /* ---------- Mobile dropdown ---------- */

    .site-header .nav-menu.mobile-open .dropdown {
        display: none !important;
        position: static !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 0 8px 20px !important;
        background: #fafafa !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        overflow: visible !important;
        box-sizing: border-box;
    }

    .site-header .nav-menu.mobile-open > li.has-dropdown.open > .dropdown {
        display: block !important;
    }

    .site-header .nav-menu.mobile-open .dropdown li {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-sizing: border-box;
    }

    .site-header .nav-menu.mobile-open .dropdown a {
        display: block !important;
        width: 100% !important;
        min-height: 44px;
        padding: 12px 15px !important;
        color: #735400 !important;
        font-size: 0.88rem;
        line-height: 1.4;
        background: transparent !important;
        border-left: 2px solid rgba(184, 134, 11, 0.25);
        box-sizing: border-box;
        text-decoration: none;
    }

    .site-header .nav-menu.mobile-open .dropdown a:hover {
        color: #111111 !important;
        background: rgba(184, 134, 11, 0.06) !important;
    }

    .site-header .nav-menu.mobile-open .mobile-cta {
        display: block;
        width: 100%;
        margin: 10px 0 16px;
        padding: 0;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .site-header .site-logo {
        width: 135px !important;
        max-height: 55px !important;
    }

    .site-header .nav-menu.mobile-open > li > a.nav-link {
        min-height: 52px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .site-header .nav-menu.mobile-open .dropdown {
        padding-left: 16px !important;
    }
}

/* =========================================================
   FINAL HEADER FIX — WOW INTERIORS
   ========================================================= */

/* ---------- Desktop ---------- */

.site-header {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    background: #fff !important;
    z-index: 9999 !important;
    overflow: visible !important;
}

.site-header .navbar {
    position: relative !important;
    width: 100% !important;
    min-height: 104px !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;

    background: #fff !important;
    overflow: visible !important;
}

/* Logo */

.site-header .site-logo {
    display: block !important;
    width: 230px !important;
    height: auto !important;
    max-height: 90px !important;
    object-fit: contain !important;
}

/* Desktop menu */

.site-header .nav-menu {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 992px) {

    /* Header itself */
    .site-header {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        background: #fff !important;

        overflow: visible !important;
        z-index: 99999 !important;
    }

    /* IMPORTANT:
       navbar must NOT have a large fixed height */
    .site-header .navbar {
        position: relative !important;

        display: flex !important;
        flex-wrap: wrap !important;

        width: 100% !important;

        height: 70px !important;
        min-height: 70px !important;
        max-height: none !important;

        padding: 0 18px !important;
        margin: 0 !important;

        align-items: center !important;

        background: #fff !important;

        overflow: visible !important;

        box-sizing: border-box !important;
    }

    /* Logo */

    .site-header .brand {
        display: flex !important;
        align-items: center !important;

        height: 70px !important;

        margin: 0 !important;
        padding: 0 !important;

        flex: 1 1 auto !important;
    }

    .site-header .site-logo {
        display: block !important;

        width: 145px !important;
        height: auto !important;
        max-height: 58px !important;

        object-fit: contain !important;
    }

    /* Right side */

    .site-header .nav-actions {
        display: flex !important;

        width: auto !important;
        height: 70px !important;

        margin: 0 !important;
        padding: 0 !important;

        align-items: center !important;
        justify-content: center !important;

        flex: 0 0 auto !important;
    }

    /* Hide Get Quote */

    .site-header .nav-actions .btn-gold {
        display: none !important;
    }

    /* =====================================================
       HAMBURGER
       ===================================================== */

    .site-header .nav-toggle {
        display: flex !important;

        width: 48px !important;
        height: 48px !important;

        margin: 0 !important;
        padding: 8px !important;

        border: 0 !important;
        outline: 0 !important;

        background: transparent !important;

        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 5px !important;

        cursor: pointer !important;

        position: relative !important;
        z-index: 100001 !important;
    }

    .site-header .nav-toggle span {
        display: block !important;

        width: 28px !important;
        height: 2px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #B8860B !important;

        border-radius: 2px !important;

        opacity: 1 !important;

        transition: all 0.25s ease !important;
    }

    /* Hamburger -> X */

    .site-header .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

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

    .site-header .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }


    /* =====================================================
       MOBILE MENU — CLOSED
       ===================================================== */

    .site-header .nav-menu {
        display: none !important;

        position: static !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        flex: 0 0 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;

        background: #fff !important;

        border-top: 1px solid #eadfca !important;

        overflow: visible !important;

        box-sizing: border-box !important;

        order: 10 !important;
    }


    /* =====================================================
       MOBILE MENU — OPEN
       ===================================================== */

    .site-header .nav-menu.mobile-open {
        display: flex !important;

        position: static !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        flex: 0 0 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;

        background: #fff !important;

        border-top: 1px solid #eadfca !important;
        border-bottom: 1px solid #eadfca !important;

        overflow: visible !important;

        box-shadow: 0 8px 20px rgba(0,0,0,.08) !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;

        order: 10 !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       MENU ITEMS
       ===================================================== */

    .site-header .nav-menu.mobile-open > li {
        display: block !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        border-bottom: 1px solid #eadfca !important;

        background: #fff !important;

        overflow: visible !important;
    }

    .site-header .nav-menu.mobile-open > li:last-child {
        border-bottom: 0 !important;
    }


    /* Main links */

    .site-header .nav-menu.mobile-open > li > a.nav-link {
        display: flex !important;

        width: 100% !important;
        min-height: 56px !important;

        margin: 0 !important;
        padding: 16px 24px !important;

        align-items: center !important;
        justify-content: space-between !important;

        background: #fff !important;

        color: #B8860B !important;

        font-size: 17px !important;
        font-weight: 600 !important;

        line-height: 1.3 !important;

        text-decoration: none !important;

        box-sizing: border-box !important;
    }

    .site-header .nav-menu.mobile-open > li > a.nav-link:hover {
        color: #111 !important;
        background: #fafafa !important;
    }

    /* Don't create pseudo-element space */

    .site-header .nav-menu.mobile-open > li > a.nav-link::after {
        display: none !important;
        content: none !important;
    }


    /* =====================================================
       DROPDOWN
       ===================================================== */

    .site-header .nav-menu.mobile-open .dropdown {
        display: none !important;

        position: static !important;

        width: 100% !important;

        height: auto !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 0 8px 18px !important;

        background: #fafafa !important;

        border: 0 !important;
        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;

        overflow: visible !important;
    }

    /* Dropdown open */

    .site-header .nav-menu.mobile-open
        > li.has-dropdown.open
        > .dropdown {
        display: block !important;
    }

    /* Dropdown links */

    .site-header .nav-menu.mobile-open .dropdown li {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .nav-menu.mobile-open .dropdown a {
        display: block !important;

        width: 100% !important;

        min-height: 44px !important;

        padding: 12px 15px !important;

        color: #735400 !important;

        background: transparent !important;

        font-size: 14px !important;

        border-left: 2px solid rgba(184,134,11,.25) !important;

        box-sizing: border-box !important;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .site-header .navbar {
        height: 68px !important;
        min-height: 68px !important;
        padding: 0 14px !important;
    }

    .site-header .brand {
        height: 68px !important;
    }

    .site-header .site-logo {
        width: 135px !important;
        max-height: 54px !important;
    }

    .site-header .nav-actions {
        height: 68px !important;
    }

    .site-header .nav-menu.mobile-open > li > a.nav-link {
        min-height: 54px !important;
        padding: 15px 20px !important;
    }
}


@media (max-width: 992px) {
    .home-hero {
        margin-top: 0 !important;
    }
}

/* =========================================================
   FINAL HEADER HEIGHT FIX
   ========================================================= */

.site-header {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: #fff !important;
    height: 80px !important;
    min-height: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .navbar {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Logo */
.site-header .site-logo {
    display: block !important;
    max-height: 65px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Desktop */
@media (min-width: 993px) {

    .site-header {
        height: 80px !important;
        min-height: 80px !important;
    }

    .site-header .navbar {
        height: 80px !important;
        min-height: 80px !important;
        max-height: 80px !important;
    }
}

/* Mobile */
@media (max-width: 992px) {

    .site-header {
        height: 70px !important;
        min-height: 70px !important;
    }

    .site-header .navbar {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }

    .site-header .site-logo {
        max-height: 55px !important;
    }
}

/* =========================================================
   PAGE HERO — NO GAP BELOW STICKY HEADER
   ========================================================= */

.page-hero {
    position: relative !important;

    width: 100% !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding-top: 0 !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}

/* Hero image */
.page-hero > img,
.page-hero .page-hero-image,
.page-hero img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
}

/* Desktop */
@media (min-width: 993px) {
    .page-hero {
        min-height: 420px !important;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .page-hero {
        min-height: 380px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero {
        min-height: 340px !important;
    }
}

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

/* Home page hero — header is sticky, no extra offset required */
.home-hero {
    margin-top: 0 !important;
}

/* =========================================================
   FOOTER — FINAL RESPONSIVE LAYOUT
   ========================================================= */

.site-footer {
    width: 100%;
    overflow: hidden;
}

.site-footer .footer-top {
    width: 100%;
    box-sizing: border-box;
}

/* Desktop */
@media (min-width: 993px) {

    .site-footer .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 992px) {

    .site-footer .footer-top {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .site-footer .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 35px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .site-footer .footer-top {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .site-footer .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer .footer-brand,
    .site-footer .footer-col {
        width: 100%;
        min-width: 0;
    }

    .site-footer p,
    .site-footer li,
    .site-footer a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .site-footer .footer-top {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer .footer-brand p {
        max-width: 100%;
    }

    .site-footer .footer-social {
        margin-top: 18px;
    }
}

/* =========================================================
   MOBILE PAGE HERO — SIDE PADDING
   ========================================================= */

@media (max-width: 768px) {

    .page-hero .container.hero-inner {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 20px !important;
        padding-right: 20px !important;

        box-sizing: border-box !important;
    }

}

/* Small mobile */
@media (max-width: 480px) {

    .page-hero .container.hero-inner {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

}

@media (max-width: 768px) {

    .page-hero .hero-badges {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 18px 16px !important;

        width: 100% !important;
        max-width: 100% !important;

        margin-top: 28px !important;
    }

    .page-hero .hero-badge {
        min-width: 0 !important;
        width: 100% !important;

        display: flex !important;
        align-items: center !important;

        box-sizing: border-box !important;
    }

}

/* =========================================================
   DESKTOP NAVIGATION — LINK SIDE SPACING
   ========================================================= */

@media (min-width: 993px) {

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .nav-menu > li > .nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 0 10px;

        white-space: nowrap;
    }

    /* Slightly more space around dropdown arrow */
    .nav-menu > li.has-dropdown > .nav-link {
        gap: 5px;
    }

}

/* =========================================================
   CONTACT PAGE — MOBILE LAYOUT FIX
   ========================================================= */
   
   .contact-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {

    /* Hero container */
    .page-hero .hero-inner {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;

        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    /* Override the inline 2-column grid */
    .page-hero .hero-inner > div[style*="display:grid"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 35px !important;

        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Make both columns fit the viewport */
    .page-hero .hero-inner > div[style*="display:grid"] > div {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Form card */
    .page-hero .form-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        box-sizing: border-box !important;
    }

    /* Form elements */
    .page-hero .form-card input,
    .page-hero .form-card select,
    .page-hero .form-card textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box !important;
    }

    /* Form grid */
    .page-hero .form-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    /* Budget options */
    .page-hero .budget-options {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    /* Hero title */
    .page-hero .hero-title {
        max-width: 100% !important;
        overflow-wrap: break-word;
    }

    /* Hero description */
    .page-hero .hero-desc {
        max-width: 100% !important;
        overflow-wrap: break-word;
    }

    /* Badges */
    .page-hero .hero-badges {
        width: 100% !important;
        max-width: 100% !important;

        display: grid !important;
        grid-template-columns: 1fr 1fr !important;

        gap: 18px 14px !important;

        box-sizing: border-box !important;
    }

    .page-hero .hero-badge {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {

    .page-hero .hero-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .page-hero .hero-inner > div[style*="display:grid"] {
        gap: 30px !important;
    }

    .page-hero .hero-badges {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
}


/* =========================================================
   PRIVACY / TERMS CHECKBOX
   ========================================================= */
.form-check {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;

    width: 100% !important;
    margin: 16px 0 20px !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

.form-check input[type="checkbox"] {
    flex: 0 0 18px !important;

    width: 18px !important;
    height: 18px !important;

    margin: 3px 0 0 0 !important;
}

.form-check-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;

    line-height: 1.5;
    text-align: left;
}

.form-check-text a {
    display: inline !important;
}

/* Budget option — icon before text */
.budget-opt {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;

    text-align: left !important;
    gap: 14px !important;

    width: 100%;
    box-sizing: border-box;
}

/* Keep the existing icon exactly as it is, only position it */
.budget-opt .bo-icon {
    flex: 0 0 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
}

/* Text comes immediately after icon */
.budget-opt .bo-label {
    flex: 1 1 auto !important;
    min-width: 0 !important;

    text-align: left !important;
}

/* =========================================================
   CONTACT PAGE
   CONTACT INFORMATION + OFFICES + PROCESS
   ========================================================= */

.contact-information-section {
    padding-top: 70px;
    padding-bottom: 70px;
}


/* ---------------------------------------------------------
   SECTION HEADINGS
   --------------------------------------------------------- */

.contact-section-head,
.offices-head {
    margin-bottom: 28px;
}

.contact-section-head {
    max-width: 720px;
}

.contact-section-head .section-title,
.offices-head .section-title {
    margin-bottom: 8px;
}

.contact-section-head p {
    max-width: 650px;
    color: var(--ink-300);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CONTACT INFORMATION
   --------------------------------------------------------- */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 65px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 0;

    padding: 22px 20px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.07);

    border-radius: var(--radius-md);

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);

    border-color: rgba(184, 134, 11, 0.35);

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--maroon-900);

    color: var(--gold-500);
}

.contact-info-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.contact-info-content strong {
    color: var(--ink-900);

    font-size: 0.95rem;

    font-weight: 700;
}

.contact-info-content span {
    color: var(--ink-300);

    font-size: 0.86rem;

    line-height: 1.55;

    overflow-wrap: anywhere;
}


/* ---------------------------------------------------------
   OFFICES
   --------------------------------------------------------- */

.offices-area {
    margin-bottom: 70px;
}

.offices-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.office-card-modern {
    display: grid;

    grid-template-columns: 190px 1fr;

    min-width: 0;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.07);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.office-card-modern:hover {
    transform: translateY(-3px);

    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.09);
}

.office-card-image {
    min-height: 220px;

    overflow: hidden;
}

.office-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.office-card-modern:hover .office-card-image img {
    transform: scale(1.04);
}

.office-card-content {
    padding: 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.office-label {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--gold-600);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.office-card-content h3 {
    margin: 0 0 10px;

    color: var(--ink-900);

    font-size: 1.1rem;
}

.office-card-content p {
    margin: 0 0 18px;

    color: var(--ink-300);

    font-size: 0.88rem;

    line-height: 1.65;
}

.office-card-content .dir-link {
    margin-top: auto;

    color: var(--maroon-900);

    font-size: 0.84rem;

    font-weight: 700;

    text-decoration: none;
}

.office-card-content .dir-link span {
    display: inline-block;

    margin-left: 4px;

    transition: transform 0.2s ease;
}

.office-card-content .dir-link:hover span {
    transform: translateX(4px);
}

.locations-note {
    margin: 16px 0 0;

    color: var(--ink-300);

    font-size: 0.8rem;

    text-align: center;
}


/* ---------------------------------------------------------
   PROCESS
   --------------------------------------------------------- */

.process-area {
    position: relative;

    padding: 50px 45px;

    background: var(--maroon-900);

    border-radius: var(--radius-lg);

    overflow: hidden;
}

.process-area::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -150px;

    border-radius: 50%;

    background: rgba(184, 134, 11, 0.08);

    pointer-events: none;
}

.process-heading {
    position: relative;

    z-index: 1;

    max-width: 650px;

    margin-bottom: 45px;
}

.process-heading .eyebrow {
    color: var(--gold-500);
}

.process-heading h2 {
    margin: 8px 0 10px;

    color: #fff;

    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.process-heading p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* Process timeline */

.process-timeline {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 0;
}

.process-item {
    position: relative;

    padding: 0 22px;

    text-align: center;
}

.process-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 30px;
    right: -1px;

    width: 2px;
    height: 55px;

    background: rgba(255, 255, 255, 0.13);
}

.process-number {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold-500);

    border-radius: 50%;

    color: var(--gold-500);

    font-size: 1rem;

    font-weight: 800;
}

.process-content h3 {
    margin: 0 0 9px;

    color: #fff;

    font-size: 0.95rem;

    line-height: 1.35;
}

.process-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.78rem;

    line-height: 1.6;
}

/* =========================================================
   CONTACT PAGE — TABLET
   ========================================================= */

@media (max-width: 992px) {

    .contact-information-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;

        margin-bottom: 55px;
    }

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

    .office-card-modern {
        grid-template-columns: 220px 1fr;
    }

    .process-area {
        padding: 40px 30px;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 40px;
    }

    .process-item:nth-child(3)::after {
        display: none;
    }
}

/* =========================================================
   CONTACT PAGE — MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .contact-information-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }


    /* Contact heading */

    .contact-section-head,
    .offices-head {
        margin-bottom: 22px;
    }

    .contact-section-head p {
        font-size: 0.88rem;
    }


    /* Contact cards */

    .contact-info-grid {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-bottom: 45px;
    }

    .contact-info-card {
        padding: 17px 16px;

        gap: 14px;
    }

    .contact-info-icon {
        flex-basis: 44px;

        width: 44px;
        height: 44px;
    }


    /* Offices */

    .offices-area {
        margin-bottom: 50px;
    }

    .offices-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .office-card-modern {
        grid-template-columns: 1fr;
    }

    .office-card-image {
        height: 180px;

        min-height: 180px;
    }

    .office-card-content {
        padding: 20px;
    }

    .office-card-content h3 {
        font-size: 1.05rem;
    }


    /* Process */

    .process-area {
        padding: 35px 20px;

        border-radius: 18px;
    }

    .process-heading {
        margin-bottom: 30px;
    }

    .process-heading h2 {
        font-size: 1.45rem;
    }

    .process-heading p {
        font-size: 0.84rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .process-item {
        display: grid;

        grid-template-columns: 58px 1fr;

        gap: 16px;

        padding: 0 0 30px;

        text-align: left;
    }

    .process-item:last-child {
        padding-bottom: 0;
    }

    .process-number {
        width: 52px;
        height: 52px;

        margin: 0;

        font-size: 0.9rem;
    }

    .process-content {
        padding-top: 5px;
    }

    .process-content h3 {
        font-size: 0.92rem;
    }

    .process-content p {
        font-size: 0.8rem;
    }

    /* Vertical connecting line */

    .process-item:not(:last-child)::after {
        display: block;

        top: 52px;
        left: 25px;
        right: auto;

        width: 1px;
        height: calc(100% - 52px);

        background: rgba(255, 255, 255, 0.15);
    }
}

/* =========================================================
   CONTACT PAGE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .contact-information-section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .contact-info-card {
        padding: 15px;

        gap: 12px;
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .contact-info-content strong {
        font-size: 0.9rem;
    }

    .contact-info-content span {
        font-size: 0.82rem;
    }

    .office-card-image {
        height: 160px;

        min-height: 160px;
    }

    .office-card-content {
        padding: 18px;
    }

    .process-area {
        padding: 30px 18px;
    }
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .stats-bar .container {
        grid-template-columns: 1fr;
    }
}

.check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.6;
}

.check-list .chk {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff8e8;
    color: #d9a329;
    margin-top: 3px;
}

/* ==========================================
   WHY WOW INTERIORS
   ========================================== */

.why-wow-section {
    position: relative;
    width: 100%;
    padding: 90px 20px 100px;

    background: #fcfaf7;

    overflow: hidden;
}


/* ==========================================
   MAIN CONTAINER
   ========================================== */

.why-wow-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 970px;

    margin: 0 auto;
}


/* ==========================================
   SIDE IMAGES
   ========================================== */

.why-wow-side-image {
    position: absolute;

    top: 130px;
    bottom: 0;

    width: 15%;

    z-index: 1;

    overflow: hidden;
}

.why-wow-side-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* Left image */

.why-wow-left-image {
    left: 0;

    border-radius: 0 180px 0 0;
}


/* Right image */

.why-wow-right-image {
    right: 0;

    border-radius: 180px 0 0 0;
}


/* Soft fade toward center */

.why-wow-left-image::after,
.why-wow-right-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;
}


/* ==========================================
   HEADING
   ========================================== */

.why-wow-heading {
    text-align: center;

    margin-bottom: 50px;
}

.why-wow-eyebrow {
    display: block;

    margin-bottom: 12px;

    font-family: Arial, sans-serif;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #c9952e;
}

.why-wow-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;

    font-weight: 700;

    color: #4b0d14;
}

.why-wow-heading h2 span {
    color: #c9952e;
}


/* ==========================================
   DECORATIVE DIVIDER
   ========================================== */

.why-wow-divider {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    width: 190px;

    margin: 24px auto 0;
}

.why-wow-divider span {
    width: 70px;
    height: 1px;

    background: #c9952e;
}

.why-wow-divider i {
    width: 9px;
    height: 9px;

    background: #c9952e;

    transform: rotate(45deg);
}


/* ==========================================
   FEATURE GRID
   ========================================== */

.why-wow-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ==========================================
   CARD
   ========================================== */

.why-wow-card {
    position: relative;

    min-height: 285px;

    padding: 30px 25px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(201, 149, 46, 0.18);

    border-radius: 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-wow-card:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 149, 46, 0.45);

    box-shadow:
        0 18px 45px rgba(75, 13, 20, 0.12);
}


/* ==========================================
   ICON
   ========================================== */

.why-wow-icon {
    width: 68px;
    height: 68px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 50%;

    background: #4b0d14;

    color: #d8a333;

    box-shadow:
        0 8px 20px rgba(75, 13, 20, 0.15);
}

.why-wow-icon svg {
    width: 32px;
    height: 32px;
}


/* ==========================================
   NUMBER
   ========================================== */

.why-wow-number {
    margin-bottom: 7px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 700;

    color: #c9952e;
}


/* ==========================================
   CONTENT
   ========================================== */

.why-wow-content h3 {
    margin: 0 0 10px;

    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 700;

    color: #4b0d14;
}

.why-wow-content p {
    max-width: 270px;

    margin: 0 auto;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.6;

    color: #4a4a4a;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1100px) {

    .why-wow-container {
        max-width: 850px;
    }

    .why-wow-side-image {
        width: 11%;
    }

    .why-wow-grid {
        gap: 16px;
    }

    .why-wow-card {
        padding: 26px 18px;
    }
}


/* ==========================================
   TABLET / SMALL LAPTOP
   ========================================== */

@media (max-width: 900px) {

    .why-wow-side-image {
        display: none;
    }

    .why-wow-container {
        max-width: 850px;
    }

    .why-wow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 600px) {

    .why-wow-section {
        padding: 60px 15px 70px;
    }

    .why-wow-heading {
        margin-bottom: 32px;
    }

    .why-wow-eyebrow {
        font-size: 13px;

        letter-spacing: 1.2px;

        margin-bottom: 10px;
    }

    .why-wow-heading h2 {
        font-size: 37px;

        line-height: 1.12;
    }

    .why-wow-divider {
        margin-top: 18px;
    }


    /* One column */

    .why-wow-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    /* Compact horizontal cards */

    .why-wow-card {
        min-height: 0;

        padding: 20px 17px;

        display: grid;

        grid-template-columns: 56px 30px 1fr;

        column-gap: 12px;

        align-items: center;

        text-align: left;

        border-radius: 13px;
    }


    /* Icon */

    .why-wow-icon {
        width: 56px;
        height: 56px;

        margin: 0;
    }

    .why-wow-icon svg {
        width: 27px;
        height: 27px;
    }


    /* Number */

    .why-wow-number {
        margin: 0;

        align-self: start;

        padding-top: 3px;

        font-size: 13px;
    }


    /* Text */

    .why-wow-content {
        min-width: 0;
    }

    .why-wow-content h3 {
        margin-bottom: 5px;

        font-size: 14px;

        line-height: 1.3;
    }

    .why-wow-content p {
        max-width: none;

        margin: 0;

        font-size: 13px;

        line-height: 1.5;
    }
}


/* ==========================================
   SMALL PHONES
   ========================================== */

@media (max-width: 380px) {

    .why-wow-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .why-wow-heading h2 {
        font-size: 33px;
    }

    .why-wow-card {
        grid-template-columns: 48px 28px 1fr;

        column-gap: 9px;

        padding: 17px 13px;
    }

    .why-wow-icon {
        width: 48px;
        height: 48px;
    }

    .why-wow-icon svg {
        width: 23px;
        height: 23px;
    }

    .why-wow-content h3 {
        font-size: 13px;
    }

    .why-wow-content p {
        font-size: 12px;
    }
}

.section-alt {
    background: #ffffff;
}

/* =========================================
   AWARDS GRID
   ========================================= */

.grid.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}


/* Award card */

.award-card {
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
}


/* Award image */

.award-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.award-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* Award content */

.award-body {
    padding: 22px 24px;
}

.award-body h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
}

.award-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .grid.grid-2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .award-media {
        aspect-ratio: 16 / 10;
    }

    .award-body {
        padding: 18px 20px;
    }

    .award-body h4 {
        font-size: 18px;
    }

    .award-body p {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* =========================================
   OUR PROMISE TO YOU
   ========================================= */

.promise-section {
    padding: 90px 0;
    background: #f8f6f2;
}


/* -----------------------------------------
   Section Heading
   ----------------------------------------- */

.promise-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.promise-head .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
}

.promise-head .section-title {
    margin-bottom: 14px;
}

.promise-intro {
    max-width: 650px;
    margin: 0 auto;
    color: #6d6a66;
    font-size: 16px;
    line-height: 1.7;
}


/* -----------------------------------------
   USP Grid
   ----------------------------------------- */

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* -----------------------------------------
   Promise Card
   ----------------------------------------- */

.promise-card {
    position: relative;
    padding: 38px 38px 34px;
    background: #ffffff;
    border: 1px solid rgba(137, 104, 46, 0.22);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.promise-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-500, #b89045);
}

.promise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(137, 104, 46, 0.42);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}


/* -----------------------------------------
   Featured Card
   ----------------------------------------- */

.promise-card-featured {
    background: #fffdfa;
}

.promise-card-featured::before {
    width: 6px;
}


/* -----------------------------------------
   Number + Icon
   ----------------------------------------- */

.promise-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.promise-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-500, #b89045);
}

.promise-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(137, 104, 46, 0.25);
    border-radius: 50%;
    color: var(--gold-500, #b89045);
    background: rgba(137, 104, 46, 0.06);
}


/* -----------------------------------------
   Main USP Number
   ----------------------------------------- */

.promise-highlight {
    margin-bottom: 8px;
    color: var(--gold-500, #b89045);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.promise-highlight span {
    display: inline-block;
    margin-left: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
}


/* -----------------------------------------
   Heading
   ----------------------------------------- */

.promise-card h3 {
    margin: 0 0 14px;
    color: var(--maroon-800, #4b1720);
    font-size: 23px;
    line-height: 1.3;
}


/* -----------------------------------------
   Description
   ----------------------------------------- */

.promise-text {
    max-width: 560px;
    margin: 0;
    color: #66615c;
    font-size: 15px;
    line-height: 1.75;
}


/* -----------------------------------------
   Details
   ----------------------------------------- */

.promise-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee9e2;
}

.promise-details span {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 30px;
    background: #f7f3ed;
    color: #5f584f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}


/* -----------------------------------------
   Client Payment Commitment
   ----------------------------------------- */

.payment-commitment {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 22px 26px;
    background: #ffffff;
    border: 1px solid #e8e2da;
    border-radius: 12px;
}

.payment-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(137, 104, 46, 0.08);
    color: var(--gold-500, #b89045);
}

.payment-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--maroon-800, #4b1720);
    font-size: 14px;
    letter-spacing: 0.01em;
}

.payment-content p {
    margin: 0;
    color: #706b65;
    font-size: 13px;
    line-height: 1.65;
}


/* -----------------------------------------
   Disclaimer
   ----------------------------------------- */

.promise-disclaimer {
    max-width: 900px;
    margin: 16px auto 0;
    text-align: center;
    color: #8a857f;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .promise-section {
        padding: 70px 0;
    }

    .promise-grid {
        gap: 20px;
    }

    .promise-card {
        padding: 30px 28px;
    }

    .promise-card h3 {
        font-size: 21px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .promise-section {
        padding: 60px 0;
    }

    .promise-head {
        margin-bottom: 32px;
    }

    .promise-intro {
        font-size: 14px;
        line-height: 1.65;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .promise-card {
        padding: 28px 24px 26px;
        border-radius: 13px;
    }

    .promise-card-top {
        margin-bottom: 20px;
    }

    .promise-icon {
        width: 44px;
        height: 44px;
    }

    .promise-highlight {
        font-size: 52px;
    }

    .promise-highlight span {
        font-size: 16px;
    }

    .promise-card h3 {
        font-size: 20px;
    }

    .promise-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .promise-details {
        margin-top: 20px;
        padding-top: 17px;
    }

    .promise-details span {
        font-size: 10px;
    }

    .payment-commitment {
        gap: 13px;
        margin-top: 20px;
        padding: 18px;
    }

    .payment-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .payment-content p {
        font-size: 12px;
    }

    .promise-disclaimer {
        font-size: 10px;
        padding: 0 10px;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 420px) {

    .promise-card {
        padding: 24px 20px;
    }

    .promise-highlight {
        font-size: 46px;
    }

    .promise-card h3 {
        font-size: 18px;
    }

    .promise-details {
        gap: 6px;
    }

    .promise-details span {
        padding: 6px 9px;
    }

}

/* =========================================
   BETTER VALUE QUOTE
   ========================================= */

.better-value-quote {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 620px;
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-left: 3px solid var(--gold-500, #b89045);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.better-value-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400, #d2ae68);
    border: 1px solid rgba(210, 174, 104, 0.45);
    border-radius: 50%;
}

.better-value-content h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.better-value-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .better-value-quote {
        margin-top: 22px;
        padding: 16px;
        gap: 12px;
    }

    .better-value-icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .better-value-content h3 {
        font-size: 15px;
    }

    .better-value-content p {
        font-size: 12px;
        line-height: 1.55;
    }

}

/* =========================================
   SINGLE LEADERSHIP PROFILE
   ========================================= */

.single-profile-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.single-profile-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: stretch;

    background: #fff;

    border: 1px solid rgba(137, 104, 46, 0.18);
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.single-profile-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.09);
}


/* -----------------------------------------
   PHOTO
   ----------------------------------------- */

.single-profile-photo {
    min-height: 380px;
    background: #eee;
    overflow: hidden;
}

.single-profile-photo img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 380px;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.5s ease;
}

.single-profile-card:hover
.single-profile-photo img {
    transform: scale(1.03);
}


/* -----------------------------------------
   CONTENT
   ----------------------------------------- */

.single-profile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 45px;
}

.profile-eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--gold-500, #b89045);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-profile-content h3 {
    margin: 0 0 16px;

    color: var(--maroon-800, #4b1720);

    font-size: 32px;
    line-height: 1.2;
}

.profile-intro {
    margin: 0;

    color: #4f4b47;

    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.profile-divider {
    width: 55px;
    height: 2px;

    margin: 24px 0;

    background: var(--gold-500, #b89045);
}

.profile-description {
    margin: 0;

    color: #706b65;

    font-size: 14px;
    line-height: 1.75;
}


/* -----------------------------------------
   SOCIAL
   ----------------------------------------- */

.single-profile-social {
    display: flex;
    gap: 9px;

    margin-top: 26px;
}

.single-profile-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--maroon-800, #4b1720);

    border: 1px solid rgba(137, 104, 46, 0.25);
    border-radius: 50%;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.single-profile-social a:hover {
    color: #fff;

    background: var(--maroon-800, #4b1720);

    border-color: var(--maroon-800, #4b1720);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 850px) {

    .single-profile-card {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .single-profile-photo,
    .single-profile-photo img {
        min-height: 350px;
    }

    .single-profile-content {
        padding: 32px;
    }

    .single-profile-content h3 {
        font-size: 28px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .single-profile-wrap {
        width: 100%;
    }

    .single-profile-card {
        display: flex;
        flex-direction: column;
    }

    .single-profile-photo {
        width: 100%;
        height: 330px;
        min-height: 0;
    }

    .single-profile-photo img {
        width: 100%;
        height: 330px;
        min-height: 0;
    }

    .single-profile-content {
        padding: 28px 24px 30px;
    }

    .single-profile-content h3 {
        font-size: 25px;
    }

    .profile-intro {
        font-size: 14px;
    }

    .profile-description {
        font-size: 13px;
    }

    .profile-divider {
        margin: 20px 0;
    }

    .single-profile-social {
        margin-top: 22px;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 420px) {

    .single-profile-photo,
    .single-profile-photo img {
        height: 290px;
    }

    .single-profile-content {
        padding: 24px 20px 26px;
    }

}

/* =========================================
   WOW INTERIORS - HEADER
   CENTERED DESKTOP CONTAINER
   ========================================= */

.site-header {
    width: 100% !important;
    background: #fff !important;
}

.site-header .navbar {
    width: calc(100% - 48px) !important;
    max-width: 1450px !important;
   /* min-height: 90px !important;*/
    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Logo */
.site-header .brand {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
}

.site-header .site-logo {
    display: block !important;
    width: 210px !important;
    max-width: 210px !important;
    height: auto !important;
}

/* Main navigation */
.site-header .nav-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;

    margin: 0 auto !important;
    padding: 0 !important;
}

/* Right side */
.site-header .nav-actions {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    margin-left: 30px !important;
}

/* Quote button */
.site-header .nav-actions .btn {
    white-space: nowrap !important;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 991px) {

    .site-header .navbar {
        width: 100% !important;
        max-width: none !important;
        min-height: 75px !important;
        padding: 0 20px !important;
    }

    .site-header .site-logo {
        width: 175px !important;
        max-width: 175px !important;
    }

    .site-header .nav-menu {
        gap: 0 !important;
    }

    .site-header .nav-actions {
        margin-left: auto !important;
    }

    .site-header .nav-actions .btn {
        display: none !important;
    }
}