/* Base Mobile Fixes - Applied to all screens under 480px */
@media (max-width: 480px) {
    * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .lux-shell {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem !important;
        margin: 0 !important;
    }

    .lux-offer-bar {
        padding: 0.2rem 0;
    }

    .lux-offer-inner {
        min-height: auto;
        padding: 0.3rem 0.4rem;
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
    }

    .lux-offer-inner p {
        font-size: 0.72rem;
        line-height: 1.2;
        margin: 0;
        word-break: break-word;
    }

    .lux-offer-inner a {
        font-size: 0.72rem;
        margin-left: 0.2rem;
        display: inline;
    }

    .lux-top-meta {
        padding: 0.3rem 0;
    }

    .lux-top-meta-inner {
        min-height: auto;
        padding: 0.3rem 0.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        justify-content: flex-start;
    }

    .lux-top-meta-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
        width: 100%;
    }

    .lux-top-meta-list a {
        font-size: 0.7rem;
        padding: 0.2rem 0;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lux-top-meta-list a:nth-child(3) {
        grid-column: 1 / 2;
    }

    .lux-top-social {
        display: flex;
        gap: 0.3rem;
        justify-content: flex-start;
    }

    .lux-nav {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .lux-nav-inner {
        min-height: 3rem;
        padding: 0.3rem 0.4rem;
        gap: 0.3rem;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .lux-logo {
        font-size: 0.7rem;
        gap: 0.3rem;
        letter-spacing: 0.01em;
        min-width: 0;
        flex-shrink: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lux-logo-mark {
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .lux-nav-links {
        display: none !important;
    }

    .lux-nav-cta {
        display: none !important;
    }

    .lux-nav-toggle {
        display: inline-flex !important;
        width: 2.4rem;
        height: 2.4rem;
        flex-shrink: 0;
        z-index: 1001;
    }

    .lux-mobile-panel {
        display: grid !important;
        gap: 0.6rem;
        padding: 0.6rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(245, 240, 232, 0.98);
        border-top: 1px solid rgba(26, 26, 26, 0.08);
        grid-template-columns: 1fr;
        position: relative;
        z-index: 1000;
    }

    .lux-mobile-panel.is-open {
        max-height: 24rem;
    }

    .lux-mobile-panel a {
        display: block;
        padding: 0.7rem 0.8rem;
        border-radius: 0.8rem;
        background: rgba(253, 250, 245, 0.85);
        border: 1px solid rgba(26, 26, 26, 0.08);
        font-size: 0.8rem;
        font-weight: 500;
        transition: all 0.2s ease;
        text-align: center;
    }

    .mobile-nav-link {
        color: var(--ink) !important;
    }

    .mobile-nav-link:active,
    .mobile-nav-link:hover,
    .mobile-nav-link.is-active {
        background: rgba(200, 133, 58, 0.15) !important;
        border-color: rgba(200, 133, 58, 0.4) !important;
        color: var(--accent) !important;
    }

    .mobile-nav-cta {
        background: var(--ink) !important;
        color: var(--white) !important;
        padding: 0.7rem 0.8rem !important;
        margin-top: 0.3rem;
        font-weight: 700;
    }

    body.luxury-home {
        font-size: 15px;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    /* Ensure back-to-top is visible and touch-friendly on extra small devices */
    .lux-back-top {
        display: inline-flex;
        right: 0.6rem;
        bottom: 0.9rem;
        width: 2.8rem;
        height: 2.8rem;
        z-index: 10050;
        box-shadow: 0 10px 20px rgba(26,26,26,0.22);
        opacity: 0; /* initial hidden until JS toggles */
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .lux-back-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Tablet Design - 768px to 1024px */
@media (max-width: 1024px) {
    .lux-shell {
        width: min(96%, calc(100% - 1.2rem));
        padding: 0 0.6rem;
        margin: 0 auto;
    }

    .lux-nav-inner {
        min-height: 4rem;
        gap: 0.6rem;
    }

    /* At tablet widths collapse to mobile panel for easier navigation */
    @media (max-width: 980px) {
        .lux-nav-links {
            display: none !important;
        }

        .lux-nav-toggle {
            display: inline-flex !important;
        }

        .lux-nav-cta {
            display: none !important;
        }
    }

    .lux-offer-inner {
        padding: 0.4rem 0.5rem;
    }

    .lux-offer-inner p {
        font-size: 0.88rem;
    }

    .lux-top-meta-inner {
        padding: 0.5rem 0;
        gap: 0.8rem;
    }

    .lux-top-meta-list {
        gap: 1rem;
    }

    .lux-hero h1 {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }

    .lux-hero p {
        font-size: 1rem;
    }

    .lux-logo {
        font-size: 0.9rem;
        gap: 0.6rem;
        letter-spacing: 0.04em;
    }

    .lux-section {
        padding: 5rem 0;
    }

    .lux-section-head h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .lux-actions {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .lux-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .lux-micro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .lux-stat {
        padding: 0.9rem 0.9rem;
    }

    .lux-stat strong {
        font-size: 1.7rem;
    }

    .lux-stat span {
        font-size: 0.8rem;
    }
}

/* Tablet Design - 980px and below */
@media (max-width: 980px) {
    .lux-nav-links,
    .lux-nav-cta {
        display: none;
    }

    .lux-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.8rem;
        height: 2.8rem;
    }

    .lux-mobile-panel {
        display: grid;
        gap: 0.9rem;
        padding: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(245, 240, 232, 0.95);
        border-top: 1px solid rgba(26, 26, 26, 0.08);
        grid-template-columns: 1fr;
    }

    .lux-mobile-panel.is-open {
        max-height: 32rem;
    }

    .lux-mobile-panel a {
        display: block;
        padding: 1rem;
        border-radius: 0.95rem;
        background: rgba(253, 250, 245, 0.8);
        border: 1px solid rgba(26, 26, 26, 0.08);
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s ease;
        text-align: center;
        color: var(--ink);
    }

    .mobile-nav-link {
        padding: 1rem !important;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.is-active {
        background: rgba(200, 133, 58, 0.1) !important;
        border-color: rgba(200, 133, 58, 0.3) !important;
        color: var(--accent) !important;
        font-weight: 600;
    }

    .mobile-nav-cta {
        background: var(--ink) !important;
        color: var(--white) !important;
        border: 1px solid var(--ink) !important;
        font-weight: 700;
        padding: 1rem !important;
        margin-top: 0.5rem;
    }

    .mobile-nav-cta:hover {
        background: rgba(26, 26, 26, 0.88) !important;
        box-shadow: 0 8px 16px rgba(26, 26, 26, 0.2);
    }

    .lux-hero-grid,
    .lux-services-grid,
    .lux-why-grid,
    .lux-contact-grid,
    .lux-footer-grid,
    .lux-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .lux-timeline,
    .lux-pricing-grid,
    .lux-service-cards,
        .lux-services-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .lux-service-cards {
            grid-template-columns: 1fr;
        }

        .lux-service-card {
            padding: 1.2rem;
        }

    .lux-micro-stats {
        grid-template-columns: 1fr 1fr;
    }

    .lux-hero-panel {
        justify-self: stretch;
        width: 100%;
    }

    .lux-hero {
        padding: 3rem 0 3.5rem;
    }

    .lux-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .lux-btn {
        width: 100%;
        min-height: 2.8rem;
    }

    .lux-panel-art {
        min-height: 350px;
    }

    .lux-section {
        padding: 4.5rem 0;
    }
}

/* Mobile Design - 768px and below */
@media (max-width: 768px) {
    body.luxury-home {
        font-size: 15px;
    }

    .lux-shell {
        width: min(95%, calc(100% - 1rem));
    }

    .lux-nav {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .lux-nav-inner {
        min-height: 3.5rem;
        gap: 0.5rem;
    }

    .lux-logo {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .lux-logo-mark {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.85rem;
    }

    .lux-nav-toggle {
        width: 2.6rem;
        height: 2.6rem;
    }

    .lux-hero {
        min-height: auto;
        padding: 2.5rem 0 3rem;
    }

    .lux-hero h1 {
        font-size: clamp(2rem, 12vw, 3.5rem);
        margin: 0.8rem 0 0.8rem;
    }

    .lux-hero p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .lux-kicker {
        font-size: 0.7rem;
        gap: 0.4rem;
    }

    .lux-kicker::before {
        width: 1.5rem;
    }

    .lux-actions {
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1.2rem;
    }

    .lux-btn {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        min-height: 2.7rem;
    }

    .lux-btn-gold,
    .lux-submit,
    .lux-carousel-btn.is-active {
        padding: 0.85rem 1rem;
    }

    .lux-nav-cta {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }

    .lux-micro-stats {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        margin-top: 1.4rem;
    }

    .lux-stat {
        padding: 0.8rem;
        border-radius: 0.8rem;
    }

    .lux-stat strong {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .lux-stat span {
        font-size: 0.78rem;
    }

    .lux-section {
        padding: 3.5rem 0;
    }

    .lux-section-head {
        margin-bottom: 2rem;
    }

    .lux-section-head h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 0.8rem;
    }

    .lux-section-sub {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .lux-timeline,
    .lux-pricing-grid,
    .lux-service-cards,
    .lux-why-badges,
    .lux-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .lux-why-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .lux-why-badges {
        grid-template-columns: 1fr;
    }

    .lux-why-panel {
        padding: 1.2rem;
    }

    .lux-why-panel h3 {
        font-size: 2rem;
        line-height: 1;
    }

    .lux-panel-art {
        min-height: 280px;
        border-radius: 1rem;
    }

    .lux-panel-copy {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .lux-panel-copy h2 {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }

    .lux-panel-copy p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .lux-form {
        gap: 1rem;
    }

    .lux-field {
        margin-bottom: 0.5rem;
    }

    .lux-field input,
    .lux-field select,
    .lux-field textarea {
        padding: 0.8rem 0.95rem;
        font-size: 1rem;
        border-radius: 0.7rem;
        min-height: 2.5rem;
    }

    .lux-submit {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        min-height: 2.7rem;
    }

    .lux-hero-panel {
        padding: 1.2rem;
        min-height: auto;
    }

    .quick-quote-panel {
        min-height: auto;
    }

    .quick-quote-panel .lux-panel-copy {
        padding: 1rem;
    }

    .lux-quick-quote-head {
        font-size: 0.7rem;
    }

    .quick-quote-panel h2 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .quick-quote-panel .sub {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .lux-form {
        gap: 0.85rem;
    }

    .lux-form .grid-2 {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .lux-field label {
        font-size: 0.8rem;
        display: block;
        margin-bottom: 0.3rem;
    }

    .lux-field input,
    .lux-field select,
    .lux-field textarea {
        width: 100%;
        padding: 0.75rem 0.9rem;
        font-size: 0.95rem;
        min-height: 2.5rem;
        border-radius: 0.65rem;
    }

    .quick-quote-panel .sub {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .qq-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .lux-card {
        border-radius: 1rem;
    }

    .lux-service-card {
        padding: 1.5rem;
    }

    .lux-compare-frame {
        min-height: 240px;
        border-radius: 1rem;
    }

    .lux-back-top {
        width: 2.5rem;
        height: 2.5rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .lux-top-meta-inner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .lux-top-meta-list {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .lux-mobile-panel {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .mobile-nav-link {
        padding: 0.8rem 0.9rem !important;
        font-size: 0.9rem;
        background: rgba(253, 250, 245, 0.85) !important;
        border-radius: 0.85rem;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.is-active {
        background: rgba(200, 133, 58, 0.12) !important;
        color: var(--accent) !important;
    }

    .mobile-nav-cta {
        padding: 0.8rem 0.9rem !important;
        font-size: 0.9rem;
        min-height: 2.6rem;
        margin-top: 0.3rem;
    }

    .lux-mobile-panel {
        display: grid;
        gap: 0.7rem;
        padding: 0.7rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(245, 240, 232, 0.98);
        border-top: 1px solid rgba(26, 26, 26, 0.08);
        grid-template-columns: 1fr;
        z-index: 1000;
    }

    .lux-mobile-panel.is-open {
        max-height: 25rem;
    }

    .lux-mobile-panel a {
        padding: 0.75rem 0.85rem;
        font-size: 0.85rem;
        display: block;
        border-radius: 0.75rem;
        background: rgba(253, 250, 245, 0.85);
        border: 1px solid rgba(26, 26, 26, 0.08);
        transition: all 0.2s ease;
        text-align: center;
    }

    .lux-mobile-panel a:hover,
    .lux-mobile-panel a.is-active {
        background: rgba(200, 133, 58, 0.12);
        border-color: rgba(200, 133, 58, 0.35);
        color: var(--accent);
    }
}

/* Mobile Design - 640px and below */
@media (max-width: 640px) {
    body.luxury-home {
        cursor: auto;
        font-size: 14px;
        width: 100%;
        overflow-x: hidden;
    }

    .lux-shell {
        width: 100%;
        padding: 0 0.5rem !important;
        margin: 0 auto !important;
    }

    .lux-cursor,
    .lux-trails {
        display: none;
    }

    .lux-offer-bar {
        padding: 0.25rem 0;
    }

    .lux-offer-inner {
        min-height: auto;
        padding: 0.35rem 0.4rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .lux-offer-inner p {
        font-size: 0.75rem;
        line-height: 1.2;
        margin: 0;
    }

    .lux-offer-inner a {
        font-size: 0.75rem;
    }

    .lux-top-meta {
        padding: 0.35rem 0;
    }

    .lux-top-meta-inner {
        min-height: auto;
        padding: 0.35rem 0.4rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .lux-top-meta-list {
        flex-direction: column;
        gap: 0.3rem;
        width: 100%;
    }

    .lux-top-meta-list a {
        font-size: 0.72rem;
        width: 100%;
    }

    .lux-nav-inner {
        min-height: 3.2rem;
        padding: 0.35rem 0.4rem;
        gap: 0.4rem;
    }

    .lux-logo {
        font-size: 0.75rem;
        gap: 0.35rem;
        letter-spacing: 0.01em;
        flex-shrink: 1;
        min-width: 0;
    }

    .lux-logo-mark {
        width: 1.7rem;
        height: 1.7rem;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .lux-nav-toggle {
        width: 2.5rem;
        height: 2.5rem;
        flex-shrink: 0;
    }

    .lux-hero {
        min-height: auto;
        padding: 2rem 0 2.5rem;
    }

    .lux-hero h1 {
        font-size: clamp(1.7rem, 10vw, 3rem);
        margin: 0.6rem 0;
        line-height: 0.95;
    }

    .lux-hero p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .lux-micro-stats {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .lux-stat {
        padding: 0.7rem;
    }

    .lux-stat strong {
        font-size: 1.3rem;
    }

    .lux-stat span {
        font-size: 0.75rem;
    }

    .lux-timeline,
    .lux-pricing-grid,
    .lux-service-cards,
    .lux-why-badges,
    .lux-form .grid-2 {
        grid-template-columns: 1fr;
    }

    .lux-why-grid {
        grid-template-columns: 1fr;
    }

    .lux-why-badges {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .lux-why-panel {
        padding: 1rem;
    }

    .lux-why-panel h3 {
        font-size: 1.7rem;
        margin-top: 0.8rem !important;
        margin-bottom: 0.65rem !important;
    }

    .lux-section {
        padding: 3rem 0;
    }

    .lux-section-head h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .lux-panel-art {
        min-height: 250px;
    }

    .lux-service-side {
        min-height: 300px;
    }

    .lux-compare-frame {
        min-height: 220px;
    }

    .lux-shell {
        width: min(100%, calc(100% - 0.8rem));
        padding: 0 0.4rem;
    }

    .lux-btn {
        font-size: 0.88rem;
    }

    .lux-nav-inner {
        min-height: 3.2rem;
        padding: 0.5rem 0.5rem;
    }

    .lux-logo {
        font-size: 0.8rem;
    }

    .lux-hero-panel {
        padding: 1rem;
        border-radius: 1rem;
        min-height: auto;
    }

    .quick-quote-panel {
        min-height: auto;
    }

    .quick-quote-panel .lux-panel-copy {
        padding: 0.8rem;
    }

    .quick-quote-panel h2 {
        font-size: 1.3rem;
    }

    .lux-actions {
        gap: 0.6rem;
    }

    .lux-btn,
    .lux-submit {
        min-height: 2.5rem;
        padding: 0.75rem 0.9rem;
    }

    .lux-mobile-panel.is-open {
        max-height: 26rem;
    }

    .mobile-nav-link {
        padding: 0.75rem 0.85rem !important;
        font-size: 0.85rem;
    }

    .mobile-nav-cta {
        padding: 0.75rem 0.85rem !important;
        font-size: 0.85rem;
        min-height: 2.5rem;
    }

    .lux-form .grid-2 {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .lux-field input,
    .lux-field select,
    .lux-field textarea {
        padding: 0.75rem 0.9rem;
    }

    /* Ensure hero grid stacks with the quick-quote panel below content */
    .lux-hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: start;
    }

    .lux-hero-grid > .reveal {
        order: 1;
    }

    .lux-hero-grid .lux-panel-art {
        order: 2;
        width: 100%;
        margin: 0;
        align-self: stretch;
    }

    .lux-panel-art {
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
        padding: 0.8rem;
        border-radius: 0.9rem;
    }

    .lux-panel-copy {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 0.8rem;
    }

    /* Services: stack cards above the preview side on mobile */
    .lux-services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lux-service-cards {
        order: 1;
    }

    .lux-service-side {
        order: 2;
        min-height: 220px;
    }

    /* Make canvas elements scale and be touch-friendly */
    #heroCanvas,
    #roomCanvas {
        width: 100% !important;
        height: auto !important;
        min-height: 180px;
    }
}

/* Extra Small Devices - 480px and below */
@media (max-width: 480px) {
    body.luxury-home {
        font-size: 13px;
    }

    .lux-shell {
        width: min(100%, calc(100% - 0.6rem));
        padding: 0 0.3rem;
    }

    .lux-nav-inner {
        min-height: 3rem;
        padding: 0.4rem;
        gap: 0.4rem;
    }

    .lux-logo {
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .lux-logo-mark {
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.75rem;
    }

    .lux-nav-toggle {
        width: 2.4rem;
        height: 2.4rem;
    }

    .lux-hero {
        padding: 1.5rem 0 2rem;
    }

    .lux-hero h1 {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin: 0.5rem 0;
        letter-spacing: -0.02em;
    }

    .lux-hero p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .lux-kicker {
        font-size: 0.65rem;
    }

    .lux-kicker::before {
        width: 1.2rem;
    }

    .lux-micro-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 0.8rem;
    }

    .lux-stat {
        padding: 0.6rem;
        border-radius: 0.6rem;
    }

    .lux-stat strong {
        font-size: 1.1rem;
        margin-bottom: 0.15rem;
    }

    .lux-stat span {
        font-size: 0.7rem;
    }

    .lux-section {
        padding: 2.5rem 0;
    }

    .lux-section-head {
        margin-bottom: 1.5rem;
    }

    .lux-section-head h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.6rem;
    }

    .lux-section-sub {
        font-size: 0.85rem;
    }

    .lux-actions {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .lux-btn,
    .lux-submit,
    .lux-nav-cta {
        padding: 0.7rem 0.85rem;
        font-size: 0.85rem;
        min-height: 2.4rem;
        width: 100%;
    }

    .lux-panel-art {
        min-height: 200px;
        border-radius: 0.9rem;
    }

    .lux-panel-copy {
        left: 0.9rem;
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .lux-panel-copy h2 {
        font-size: 1.4rem;
    }

    .lux-panel-copy p {
        font-size: 0.8rem;
    }

    .lux-hero-panel {
        padding: 1rem;
        border-radius: 0.9rem;
    }

    .quick-quote-panel h2 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .lux-form {
        gap: 0.8rem;
    }

    .lux-form .grid-2 {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .lux-field label {
        font-size: 0.75rem;
        display: block;
        margin-bottom: 0.3rem;
    }

    .lux-field input,
    .lux-field select,
    .lux-field textarea {
        width: 100%;
        padding: 0.65rem 0.8rem;
        font-size: 0.9rem;
        min-height: 2.3rem;
    }

    .lux-submit {
        width: 100%;
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .quick-quote-panel .sub {
        font-size: 0.8rem;
    }

    .qq-badge {
        font-size: 0.75rem;
    }

    .lux-field input,
    .lux-field select,
    .lux-field textarea {
        padding: 0.7rem 0.85rem;
        font-size: 0.95rem;
    }

    .lux-form {
        gap: 0.9rem;
    }

    .lux-back-top {
        width: 2.2rem;
        height: 2.2rem;
        right: 0.5rem;
        bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .lux-compare-frame {
        min-height: 200px;
    }

    .lux-service-side {
        min-height: 250px;
    }

    .lux-mobile-panel {
        gap: 0.7rem;
        padding: 0.7rem;
    }

    .mobile-nav-link {
        padding: 0.7rem 0.8rem !important;
        font-size: 0.8rem;
    }

    .mobile-nav-cta {
        padding: 0.7rem 0.8rem !important;
        font-size: 0.8rem;
        min-height: 2.3rem;
    }

    .lux-mobile-panel a {
        padding: 0.75rem 0.85rem;
        font-size: 0.85rem;
    }

    .lux-mobile-panel.is-open {
        max-height: 24rem;
    }

    .lux-top-meta-inner {
        padding: 0.4rem 0;
    }

    .lux-top-meta-list a {
        font-size: 0.75rem;
    }
}
