﻿/* =========================================
   DAVIS TILE — HOMEPAGE
   ========================================= */


/* =========================================
   HERO
   ========================================= */

.dt-hero {
    position: relative;
    display: flex;
    min-height: 92vh;
    overflow: hidden;
    background: linear-gradient( 90deg, rgba(22, 23, 21, 0.94) 0%, rgba(22, 23, 21, 0.82) 42%, rgba(22, 23, 21, 0.48) 72%, rgba(22, 23, 21, 0.28) 100% ), linear-gradient( 180deg, rgba(18, 19, 17, 0.2) 0%, rgba(18, 19, 17, 0.62) 100% ), url("/images/placeholders/hero-placeholder.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-white);
}

    .dt-hero::before {
        position: absolute;
        inset: 0;
        z-index: 0;
        content: "";
        background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.035) 50%, transparent 100% );
        pointer-events: none;
    }

.dt-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient( circle at 78% 30%, rgba(255, 255, 255, 0.06), transparent 30% );
    pointer-events: none;
}

.dt-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 9rem;
    padding-bottom: 8rem;
}

.dt-hero-content {
    max-width: 780px;
}

.dt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--color-stone-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

    .dt-eyebrow::before {
        width: 3rem;
        height: 1px;
        content: "";
        background-color: var(--color-copper);
    }

.dt-hero-title {
    max-width: 760px;
    margin-bottom: 1.75rem;
    color: var(--color-white);
    font-size: clamp(3.4rem, 7.5vw, 6.8rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-wrap: balance;
}

.dt-hero-lead {
    max-width: 665px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.77);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.8;
}

.dt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.4rem;
}

.dt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.5rem;
    border: 1px solid transparent;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

    .dt-button:hover {
        transform: translateY(-2px);
    }

.dt-button-primary {
    background-color: var(--color-copper);
    color: var(--color-white);
}

    .dt-button-primary:hover,
    .dt-button-primary:focus {
        background-color: #ad7652;
        color: var(--color-white);
    }

.dt-button-link {
    gap: 0.75rem;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
    color: rgba(255, 255, 255, 0.82);
}

    .dt-button-link span {
        font-size: 1.1rem;
        transition: transform 180ms ease;
    }

    .dt-button-link:hover,
    .dt-button-link:focus {
        color: var(--color-white);
    }

        .dt-button-link:hover span,
        .dt-button-link:focus span {
            transform: translateX(5px);
        }

/* =========================================
   HERO LOGO
   ========================================= */

.dt-hero-logo {
    margin-bottom: 2rem;
}

.dt-hero-logo-image {
    display: block;
    width: 170px;
    height: auto;
    opacity: .95;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.28);
    transition: transform .3s ease, opacity .3s ease;
}

    .dt-hero-logo-image:hover {
        transform: translateY(-2px);
        opacity: 1;
    }
    

/* =========================================
   CRAFTSMANSHIP PHILOSOPHY
   ========================================= */

.dt-philosophy {
    position: relative;
    overflow: hidden;
}

.dt-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(4rem, 8vw, 7rem);
    align-items: center;
}

.dt-philosophy-content {
    max-width: 600px;
}

.dt-philosophy-lead {
    margin: 2rem 0 1.5rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.55;
}

.dt-philosophy-content p:not(.dt-section-eyebrow):not(.dt-philosophy-lead) {
    margin-bottom: 1.5rem;
    color: var(--color-muted);
    line-height: 1.9;
}

.dt-text-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1rem;
    color: var(--color-charcoal);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .dt-text-link span {
        color: var(--color-copper);
        font-size: 1.15rem;
        transition: transform .2s ease;
    }

    .dt-text-link:hover span {
        transform: translateX(6px);
    }


/* =========================================
   PROJECT PLACEHOLDER
   ========================================= */

.dt-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    padding: 3rem;
    border: 1px solid rgba(52,53,48,.12);
    background: linear-gradient( 135deg, #f7f4ee, #ece7dd );
    position: relative;
    overflow: hidden;
}

    .dt-image-placeholder::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(255,255,255,.15) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.15) 1px, transparent 1px );
        background-size: 40px 40px;
        opacity: .45;
    }

.dt-placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 320px;
}

.dt-placeholder-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-copper);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.dt-placeholder-content h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.25;
}

.dt-placeholder-content p {
    color: var(--color-muted);
    line-height: 1.8;
}


/* =========================================
   SERVICES
   ========================================= */

.dt-services {
    overflow: hidden;
}

.dt-services-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: end;
    margin-bottom: 4.5rem;
}

    .dt-services-header .dt-section-title {
        max-width: 760px;
        margin-bottom: 0;
    }

.dt-services-intro {
    max-width: 560px;
    padding-bottom: 0.55rem;
}

    .dt-services-intro p {
        margin: 0;
        color: var(--color-muted);
        font-size: 1rem;
        line-height: 1.9;
    }


/* =========================================
   SERVICES GRID
   ========================================= */

.dt-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(52, 53, 48, 0.16);
    border-left: 1px solid rgba(52, 53, 48, 0.16);
}

.dt-service-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.75rem;
    min-height: 390px;
    padding: 3.25rem;
    border-right: 1px solid rgba(52, 53, 48, 0.16);
    border-bottom: 1px solid rgba(52, 53, 48, 0.16);
    background-color: rgba(255, 255, 255, 0.26);
    transition: background-color var(--transition), transform var(--transition);
}

    .dt-service-card:hover {
        z-index: 2;
        background-color: rgba(255, 255, 255, 0.58);
        transform: translateY(-4px);
    }

.dt-service-number {
    padding-top: 0.35rem;
    color: var(--color-copper);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.dt-service-content {
    display: flex;
    flex-direction: column;
}

    .dt-service-content h3 {
        margin-bottom: 1.35rem;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        line-height: 1.25;
    }

    .dt-service-content > p {
        margin-bottom: 1.6rem;
        color: var(--color-muted);
        line-height: 1.85;
    }

.dt-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: auto 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(52, 53, 48, 0.12);
    list-style: none;
}

    .dt-service-list li {
        position: relative;
        padding-left: 1.2rem;
        color: var(--color-text);
        font-size: 0.88rem;
        font-weight: 600;
    }

        .dt-service-list li::before {
            position: absolute;
            top: 0.7rem;
            left: 0;
            width: 0.35rem;
            height: 1px;
            content: "";
            background-color: var(--color-copper);
        }


/* =========================================
   SERVICES FOOTNOTE
   ========================================= */

.dt-services-note {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
    padding-top: 2.5rem;
}

    .dt-services-note p {
        max-width: 760px;
        margin: 0;
        color: var(--color-muted);
        font-size: 0.88rem;
        line-height: 1.8;
    }


/* =========================================
   SERVICES RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
    .dt-services-header {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 3.5rem;
    }

    .dt-services-intro {
        padding-bottom: 0;
    }

    .dt-service-card {
        min-height: 360px;
        padding: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .dt-services-grid {
        grid-template-columns: 1fr;
    }

    .dt-service-card {
        min-height: auto;
        padding: 2.25rem 1.75rem;
    }

    .dt-services-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .dt-service-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dt-service-number {
        padding-top: 0;
    }
}

/* =========================================
   FEATURED WORK
   ========================================= */

.dt-featured-work {
    overflow: hidden;
}

.dt-featured-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: end;
    margin-bottom: 4.5rem;
}

    .dt-featured-header .dt-section-title {
        max-width: 800px;
        margin-bottom: 0;
    }

.dt-featured-intro {
    max-width: 560px;
    padding-bottom: 0.55rem;
}

    .dt-featured-intro p {
        margin: 0;
        color: rgba(255, 255, 255, 0.64);
        line-height: 1.9;
    }


/* =========================================
   FEATURED WORK LAYOUT
   ========================================= */

.dt-featured-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    gap: 2rem;
    align-items: start;
}

.dt-featured-secondary {
    display: grid;
    gap: 2rem;
}

.dt-featured-project {
    min-width: 0;
}

.dt-project-image {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: var(--color-charcoal-soft);
}

.dt-project-image-large {
    min-height: 720px;
}


/* =========================================
   FEATURED PROJECT PLACEHOLDERS
   ========================================= */

.dt-project-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01) ), repeating-linear-gradient( 90deg, transparent, transparent 79px, rgba(255, 255, 255, 0.025) 80px );
}

.dt-project-placeholder-number {
    color: rgba(255, 255, 255, 0.24);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
}

.dt-project-placeholder-label {
    margin-bottom: 0.45rem;
    color: var(--color-copper);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dt-project-placeholder-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.9rem;
}


/* =========================================
   FEATURED PROJECT CAPTIONS
   ========================================= */

.dt-project-caption {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
    gap: 2rem;
    padding-top: 1.6rem;
}

.dt-project-category {
    margin-bottom: 0.55rem;
    color: var(--color-copper);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dt-project-caption h3 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.dt-project-summary {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    line-height: 1.8;
}

.dt-project-caption-small {
    display: block;
}


/* =========================================
   FEATURED WORK FOOTER
   ========================================= */

.dt-featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

    .dt-featured-footer p {
        margin: 0;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
    }

.dt-text-link-light {
    color: rgba(255, 255, 255, 0.82);
}

    .dt-text-link-light:hover,
    .dt-text-link-light:focus {
        color: var(--color-white);
    }


/* =========================================
   FEATURED WORK RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
    .dt-featured-header {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 3.5rem;
    }

    .dt-featured-intro {
        padding-bottom: 0;
    }

    .dt-featured-layout {
        grid-template-columns: 1fr;
    }

    .dt-featured-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dt-project-image-large {
        min-height: 580px;
    }

    .dt-project-caption {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .dt-featured-secondary {
        grid-template-columns: 1fr;
    }

    .dt-project-image,
    .dt-project-image-large {
        min-height: 430px;
    }

    .dt-project-caption {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dt-featured-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .dt-project-image,
    .dt-project-image-large {
        min-height: 340px;
    }

    .dt-project-placeholder {
        padding: 1.5rem;
    }
}

/* =========================================
   ABOUT DAVIS
   ========================================= */

.dt-about {
    overflow: hidden;
}

.dt-about-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(4rem, 9vw, 8rem);
    align-items: center;
}


/* =========================================
   ABOUT VISUAL
   ========================================= */

.dt-about-visual {
    min-width: 0;
}

.dt-about-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 680px;
    padding: 3rem;
    overflow: hidden;
    border: 1px solid rgba(52, 53, 48, 0.14);
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.72), rgba(216, 209, 199, 0.48) ), repeating-linear-gradient( 90deg, transparent, transparent 79px, rgba(52, 53, 48, 0.035) 80px );
}

    .dt-about-placeholder::before {
        position: absolute;
        inset: 1.25rem;
        content: "";
        border: 1px solid rgba(52, 53, 48, 0.1);
        pointer-events: none;
    }

.dt-about-placeholder-content {
    position: relative;
    z-index: 1;
    max-width: 310px;
    text-align: center;
}

.dt-about-placeholder-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-copper);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dt-about-placeholder-content h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.dt-about-placeholder-content p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.8;
}

.dt-about-image-caption {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1rem;
    color: var(--color-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


/* =========================================
   ABOUT CONTENT
   ========================================= */

.dt-about-content {
    max-width: 680px;
}

    .dt-about-content .dt-section-title {
        max-width: 650px;
    }

.dt-about-lead {
    margin: 2rem 0 1.5rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.55;
}

.dt-about-content > p:not(.dt-section-eyebrow):not(.dt-about-lead) {
    margin-bottom: 1.35rem;
    color: var(--color-muted);
    line-height: 1.9;
}


/* =========================================
   ABOUT DETAILS
   ========================================= */

.dt-about-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 2.75rem 0 2rem;
    border-top: 1px solid rgba(52, 53, 48, 0.14);
    border-bottom: 1px solid rgba(52, 53, 48, 0.14);
}

.dt-about-detail {
    min-width: 0;
    padding: 1.5rem 1.25rem;
}

    .dt-about-detail + .dt-about-detail {
        border-left: 1px solid rgba(52, 53, 48, 0.14);
    }

.dt-about-detail-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--color-copper);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dt-about-detail strong {
    display: block;
    color: var(--color-charcoal);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    line-height: 1.5;
}


/* =========================================
   ABOUT RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
    .dt-about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .dt-about-placeholder {
        min-height: 560px;
    }

    .dt-about-content {
        max-width: 760px;
    }
}

@media (max-width: 767.98px) {
    .dt-about-placeholder {
        min-height: 440px;
        padding: 2rem;
    }

    .dt-about-image-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .dt-about-details {
        grid-template-columns: 1fr;
    }

    .dt-about-detail + .dt-about-detail {
        border-top: 1px solid rgba(52, 53, 48, 0.14);
        border-left: 0;
    }
}

@media (max-width: 575.98px) {
    .dt-about-placeholder {
        min-height: 360px;
    }
}

/* =========================================
   WHY CHOOSE DAVIS
   ========================================= */

.dt-why {
    overflow: hidden;
}

.dt-why-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: end;
    margin-bottom: 4.5rem;
}

    .dt-why-header .dt-section-title {
        max-width: 760px;
        margin-bottom: 0;
    }

.dt-why-intro {
    max-width: 560px;
    padding-bottom: 0.55rem;
}

    .dt-why-intro p {
        margin: 0;
        color: var(--color-muted);
        line-height: 1.9;
    }


/* =========================================
   WHY CHOOSE DAVIS GRID
   ========================================= */

.dt-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(52, 53, 48, 0.16);
}

.dt-why-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2rem;
    min-height: 285px;
    padding: 3rem 3.25rem;
    border-bottom: 1px solid rgba(52, 53, 48, 0.16);
}

    .dt-why-item:nth-child(odd) {
        border-right: 1px solid rgba(52, 53, 48, 0.16);
    }

.dt-why-number {
    padding-top: 0.35rem;
    color: var(--color-copper);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.dt-why-content h3 {
    margin-bottom: 1.2rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.dt-why-content p {
    max-width: 540px;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.85;
}


/* =========================================
   WHY CHOOSE DAVIS STATEMENT
   ========================================= */

.dt-why-statement {
    display: grid;
    grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(52, 53, 48, 0.16);
}

    .dt-why-statement p {
        margin: 0;
        color: var(--color-muted);
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.11em;
        line-height: 1.7;
        text-transform: uppercase;
    }

    .dt-why-statement strong {
        max-width: 820px;
        color: var(--color-charcoal);
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4.5vw, 4rem);
        font-weight: 500;
        line-height: 1.18;
    }


/* =========================================
   WHY CHOOSE DAVIS RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
    .dt-why-header {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 3.5rem;
    }

    .dt-why-intro {
        padding-bottom: 0;
    }

    .dt-why-item {
        padding: 2.5rem;
    }

    .dt-why-statement {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .dt-why-grid {
        grid-template-columns: 1fr;
    }

    .dt-why-item {
        min-height: auto;
        padding: 2.25rem 1.75rem;
    }

        .dt-why-item:nth-child(odd) {
            border-right: 0;
        }

    .dt-why-statement {
        margin-top: 3.5rem;
        padding-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .dt-why-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dt-why-number {
        padding-top: 0;
    }
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width:991px) {

    .dt-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .dt-image-placeholder {
        min-height: 480px;
    }
}

@media (max-width:767px) {

    .dt-image-placeholder {
        min-height: 340px;
        padding: 2rem;
    }
}


/* =========================================
   FOUNDATION FOR FUTURE HOMEPAGE SECTIONS
   ========================================= */

.dt-section {
    position: relative;
    padding: 7rem 0;
}

.dt-section-light {
    background-color: var(--color-cream);
}

.dt-section-sand {
    background-color: var(--color-sand);
}

.dt-section-dark {
    background-color: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.76);
}

    .dt-section-dark h2,
    .dt-section-dark h3 {
        color: var(--color-white);
    }

.dt-section-header {
    max-width: 760px;
    margin-bottom: 3.5rem;
}

.dt-section-eyebrow {
    margin-bottom: 1rem;
    color: var(--color-copper);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.dt-section-title {
    margin-bottom: 1.4rem;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    letter-spacing: -0.035em;
}

.dt-section-copy {
    max-width: 700px;
    color: var(--color-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.dt-section-dark .dt-section-copy {
    color: rgba(255, 255, 255, 0.66);
}

.dt-grid-line {
    border-top: 1px solid rgba(52, 53, 48, 0.14);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1199.98px) {
    .dt-hero-detail {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .dt-hero {
        min-height: 88vh;
        background: linear-gradient( 90deg, rgba(22, 23, 21, 0.93) 0%, rgba(22, 23, 21, 0.74) 100% ), url("/images/placeholders/hero-placeholder.jpg");
        background-position: center;
        background-size: cover;
    }

    .dt-hero-container {
        padding-top: 8.5rem;
        padding-bottom: 7rem;
    }

    .dt-hero-content {
        max-width: 680px;
    }
}

@media (max-width: 767.98px) {
    .dt-hero {
        min-height: 100svh;
    }

    .dt-hero-container {
        padding-top: 8rem;
        padding-bottom: 7.5rem;
    }

    .dt-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

        .dt-eyebrow::before {
            width: 2rem;
        }

    .dt-hero-title {
        margin-bottom: 1.4rem;
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .dt-hero-lead {
        margin-bottom: 2rem;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .dt-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .dt-button-primary {
        width: 100%;
    }

    .dt-button-link {
        min-height: 42px;
    }

    .dt-scroll-indicator {
        bottom: 1.2rem;
    }

    .dt-section {
        padding: 5rem 0;
    }
}

@media (max-width: 575.98px) {
    .dt-hero-title br {
        display: none;
    }

    .dt-hero-content {
        width: 100%;
    }
}
/* =========================================
   PROCESS
   ========================================= */

.dt-process-header {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(320px,.7fr);
    gap: clamp(3rem,8vw,7rem);
    align-items: end;
    margin-bottom: 5rem;
}

    .dt-process-header .dt-section-title {
        margin-bottom: 0;
    }

.dt-process-intro p {
    margin: 0;
    color: rgba(255,255,255,.65);
    line-height: 1.9;
}

/* =========================================
   GALLERY
   ========================================= */

.dt-gallery {
    overflow: hidden;
    background-color: var(--color-charcoal);
}

    .dt-gallery .dt-section-title {
        color: var(--color-white);
    }

    .dt-gallery .dt-section-eyebrow {
        color: var(--color-copper);
    }

.dt-gallery-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: end;
    margin-bottom: 4.5rem;
}

    .dt-gallery-header .dt-section-title {
        max-width: 780px;
        margin-bottom: 0;
    }

.dt-gallery-intro {
    max-width: 560px;
    padding-bottom: 0.55rem;
}

    .dt-gallery-intro p {
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.9;
    }


/* =========================================
   GALLERY GRID
   ========================================= */

.dt-gallery-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: 170px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.dt-gallery-item {
    position: relative;
    grid-row: span 2;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background-color: #1d1d1d;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .dt-gallery-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .dt-gallery-item:hover,
    .dt-gallery-item:focus-visible {
        z-index: 2;
        border-color: rgba(155, 104, 71, 0.55);
        box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
        transform: translateY(-8px);
    }

    .dt-gallery-item:focus-visible {
        outline: 2px solid var(--color-copper);
        outline-offset: 4px;
    }

.dt-gallery-item-tall {
    grid-row: span 3;
}

.dt-gallery-item-wide {
    grid-column: span 2;
}

.dt-gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.45s ease;
}

.dt-gallery-item:hover .dt-gallery-image,
.dt-gallery-item:focus-visible .dt-gallery-image {
    filter: brightness(0.92) contrast(1.04);
    transform: scale(1.06);
}

.dt-gallery-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient( to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 45% );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.dt-gallery-item:hover::after,
.dt-gallery-item:focus-visible::after {
    opacity: 1;
}


/* =========================================
   GALLERY LIGHTBOX
   ========================================= */

.dt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 6rem;
    background-color: rgba(13, 14, 12, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

    .dt-lightbox.is-open {
        opacity: 1;
        visibility: visible;
    }

.dt-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(1200px, 100%);
    max-height: 90vh;
}

.dt-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.dt-lightbox-counter {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dt-lightbox-close,
.dt-lightbox-control {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    transition: color var(--transition), transform var(--transition);
}

    .dt-lightbox-close:hover,
    .dt-lightbox-close:focus,
    .dt-lightbox-control:hover,
    .dt-lightbox-control:focus {
        color: var(--color-white);
    }

.dt-lightbox-close {
    top: 1.5rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1;
}

    .dt-lightbox-close:hover {
        transform: rotate(5deg);
    }

.dt-lightbox-control {
    top: 50%;
    width: 58px;
    height: 80px;
    font-size: 3rem;
    transform: translateY(-50%);
}

.dt-lightbox-previous {
    left: 1rem;
}

.dt-lightbox-next {
    right: 1rem;
}

body.dt-lightbox-open {
    overflow: hidden;
}


/* =========================================
   GALLERY RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
    .dt-gallery-header {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 3.5rem;
    }

    .dt-gallery-intro {
        padding-bottom: 0;
    }

    .dt-gallery-grid {
        grid-auto-rows: 150px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dt-gallery-item-wide {
        grid-column: span 2;
    }

    .dt-lightbox {
        padding: 2rem 4.5rem;
    }
}

@media (max-width: 767.98px) {
    .dt-gallery-grid {
        grid-auto-rows: 135px;
        gap: 0.75rem;
    }

    .dt-gallery-item {
        grid-row: span 2;
    }

    .dt-gallery-item-tall {
        grid-row: span 3;
    }

    .dt-lightbox {
        padding: 4.5rem 1rem 2rem;
    }

    .dt-lightbox-image {
        max-height: 75vh;
    }

    .dt-lightbox-control {
        top: auto;
        bottom: 1rem;
        width: 52px;
        height: 52px;
        transform: none;
    }

    .dt-lightbox-previous {
        left: calc(50% - 64px);
    }

    .dt-lightbox-next {
        right: calc(50% - 64px);
    }

    .dt-lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
    }

    .dt-lightbox-counter {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 575.98px) {
    .dt-gallery-grid {
        grid-auto-rows: auto;
        grid-template-columns: 1fr;
    }

    .dt-gallery-item,
    .dt-gallery-item-tall,
    .dt-gallery-item-wide {
        grid-row: auto;
        grid-column: auto;
        aspect-ratio: 4 / 3;
    }

        .dt-gallery-item:nth-child(3n + 1) {
            aspect-ratio: 3 / 4;
        }
}


/* =========================================
   GALLERY REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    .dt-gallery-item,
    .dt-gallery-image,
    .dt-lightbox {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================
   GALLERY DIVIDER
   ========================================= */

.dt-gallery-divider {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

    .dt-gallery-divider span {
        position: relative;
        width: 100%;
        max-width: none;
        height: 1px;
        background: rgba(255,255,255,.10);
    }

        .dt-gallery-divider span::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 12px;
            height: 12px;
            background: var(--color-copper);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 6px var(--color-charcoal);
        }


/* =========================================
   REDUCED MOTION SUPPORT
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    .dt-gallery-item,
    .dt-gallery-image,
    .dt-lightbox {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================
   TIMELINE
   ========================================= */

.dt-process-timeline {
    position: relative;
}

.dt-process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

    .dt-process-step:last-child {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

.dt-process-number {
    color: var(--color-copper);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.dt-process-body h3 {
    color: white;
    font-size: clamp(1.6rem,2.8vw,2.3rem);
    margin-bottom: 1rem;
}

.dt-process-body p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.62);
    line-height: 1.9;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width:991.98px) {

    .dt-process-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
}

@media (max-width:767.98px) {

    .dt-process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2.5rem 0;
    }
}

/* =========================================
   PROCESS SCROLL ANIMATION
   ========================================= */

.dt-process-step {
    position: relative;
}

    .dt-process-step::after {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 59px;
        width: 1px;
        content: "";
        background-color: rgba(184, 123, 76, 0.65);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.85s ease;
    }

    .dt-process-step:last-child::after {
        display: none;
    }

.dt-process-number,
.dt-process-body {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.dt-process-body {
    transition-delay: 0.12s;
}

.dt-process-step.is-visible::after {
    transform: scaleY(1);
}

.dt-process-step.is-visible .dt-process-number,
.dt-process-step.is-visible .dt-process-body {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   REDUCED MOTION SUPPORT
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    .dt-process-step::after,
    .dt-process-number,
    .dt-process-body {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 767.98px) {
    .dt-process-step::after {
        display: none;
    }
}
/* ==========================
   FEATURED PROJECT IMAGES
==========================*/

.dt-project-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.dt-project-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease, filter .45s ease;
}

.dt-featured-project:hover .dt-project-photo {
    transform: scale(1.05);
    filter: brightness(.88);
}

.dt-project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient( to top, rgba(0,0,0,.75), rgba(0,0,0,.15), transparent 70%);
    color: white;
}

    .dt-project-overlay h3 {
        margin: .35rem 0 0;
        color: white;
        font-size: 1.55rem;
        font-weight: 600;
    }

    .dt-project-overlay .dt-project-category {
        margin: 0;
        color: #d8b47c;
        text-transform: uppercase;
        letter-spacing: .18em;
        font-size: .8rem;
    }

.dt-project-caption {
    margin-top: 1.5rem;
}

.dt-project-summary {
    color: rgba(255,255,255,.82);
    line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.dt-testimonials {
    overflow: hidden;
}

    .dt-testimonials .dt-section-header {
        max-width: 820px;
    }

.dt-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}


/* =========================================
   TESTIMONIAL CARD
   ========================================= */

.dt-testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 3rem;
    overflow: hidden;
    border: 1px solid rgba(52, 53, 48, 0.08);
    border-radius: 18px;
    background-color: var(--color-white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .dt-testimonial-card:hover {
        border-color: rgba(155, 104, 71, 0.24);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
        transform: translateY(-8px);
    }


    /* =========================================
   TESTIMONIAL ACCENT
   ========================================= */

    .dt-testimonial-card::after {
        position: absolute;
        top: 0;
        left: 3rem;
        width: 72px;
        height: 3px;
        content: "";
        background-color: var(--color-copper);
    }


    /* =========================================
   DECORATIVE QUOTATION MARK
   ========================================= */

    .dt-testimonial-card::before {
        position: absolute;
        top: -24px;
        right: 22px;
        content: "“";
        color: rgba(155, 104, 71, 0.08);
        font-family: var(--font-heading);
        font-size: 10rem;
        line-height: 1;
        pointer-events: none;
        user-select: none;
    }


/* =========================================
   TESTIMONIAL STARS
   ========================================= */

.dt-stars {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    color: #d6b56d;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    line-height: 1;
}


/* =========================================
   TESTIMONIAL QUOTE
   ========================================= */

.dt-testimonial-card blockquote {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.9;
}


/* =========================================
   TESTIMONIAL AUTHOR
   ========================================= */

.dt-testimonial-author {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(52, 53, 48, 0.08);
}

    .dt-testimonial-author h4 {
        margin-bottom: 0.35rem;
        color: var(--color-charcoal);
        font-size: 1.1rem;
    }

    .dt-testimonial-author p {
        margin: 0;
        color: var(--color-copper);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        line-height: 1.7;
        text-transform: uppercase;
    }


/* =========================================
   TESTIMONIAL RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
    .dt-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .dt-testimonial-card {
        padding: 2.5rem;
    }

        .dt-testimonial-card::after {
            left: 2.5rem;
        }
}

@media (max-width: 575.98px) {
    .dt-testimonial-card {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }

        .dt-testimonial-card::after {
            left: 1.5rem;
            width: 58px;
        }

        .dt-testimonial-card::before {
            top: -18px;
            right: 12px;
            font-size: 8rem;
        }

    .dt-stars {
        font-size: 1rem;
        letter-spacing: 0.14rem;
    }

    .dt-testimonial-card blockquote {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}


/* =========================================
   TESTIMONIAL REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    .dt-testimonial-card {
        transform: none;
        transition: none;
    }

        .dt-testimonial-card:hover {
            transform: none;
        }
}