/* =========================
   DT PROPERTY IMPROVEMENTS
   BASE STYLES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
}

.header-inner {
    width: 92%;
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 190px;
    height: 65px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-nav a {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #d3131b;
}

.header-cta {
    padding: 13px 24px;

    background: #d3131b;
    color: #ffffff;

    border: 1px solid #d3131b;

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    transition: all 0.25s ease;
}

.header-cta:hover {
    background: #ffffff;
    color: #050505;
    border-color: #ffffff;
}


/* =========================
   FIXED BACKGROUND WATERMARK
========================= */

body > .site-watermark {
    position: fixed;
    top: 50%;
    left: 50%;

    width: 1200px;
    max-width: 85vw;
    height: auto;

    transform: translate(-50%, -50%);

    z-index: 0;
    pointer-events: none;

    opacity: 0.075;
}

body > .site-watermark img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;

    filter: grayscale(1) invert(1) contrast(1.4);
    mix-blend-mode: screen;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    z-index: 1;

    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;
}


/* =========================
   HERO LEFT
========================= */

.hero-left {
    position: absolute;

    left: 27%;
    top: 55%;

    transform: translateY(-50%);

    width: 650px;
    max-width: 650px;

    z-index: 2;
}

.hero-label {
    margin-bottom: 26px;

    color: #d3131b;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero h1 {
    display: flex;
    flex-direction: column;

    margin: 0;

    font-size: clamp(4.3rem, 5vw, 6.6rem);
    font-weight: 900;

    line-height: 0.94;
    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;
}

.hero h1 span:nth-child(3) {
    margin-top: 22px;
}

.hero h1 .hero-muted {
    color: #777777;
}

.hero-text {
    width: 100%;
    max-width: 560px;

    margin: 36px 0 38px;

    color: #a9a9a9;

    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 16px;
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 30px;

    font-size: 0.88rem;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.hero-primary {
    background: #d3131b;
    color: #ffffff;

    border: 1px solid #d3131b;
}

.hero-primary:hover {
    background: #ffffff;
    color: #050505;

    border-color: #ffffff;

    transform: translateY(-3px);
}

.hero-secondary {
    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.20);
}

.hero-secondary:hover {
    background: rgba(255, 255, 255, 0.06);

    border-color: rgba(255, 255, 255, 0.60);

    transform: translateY(-3px);
}


/* =========================
   HERO SECTORS
========================= */

.hero-sectors {
    margin-top: 38px;

    color: #696969;

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}

.sector-item {
    display: inline-block;

    color: #696969;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        text-shadow 0.3s ease;
}

.sector-item:hover {
    color: #d3131b;
    transform: translateY(-2px);
    text-shadow: 0 0 14px rgba(211, 19, 27, 0.30);
}

.sector-dot {
    margin: 0 10px;
    color: #d3131b;
}


/* =========================
   HERO RIGHT CTA
========================= */

.hero-contact {
    position: absolute;

    right: 12%;
    top: 55%;

    transform: translateY(-50%);

    width: 430px;

    padding-left: 28px;

    border-left: 1px solid rgba(211, 19, 27, 0.45);

    z-index: 2;
}

.hero-contact-label {
    margin-bottom: 18px;

    color: #d3131b;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.hero-contact h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.4rem, 3vw, 3.6rem);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-contact h2 span {
    color: #d3131b;
}

.hero-contact-sectors {
    margin-top: 22px;

    color: #666666;

    font-size: 0.64rem;
    font-weight: 600;

    letter-spacing: 0.15em;
}

.hero-contact-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 24px;
    padding-bottom: 5px;

    color: #ffffff;

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

    font-size: 0.82rem;
    font-weight: 700;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}

.hero-contact-link:hover {
    color: #d3131b;
    border-color: #d3131b;

    gap: 15px;
}


/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .hero {
        min-height: auto;

        padding: 150px 6% 100px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 70px;
    }

    .hero-left,
    .hero-contact {
        position: relative;

        left: auto;
        right: auto;
        top: auto;

        transform: none;
    }

    .hero-left {
        width: 100%;
        max-width: 700px;
    }

    .hero-contact {
        width: 100%;
        max-width: 420px;
    }

}

@media (max-width: 700px) {

    .hero {
        padding: 130px 5% 90px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 15vw, 5rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }

    .hero-sectors {
        line-height: 2;
    }

    .hero-contact {
        padding-left: 22px;
    }

}

/* =========================
   SERVICES
========================= */

.services {
    position: relative;
    z-index: 1;

    padding: 140px 8%;

    border-top: 1px solid rgba(211, 19, 27, 0.55);

box-shadow:
    inset 0 1px 0 rgba(211, 19, 27, 0.25),
    0 -8px 30px rgba(211, 19, 27, 0.14);
}


/* =========================
   SERVICES HEADING
========================= */

.services-heading {
    width: min(1400px, 100%);

    margin: 0 auto 75px;
}

.section-label {
    margin-bottom: 24px;

    color: #d3131b;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.services-heading h2 {
    max-width: 900px;

    margin-bottom: 34px;

    color: #ffffff;

    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 800;

    line-height: 1.04;
    letter-spacing: -0.045em;
}

.services-intro {
    max-width: 720px;

    color: #a9a9a9;

    font-size: 1.05rem;
    line-height: 1.85;
}


/* =========================
   SERVICES GRID
========================= */

.services-grid {
    width: min(1400px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================
   SERVICE CARDS
========================= */

.service-card {
    position: relative;

    min-height: 210px;

    padding: 36px 34px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: #d3131b;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.035);

    border-color: rgba(211, 19, 27, 0.42);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(211, 19, 27, 0.05);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    margin-bottom: 16px;

    color: #ffffff;

    font-size: 1.35rem;
    font-weight: 700;

    letter-spacing: -0.02em;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.service-card p {
    color: #8f8f8f;

    font-size: 0.95rem;
    line-height: 1.75;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.service-card:hover h3 {
    color: #d3131b;
    transform: translateY(-3px);
}

.service-card:hover p {
    color: #bcbcbc;
    transform: translateY(-3px);
}


/* =========================
   SERVICES RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {

    .services {
        padding: 110px 5%;
    }

    .services-heading {
        margin-bottom: 55px;
    }

    .services-heading h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: 0;
        padding: 30px;
    }

}

/* =========================
   PROJECTS
========================= */

.projects {
    position: relative;
    z-index: 1;

    padding: 140px 8%;

    border-top: 1px solid rgba(211, 19, 27, 0.55);

    box-shadow:
        inset 0 1px 0 rgba(211, 19, 27, 0.25),
        0 -8px 30px rgba(211, 19, 27, 0.14);
}


/* =========================
   PROJECTS HEADING
========================= */

.projects-heading {
    width: min(1400px, 100%);
    margin: 0 auto 75px;
}

.projects-heading h2 {
    max-width: 900px;

    margin-bottom: 34px;

    color: #ffffff;

    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 800;

    line-height: 1.04;
    letter-spacing: -0.045em;
}

.projects-heading h2 span {
    color: #777777;
}

.projects-intro {
    max-width: 720px;

    color: #a9a9a9;

    font-size: 1.05rem;
    line-height: 1.85;
}


/* =========================
   PROJECTS GRID
========================= */

.projects-grid {
    width: min(1400px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}

/* =========================
   PROJECT CARDS
========================= */

.project-card {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.035);

    border-color: rgba(211, 19, 27, 0.42);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(211, 19, 27, 0.05);
}


/* =========================
   PROJECT IMAGE AREA
========================= */

.project-image {
    width: 100%;
    aspect-ratio: 4 / 5;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.01)
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================
   PROJECT INFO
========================= */

.project-info {
    padding: 30px;
}

.project-type {
    margin-bottom: 14px;

    color: #d3131b;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.20em;
}

.project-info h3 {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 1.35rem;
    font-weight: 700;

    letter-spacing: -0.02em;
}

.project-info > p:last-child {
    color: #8f8f8f;

    font-size: 0.95rem;
    line-height: 1.75;
}


/* =========================
   PROJECTS RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {

    .projects {
        padding: 110px 5%;
    }

    .projects-heading {
        margin-bottom: 55px;
    }

    .projects-heading h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}

/* =========================
   PROJECT BEFORE / AFTER
========================= */

.project-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-photo {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.project-photo:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.project-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.project-card:hover .project-photo img {
    transform: scale(1.04);
}

.project-tag {
    position: absolute;
    top: 14px;
    left: 14px;

    z-index: 2;

    padding: 7px 10px;

    background: rgba(5, 5, 5, 0.82);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    backdrop-filter: blur(10px);
}

/* =========================
   SCROLL REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(55px);

    transition:
    opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.reveal-show {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

/* =========================
   PROJECT IMAGE HOVER ZOOM
========================= */

.project-image {
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

/* =========================
   ABOUT
========================= */

.about {
    position: relative;
    z-index: 1;

    padding: 140px 8%;

    border-top: 1px solid rgba(211, 19, 27, 0.55);

    box-shadow:
        inset 0 1px 0 rgba(211, 19, 27, 0.25),
        0 -8px 30px rgba(211, 19, 27, 0.14);
}

.about-inner {
    width: min(1400px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 100px;
    align-items: start;
}


/* =========================
   ABOUT LEFT
========================= */

.about-left h2 {
    max-width: 650px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.about-left h2 span {
    color: #777777;
}


/* =========================
   ABOUT RIGHT
========================= */

.about-right {
    max-width: 760px;
}

.about-right > p {
    margin-bottom: 26px;

    color: #969696;

    font-size: 1.02rem;
    line-height: 1.9;
}

.about-right .about-lead {
    color: #d0d0d0;

    font-size: 1.18rem;
}


/* =========================
   ABOUT VALUES
========================= */

.about-values {
    margin-top: 58px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    width: calc(100% + 700px);
transform: translateX(-700px);
}

.about-value {
    position: relative;

    min-height: 190px;

    padding: 28px 26px;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.about-value:hover {
    transform: translateY(-7px);

    background: rgba(255, 255, 255, 0.035);

    border-color: rgba(211, 19, 27, 0.42);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(211, 19, 27, 0.05);
}


.about-value h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 1.2rem;
    font-weight: 700;

    letter-spacing: -0.02em;
}

.about-value p {
    color: #858585;

    font-size: 0.9rem;
    line-height: 1.7;
}


/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}

@media (max-width: 700px) {

    .about {
        padding: 110px 5%;
    }

    .about-left h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}

/* =========================
   ABOUT SPRAY GUN
========================= */

.about-left {
    position: relative;
    overflow: visible;
}

.spray-scene {
    position: relative;

    width: 100%;
    height: 280px;

    margin-top: 35px;

    overflow: hidden;
    pointer-events: none;
}


/* =========================
   SPRAY GUN
========================= */

.spray-gun {
    position: absolute;

    left: 0;
    top: 48px;

    width: 150px;
    height: 140px;

    transform: scale(1.18);
transform-origin: left center;

    opacity: 0.72;

    filter: drop-shadow(
        0 0 18px rgba(211, 19, 27, 0.08)
    );
}

.gun-body {
    position: absolute;

    left: 35px;
    top: 48px;

    width: 78px;
    height: 34px;

    background: linear-gradient(
        145deg,
        #494949,
        #181818
    );

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px 14px 14px 8px;
}

.gun-nozzle {
    position: absolute;

    left: 108px;
    top: 57px;

    width: 38px;
    height: 13px;

    background: #313131;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 8px 8px 0;
}

.gun-nozzle::after {
    content: "";

    position: absolute;

    right: -9px;
    top: 3px;

    width: 10px;
    height: 7px;

    background: #d3131b;

    border-radius: 0 5px 5px 0;

    box-shadow:
        0 0 12px rgba(211, 19, 27, 0.45);
}

.gun-cup {
    position: absolute;

    left: 48px;
    top: 4px;

    width: 48px;
    height: 40px;

    background: linear-gradient(
        145deg,
        #353535,
        #151515
    );

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 12px 12px 7px 7px;
}

.gun-cup::after {
    content: "";

    position: absolute;

    left: 18px;
    bottom: -10px;

    width: 12px;
    height: 10px;

    background: #292929;
}

.gun-handle {
    position: absolute;

    left: 56px;
    top: 76px;

    width: 28px;
    height: 62px;

    background: linear-gradient(
        to bottom,
        #333333,
        #171717
    );

    border: 1px solid rgba(255, 255, 255, 0.16);

    clip-path: polygon(
        10% 0,
        100% 0,
        78% 100%,
        0 100%
    );

    transform: rotate(7deg);
    transform-origin: top;
}

.gun-trigger {
    position: absolute;

    left: 82px;
    top: 76px;

    width: 18px;
    height: 28px;

    border: 2px solid #555555;
    border-left: none;

    border-radius: 0 12px 12px 0;
}


/* =========================
   SPRAY PARTICLES
========================= */

.spray-particles {
    position: absolute;

    left: 140px;
    top: 50px;

    width: 560px;
height: 155px;

    overflow: hidden;
}

.spray-particles span {
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background-image:
        radial-gradient(
            circle,
            rgba(211, 19, 27, 0.90) 0 1.2px,
            transparent 1.7px
        ),
        radial-gradient(
            circle,
            rgba(211, 19, 27, 0.65) 0 0.9px,
            transparent 1.5px
        ),
        radial-gradient(
            circle,
            rgba(211, 19, 27, 0.45) 0 1px,
            transparent 1.6px
        );

    background-size:
    22px 17px,
    30px 24px,
    39px 29px;

    background-position:
        0 0,
        8px 6px,
        15px 3px;

    clip-path: polygon(
        0 47%,
        100% 12%,
        100% 88%,
        0 53%
    );

    filter: blur(0.35px);

    opacity: 0;

    transform: scaleX(0.7);
    transform-origin: left center;

    animation: sprayBurst 3.8s ease-in-out infinite;
}

.spray-particles span:nth-child(2) {
    background-size: 14px 14px;
    animation-delay: 0.35s;
}

.spray-particles span:nth-child(3) {
    background-size: 9px 9px;
    animation-delay: 0.7s;
}

.spray-particles span:nth-child(4) {
    background-size: 17px 17px;
    animation-delay: 1.05s;
}

.spray-particles::before {
    content: "";

    position: absolute;

    left: 0;
    top: 32px;

    width: 100%;
    height: 65px;

    background: linear-gradient(
        to right,
        rgba(211, 19, 27, 0.28),
        rgba(211, 19, 27, 0.14) 45%,
        rgba(211, 19, 27, 0.05) 72%,
        transparent 100%
    );

    clip-path: polygon(
        0 42%,
        100% 0,
        100% 100%,
        0 58%
    );

    filter: blur(16px);

    opacity: 0.65;

    pointer-events: none;
}

/* =========================
   SPRAY ANIMATION
========================= */

@keyframes sprayBurst {

    0% {
        opacity: 0;
        transform: scaleX(0.25);
    }

    18% {
        opacity: 0.75;
    }

    55% {
        opacity: 0.48;
        transform: scaleX(1);
    }

    82% {
        opacity: 0.16;
    }

    100% {
        opacity: 0;
        transform: scaleX(1.08);
    }

}

/* =========================
   CONTACT
========================= */

.contact {
    position: relative;
    z-index: 1;

    padding: 140px 8%;

    border-top: 1px solid rgba(211, 19, 27, 0.55);

    box-shadow:
        inset 0 1px 0 rgba(211, 19, 27, 0.25),
        0 -8px 30px rgba(211, 19, 27, 0.14);
}

.contact-inner {
    width: min(1400px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 110px;
    align-items: start;
}


/* =========================
   CONTACT LEFT
========================= */

.contact-left h2 {
    max-width: 650px;

    margin: 0 0 34px;

    color: #ffffff;

    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.contact-left h2 span {
    color: #777777;
}

.contact-intro {
    max-width: 620px;

    color: #a0a0a0;

    font-size: 1.05rem;
    line-height: 1.9;
}

.contact-points {
    margin-top: 46px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.contact-points p {
    position: relative;

    padding-left: 18px;

    color: #7f7f7f;

    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.contact-points p::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 5px;
    height: 5px;

    background: #d3131b;
    border-radius: 50%;

    transform: translateY(-50%);
}


/* =========================
   CONTACT FORM
========================= */

.contact-form {
    padding: 38px;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 20px;
}

.form-group label {
    color: #d3131b;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    background: rgba(255, 255, 255, 0.025);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;

    font-family: "Inter", sans-serif;
    font-size: 0.95rem;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.04);

    border-color: rgba(211, 19, 27, 0.65);

    box-shadow:
        0 0 0 3px rgba(211, 19, 27, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0a0a0a;
    color: #ffffff;
}


/* =========================
   CONTACT BUTTON
========================= */

.contact-submit {
    width: 100%;

    margin-top: 8px;
    padding: 17px 30px;

    background: #d3131b;
    color: #ffffff;

    border: 1px solid #d3131b;

    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-submit:hover {
    background: #ffffff;
    color: #050505;

    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35);
}


/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .contact-inner {
        grid-template-columns: 1fr;

        gap: 65px;
    }

}

@media (max-width: 700px) {

    .contact {
        padding: 110px 5%;
    }

    .contact-left h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .contact-form {
        padding: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* =========================
   FOOTER
========================= */

.footer {
    position: relative;
    z-index: 1;

    padding: 90px 8% 45px;

    border-top: 1px solid rgba(211, 19, 27, 0.55);

    box-shadow:
        inset 0 1px 0 rgba(211, 19, 27, 0.25),
        0 -8px 30px rgba(211, 19, 27, 0.14);
}

.footer-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
}


/* =========================
   FOOTER TOP
========================= */

.footer-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}

.footer-brand {
    max-width: 620px;
}

.footer-brand h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 2rem;
    font-weight: 800;

    letter-spacing: -0.035em;
}

.footer-brand p {
    color: #858585;

    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.footer-nav a {
    position: relative;

    color: #8a8a8a;

    font-size: 0.88rem;
    font-weight: 600;

    transition: color 0.3s ease;
}

.footer-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #d3131b;

    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav a:hover::after {
    width: 100%;
}


/* =========================
   FOOTER DIVIDER
========================= */

.footer-divider {
    width: 100%;
    height: 1px;

    margin: 55px 0 28px;

    background: rgba(255, 255, 255, 0.07);
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-bottom p {
    color: #5f5f5f;

    font-size: 0.78rem;
    letter-spacing: 0.03em;
}


/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 850px) {

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

}

@media (max-width: 700px) {

    .footer {
        padding: 75px 5% 35px;
    }

}

/* =========================
   PORTFOLIO HERO
========================= */

.portfolio-page {
    position: relative;
    z-index: 1;
}

.portfolio-hero {
    position: relative;

    min-height: 72vh;

    padding: 170px 8% 110px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(211, 19, 27, 0.55);

    box-shadow:
        inset 0 -1px 0 rgba(211, 19, 27, 0.22),
        0 8px 30px rgba(211, 19, 27, 0.10);
}

.portfolio-hero-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
}

.portfolio-hero h1 {
    max-width: 1250px;

    margin: 0 0 38px;

    color: #ffffff;

    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 900;

    line-height: 0.94;
    letter-spacing: -0.05em;
}

.portfolio-hero h1 span {
    color: #777777;
}

.portfolio-hero-text {
    max-width: 720px;

    color: #a0a0a0;

    font-size: 1.08rem;
    line-height: 1.9;
}


/* =========================
   PORTFOLIO HERO RESPONSIVE
========================= */

@media (max-width: 700px) {

    .portfolio-hero {
        min-height: auto;
        padding: 145px 5% 95px;
    }

    .portfolio-hero h1 {
        font-size: clamp(3.3rem, 14vw, 5rem);
    }

}

/* =========================
   PORTFOLIO GALLERY
========================= */

.portfolio-gallery {
    position: relative;
    z-index: 1;

    padding: 140px 8%;
}

.portfolio-gallery-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
}


/* =========================
   PORTFOLIO GALLERY HEADING
========================= */

.portfolio-gallery-heading {
    max-width: 850px;

    margin-bottom: 80px;
}

.portfolio-gallery-heading h2 {
    margin: 0 0 32px;

    color: #ffffff;

    font-size: clamp(3.4rem, 5vw, 5.2rem);
    font-weight: 800;

    line-height: 0.98;
    letter-spacing: -0.05em;
}

.portfolio-gallery-heading h2 span {
    color: #777777;
}

.portfolio-gallery-heading > p:last-child {
    max-width: 700px;

    color: #a0a0a0;

    font-size: 1.05rem;
    line-height: 1.85;
}


/* =========================
   PORTFOLIO GALLERY RESPONSIVE
========================= */

@media (max-width: 700px) {

    .portfolio-gallery {
        padding: 110px 5%;
    }

    .portfolio-gallery-heading {
        margin-bottom: 60px;
    }

    .portfolio-gallery-heading h2 {
        font-size: clamp(3rem, 13vw, 4.4rem);
    }

}

/* =========================
   PORTFOLIO PROJECT
========================= */

.portfolio-project {
    margin-top: 30px;
    padding-top: 70px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-project-heading {
    max-width: 760px;

    margin-bottom: 42px;
}

.portfolio-project-heading .project-type {
    margin-bottom: 16px;
}

.portfolio-project-heading h3 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;

    line-height: 1.05;
    letter-spacing: -0.04em;
}

.portfolio-project-heading > p:last-child {
    max-width: 680px;

    color: #969696;

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================
   PORTFOLIO BEFORE / AFTER
========================= */

.portfolio-project-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}

.portfolio-photo {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #090909;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
}

.portfolio-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-photo:hover img {
    transform: scale(1.045);
}

.portfolio-photo .project-tag {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;
}


/* =========================
   PORTFOLIO PROJECT RESPONSIVE
========================= */

@media (max-width: 800px) {

    .portfolio-project-images {
        grid-template-columns: 1fr;
    }

    .portfolio-photo {
        aspect-ratio: 4 / 5;
    }

}

/* =========================
   PORTFOLIO CATEGORIES
========================= */

.portfolio-category {
    margin-top: 120px;
    padding-top: 110px;

    border-top: 1px solid rgba(211, 19, 27, 0.45);

    box-shadow:
        0 -8px 30px rgba(211, 19, 27, 0.08);
}

.portfolio-category-heading {
    margin-bottom: 65px;
}

.portfolio-category-heading h2 {
    max-width: 900px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -0.05em;
}

.portfolio-category-heading h2 span {
    color: #777777;
}


/* MORE SPACE BETWEEN PROJECTS */

.portfolio-category .portfolio-project + .portfolio-project {
    margin-top: 110px;
}


/* MOBILE */

@media (max-width: 700px) {

    .portfolio-category {
        margin-top: 90px;
        padding-top: 85px;
    }

    .portfolio-category-heading {
        margin-bottom: 50px;
    }

    .portfolio-category .portfolio-project + .portfolio-project {
        margin-top: 80px;
    }
    .portfolio-hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.portfolio-hero-text {
    max-width: 100%;
}

.portfolio-gallery-heading h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 3.5rem);
    line-height: 1;
}

}

/* =========================
   PORTFOLIO CTA
========================= */

.portfolio-cta {
    position: relative;
    z-index: 1;

    padding: 140px 8%;

    border-top: 1px solid rgba(211, 19, 27, 0.55);

    box-shadow:
        inset 0 1px 0 rgba(211, 19, 27, 0.25),
        0 -8px 30px rgba(211, 19, 27, 0.14);
}

.portfolio-cta-inner {
    width: min(1400px, 100%);
    margin: 0 auto;

    text-align: center;
}

.portfolio-cta h2 {
    max-width: 1000px;

    margin: 0 auto 32px;

    color: #ffffff;

    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;

    line-height: 0.98;
    letter-spacing: -0.05em;
}

.portfolio-cta h2 span {
    color: #777777;
}

.portfolio-cta-inner > p:not(.section-label) {
    max-width: 700px;

    margin: 0 auto 42px;

    color: #969696;

    font-size: 1.05rem;
    line-height: 1.85;
}

.portfolio-cta-button {
    display: inline-block;

    padding: 16px 32px;

    background: #d3131b;
    color: #ffffff;

    border: 1px solid #d3131b;

    font-size: 0.88rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-cta-button:hover {
    background: #ffffff;
    color: #050505;

    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35);
}


/* MOBILE */

@media (max-width: 700px) {

    .portfolio-cta {
        padding: 110px 5%;
    }

    .portfolio-cta h2 {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

}

/* =========================
   PROJECTS PORTFOLIO BUTTON
========================= */

.projects-portfolio-link {
    display: flex;
    justify-content: center;

    margin-top: 70px;
}

.projects-portfolio-button {
    display: inline-block;

    padding: 16px 32px;

    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.18);

    font-size: 0.88rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.projects-portfolio-button:hover {
    background: #d3131b;
    color: #ffffff;

    border-color: #d3131b;

    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(211, 19, 27, 0.18);
}

/* =========================
   QUOTE FORM SUCCESS
========================= */

.contact-form {
    position: relative;
    overflow: hidden;
}


/* SUCCESS OVERLAY */

.form-success-overlay {
    position: absolute;
    inset: 0;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(5, 5, 5, 0.97);

    border-radius: inherit;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.contact-form.form-success .form-success-overlay {
    opacity: 1;
    visibility: visible;
}


/* =========================
   RED SPRAY PASS
========================= */

.form-success-spray {
    position: absolute;

    left: -55%;
    top: 50%;

    width: 75%;
    height: 150px;

    transform:
        translateY(-50%)
        scaleX(0.3);

    transform-origin: left center;

    background-image:
        radial-gradient(
            circle,
            rgba(211, 19, 27, 0.95) 0 1.3px,
            transparent 1.9px
        ),
        radial-gradient(
            circle,
            rgba(211, 19, 27, 0.65) 0 1px,
            transparent 1.7px
        ),
        radial-gradient(
            circle,
            rgba(211, 19, 27, 0.40) 0 0.8px,
            transparent 1.5px
        );

    background-size:
        18px 15px,
        27px 22px,
        39px 31px;

    background-position:
        0 0,
        7px 9px,
        17px 4px;

    clip-path: polygon(
        0 45%,
        100% 8%,
        100% 92%,
        0 55%
    );

    filter: blur(0.4px);

    opacity: 0;
}


/* SOFT PAINT HAZE */

.form-success-spray::before {
    content: "";

    position: absolute;

    inset: 30% 0;

    background: linear-gradient(
        to right,
        rgba(211, 19, 27, 0.35),
        rgba(211, 19, 27, 0.16) 55%,
        transparent 100%
    );

    filter: blur(18px);
}


/* FIRE THE SPRAY WHEN SUCCESSFUL */

.contact-form.form-success .form-success-spray {
    animation:
        formSprayPass 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes formSprayPass {

    0% {
        left: -55%;
        opacity: 0;

        transform:
            translateY(-50%)
            scaleX(0.25);
    }

    15% {
        opacity: 1;
    }

    55% {
        left: 28%;
        opacity: 0.9;

        transform:
            translateY(-50%)
            scaleX(1);
    }

    100% {
        left: 110%;
        opacity: 0;

        transform:
            translateY(-50%)
            scaleX(1.15);
    }

}


/* =========================
   SUCCESS MESSAGE
========================= */

.form-success-message {
    position: relative;
    z-index: 2;

    max-width: 600px;

    text-align: center;

    opacity: 0;

    transform: translateY(18px);

    filter: blur(7px);
}

.contact-form.form-success .form-success-message {
    animation:
        formMessageReveal 1s cubic-bezier(0.16, 1, 0.3, 1)
        0.72s forwards;
}

@keyframes formMessageReveal {

    from {
        opacity: 0;

        transform: translateY(18px);

        filter: blur(7px);
    }

    to {
        opacity: 1;

        transform: translateY(0);

        filter: blur(0);
    }

}


/* SUCCESS TEXT */

.form-success-label {
    margin-bottom: 20px;

    color: #d3131b;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.form-success-message h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 900;

    line-height: 0.98;
    letter-spacing: -0.05em;
}

.form-success-message h3 span {
    color: #d3131b;
}

.form-success-text {
    margin-top: 26px;

    color: #969696;

    font-size: 1rem;
    line-height: 1.7;
}

/* ==================================================
   ABOUT VALUES - TABLET
================================================== */

@media (min-width: 769px) and (max-width: 1100px) {

    .about-values {
        width: 100%;
        transform: none;

        grid-template-columns: 1fr;
        gap: 16px;

        margin-top: 48px;
    }

    .about-value {
        width: 100%;
        min-height: 0;
        padding: 26px 24px;
    }

}


/* ==================================================
   ABOUT VALUES - PHONE
================================================== */

@media (max-width: 768px) {

    .about-values {
        width: 100%;
        transform: none;

        grid-template-columns: 1fr;
        gap: 16px;

        margin-top: 40px;
    }

    .about-value {
        width: 100%;
        min-height: 0;
        padding: 24px 22px;
    }

}

/* ==================================================
   MOBILE HEADER
================================================== */

/* Hidden on desktop + tablet */
.mobile-brand,
.mobile-menu-toggle {
    display: none;
}


/* PHONE ONLY */
@media (max-width: 768px) {

    .header-inner {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 0 22px;
    }


    /* Hide desktop quote button */

    .header-cta {
        display: none;
    }


    /* DT PROPERTY */

    .mobile-brand {
        display: block;

        color: #ffffff;

        font-size: 0.85rem;
        font-weight: 800;

        letter-spacing: 0.12em;
        text-decoration: none;
    }


    /* HAMBURGER */

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 44px;
        height: 44px;

        padding: 0;

        background: transparent;
        border: 0;

        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;

        width: 24px;
        height: 2px;

        margin: 3px 0;

        background: #ffffff;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    /* MOBILE DROPDOWN */

    .main-nav {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 14px 22px 20px;

        background: #050505;

        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(211, 19, 27, 0.35);

        z-index: 1000;
    }

    .main-nav a {
        width: 100%;

        padding: 16px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }


    /* OPEN MENU */

    .site-header.menu-open .main-nav {
        display: flex;
    }


    /* HAMBURGER → X */

    .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

/* ==================================================
   PORTFOLIO - PHONE
================================================== */

@media (max-width: 700px) {

    .portfolio-project {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .portfolio-project-heading {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .portfolio-project-images {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-photo {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .portfolio-photo img {
        display: block;

        width: 100%;
        max-width: 100%;
        height: auto;
    }

}

/* ==================================================
   CUSTOMER TERMS / LEGAL PAGE
================================================== */

.legal-page {
    position: relative;
    z-index: 1;

    background: #050505;
}


/* HERO */

.legal-hero {
    padding: 170px 8% 110px;

    border-bottom: 1px solid rgba(211, 19, 27, 0.55);

    box-shadow:
        inset 0 -1px 0 rgba(211, 19, 27, 0.18),
        0 8px 30px rgba(211, 19, 27, 0.08);
}

.legal-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.legal-label {
    margin-bottom: 24px;

    color: #d3131b;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.legal-hero h1 {
    max-width: 900px;

    margin: 0 0 34px;

    color: #ffffff;

    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 900;

    line-height: 0.93;
    letter-spacing: -0.055em;
}

.legal-hero h1 span {
    color: #777777;
}

.legal-intro {
    max-width: 760px;

    margin: 0;

    color: #a0a0a0;

    font-size: 1.08rem;
    line-height: 1.9;
}


/* MAIN LEGAL CONTENT */

.legal-content {
    padding: 100px 8% 140px;
}

.legal-section {
    padding: 46px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section h2 {
    max-width: 850px;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;

    line-height: 1.15;
    letter-spacing: -0.035em;
}

.legal-section h3 {
    margin: 34px 0 14px;

    color: #ffffff;

    font-size: 1.05rem;
    font-weight: 700;
}

.legal-section p {
    max-width: 850px;

    margin: 0 0 18px;

    color: #969696;

    font-size: 1rem;
    line-height: 1.85;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 700;
}


/* IMPORTANT CLAUSES */

.legal-highlight {
    position: relative;

    margin: 50px 0;

    padding: 46px;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(211, 19, 27, 0.32);
border-top: 2px solid #d3131b;
    border-radius: 18px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(211, 19, 27, 0.035);
}


.legal-highlight-label {
    margin-bottom: 16px !important;

    color: #d3131b !important;

    font-size: 0.7rem !important;
    font-weight: 800;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* ==================================================
   LEGAL PAGE - TABLET
================================================== */

@media (min-width: 769px) and (max-width: 1100px) {

    .legal-hero {
        padding:
            150px 7%
            90px;
    }

    .legal-content {
        padding:
            80px 7%
            110px;
    }

    .legal-highlight {
        padding: 38px;
    }

}


/* ==================================================
   LEGAL PAGE - PHONE
================================================== */

@media (max-width: 768px) {

    .legal-hero {
        padding:
            130px 22px
            70px;
    }

    .legal-hero h1 {
        font-size: clamp(3rem, 14vw, 4.3rem);
    }

    .legal-intro {
        font-size: 1rem;
        line-height: 1.8;
    }

    .legal-content {
        padding:
            65px 22px
            90px;
    }

    .legal-section {
        padding: 36px 0;
    }

    .legal-section h2 {
        font-size: 1.6rem;
    }

    .legal-section p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .legal-highlight {
        margin: 36px 0;
        padding: 30px 24px;

        border-radius: 14px;
    }

}

/* ==================================================
   LEGAL PAGE FOOTER
================================================== */

.legal-page + .site-footer {
    padding: 70px 8% 45px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: #050505;
}

.legal-page + .site-footer .footer-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.legal-page + .site-footer .footer-brand strong {
    display: block;

    margin-bottom: 12px;

    color: #ffffff;

    font-size: 1.1rem;
    font-weight: 800;
}

.legal-page + .site-footer .footer-brand p {
    max-width: 520px;

    margin: 0;

    color: #858585;

    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-page + .site-footer .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;

    margin: 30px 0;
}

.legal-page + .site-footer .footer-nav a {
    color: #b0b0b0;

    font-size: 0.9rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.legal-page + .site-footer .footer-nav a:hover {
    color: #d3131b;
    transform: translateY(-2px);
}

.legal-page + .site-footer .footer-copy {
    margin: 0;

    color: #666666;

    font-size: 0.82rem;
    line-height: 1.6;
}


/* PHONE */

@media (max-width: 768px) {

    .legal-page + .site-footer {
        padding: 50px 22px 35px;
    }

    .legal-page + .site-footer .footer-nav {
        gap: 16px 22px;
    }

}

/* ==================================================
   DT QUOTE BUILDER
================================================== */

.quote-builder-page {
    margin: 0;

    background: #050505;
    color: #ffffff;

    font-family: "Inter", sans-serif;
}


/* HEADER */

.quote-builder-header {
    padding: 55px 8%;

    border-bottom: 1px solid rgba(211, 19, 27, 0.45);

    background: #080808;
}

.quote-builder-header-inner {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.quote-builder-eyebrow {
    margin: 0 0 10px;

    color: #d3131b;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.22em;
}

.quote-builder-header h1 {
    margin: 0;

    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 900;

    line-height: 1;
    letter-spacing: -0.05em;
}

.quote-builder-status {
    padding: 12px 18px;

    border: 1px solid rgba(211, 19, 27, 0.5);
    border-radius: 10px;

    color: #d3131b;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 0.15em;
}


/* MAIN */

.quote-builder-main {
    padding: 80px 8% 120px;
}

.quote-builder-form {
    width: min(1200px, 100%);
    margin: 0 auto;
}


/* SECTIONS */

.quote-builder-section {
    margin-bottom: 34px;
    padding: 42px;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
}

.quote-builder-section-important {
    border-color: rgba(211, 19, 27, 0.35);
    border-top: 2px solid #d3131b;
}


/* SECTION HEADINGS */

.quote-builder-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;

    margin-bottom: 36px;
}

.quote-builder-section-heading > p {
    margin: 4px 0 0;

    color: #d3131b;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.quote-builder-section-heading h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 1.7rem;
    font-weight: 800;

    letter-spacing: -0.03em;
}

.quote-builder-section-heading span {
    color: #858585;

    font-size: 0.9rem;
    line-height: 1.6;
}


/* GRID */

.quote-builder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.quote-builder-field-wide {
    grid-column: 1 / -1;
}


/* FIELDS */

.quote-builder-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quote-builder-field label {
    color: #d3131b;

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quote-builder-field input,
.quote-builder-field select,
.quote-builder-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 16px 18px;

    color: #ffffff;

    font-family: inherit;
    font-size: 0.95rem;

    background: #101010;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.quote-builder-field textarea {
    resize: vertical;

    line-height: 1.7;
}

.quote-builder-field input:focus,
.quote-builder-field select:focus,
.quote-builder-field textarea:focus {
    background: #121212;

    border-color: #d3131b;

    box-shadow:
        0 0 0 3px rgba(211, 19, 27, 0.08);
}

.quote-builder-field select option {
    background: #101010;
    color: #ffffff;
}


/* FIXED PRICE NOTICE */

.quote-builder-notice {
    margin-top: 30px;
    padding: 25px 28px;

    background: rgba(211, 19, 27, 0.045);

    border-left: 3px solid #d3131b;
}

.quote-builder-notice strong {
    display: block;

    margin-bottom: 10px;

    color: #ffffff;

    font-size: 1rem;
}

.quote-builder-notice p {
    max-width: 800px;

    margin: 0;

    color: #909090;

    font-size: 0.9rem;
    line-height: 1.75;
}


/* ACTIONS */

.quote-builder-actions {
    display: flex;
    gap: 16px;

    margin-top: 45px;
}

.quote-builder-primary,
.quote-builder-secondary {
    min-height: 58px;

    padding: 0 34px;

    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.06em;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.quote-builder-primary {
    color: #ffffff;

    background: #d3131b;

    border: 1px solid #d3131b;
}

.quote-builder-primary:hover {
    transform: translateY(-3px);

    background: #eb171f;
}

.quote-builder-secondary {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-builder-secondary:hover {
    transform: translateY(-3px);

    border-color: #ffffff;
}


/* ==================================================
   QUOTE BUILDER - TABLET / PHONE
================================================== */

@media (max-width: 900px) {

    .quote-builder-header {
        padding: 45px 28px;
    }

    .quote-builder-main {
        padding: 55px 28px 90px;
    }

    .quote-builder-section {
        padding: 30px;
    }

}


@media (max-width: 650px) {

    .quote-builder-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-builder-grid {
        grid-template-columns: 1fr;
    }

    .quote-builder-field-wide {
        grid-column: auto;
    }

    .quote-builder-section {
        padding: 26px 20px;
    }

    .quote-builder-section-heading {
        gap: 14px;
    }

    .quote-builder-actions {
        flex-direction: column;
    }

    .quote-builder-primary,
    .quote-builder-secondary {
        width: 100%;
    }

}

/* ==================================================
   QUOTE PREVIEW
================================================== */

.quote-preview-page {
    margin: 0;

    background: #050505;
    color: #ffffff;

    font-family: "Inter", sans-serif;
}


/* HEADER */

.quote-preview-header {
    padding: 60px 8% 44px;

    background: #080808;

    border-bottom: 1px solid rgba(211, 19, 27, 0.45);
}

.quote-preview-header-inner {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.quote-preview-brand p {
    margin: 0 0 10px;

    color: #d3131b;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.quote-preview-brand h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;

    line-height: 1;
    letter-spacing: -0.05em;
}

.quote-preview-reference {
    text-align: right;
}

.quote-preview-reference span {
    display: block;

    margin-bottom: 8px;

    color: #777777;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.quote-preview-reference strong {
    color: #ffffff;

    font-size: 1.1rem;
}


/* MAIN */

.quote-preview-main {
    width: min(1100px, 84%);
    margin: 0 auto;

    padding: 70px 0 120px;
}


/* CARDS */

.quote-preview-card {
    margin-bottom: 24px;
    padding: 38px;

    background: rgba(255, 255, 255, 0.018);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
}

.quote-preview-card h2 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 1.8rem;
    font-weight: 800;

    letter-spacing: -0.03em;
}

.quote-preview-label {
    margin: 0 0 12px;

    color: #d3131b;

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.quote-preview-copy {
    color: #969696;

    font-size: 0.98rem;
    line-height: 1.85;

    white-space: pre-line;
}


/* SUMMARY */

.quote-preview-summary-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
}

.quote-preview-summary h2 {
    margin-bottom: 14px;

    font-size: 2rem;
}

.quote-preview-summary p:not(.quote-preview-label) {
    margin: 6px 0;

    color: #969696;
}

.quote-preview-dates {
    display: grid;
    gap: 22px;
}

.quote-preview-dates div,
.quote-preview-project-meta div {
    padding: 18px 20px;

    background: #0e0e0e;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.quote-preview-dates span,
.quote-preview-project-meta span,
.quote-preview-deposit span {
    display: block;

    margin-bottom: 8px;

    color: #777777;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* PROJECT META */

.quote-preview-project-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;

    margin-top: 28px;
}


/* PRICE */

.quote-preview-price-card {
    border-color: rgba(211, 19, 27, 0.35);
    border-top: 2px solid #d3131b;
}

.quote-preview-price-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;

    margin-bottom: 34px;
}

.quote-preview-price {
    margin: 0;

    color: #ffffff;

    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 900;

    line-height: 0.95;
    letter-spacing: -0.055em;
}

.quote-preview-deposit {
    min-width: 220px;

    padding: 20px;

    text-align: right;

    background: #0e0e0e;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.quote-preview-fixed-price {
    padding: 26px 28px;

    background: rgba(211, 19, 27, 0.045);

    border-left: 3px solid #d3131b;
}

.quote-preview-fixed-price h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 1.2rem;
}

.quote-preview-fixed-price p:not(.quote-preview-label) {
    max-width: 820px;

    margin: 10px 0 0;

    color: #969696;

    font-size: 0.95rem;
    line-height: 1.8;
}


/* TERMS */

.quote-preview-terms-summary p {
    max-width: 820px;

    color: #969696;

    line-height: 1.8;
}

.quote-preview-terms-link {
    display: inline-block;

    margin-top: 16px;

    color: #ffffff;

    font-size: 0.76rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-decoration: none;

    border-bottom: 1px solid #d3131b;

    padding-bottom: 5px;
}


/* ACCEPTANCE */

.quote-preview-acceptance {
    margin-top: 55px;
    padding: 44px;

    background: #090909;

    border: 1px solid rgba(211, 19, 27, 0.38);
    border-radius: 18px;
}

.quote-preview-acceptance-heading {
    margin-bottom: 34px;
}

.quote-preview-acceptance-heading h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 2.2rem;
    font-weight: 900;

    letter-spacing: -0.04em;
}

.quote-preview-acceptance-heading p:not(.quote-preview-label) {
    margin: 0;

    color: #909090;

    line-height: 1.7;
}


/* ACCEPTANCE FIELDS */

.quote-acceptance-form {
    display: grid;
    gap: 20px;
}

.quote-acceptance-field,
.quote-acceptance-confirmation {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.quote-acceptance-field label,
.quote-acceptance-confirmation label {
    color: #d3131b;

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.quote-acceptance-field input,
.quote-acceptance-confirmation input {
    padding: 16px 18px;

    color: #ffffff;

    font-family: inherit;
    font-size: 0.95rem;

    background: #101010;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;

    outline: none;
}

.quote-acceptance-field input:focus,
.quote-acceptance-confirmation input:focus {
    border-color: #d3131b;

    box-shadow:
        0 0 0 3px rgba(211, 19, 27, 0.08);
}


/* CHECKBOXES */

.quote-acceptance-checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;

    align-items: flex-start;

    padding: 20px;

    background: rgba(255, 255, 255, 0.015);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    cursor: pointer;
}

.quote-acceptance-checkbox input {
    width: 18px;
    height: 18px;

    margin-top: 2px;

    accent-color: #d3131b;
}

.quote-acceptance-checkbox span {
    color: #b0b0b0;

    font-size: 0.92rem;
    line-height: 1.7;
}

.quote-acceptance-checkbox strong {
    color: #ffffff;
}

.quote-acceptance-checkbox a {
    color: #ffffff;

    text-decoration-color: #d3131b;
}

.quote-acceptance-checkbox em {
    color: #777777;
}


/* ACCEPT BUTTON */

.quote-acceptance-submit {
    min-height: 60px;

    margin-top: 10px;
    padding: 0 32px;

    color: #ffffff;

    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 0.06em;

    background: #d3131b;

    border: 1px solid #d3131b;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.quote-acceptance-submit:hover {
    transform: translateY(-3px);

    background: #eb171f;
}

.quote-acceptance-note {
    margin: 4px 0 0;

    color: #6f6f6f;

    font-size: 0.8rem;
    line-height: 1.65;
}


/* BUSINESS DETAILS */

.quote-preview-business {
    margin-top: 50px;
    padding-top: 35px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-preview-business strong {
    color: #ffffff;

    font-size: 1rem;
}

.quote-preview-business p {
    margin: 8px 0;

    color: #777777;

    font-size: 0.88rem;
    line-height: 1.6;
}


/* TABLET */

@media (max-width: 900px) {

    .quote-preview-main {
        width: min(100% - 48px, 900px);
    }

    .quote-preview-summary-grid {
        grid-template-columns: 1fr;
    }

}


/* PHONE */

@media (max-width: 650px) {

    .quote-preview-header {
        padding: 42px 22px 32px;
    }

    .quote-preview-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-preview-reference {
        text-align: left;
    }

    .quote-preview-main {
        width: calc(100% - 36px);

        padding: 42px 0 80px;
    }

    .quote-preview-card,
    .quote-preview-acceptance {
        padding: 26px 20px;
    }

    .quote-preview-project-meta {
        grid-template-columns: 1fr;
    }

    .quote-preview-price-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-preview-deposit {
        min-width: 0;
        width: 100%;

        box-sizing: border-box;

        text-align: left;
    }

}

.quote-builder-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.9;
    cursor: pointer;
}

/* ==================================================
   STAFF LOGIN
================================================== */

.staff-login-page {
    margin: 0;
    min-height: 100vh;

    background: #050505;
    color: #ffffff;

    font-family: "Inter", sans-serif;
}


.staff-login-main {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}


.staff-login-card {
    width: 100%;
    max-width: 520px;

    padding: 48px;

    background: #080808;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 2px solid #d3131b;

    border-radius: 18px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);
}


.staff-login-brand {
    margin-bottom: 55px;
}


.staff-login-brand p {
    margin: 0;

    font-size: 0.85rem;
    font-weight: 800;

    letter-spacing: 0.12em;

    color: #ffffff;
}


.staff-login-label {
    margin: 0 0 18px;

    color: #d3131b !important;

    font-size: 0.72rem !important;
    font-weight: 800;

    letter-spacing: 0.22em;
}


.staff-login-heading h1 {
    margin: 0 0 22px;

    font-size: clamp(3rem, 8vw, 4.8rem);
    font-weight: 900;

    line-height: 0.92;
    letter-spacing: -0.06em;

    color: #ffffff;
}


.staff-login-heading h1 span {
    display: block;

    color: #777777;
}


.staff-login-heading > p:last-child {
    margin: 0 0 42px;

    color: #969696;

    font-size: 1rem;
    line-height: 1.7;
}


.staff-login-field {
    margin-bottom: 24px;
}


.staff-login-field label {
    display: block;

    margin-bottom: 10px;

    color: #d3131b;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.staff-login-field input {
    width: 100%;
    box-sizing: border-box;

    padding: 17px 18px;

    background: #101010;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 8px;

    font-family: inherit;
    font-size: 0.95rem;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.staff-login-field input:focus {
    border-color: #d3131b;

    box-shadow:
        0 0 0 3px rgba(211, 19, 27, 0.10);
}


.staff-login-button {
    width: 100%;

    margin-top: 10px;
    padding: 18px 24px;

    border: 0;
    border-radius: 0;

    background: #d3131b;
    color: #ffffff;

    font-family: inherit;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.08em;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.staff-login-button:hover {
    background: #ed171f;

    transform: translateY(-2px);
}


.staff-login-button:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}


.staff-login-message {
    min-height: 20px;

    margin: 18px 0 0;

    text-align: center;

    color: #d3131b;

    font-size: 0.85rem;
    font-weight: 600;
}


.staff-login-security {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 42px;
}


.staff-login-security span {
    flex: 1;

    height: 1px;

    background: rgba(255, 255, 255, 0.12);
}


.staff-login-security p {
    margin: 0;

    white-space: nowrap;

    color: #666666;

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}


/* ==================================================
   STAFF LOGIN - MOBILE
================================================== */

@media (max-width: 700px) {

    .staff-login-main {
        padding: 22px 16px;
    }

    .staff-login-card {
        padding: 34px 24px;

        border-radius: 14px;
    }

    .staff-login-brand {
        margin-bottom: 45px;
    }

    .staff-login-heading h1 {
        font-size: clamp(3rem, 15vw, 4rem);
    }

}

/* ==================================================
   QUOTE PREVIEW - STAFF CONTROLS
================================================== */

.quote-preview-staff-controls {
    margin-top: 24px;
    padding: 28px;

    background: #0a0a0a;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 2px solid #d3131b;

    border-radius: 12px;
}


.quote-preview-staff-controls h2 {
    margin: 8px 0 12px;

    color: #ffffff;

    font-size: 1.6rem;
    font-weight: 800;

    letter-spacing: -0.03em;
}


.quote-preview-staff-controls > p:not(.quote-preview-label):not(.quote-send-message) {
    margin: 0 0 22px;

    color: #969696;

    font-size: 0.9rem;
    line-height: 1.7;
}


.quote-send-button {
    width: 100%;

    padding: 17px 22px;

    background: #d3131b;
    color: #ffffff;

    border: 0;
    border-radius: 0;

    font-family: inherit;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.08em;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.quote-send-button:hover {
    background: #ed171f;

    transform: translateY(-2px);
}


.quote-send-button:disabled {
    opacity: 0.65;

    cursor: default;

    transform: none;
}


.quote-send-message {
    margin: 16px 0 0;

    color: #ffffff;

    font-size: 0.85rem;
    line-height: 1.6;
}

/* =========================================================
   DT PROPERTY IMPROVEMENTS
   QUOTE DASHBOARD
========================================================= */

.quote-dashboard-page {
    min-height: 100vh;
    background: #050505;
    color: #ffffff;
}

.quote-dashboard-main {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    padding: 80px 0 100px;
}


/* =========================================================
   HEADER
========================================================= */

.quote-dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-dashboard-eyebrow {
    margin: 0 0 12px;
    color: #e3151b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.quote-dashboard-header h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.quote-dashboard-subtitle {
    margin: 20px 0 0;
    color: #8e8e8e;
    font-size: 15px;
}

.quote-dashboard-new-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;

    background: #e3151b;
    border: 1px solid #e3151b;

    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.quote-dashboard-new-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #050505;
    transform: translateY(-2px);
}


/* =========================================================
   STAT CARDS
========================================================= */

.quote-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.quote-dashboard-stat {
    min-height: 150px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid #e3151b;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.quote-dashboard-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 21, 27, 0.55);
}

.quote-dashboard-stat span {
    color: #777777;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.quote-dashboard-stat strong {
    margin-top: 24px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -0.04em;
}


/* =========================================================
   QUOTE LIST
========================================================= */

.quote-dashboard-list-section {
    margin-top: 52px;
    padding: 34px;

    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-dashboard-list-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;

    margin-bottom: 30px;
}

.quote-dashboard-list-heading p {
    margin: 0 0 8px;
    color: #e3151b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.quote-dashboard-list-heading h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -0.035em;
}


/* =========================================================
   TABLE
========================================================= */

.quote-dashboard-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.quote-dashboard-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.quote-dashboard-table th {
    padding: 16px 14px;
    text-align: left;

    color: #696969;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-dashboard-table td {
    padding: 20px 14px;

    color: #c8c8c8;
    font-size: 13px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-dashboard-table tbody tr {
    transition: background 0.2s ease;
}

.quote-dashboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

.quote-dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.quote-dashboard-loading {
    padding: 50px 20px !important;
    text-align: center !important;
    color: #666666 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .quote-dashboard-main {
        width: min(100% - 30px, 1400px);
        padding: 50px 0 70px;
    }

    .quote-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-dashboard-actions,
    .quote-dashboard-new-button {
        width: 100%;
    }

    .quote-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-dashboard-list-section {
        padding: 24px 18px;
    }
}


@media (max-width: 560px) {

    .quote-dashboard-main {
        width: min(100% - 22px, 1400px);
    }

    .quote-dashboard-stats {
        grid-template-columns: 1fr;
    }

    .quote-dashboard-stat {
        min-height: 125px;
    }

    .quote-dashboard-header h1 {
        font-size: 48px;
    }

}

/* =========================================================
   QUOTE DASHBOARD STATUS BADGES
========================================================= */

.quote-dashboard-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 82px;
    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* DRAFT */

.quote-dashboard-status.draft {
    color: #9a9a9a;
    background: rgba(255, 255, 255, 0.04);
}

/* SENT */

.quote-dashboard-status.sent {
    color: #ffffff;
    border-color: rgba(227, 21, 27, 0.55);
    background: rgba(227, 21, 27, 0.12);
}

/* ACCEPTED */

.quote-dashboard-status.accepted {
    color: #8fe3a2;
    border-color: rgba(74, 190, 103, 0.4);
    background: rgba(74, 190, 103, 0.08);
}


/* =========================================================
   DASHBOARD VIEW BUTTON
========================================================= */

.quote-dashboard-view-button {
    color: #ffffff;
    text-decoration: none;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;

    border-bottom: 1px solid #e3151b;
    padding-bottom: 3px;

    transition: color 0.2s ease;
}

.quote-dashboard-view-button:hover {
    color: #e3151b;
}

/* =========================================================
   QUOTE DASHBOARD STAFF ACTIONS
========================================================= */

.quote-dashboard-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-dashboard-secondary-button,
.quote-dashboard-logout-button {
    min-height: 50px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;

    text-decoration: none;
    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.quote-dashboard-secondary-button {
    background: #e3151b;
    border: 1px solid #e3151b;
    color: #ffffff;
}

.quote-dashboard-secondary-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #050505;
    transform: translateY(-2px);
}

.quote-dashboard-logout-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #9a9a9a;
}

.quote-dashboard-logout-button:hover {
    border-color: #e3151b;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .quote-dashboard-actions {
        width: 100%;
    }

    .quote-dashboard-secondary-button,
    .quote-dashboard-logout-button {
        flex: 1;
    }

}

/* =========================================================
   QUOTE BUILDER HEADER ACTIONS
========================================================= */

.quote-builder-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-builder-dashboard-button {
    min-height: 42px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #ffffff;
    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.quote-builder-dashboard-button:hover {
    border-color: #e3151b;
    color: #e3151b;
    transform: translateY(-2px);
}

@media (max-width: 700px) {

    .quote-builder-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .quote-builder-dashboard-button {
        flex: 1;
    }

}