/* =============================================================================
   ACI Asphalt & Concrete LLC — Main Stylesheet
   Brand: var(--brand-primary,#da1921) red / #111 black / #1c1c1c dark / #fff white
   Fonts: Montserrat (headings), system-ui (body)
   Breakpoints: 768px (tablet), 1024px (desktop)
============================================================================= */

/* =============================================================================
   1. CSS CUSTOM PROPERTIES
============================================================================= */
:root {
    /* Colors */
    --color-red:        var(--brand-primary,#da1921);
    --color-red-dark:   color-mix(in srgb, var(--brand-primary) 85%, #000);
    --color-red-light:  #f5383f;
    --color-black:      #111;
    --color-dark:       #1c1c1c;
    --color-mid:        #555;
    --color-muted:      #888;
    --color-border:     #e4e4e4;
    --color-bg-light:   #f7f7f7;
    --color-white:      #fff;

    /* Typography */
    --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    --font-sans:    'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* --- BU type scale -------------------------------------------------
       Measured from wepavetheway.com; see docs/BU-TOKEN-MAP.md.
       METRICS ONLY. Colours deliberately diverge from the BU reference
       because its red #e8392a is 4.16:1 and fails WCAG AA. Font families
       also stay put: the BU sites declare 'Open Sans' but never serve the
       webfont, so they silently fall back to Arial. We load it properly.
       ------------------------------------------------------------------ */
    --bu-h1-home:       2.5625rem; /* 41px */
    --bu-h1-page:       1.875rem;  /* 30px */
    --bu-h2-section:    1.875rem;  /* 30px */
    --bu-h2-band:       2rem;      /* 32px */
    --bu-h2-cta:        2.25rem;   /* 36px */
    --bu-h3-card:       1.25rem;   /* 20px */
    --bu-eyebrow:       1.125rem;  /* 18px */
    --bu-body:          1rem;      /* 16px */
    --bu-body-weight:   500;
    --bu-body-lh:       1.6;
    --bu-heading-weight: 700;
    --color-heading:    #1c1c1c;
    --color-body-text:  #333;

    /* Spacing */
    --section-padding:  5rem 0;
    --section-pad-sm:   3rem 0;
    --inner-max:        1400px;
    --inner-pad:        1.25rem;
    --inner-pad-lg:     2rem;

    /* Misc */
    --radius:           4px;
    --radius-lg:        8px;
    --shadow:           0 2px 12px rgba(0,0,0,.08);
    --shadow-lg:        0 6px 32px rgba(0,0,0,.14);
    --transition:       0.2s ease;
}

/* =============================================================================
   2. RESET & BASE
============================================================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--bu-body);
    font-weight: var(--bu-body-weight);
    line-height: var(--bu-body-lh);
    color: var(--color-body-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

table {
    border-collapse: collapse;
}

/* Skip link — visually hidden until keyboard-focused, so keyboard/screen
   reader users can bypass the header nav instead of tabbing through every
   menu item on every page load. Must be the first focusable element in the
   DOM (see templates/layout.php). */
.skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 var(--radius) 0;
    transition: top 0.15s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--color-red);
    outline-offset: -3px;
}

/* =============================================================================
   3. TYPOGRAPHY
============================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--bu-heading-weight);
    line-height: 1.2;
    margin: 0 0 0.75em;
    color: var(--color-black);
}

h1 { font-size: clamp(1.75rem, 4vw, var(--bu-h1-home)); }
h2 { font-size: clamp(1.4rem, 3vw, var(--bu-h2-band)); }
h3 { font-size: clamp(1.15rem, 2.2vw, var(--bu-h3-card)); }
h4 { font-size: var(--bu-h3-card); }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

p {
    margin: 0 0 1.25em;
}

a {
    color: var(--color-red);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover, a:focus {
    color: var(--color-red-dark);
    text-decoration: underline;
}

ul, ol {
    margin: 0 0 1.25em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.35em;
}

blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-left: 4px solid var(--color-red);
    background: var(--color-bg-light);
    font-style: italic;
    color: var(--color-mid);
}

strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* =============================================================================
   4. LAYOUT CONTAINERS
============================================================================= */
.wrap,
.inner {
    width: 100%;
    max-width: var(--inner-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--inner-pad);
    padding-right: var(--inner-pad);
}

@media (min-width: 768px) {
    .wrap,
    .inner {
        padding-left: var(--inner-pad-lg);
        padding-right: var(--inner-pad-lg);
    }
}

/* =============================================================================
   4b. SECTION HEADERS (shared "eyebrow + title" pattern)
============================================================================= */
.section__inner {
    width: 100%;
    max-width: var(--inner-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--inner-pad);
    padding-right: var(--inner-pad);
}

@media (min-width: 768px) {
    .section__inner {
        padding-left: var(--inner-pad-lg);
        padding-right: var(--inner-pad-lg);
    }
}

.section__header {
    margin-bottom: 2.5rem;
}

.section__header--center {
    text-align: center;
}

.section__eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-red);
    margin: 0 0 0.5rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: var(--bu-h2-band);
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-red);
    margin-top: 1rem;
}

.section__header--center .section__title::after {
    margin-left: auto;
    margin-right: auto;
}

.section__intro {
    font-size: 1rem;
    color: var(--color-mid);
    line-height: 1.7;
    max-width: 620px;
    margin: 0.75rem auto 0;
}

/* =============================================================================
   5. BUTTONS
============================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.6em 1.75em;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    line-height: 1.4;
}

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

.btn--primary,
.btn--red {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}
.btn--primary:hover,
.btn--primary:focus,
.btn--red:hover,
.btn--red:focus {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    color: var(--color-white);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--brand-primary) 35%, transparent);
}

.btn--outline {
    background: transparent;
    color: var(--color-red);
    border-color: var(--color-red);
}
.btn--outline:hover,
.btn--outline:focus {
    background: var(--color-red);
    color: var(--color-white);
}

.btn--secondary {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}
.btn--secondary:hover,
.btn--secondary:focus {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.btn--full {
    width: 100%;
    display: flex;
}

.btn--sm {
    padding: 0.5em 1.2em;
    font-size: 0.8rem;
}

/* =============================================================================
   6. UTILITY / GLOBAL COMPONENTS
============================================================================= */

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}
.breadcrumbs a {
    color: var(--color-muted);
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: var(--color-red);
}
.breadcrumbs span + span::before {
    content: ' / ';
    margin: 0 0.3em;
    color: var(--color-border);
}

/* Section eyebrow */
.section-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 0.6rem;
}

/* Red rule */
.red-rule {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-red);
    border: none;
    margin: 0.75rem 0 1.5rem;
}

/* Visually hidden / sr-only */
.visually-hidden,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Empty states */
.no-posts,
.no-items {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-muted);
    font-style: italic;
}

/* Generic prose content area (dynamic-page.php: privacy policy, terms, etc.) */

/* Shared content hero — identical to the blog / gallery page heroes so every
   CMS-created page gets the same header treatment. */
.content-hero {
    background-color: #111;
    background-image: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)), url('/wp-content/uploads/2025/05/asphalt_bg_2-compressed.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 60px 2rem;
}
.content-hero__eyebrow {
    color: var(--brand-primary, #da1921);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
}
.content-hero__title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, var(--bu-h1-home));
    font-weight: 800;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.page-body {
    padding: 3.5rem var(--inner-pad);
}

.page-body__inner {
    width: 100%;
    max-width: var(--inner-max);
    margin: 0 auto;
    padding-left: var(--inner-pad);
    padding-right: var(--inner-pad);
}

/* Constrain the reading measure — long legal text is far easier to scan at
   ~800px than stretched edge-to-edge. */
.page-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--color-body, #333);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.page-content > *:first-child { margin-top: 0; }

.page-content h2 {
    margin: 2.25em 0 0.5em;
    font-size: 1.6rem;
    line-height: 1.25;
    color: var(--color-black);
}

.page-content h3 {
    margin: 1.6em 0 0.4em;
    font-size: 1.2rem;
    color: var(--color-black);
}

.page-content p  { margin: 0 0 1.15em; }

.page-content ul,
.page-content ol {
    margin: 0 0 1.25em;
    padding-left: 1.5em;
    list-style: revert;              /* undo the site-wide list-style:none reset */
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 0.5em; }

/* Quill 2 saves lists as <ol> with per-item data-list attributes and an empty
   .ql-ui span, relying on Quill's editor CSS for markers — which isn't loaded
   on the front end. Render those markers ourselves so content authored/edited
   in the visual editor shows bullets and numbers just like pasted <ul>/<li>. */
.page-content li > .ql-ui { display: none; }
.page-content ol:has(> li[data-list]) { list-style: none; padding-left: 1.5em; counter-reset: ql-ordered; }
.page-content li[data-list] { list-style: none; position: relative; }
.page-content li[data-list="bullet"]::before {
    content: "\2022";
    position: absolute;
    left: -1em;
    font-weight: 700;
}
.page-content li[data-list="ordered"] { counter-increment: ql-ordered; }
.page-content li[data-list="ordered"]::before {
    content: counter(ql-ordered) ".";
    position: absolute;
    left: -1.6em;
    text-align: right;
    width: 1.3em;
}

.page-content a {
    color: var(--color-red);
    text-decoration: underline;
    word-break: break-word;
}

.page-content strong { color: var(--color-black); }

.page-content hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 2em 0;
}

/* =============================================================================
   7. PAGE HERO
============================================================================= */
.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    padding: 4rem var(--inner-pad);
}

.page-hero--static {
    min-height: 260px;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    width: 100%;
    max-width: var(--inner-max);
    margin: 0 auto;
}

.page-hero__content h1,
.page-hero__content h2 {
    color: var(--color-white);
    margin-bottom: 0.4em;
}

.page-hero__content .breadcrumbs,
.page-hero__content .breadcrumbs a {
    color: rgba(255,255,255,0.65);
}
.page-hero__content .breadcrumbs a:hover {
    color: var(--color-white);
}

@media (min-width: 768px) {
    .page-hero {
        min-height: 380px;
        padding: 5rem var(--inner-pad-lg);
    }
}

/* =============================================================================
   8. SITE FOOTER
============================================================================= */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    padding: 3.5rem 0 0;
}

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

@media (min-width: 600px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    /* each column */
}

.footer-logo img {
    max-width: 160px;
    margin-bottom: 1rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5em;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--color-red);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem var(--inner-pad);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover {
    color: var(--color-red);
}

/* =============================================================================
   9. HOMEPAGE — HERO SECTION (video bg)
============================================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 5rem var(--inner-pad);
}

.hero-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-row {
        flex-direction: row;
        align-items: center;
    }
}

.hero-column {
    flex: 1;
}

.hero-column-left {
    flex: 0 0 55%;
}

.hero-text-content {
    color: var(--color-white);
}

.hero-text-content h1,
.hero-text-content h2 {
    color: var(--color-white);
}

.hero-text-content .section-eyebrow {
    color: var(--color-red-light);
}

/* =============================================================================
   10. HOMEPAGE — PAVEMENT MAINTENANCE SECTION
============================================================================= */
.pavement-maintenance-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.pavement-maintenance-section .section-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .pavement-maintenance-section .section-inner {
        flex-direction: row;
        align-items: center;
    }
    .pavement-maintenance-section .section-text {
        flex: 1;
    }
    .pavement-maintenance-section .section-image {
        flex: 0 0 45%;
    }
}

.pavement-maintenance-section .section-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =============================================================================
   11. HOMEPAGE — SERVICES SECTION
============================================================================= */
.services-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-item .service-icon {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 1rem;
    display: block;
}

.service-item h3,
.service-item .service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6em;
    color: var(--color-black);
}

.service-item p,
.service-item .service-desc {
    font-size: 0.9rem;
    color: var(--color-mid);
    margin-bottom: 0;
}

/* =============================================================================
   12. HOMEPAGE — PAVING INTRO SECTION (dark bg)
============================================================================= */
.paving-intro-section {
    position: relative;
    padding: var(--section-padding);
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.paving-intro-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28,28,28,0.80);
}

.paving-intro-section .inner {
    position: relative;
    z-index: 1;
}

.paving-intro-section h2,
.paving-intro-section h3 {
    color: var(--color-white);
}

/* =============================================================================
   13. HOMEPAGE — INDUSTRIES SECTION
============================================================================= */
.industries-section {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

.industries-grid-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .industries-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industries-grid-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-item-col {
    /* wrapper column */
}

.industry-item-blurb {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}

.industry-item-blurb:hover {
    box-shadow: var(--shadow-lg);
}

.industry-item-blurb img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.industry-item-blurb .blurb-body {
    padding: 1.25rem;
}

.industry-item-blurb h3 {
    font-size: 1rem;
    margin-bottom: 0.4em;
}

/* =============================================================================
   14. HOMEPAGE — CTA PARALLAX SECTION
============================================================================= */
.cta-parallax-section {
    position: relative;
    padding: 6rem var(--inner-pad);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    background-color: var(--color-dark);
}

.cta-parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.cta-parallax-section .inner {
    position: relative;
    z-index: 1;
}

.cta-parallax-section h2 {
    color: var(--color-white);
    margin-bottom: 0.5em;
}

.cta-parallax-section p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 1.75rem;
}

@media (max-width: 767px) {
    .cta-parallax-section {
        background-attachment: scroll;
    }
}

/* =============================================================================
   15. HOMEPAGE — TESTIMONIALS SECTION
============================================================================= */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--color-dark);
    color: var(--color-white);
}

.testimonials-section h2 {
    color: var(--color-white);
}

.testimonials-title-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-red);
    margin: 0.75rem 0 2rem;
}

/* Swiper overrides */
.testimonial-swiper {
    padding-bottom: 3rem !important;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card .stars {
    color: var(--color-red);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.testimonial-card .quote {
    font-style: italic;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.testimonial-card .author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.9rem;
}

.testimonial-card .company {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Swiper nav buttons */
.testimonial-swiper-prev,
.testimonial-swiper-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background var(--transition);
    flex-shrink: 0;
}

.testimonial-swiper-prev:hover,
.testimonial-swiper-next:hover {
    background: var(--color-red-dark);
}

.testimonial-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
}

/* =============================================================================
   16. SERVICE PAGES
============================================================================= */
.service-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    padding: 4rem var(--inner-pad) 5rem;
}

.service-hero .page-hero__overlay {
    background: rgba(0,0,0,0.6);
}

.service-content-section {
    padding: var(--section-padding);
}

.service-content-section .service-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Process steps */
.process-steps {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-item .step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item .step-body h3,
.step-item .step-body h4 {
    margin-bottom: 0.3em;
    font-size: 1.05rem;
}

.step-item .step-body p {
    font-size: 0.9rem;
    color: var(--color-mid);
    margin: 0;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.checklist-item::before {
    content: '\f00c'; /* Font Awesome check */
    font-family: 'Font Awesome 6 Free', 'FontAwesome', sans-serif;
    font-weight: 900;
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 0.15em;
    font-size: 0.9rem;
}

/* =============================================================================
   17. CONTACT PAGE
============================================================================= */
.contact-section {
    padding: var(--section-padding);
}

.contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-wrap {
        flex-direction: row;
        align-items: flex-start;
    }
    .contact-form-col {
        flex: 1 1 58%;
    }
    .contact-info-col {
        flex: 0 0 38%;
    }
}

/* ACI Form */
.aci-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .form-row--half {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row--third {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 0.4rem;
}

.req {
    color: var(--color-red);
    margin-left: 0.2em;
}

.form-input,
.aci-form input[type="text"],
.aci-form input[type="email"],
.aci-form input[type="tel"],
.aci-form input[type="number"],
.aci-form select,
.aci-form textarea {
    display: block;
    width: 100%;
    padding: 0.7em 1em;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-black);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.aci-form input:focus,
.aci-form select:focus,
.aci-form textarea:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 12%, transparent);
}

.form-textarea,
.aci-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form messages */
.form-message {
    padding: 0.85em 1.25em;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}
.form-message.is-visible { display: block; }

.form-message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact info card */
.contact-info-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem 1.75rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-mid);
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list .info-icon {
    color: var(--color-red);
    width: 1.2em;
    flex-shrink: 0;
    margin-top: 0.15em;
}

.contact-info-list a {
    color: var(--color-black);
}
.contact-info-list a:hover {
    color: var(--color-red);
}

.contact-social {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-mid);
    font-size: 1rem;
    transition: background var(--transition), color var(--transition);
}
.contact-social a:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: none;
}

.contact-review-box {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    font-size: 0.88rem;
    text-align: center;
    color: var(--color-mid);
}

/* =============================================================================
   18. BLOG — LISTING
============================================================================= */
.blog-section {
    padding: var(--section-padding);
}

.blog-wrap {
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 0 var(--inner-pad);
}

@media (min-width: 768px) {
    .blog-wrap {
        padding: 0 var(--inner-pad-lg);
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog card */
.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.blog-card__img-link {
    display: block;
    overflow: hidden;
}

.blog-card__img-link img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__img-link img {
    transform: scale(1.04);
}

.blog-card__body {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__cats {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.65em;
    color: var(--color-black);
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}
.blog-card__title a:hover {
    color: var(--color-red);
}

.blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--color-mid);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: auto;
}

.blog-card__read-more {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-red);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.blog-card__read-more:hover {
    color: var(--color-red-dark);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.pagination a,
.pagination span {
    color: var(--color-black);
    text-decoration: none;
    padding: 0.5em 0.75em;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.pagination a:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.pagination .current {
    background: var(--color-red);
    color: var(--color-white);
}

/* =============================================================================
   19. BLOG — SINGLE POST
============================================================================= */
.post-hero {
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    position: relative;
}

.post-layout {
    padding: var(--section-padding);
    max-width: var(--inner-max);
    margin: 0 auto;
    padding-left: var(--inner-pad);
    padding-right: var(--inner-pad);
}

@media (min-width: 1024px) {
    .post-layout {
        display: grid;
        grid-template-columns: 65% 1fr;
        gap: 3rem;
        padding-left: var(--inner-pad-lg);
        padding-right: var(--inner-pad-lg);
    }
}

.post-layout--no-sidebar {
    max-width: 1100px;
    padding-top: 1rem;
}

@media (min-width: 1024px) {
    .post-layout--no-sidebar {
        display: block;
    }
}

.post-main { min-width: 0; }

.post-breadcrumbs {
    max-width: var(--inner-max);
    margin: 1.25rem auto 0;
    padding: 0 var(--inner-pad);
}

@media (min-width: 1024px) {
    .post-breadcrumbs {
        padding: 0 var(--inner-pad-lg);
    }
}

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

.post-cats {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.post-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    margin-bottom: 0.5em;
}

.post-meta {
    font-size: 0.82rem;
    color: var(--color-muted);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Post prose styles */
.post-content p {
    margin-bottom: 1.4em;
    line-height: 1.75;
}

.post-content h2 {
    font-size: 1.55rem;
    margin-top: 2.5em;
    margin-bottom: 0.6em;
    padding-top: 0.5em;
    border-top: 1px solid var(--color-border);
}

.post-content h3 {
    font-size: 1.2rem;
    margin-top: 1.75em;
    margin-bottom: 0.5em;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.4em;
    padding-left: 1.5em;
}

.post-content li {
    margin-bottom: 0.5em;
    line-height: 1.65;
}

.post-content blockquote {
    border-left: 4px solid var(--color-red);
    padding: 1em 1.5em;
    margin: 1.75em 0;
    background: var(--color-bg-light);
    font-style: italic;
    color: var(--color-mid);
}

.post-content img {
    border-radius: var(--radius);
    margin: 1.5em 0;
    box-shadow: var(--shadow);
}

.post-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

/* Sidebar */
.post-sidebar {
    min-width: 0;
    margin-top: 2.5rem;
}

@media (min-width: 1024px) {
    .post-sidebar {
        margin-top: 0;
    }
}

.sidebar-widget {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.75rem;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--color-red);
}

.sidebar-recent {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-recent li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--color-border);
}
.sidebar-recent li:last-child { border-bottom: none; }
.sidebar-recent a {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-black);
    display: block;
    margin-bottom: 0.2em;
    text-decoration: none;
    line-height: 1.4;
}
.sidebar-recent a:hover { color: var(--color-red); }
.sidebar-recent .post-date {
    font-size: 0.75rem;
    color: var(--color-muted);
}

.sidebar-cats {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-cats li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--color-border);
}
.sidebar-cats li:last-child { border-bottom: none; }
.sidebar-cats a {
    font-size: 0.88rem;
    color: var(--color-mid);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}
.sidebar-cats a:hover { color: var(--color-red); }

.sidebar-cta {
    background: var(--color-red);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    margin-bottom: 1.75rem;
}
.sidebar-cta h3,
.sidebar-cta h4 {
    color: var(--color-white);
    margin-bottom: 0.5em;
    font-size: 1.1rem;
}
.sidebar-cta p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
}
.sidebar-cta .btn--outline {
    border-color: var(--color-white);
    color: var(--color-white);
}
.sidebar-cta .btn--outline:hover {
    background: var(--color-white);
    color: var(--color-red);
}

/* Related posts */
.related-posts {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: 2rem;
}

.blog-grid--related {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid--related {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid--related {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================================================
   20. TEAM
============================================================================= */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.team-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
}

.team-card .team-card__body {
    padding: 1.25rem 1rem;
}

.team-card .team-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2em;
}

.team-card .team-position {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

/* Team member single */
.team-member-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: var(--section-padding);
}

@media (min-width: 768px) {
    .team-member-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.team-member-thumbnail {
    flex-shrink: 0;
}

.team-member-thumbnail img {
    width: 240px;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =============================================================================
   21. GALLERY
============================================================================= */
.gallery-section {
    padding: var(--section-padding);
}

/* Responsive grid tweaks (inline styles in gallery.php handle base layout) */
@media (max-width: 767px) {
    .gallery-grid,
    .gallery-section .gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid,
    .gallery-section .gallery {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================================================
   22. SERVICE AREA (SAM) PAGES
============================================================================= */
.sam-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    padding: 4rem var(--inner-pad);
}

.sam-root-section {
    padding: var(--section-padding);
}

.sam-states-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .sam-states-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .sam-states-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.sam-states-grid .state-card {
    display: block;
    padding: 1rem;
    text-align: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.sam-states-grid .state-card:hover {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    text-decoration: none;
}

.sam-city-section {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

.sam-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (min-width: 600px) {
    .sam-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sam-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ Accordion */
.faq-list {
    margin: 2rem 0;
    border-top: 1px solid var(--color-border);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-black);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-red);
}

.faq-question::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: 'Font Awesome 6 Free', 'FontAwesome', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--color-red);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.faq-open .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0;
}

.faq-item.faq-open .faq-answer {
    /* max-height set via JS to scrollHeight */
    padding-bottom: 1.25rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* =============================================================================
   23. ABOUT PAGE
============================================================================= */
.stats-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 3rem 0;
}

@media (min-width: 600px) {
    .stats-row {
        flex-direction: row;
        justify-content: center;
    }
}

.stat-item {
    flex: 1;
    max-width: 220px;
    margin: 0 auto;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-mid);
    margin-top: 0.4rem;
    display: block;
}

.team-preview-section {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

/* =============================================================================
   24. HEADER INTERACTION OVERRIDES
   (Full header styles are inline in templates/header.php — only overrides here)
============================================================================= */
body.admin-bar .hph-header {
    top: 32px;
}

/* Ensure content below sticky header has enough breathing room */
.hph-header + * {
    /* The header JS or PHP should handle offset; add fallback if needed */
}

/* =============================================================================
   25. RESPONSIVE UTILITIES
============================================================================= */

@media (max-width: 767px) {
    :root {
        --section-padding: 3rem 0;
    }

    .page-hero,
    .service-hero,
    .sam-hero {
        min-height: 220px;
        padding: 3rem var(--inner-pad);
    }

    .cta-parallax-section {
        padding: 4rem var(--inner-pad);
    }
}

/* ---------------------------------------------------------------------------
   Shared button. Promoted here from front-page.php's inline block: the lead
   form's submit button carries .aci-btn, so while this rule lived inline on the
   homepage the button rendered unstyled on /contact/ and every service page.
   Anything used by more than one template belongs in this file, not in a
   page-level <style>.
   --------------------------------------------------------------------------- */
.aci-btn {
    display: inline-block;
    background: var(--brand-primary, #da1921);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    padding: 0.6em 1.75em;
    line-height: 1.4;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s;
}
.aci-btn:hover {
    background: color-mix(in srgb, var(--brand-primary) 85%, #000);
    color: #fff !important;
}

/* Visually-hidden text that STAYS in the accessibility tree and in innerText.
   Canonical definition lives here (global) rather than didit-form.css, which is
   only enqueued when our own forms render — without this, sr-only spans on the
   home and services cards would render as visible text. Uses the clip technique
   deliberately: display:none would remove the text from innerText, which is what
   search engines and Lighthouse's link-text audit read. */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0; border: 0;
	clip: rect(0 0 0 0); clip-path: inset(50%);
	overflow: hidden; white-space: nowrap;
}
.screen-reader-text:focus {
	position: static !important;
	width: auto; height: auto; margin: 0;
	clip: auto; clip-path: none;
	overflow: visible; white-space: normal;
}
