/* ==========================================================================
   Summit Wash — Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand colours */
    --sw-navy:        #0c2340;
    --sw-navy-light:  #163560;
    --sw-blue:        #1a56db;
    --sw-blue-hover:  #1649c0;
    --sw-sky:         #eff6ff;
    --sw-sky-dark:    #dbeafe;

    /* Text */
    --sw-text:        #1e293b;
    --sw-text-muted:  #64748b;
    --sw-text-light:  #94a3b8;

    /* UI */
    --sw-border:      #e2e8f0;
    --sw-white:       #ffffff;
    --sw-bg:          #f8fafc;

    /* Spacing */
    --sw-section-py:  5rem;
    --sw-radius:      0.75rem;
    --sw-radius-sm:   0.5rem;
    --sw-radius-full: 9999px;

    /* Typography */
    --sw-font:        'Geist', system-ui, -apple-system, sans-serif;

    /* Shadows */
    --sw-shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --sw-shadow:      0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
    --sw-shadow-md:   0 8px 24px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.06);

    /* Nav */
    --sw-header-h:    70px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sw-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--sw-text);
    background: var(--sw-white);
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--sw-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
}

/* --------------------------------------------------------------------------
   3. Layout Utilities
   -------------------------------------------------------------------------- */
.container-wide {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--sw-radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, opacity 0.18s;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn:hover {
    text-decoration: none;
}

/* Sizes */
.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.8125rem 1.75rem;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Variants */
.btn-brand {
    background: var(--sw-blue);
    color: var(--sw-white);
    border-color: var(--sw-blue);
}
.btn-brand:hover {
    background: var(--sw-blue-hover);
    border-color: var(--sw-blue-hover);
    color: var(--sw-white);
}

.btn-white {
    background: var(--sw-white);
    color: var(--sw-navy);
    border-color: var(--sw-white);
}
.btn-white:hover {
    background: var(--sw-sky);
    color: var(--sw-navy);
}

.btn-ghost-white {
    background: transparent;
    color: var(--sw-white);
    border-color: rgba(255,255,255,0.6);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--sw-white);
    color: var(--sw-white);
}

.btn-outline {
    background: transparent;
    color: var(--sw-blue);
    border-color: var(--sw-blue);
}
.btn-outline:hover {
    background: var(--sw-sky);
    color: var(--sw-blue);
}

/* --------------------------------------------------------------------------
   5. Badges
   -------------------------------------------------------------------------- */
.badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: var(--sw-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge-blue {
    background: var(--sw-sky);
    color: var(--sw-blue);
}

/* --------------------------------------------------------------------------
   6. Section Headers (shared)
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
    font-weight: 800;
    color: var(--sw-navy);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--sw-text-muted);
    line-height: 1.65;
    max-width: 560px;
}

/* --------------------------------------------------------------------------
   7. Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--sw-header-h);
    background: var(--sw-white);
    border-bottom: 1px solid var(--sw-border);
    box-shadow: var(--sw-shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--sw-header-h);
    gap: 2rem;
}

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 48px;
    width: auto;
}

.site-nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link {
    padding: 0.5rem 0.875rem;
    border-radius: var(--sw-radius-sm);
    color: var(--sw-text);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.15s, background 0.15s;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--sw-blue);
    background: var(--sw-sky);
    text-decoration: none;
}

.header-cta-desktop {
    flex-shrink: 0;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--sw-radius-sm);
    color: var(--sw-text);
    transition: background 0.15s;
    margin-left: auto;
}

.nav-toggle:hover {
    background: var(--sw-bg);
}

/* Mobile drawer */
.nav-drawer {
    display: none;
    background: var(--sw-white);
    border-bottom: 1px solid var(--sw-border);
    box-shadow: var(--sw-shadow);
}

.nav-drawer.is-open {
    display: block;
}

.nav-drawer-inner {
    display: flex;
    flex-direction: column;
    padding-block: 1rem 1.5rem;
    gap: 0.25rem;
}

.nav-drawer-link {
    display: block;
    padding: 0.75rem 0.875rem;
    border-radius: var(--sw-radius-sm);
    color: var(--sw-text);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}

.nav-drawer-link:hover {
    color: var(--sw-blue);
    background: var(--sw-sky);
    text-decoration: none;
}

.nav-drawer-cta {
    margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
    background: linear-gradient(135deg, var(--sw-navy) 0%, var(--sw-navy-light) 100%);
    color: var(--sw-white);
    padding-top: calc(var(--sw-section-py) + 1rem);
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    padding-bottom: 4rem;
}

.hero-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--sw-white);
}

.hero-headline-accent {
    color: #60a5fa; /* blue-400 */
}

.hero-subheadline {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 520px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.hero-bullets li svg {
    flex-shrink: 0;
    color: #60a5fa;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    padding-top: 0.5rem;
}

/* Wave SVG divider */
.hero-wave {
    line-height: 0;
    margin-top: -2px; /* prevent thin gap */
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   9. Services
   -------------------------------------------------------------------------- */
.services-section {
    padding-block: var(--sw-section-py);
    background: var(--sw-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--sw-white);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--sw-shadow-sm);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: var(--sw-shadow-md);
    border-color: var(--sw-sky-dark);
    transform: translateY(-2px);
}

.service-popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sw-blue);
    color: var(--sw-white);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: var(--sw-radius-full);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--sw-sky);
    border-radius: var(--sw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sw-blue);
    flex-shrink: 0;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sw-navy);
}

.service-description {
    font-size: 0.9375rem;
    color: var(--sw-text-muted);
    line-height: 1.6;
}

/* Section CTA below services */
.section-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--sw-sky);
    border-radius: var(--sw-radius);
    text-align: center;
}

.section-cta-note {
    font-size: 1rem;
    color: var(--sw-text-muted);
    flex: 1 1 240px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   10. Quote Section
   -------------------------------------------------------------------------- */
.quote-section {
    padding-block: var(--sw-section-py);
    background: var(--sw-bg);
}

.quote-cta-card {
    background: var(--sw-white);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-radius);
    box-shadow: var(--sw-shadow);
    overflow: hidden;
    max-width: 760px;
    margin-inline: auto;
}

.quote-cta-card-inner {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
}

/* Steps row */
.quote-steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quote-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--sw-text-muted);
    font-weight: 500;
}

.quote-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sw-navy);
    color: var(--sw-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.quote-step-divider {
    color: var(--sw-text-light);
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 1.25rem;
    align-self: flex-start;
    margin-top: 0.35rem;
}

.quote-cta-note {
    font-size: 0.875rem;
    color: var(--sw-text-muted);
}

.quote-custom-link {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--sw-text-muted);
}

.quote-custom-link a {
    color: var(--sw-blue);
    font-weight: 500;
}

/* Mobile: block button */
@media (max-width: 479px) {
    .btn-block-mobile {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   11. CTA Banner
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--sw-navy) 0%, var(--sw-navy-light) 100%);
    padding-block: var(--sw-section-py);
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--sw-white);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   12. Gallery
   -------------------------------------------------------------------------- */
.gallery-section {
    padding-block: var(--sw-section-py);
    background: var(--sw-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-radius);
    overflow: hidden;
    box-shadow: var(--sw-shadow-sm);
    background: var(--sw-white);
    transition: box-shadow 0.2s;
}

.gallery-card:hover {
    box-shadow: var(--sw-shadow-md);
}

/* Toggle bar */
.gallery-toggle-bar {
    display: flex;
    border-bottom: 1px solid var(--sw-border);
    background: var(--sw-bg);
}

.gallery-toggle-btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sw-text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
    position: relative;
}

.gallery-toggle-btn.active {
    color: var(--sw-blue);
    background: var(--sw-white);
    border-bottom: 2px solid var(--sw-blue);
}

.gallery-toggle-btn:not(.active):hover {
    color: var(--sw-text);
    background: var(--sw-sky);
}

/* Image placeholders */
.gallery-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-img--before {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
}

.gallery-img--after {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.gallery-placeholder-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Caption */
.gallery-caption {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--sw-border);
}

.gallery-caption-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--sw-navy);
}

.gallery-caption-detail {
    font-size: 0.8125rem;
    color: var(--sw-text-muted);
    margin-top: 0.2rem;
}

.gallery-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--sw-text-light);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding-block: var(--sw-section-py);
    background: var(--sw-sky);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--sw-white);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--sw-shadow-sm);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b; /* amber-400 */
}

.testimonial-quote {
    font-size: 0.9375rem;
    color: var(--sw-text);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sw-navy);
}

.testimonial-author span {
    font-weight: 400;
    color: var(--sw-text-muted);
}

/* --------------------------------------------------------------------------
   14. Contact
   -------------------------------------------------------------------------- */
.contact-section {
    padding-block: var(--sw-section-py);
    background: var(--sw-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin-inline: auto;
}

.contact-card {
    background: var(--sw-white);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-radius);
    padding: 2rem;
    box-shadow: var(--sw-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sw-navy);
}

/* Contact items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.contact-icon-wrap {
    width: 38px;
    height: 38px;
    background: var(--sw-sky);
    border-radius: var(--sw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sw-blue);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sw-text-muted);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sw-navy);
    display: block;
    text-decoration: none;
}

a.contact-value:hover {
    color: var(--sw-blue);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.8125rem;
    color: var(--sw-text-muted);
    margin-top: 0.25rem;
}

/* Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sw-border);
    font-size: 0.9375rem;
}

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

.hours-day {
    font-weight: 500;
    color: var(--sw-text);
}

.hours-time {
    color: var(--sw-text-muted);
    font-size: 0.875rem;
}

.hours-closed .hours-day,
.hours-closed .hours-time {
    color: var(--sw-text-light);
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--sw-text-muted);
    border-top: 1px solid var(--sw-border);
    padding-top: 1rem;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--sw-navy);
    color: rgba(255,255,255,0.8);
}

.footer-inner {
    padding-block: 3.5rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--sw-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--sw-white);
    text-decoration: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
}

.footer-contact li svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.45);
}

.footer-contact a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-contact a:hover {
    color: var(--sw-white);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
}

/* --------------------------------------------------------------------------
   16. Generic Page
   -------------------------------------------------------------------------- */
.sw-page {
    padding-block: 4rem;
    min-height: 60vh;
}

.sw-page-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--sw-border);
}

.sw-page-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--sw-navy);
    line-height: 1.2;
}

.sw-page-body {
    max-width: 760px;
}

/* WordPress block/content styles */
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--sw-navy);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.entry-content p {
    color: var(--sw-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.entry-content ul,
.entry-content ol {
    list-style: revert;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--sw-text);
    line-height: 1.7;
}

.entry-content a {
    color: var(--sw-blue);
}

/* --------------------------------------------------------------------------
   17. 404 Page
   -------------------------------------------------------------------------- */
.sw-404 {
    padding-block: 6rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.sw-404-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.sw-404-icon {
    width: 72px;
    height: 72px;
    background: var(--sw-sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sw-blue);
}

.sw-404-code {
    font-size: 5rem;
    font-weight: 800;
    color: var(--sw-navy);
    line-height: 1;
    letter-spacing: -0.04em;
}

.sw-404-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--sw-navy);
}

.sw-404-message {
    font-size: 1rem;
    color: var(--sw-text-muted);
    max-width: 440px;
    line-height: 1.65;
}

.sw-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

/* Tablet ≤ 768px */
@media (max-width: 768px) {
    :root {
        --sw-section-py: 3.5rem;
    }

    /* Nav: hide desktop links, show hamburger */
    .site-nav-desktop,
    .header-cta-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Contact grid stacks */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer stacks */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* Mobile ≤ 540px */
@media (max-width: 540px) {
    :root {
        --sw-section-py: 2.75rem;
    }

    .container-wide {
        padding-inline: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        justify-content: center;
        width: 100%;
    }

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

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

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

    .quote-cta-card-inner {
        padding: 1.5rem 1.25rem;
    }

    .quote-steps {
        gap: 0.375rem;
    }

    .quote-step-divider {
        display: none;
    }

    .section-cta {
        flex-direction: column;
    }

    .sw-404-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sw-404-actions .btn {
        justify-content: center;
    }
}
