/* =========================================================
   YASH CONSTRUCTION FLOORING
   COMPLETE RESPONSIVE SITE CSS
   ========================================================= */
/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */
:root {
    --gold: #f0b900;
    --gold-dark: #bd9100;
    --gold-light: #fff4c7;
    --ink: #151515;
    --black: #0d0d0d;
    --dark: #111111;
    --white: #ffffff;
    --soft: #f4f3ef;
    --soft-dark: #e9e7df;
    --line: #ddd9cf;
    --line-light: #ece9e1;
    --muted: #6b6b68;
    --muted-light: #9a9994;
    --danger: #b42318;
    --success: #166534;
    --container-width: 1240px;
    --header-height: 88px;
    --section-padding: 7rem;
    --transition: .25s ease;
}


/* =========================================================
   2. GLOBAL RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family: inherit;
}

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

img {
    display: block;
}

video {
    display: block;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1279px) {

    .container {
        max-width: 94%;
    }
}

@media (max-width: 991px) {

    .container {
        max-width: 92%;
    }
}

@media (max-width: 575px) {

    .container {
        max-width: 90%;
    }
}


/* =========================================================
   4. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: inherit;
}

p {
    margin-top: 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.06;
    letter-spacing: -.04em;
    max-width: 920px;
    font-weight: 700;
}

.kicker,
.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: .82rem;
}

.text-gold {
    color: var(--gold) !important;
}


/* =========================================================
   5. HEADER / NAVBAR
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line-light);
    width: 100%;
}

.navbar {
    min-height: var(--header-height);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

    .navbar-brand img {
        width: 112px;
        height: 58px;
        object-fit: contain;
    }

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .77rem;
    margin: 0 .3rem;
    transition: color var(--transition);
}

    .nav-link:hover,
    .nav-link:focus {
        color: var(--gold-dark);
    }

.navbar-toggler {
    border-radius: 0;
    border: 1px solid var(--line);
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(240, 185, 0, .2);
    }


/* =========================================================
   6. BUTTONS
   ========================================================= */

.btn {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 800;
    padding: .9rem 1.4rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
}

    .btn-gold:hover {
        background: var(--black);
        border-color: var(--black);
        color: var(--white);
    }

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, .8);
    color: var(--white);
    background: transparent;
}

    .btn-outline-light:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--black);
    }

.btn-dark {
    background: var(--black);
    border: 1px solid var(--black);
    color: var(--white);
}

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

.btn-light {
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
}

    .btn-light:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--black);
    }


/* =========================================================
   7. HERO
   RESPONSIVE DESKTOP + TABLET + MOBILE
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--soft-dark);
    color: var(--white);
}


/* =========================================================
   HERO BACKGROUND VIDEO
   ========================================================= */

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    display: block;
    z-index: 0;
    pointer-events: none;
    background: var(--dark);
}


/* =========================================================
   HERO DARK SHADE
   ========================================================= */

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,rgba(15,15,15,.96) 0%,rgba(15,15,15,.75) 55%,rgba(15,15,15,.25) 100%)
}


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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 7rem;
    padding-bottom: 7rem;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.hero .eyebrow {
    display: inline-block;
    margin: 0 0 1.5rem 0;
    padding: .65rem 1rem;
    color: var(--gold);
    background: rgba(240, 185, 0, .08);
    border: 1px solid rgba(240, 185, 0, .35);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    line-height: 1.4;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero h1 {
    max-width: 980px;
    margin: 0 0 2rem 0;
    font-size: clamp(3rem, 6vw, 6.4rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -.045em;
    color: var(--white);
}

    .hero h1 em {
        font-style: normal;
        color: var(--gold);
    }


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero .hero-copy {
    max-width: 720px;
    margin: 0 0 2.5rem 0;
    color: #d0d0d0;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .hero-buttons .btn {
        min-height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: .9rem 1.5rem;
        border-radius: 0;
        font-weight: 800;
        letter-spacing: .07em;
        text-transform: uppercase;
        white-space: nowrap;
    }

.hero .btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
}

    .hero .btn-gold:hover {
        background: var(--black);
        border-color: var(--black);
        color: var(--white);
    }

.hero .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, .8);
    color: var(--white);
    background: transparent;
}

    .hero .btn-outline-light:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--black);
    }


/* =========================================================
   HERO TABLET
   992px AND BELOW
   ========================================================= */

@media (max-width: 991.98px) {

    .hero {
        min-height: calc(100vh - 72px);
        min-height: calc(100svh - 72px);
    }

    .hero-video {
        object-position: center center;
    }

    .hero-shade {
        background: linear-gradient( 90deg, rgba(10, 10, 10, .90) 0%, rgba(10, 10, 10, .70) 55%, rgba(10, 10, 10, .42) 100% );
    }

    .hero-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero h1 {
        max-width: 750px;
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .hero .hero-copy {
        max-width: 620px;
    }
}


/* =========================================================
   HERO MOBILE
   768px AND BELOW
   ========================================================= */

@media (max-width: 767.98px) {

    .hero {
        min-height: 760px;
        min-height: 100svh;
        align-items: center;
    }

    /*
       Mobile landscape video positioning.
       Change 65% to 60%-75% if required.
    */

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65% center;
    }

    .hero-shade {
        background: linear-gradient( 180deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .72) 45%, rgba(0, 0, 0, .90) 100% );
    }

    .hero-content {
        width: 100%;
        padding: 5rem 1rem 4rem 1rem;
    }

    .hero .eyebrow {
        margin-bottom: 1.25rem;
        padding: .55rem .75rem;
        font-size: .68rem;
        letter-spacing: .09em;
        line-height: 1.5;
    }

    .hero h1 {
        max-width: 100%;
        margin-bottom: 1.5rem;
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.035em;
    }

    .hero .hero-copy {
        max-width: 100%;
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.65;
        color: #ddd;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: .8rem;
    }

        .hero-buttons .btn {
            width: 100%;
            min-height: 52px;
            padding: .9rem 1rem;
            font-size: .78rem;
        }
}


/* =========================================================
   HERO SMALL MOBILE
   576px AND BELOW
   ========================================================= */

@media (max-width: 575.98px) {

    .hero {
        min-height: 760px;
    }

    .hero-video {
        object-position: 68% center;
    }

    .hero-content {
        padding: 4rem 1rem 3rem 1rem;
    }

    .hero .eyebrow {
        font-size: .62rem;
        letter-spacing: .07em;
        padding: .5rem .65rem;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.2rem);
        line-height: .98;
        margin-bottom: 1.4rem;
    }

    .hero .hero-copy {
        font-size: .95rem;
        line-height: 1.6;
        margin-bottom: 1.7rem;
    }

    .hero-buttons .btn {
        font-size: .72rem;
        min-height: 50px;
        padding: .85rem .8rem;
    }
}


/* =========================================================
   HERO VERY SMALL PHONES
   400px AND BELOW
   ========================================================= */

@media (max-width: 400px) {

    .hero {
        min-height: 720px;
    }

    .hero-video {
        object-position: 70% center;
    }

    .hero-content {
        padding-left: .85rem;
        padding-right: .85rem;
    }

    .hero h1 {
        font-size: 2.15rem;
    }

    .hero .hero-copy {
        font-size: .9rem;
    }
}


/* =========================================================
   HERO LANDSCAPE MOBILE
   ========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .hero .hero-copy {
        max-width: 600px;
    }

    .hero-buttons {
        flex-direction: row;
    }

        .hero-buttons .btn {
            width: auto;
        }
}


/* =========================================================
   8. TRUST GRID
   ========================================================= */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
}

    .trust-grid div {
        padding: 2.6rem 1rem;
        text-align: center;
        border-right: 1px solid var(--line);
    }

        .trust-grid div:last-child {
            border-right: 0;
        }

    .trust-grid strong {
        display: block;
        font-size: clamp(1.75rem, 3vw, 3rem);
        font-weight: 800;
        line-height: 1.1;
    }

    .trust-grid span {
        display: block;
        color: var(--muted);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .07em;
        font-size: .8rem;
        margin-top: .5rem;
    }


/* =========================================================
   9. SECTION SPACING
   ========================================================= */

.section-pad {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.bg-soft {
    background: var(--soft);
}


/* =========================================================
   10. SERVICE CARDS
   ========================================================= */

.service-card,
.info-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 2.2rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

    .service-card:hover,
    .info-card:hover {
        border-color: var(--gold);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    }

    .service-card span,
    .info-card span {
        color: var(--gold);
        font-weight: 800;
    }

    .service-card h3,
    .info-card h2 {
        font-size: 1.55rem;
        font-weight: 800;
        margin: 2rem 0 1rem;
    }

    .service-card p,
    .info-card p {
        color: var(--muted);
        line-height: 1.8;
    }

    .service-card a {
        font-weight: 800;
        text-decoration: none;
        text-transform: uppercase;
        font-size: .8rem;
    }


/* =========================================================
   11. TECHNOLOGY / DARK SPLIT SECTION
   ========================================================= */

.split-dark {
    background: var(--ink);
    color: var(--white);
    padding: 7rem 0;
}

    .split-dark h2 {
        font-size: clamp(2.6rem, 5vw, 5rem);
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: -.04em;
    }

    .split-dark p {
        font-size: 1.15rem;
        color: #c9c9c9;
        line-height: 1.8;
    }

    .split-dark img {
        min-height: 500px;
        width: 100%;
        object-fit: cover;
    }


/* =========================================================
   12. FEATURE GRID
   ========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
}

    .feature-grid article {
        padding: 2rem;
        border-right: 1px solid var(--line);
    }

        .feature-grid article:last-child {
            border-right: 0;
        }

    .feature-grid b {
        color: var(--gold);
        font-size: 1.4rem;
    }

    .feature-grid h3 {
        font-weight: 800;
        margin: 2rem 0 1rem;
    }

    .feature-grid p {
        color: var(--muted);
        line-height: 1.7;
    }


/* =========================================================
   13. INDUSTRIES
   ========================================================= */

.tag-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

    .tag-wall a {
        padding: 2rem;
        border: 1px solid var(--line);
        margin: -1px 0 0 -1px;
        text-decoration: none;
        font-size: 1.15rem;
        font-weight: 800;
        transition: background var(--transition), color var(--transition);
    }

        .tag-wall a:hover {
            background: var(--gold);
            color: var(--black);
        }


/* =========================================================
   14. PROCESS
   ========================================================= */

.process {
    background: var(--white);
}

.process-step {
    border-top: 4px solid var(--gold);
    padding-top: 1.3rem;
    min-height: 120px;
}

    .process-step b,
    .process-step span {
        display: block;
    }

    .process-step b {
        font-size: 1.5rem;
    }

    .process-step span {
        margin-top: 1rem;
        font-weight: 700;
        color: var(--muted);
        line-height: 1.5;
    }


/* =========================================================
   15. QUOTE BAND
   ========================================================= */

.quote-band {
    background: var(--gold);
    padding: 6rem 0;
}

    .quote-band p {
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .quote-band h2 {
        font-size: clamp(2.4rem, 5vw, 5rem);
        max-width: 900px;
        font-weight: 800;
        line-height: 1.05;
        margin: 1.5rem 0 2.5rem;
    }


/* =========================================================
   16. PAGE HERO
   ========================================================= */

.page-hero {
    background: var(--ink);
    color: var(--white);
    padding: 7rem 0;
    border-bottom: 8px solid var(--gold);
}

    .page-hero h1 {
        font-size: clamp(3rem, 6vw, 6rem);
        font-weight: 700;
        letter-spacing: -.04em;
        margin: 1.5rem 0;
        line-height: 1;
    }

    .page-hero p:last-child {
        font-size: 1.25rem;
        max-width: 750px;
        color: #c9c9c9;
        line-height: 1.8;
    }


/* =========================================================
   17. FORMS
   ========================================================= */

.narrow {
    max-width: 920px;
}

.form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    padding: clamp(1.5rem, 5vw, 3.5rem);
}

    .form-panel label {
        display: block;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .06em;
        font-size: .78rem;
        margin: .9rem 0 .45rem;
    }

    .form-panel input,
    .form-panel textarea,
    .form-panel select {
        width: 100%;
        border: 1px solid #bbb;
        background: #fafafa;
        padding: 1rem;
        border-radius: 0;
        outline: none;
        transition: border-color var(--transition), box-shadow var(--transition);
    }

        .form-panel input:focus,
        .form-panel textarea:focus,
        .form-panel select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(240, 185, 0, .15);
        }

    .form-panel textarea {
        min-height: 140px;
        resize: vertical;
    }

    .form-panel span.field-validation-error {
        display: block;
        color: var(--danger);
        font-size: .82rem;
        margin-top: .3rem;
    }

    .form-panel button {
        margin-top: 1.5rem;
    }

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

    .form-grid .full {
        grid-column: 1 / -1;
    }

.form-note {
    font-size: .84rem;
    color: var(--muted);
    margin-top: 1rem;
}


/* =========================================================
   18. FOOTER
   ========================================================= */

.site-footer {
    background: #111;
    color: #ddd;
    padding: 6rem 0 2rem;
}

    .site-footer h2 {
        font-size: 1rem;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: .12em;
    }

    .site-footer a,
    .site-footer span {
        display: block;
        color: #bdbdbd;
        text-decoration: none;
        margin: .75rem 0;
        transition: color var(--transition);
    }

        .site-footer a:hover {
            color: var(--gold);
        }

.footer-logo {
    width: 180px;
    background: var(--white);
    padding: .8rem;
    margin-bottom: 1.5rem;
}

.site-footer p {
    line-height: 1.8;
    max-width: 460px;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 4rem;
    padding-top: 2rem;
    color: #777;
}


/* =========================================================
   19. WHATSAPP
   ========================================================= */

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #20c768;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    z-index: 1100;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .whatsapp:hover {
        color: var(--white);
        transform: scale(1.08);
        box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
    }


/* =========================================================
   20. EMPTY STATE
   ========================================================= */

.empty-state {
    border: 1px solid var(--line);
    background: var(--soft);
    padding: clamp(2rem, 7vw, 6rem);
    max-width: 900px;
}

    .empty-state h2 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: 800;
        letter-spacing: -.03em;
    }

    .empty-state p {
        color: var(--muted);
        line-height: 1.8;
    }


/* =========================================================
   21. CONTENT CARD
   ========================================================= */

.content-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
}

    .content-card > img {
        width: 100%;
        height: 360px;
        object-fit: cover;
    }

.content-card-body {
    padding: 2rem;
}

.content-card h2 {
    font-weight: 800;
}

.content-card p {
    color: var(--muted);
    line-height: 1.8;
}

.content-card summary {
    cursor: pointer;
    font-weight: 800;
    margin-top: 1rem;
}


/* =========================================================
   22. GALLERY
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    grid-column: span 6;
    margin: 0;
    background: #111;
    color: var(--white);
    overflow: hidden;
}

    .gallery-item:nth-child(3n) {
        grid-column: span 12;
    }

    .gallery-item img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.03);
    }

    .gallery-item figcaption {
        padding: 1.5rem;
    }

        .gallery-item figcaption b,
        .gallery-item figcaption span,
        .gallery-item figcaption small {
            display: block;
        }

        .gallery-item figcaption span {
            color: var(--gold);
            text-transform: uppercase;
            font-weight: 800;
            font-size: .75rem;
            margin: .5rem 0;
        }

        .gallery-item figcaption small {
            color: #aaa;
        }


/* =========================================================
   23. LOGIN
   ========================================================= */

.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient( 135deg, #0d0d0d, #27230f );
    padding: 1.5rem;
}

.login-card {
    width: min(100%, 480px);
    background: var(--white);
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

    .login-card > img {
        width: 140px;
        margin-bottom: 2rem;
    }

    .login-card h1 {
        font-size: 2.6rem;
        font-weight: 800;
        letter-spacing: -.04em;
    }

    .login-card p {
        color: var(--muted);
    }

    .login-card label,
    .admin-form label {
        display: block;
        font-weight: 800;
        text-transform: uppercase;
        font-size: .76rem;
        letter-spacing: .06em;
        margin: .9rem 0 .4rem;
    }

    .login-card input,
    .admin-form input,
    .admin-form textarea,
    .admin-form select {
        width: 100%;
        padding: .9rem 1rem;
        border: 1px solid #bdbdb7;
        background: #fafafa;
        outline: none;
    }

        .login-card input:focus,
        .admin-form input:focus,
        .admin-form textarea:focus,
        .admin-form select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(240, 185, 0, .15);
        }

    .login-card span.field-validation-error,
    .admin-form span.field-validation-error {
        display: block;
        color: var(--danger);
        font-size: .78rem;
    }

    .login-card button {
        margin-top: 1.5rem;
    }

.back-link {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}


/* =========================================================
   24. ADMIN
   ========================================================= */

.admin-body {
    background: #f3f2ed;
}

.admin-header {
    height: 74px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
}

    .admin-header img {
        width: 90px;
        height: 52px;
        object-fit: contain;
    }

    .admin-header span {
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .72rem;
        font-weight: 800;
        color: var(--muted);
    }

.admin-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 74px);
}

.admin-nav {
    background: #111;
    color: var(--white);
    padding: 2.5rem 2rem;
}

    .admin-nav h1 {
        font-weight: 800;
        margin-bottom: 2rem;
    }

    .admin-nav > a,
    .admin-link {
        display: block;
        width: 100%;
        color: #ccc;
        text-decoration: none;
        padding: .8rem 0;
        background: none;
        border: 0;
        text-align: left;
        font-weight: 700;
        transition: color var(--transition);
    }

        .admin-nav > a:hover,
        .admin-link:hover {
            color: var(--gold);
        }

.admin-main {
    padding: 3rem;
    min-width: 0;
}

.admin-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

    .admin-title h2 {
        font-size: clamp(2rem, 4vw, 4rem);
        font-weight: 800;
        letter-spacing: -.04em;
    }

    .admin-title p {
        color: var(--muted);
    }

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

    .metric-grid > div {
        background: #111;
        color: var(--white);
        padding: 2rem;
        border-bottom: 5px solid var(--gold);
    }

    .metric-grid span {
        display: block;
        color: #aaa;
        text-transform: uppercase;
        letter-spacing: .08em;
        font-size: .75rem;
    }

    .metric-grid strong {
        display: block;
        font-size: 3rem;
        margin-top: 1rem;
    }

.admin-panel {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 2rem;
}

    .admin-panel h3 {
        font-weight: 800;
    }

    .admin-panel table {
        margin: 0;
    }

    .admin-panel th {
        text-transform: uppercase;
        letter-spacing: .08em;
        font-size: .72rem;
        color: var(--muted);
        white-space: nowrap;
    }

    .admin-panel td {
        padding: 1rem .5rem;
    }

.status-pill,
.email-state {
    display: inline-block;
    padding: .35rem .65rem;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

    .status-pill.published,
    .status-qualified,
    .email-sent {
        background: #dcfce7;
        color: #166534;
    }

    .status-pill.draft,
    .status-new,
    .email-pending {
        background: #fef3c7;
        color: #92400e;
    }

.status-inprogress {
    background: #dbeafe;
    color: #1e40af;
}

.status-closed {
    background: #eee;
    color: #555;
}

.email-failed {
    background: #fee2e2;
    color: #991b1b;
}

.email-notconfigured {
    background: #eee;
    color: #555;
}

.admin-thumb {
    width: 78px;
    height: 54px;
    object-fit: cover;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem 1.5rem;
}

    .admin-form-grid .full {
        grid-column: 1 / -1;
    }

.admin-form textarea {
    min-height: 140px;
    resize: vertical;
}

.check-row {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

    .check-row label {
        text-transform: none;
        font-size: .9rem;
    }

    .check-row input {
        width: auto;
        margin-right: .5rem;
    }

.lead-copy {
    white-space: pre-wrap;
    line-height: 1.8;
}

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

    .detail-grid > div {
        background: var(--soft);
        padding: 1rem;
    }

    .detail-grid span,
    .detail-grid strong {
        display: block;
    }

    .detail-grid span {
        font-size: .72rem;
        text-transform: uppercase;
        color: var(--muted);
    }


/* =========================================================
   25. SYSTEM STRIP
   ========================================================= */

.system-strip {
    display: flex;
    gap: 2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 0;
    padding: 1rem 1.5rem;
    color: var(--muted);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

    .system-strip strong {
        color: var(--ink);
        margin-left: .35rem;
    }


/* =========================================================
   26. LARGE TABLET
   992px - 1199px
   ========================================================= */

@media (max-width: 1199px) {

    :root {
        --header-height: 78px;
        --section-padding: 5.5rem;
    }

    .navbar-brand img {
        width: 105px;
        height: 54px;
    }

    .nav-link {
        font-size: .72rem;
        margin: 0 .15rem;
    }

    .hero-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 6vw, 5.5rem);
    }

    .service-card {
        padding: 1.8rem;
    }

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

        .feature-grid article:nth-child(2) {
            border-right: 0;
        }

        .feature-grid article:nth-child(3),
        .feature-grid article:nth-child(4) {
            border-top: 1px solid var(--line);
        }

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

    .admin-shell {
        grid-template-columns: 220px 1fr;
    }

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


/* =========================================================
   27. TABLET
   768px - 991px
   ========================================================= */

@media (max-width: 991px) {

    :root {
        --header-height: 72px;
    }

    /* Header */

    .navbar-collapse {
        background: var(--white);
        padding: 1rem 0;
    }

    .navbar-nav {
        padding: .5rem 0;
    }

    .nav-link {
        display: block;
        padding: .75rem 0;
        font-size: .8rem;
        border-bottom: 1px solid #eee;
    }


    /* Trust */

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

        .trust-grid div {
            padding: 2rem 1rem;
            border-bottom: 1px solid var(--line);
        }

            .trust-grid div:nth-child(2n) {
                border-right: 0;
            }

            .trust-grid div:nth-child(3),
            .trust-grid div:nth-child(4) {
                border-bottom: 0;
            }


    /* Services */

    .service-card {
        padding: 1.8rem;
    }


    /* Technology */

    .split-dark img {
        min-height: 380px;
        max-height: 500px;
    }


    /* Features */

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

        .feature-grid article {
            border-right: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

            .feature-grid article:nth-child(2n) {
                border-right: 0;
            }

            .feature-grid article:nth-last-child(-n+2) {
                border-bottom: 0;
            }


    /* Industries */

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


    /* Gallery */

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

    .gallery-item,
    .gallery-item:nth-child(3n) {
        grid-column: auto;
    }

        .gallery-item img {
            height: 380px;
        }


    /* Forms */

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

        .form-grid .full {
            grid-column: auto;
        }


    /* Page hero */

    .page-hero {
        padding: 5rem 0;
    }

        .page-hero h1 {
            font-size: clamp(3rem, 8vw, 5rem);
        }


    /* Admin */

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
        overflow-x: auto;
        padding: 1rem;
    }

        .admin-nav h1,
        .admin-nav p,
        .admin-nav form {
            display: none;
        }

        .admin-nav > a {
            width: auto;
            white-space: nowrap;
        }

    .admin-main {
        padding: 2rem 1rem;
    }

    .admin-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

        .admin-form-grid .full {
            grid-column: auto;
        }
}


/* =========================================================
   28. MOBILE
   576px - 767px
   ========================================================= */

@media (max-width: 767px) {

    html {
        font-size: 15px;
    }

    body {
        font-size: 15px;
    }


    /* Container */

    .container {
        width: 90%;
    }


    /* Header */

    .navbar {
        min-height: 68px;
    }

    .navbar-brand img {
        width: 92px;
        height: 48px;
    }


    /* Hero */

    .hero-content {
        width: 100%;
    }


    /* Trust */

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

        .trust-grid div {
            padding: 1.5rem .5rem;
        }

        .trust-grid strong {
            font-size: 1.6rem;
        }

        .trust-grid span {
            font-size: .65rem;
            line-height: 1.4;
        }


    /* Sections */

    .section-pad,
    .split-dark {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-title {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        line-height: 1.08;
    }

    .kicker {
        font-size: .7rem;
    }


    /* Service cards */

    .service-card {
        padding: 1.5rem;
    }

        .service-card h3 {
            font-size: 1.3rem;
            margin: 1.3rem 0 .8rem;
        }

        .service-card p {
            font-size: .95rem;
            line-height: 1.7;
        }


    /* Technology */

    .split-dark h2 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
        line-height: 1.05;
    }

    .split-dark p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .split-dark img {
        min-height: 280px;
        max-height: 360px;
    }


    /* Feature */

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

        .feature-grid article,
        .feature-grid article:nth-child(2n),
        .feature-grid article:nth-last-child(-n+2) {
            border-right: 0;
            border-bottom: 1px solid var(--line);
        }

            .feature-grid article:last-child {
                border-bottom: 0;
            }

        .feature-grid article {
            padding: 1.5rem;
        }

        .feature-grid h3 {
            margin: 1rem 0 .6rem;
        }


    /* Industries */

    .tag-wall {
        grid-template-columns: 1fr;
    }

        .tag-wall a {
            padding: 1.2rem 1rem;
            font-size: 1rem;
        }


    /* Process */

    .process .row {
        --bs-gutter-y: 1.5rem;
    }

    .process-step {
        min-height: 100px;
    }

        .process-step b {
            font-size: 1.2rem;
        }

        .process-step span {
            font-size: .85rem;
            margin-top: .7rem;
        }


    /* Quote */

    .quote-band {
        padding: 4rem 0;
    }

        .quote-band h2 {
            font-size: clamp(2.2rem, 10vw, 3.5rem);
            line-height: 1.08;
        }

        .quote-band .btn {
            width: 100%;
        }


    /* Page hero */

    .page-hero {
        padding: 4rem 0;
    }

        .page-hero h1 {
            font-size: clamp(2.7rem, 11vw, 4rem);
        }

        .page-hero p:last-child {
            font-size: 1rem;
        }


    /* Content cards */

    .content-card > img {
        height: 280px;
    }

    .content-card-body {
        padding: 1.5rem;
    }


    /* Gallery */

    .gallery-item img {
        height: 280px;
    }

    .gallery-item figcaption {
        padding: 1.2rem;
    }


    /* Forms */

    .form-panel {
        padding: 1.5rem;
    }

        .form-panel input,
        .form-panel textarea,
        .form-panel select {
            font-size: 16px;
        }


    /* Login */

    .login-page {
        padding: 1rem;
    }

    .login-card {
        padding: 2rem 1.5rem;
    }

        .login-card h1 {
            font-size: 2.2rem;
        }


    /* Footer */

    .site-footer {
        padding: 4rem 0 2rem;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-bottom {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }


    /* WhatsApp */

    .whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}


/* =========================================================
   29. SMALL MOBILE
   0px - 575px
   ========================================================= */

@media (max-width: 575px) {

    .container {
        width: 90%;
    }


    /* Hero */

    .hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
        line-height: 1;
    }

    .hero-copy {
        font-size: .92rem;
    }


    /* Trust */

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

        .trust-grid div {
            min-height: 105px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .trust-grid strong {
            font-size: 1.4rem;
        }

        .trust-grid span {
            font-size: .58rem;
        }


    /* Section */

    .section-pad,
    .split-dark {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }


    /* Cards */

    .service-card,
    .info-card {
        padding: 1.3rem;
    }


    /* Technology */

    .split-dark img {
        min-height: 240px;
        max-height: 280px;
    }


    /* Feature */

    .feature-grid article {
        padding: 1.3rem;
    }


    /* Industries */

    .tag-wall a {
        padding: 1rem;
    }


    /* Process */

    .process-step {
        min-height: 90px;
    }


    /* Quote */

    .quote-band {
        padding: 3.5rem 0;
    }

        .quote-band h2 {
            font-size: 2.25rem;
        }


    /* Forms */

    .form-panel {
        padding: 1.2rem;
    }


    /* Details */

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


    /* Admin */

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

    .admin-main {
        padding: 1.5rem 1rem;
    }

    .admin-panel {
        padding: 1rem;
        overflow-x: auto;
    }


    /* Footer */

    .site-footer {
        padding-top: 3.5rem;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}


/* =========================================================
   30. EXTRA SMALL PHONES
   BELOW 400px
   ========================================================= */

@media (max-width: 399px) {

    .container {
        width: 92%;
    }


    /* Hero */

    .hero h1 {
        font-size: 2.2rem;
    }

    .eyebrow {
        font-size: .58rem;
        letter-spacing: .08em;
    }

    .hero-copy {
        font-size: .88rem;
    }


    /* Trust */

    .trust-grid strong {
        font-size: 1.25rem;
    }

    .trust-grid span {
        font-size: .54rem;
    }


    /* Sections */

    .section-title {
        font-size: 2rem;
    }

    .split-dark h2 {
        font-size: 2.2rem;
    }

    .quote-band h2 {
        font-size: 2rem;
    }


    /* Buttons */

    .btn {
        padding: .8rem 1rem;
        font-size: .78rem;
    }
}


/* =========================================================
   31. VERY SMALL DEVICES
   BELOW 360px
   ========================================================= */

@media (max-width: 359px) {

    .container {
        width: 94%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .trust-grid strong {
        font-size: 1.15rem;
    }

    .trust-grid span {
        font-size: .5rem;
    }

    .section-title {
        font-size: 1.85rem;
    }
}


/* =========================================================
   32. ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    /*
       Hide hero video for users who request
       reduced motion.
    */

    .hero-video {
        display: none;
    }

    .hero {
        background: linear-gradient( rgba(0, 0, 0, .75), rgba(0, 0, 0, .75) ), #111;
    }
}


/* =========================================================
   33. PRINT
   ========================================================= */

@media print {

    .site-header,
    .site-footer,
    .whatsapp,
    .hero-video,
    .hero-shade,
    .btn {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero,
    .split-dark,
    .quote-band {
        color: #000;
        background: #fff;
    }
}
