
/* =========================================================
   DEL LOGGING INC.
   PREMIUM FORESTRY WEBSITE
========================================================= */


/* =========================================================
   01. ROOT / RESET
========================================================= */

:root {
    --black: #0c0d0b;
    --black-soft: #121411;
    --forest: #172019;
    --forest-light: #202b22;

    --cream: #f1eee6;
    --cream-dark: #d9d4c8;

    --wood: #a98a5b;
    --wood-light: #c5a873;

    --white: #ffffff;
    --muted: #92958f;

    --border-dark: rgba(255, 255, 255, 0.10);
    --border-light: rgba(12, 13, 11, 0.12);

    --container: 1320px;

    --transition: 0.35s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}


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


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


.container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;
}


.section {
    padding: 140px 0;
}


/* =========================================================
   02. TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.025em;
}


h1 {
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 600;
}


h2 {
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 500;
}


h3 {
    font-size: 2.3rem;
    font-weight: 500;
}


p {
    font-size: 1rem;
}


.section-label {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.section-label span {
    color: var(--wood);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
}


/* =========================================================
   03. HEADER
========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 100;

    color: var(--white);
}


.nav-container {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.15);
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-mark {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid var(--wood);

    color: var(--wood-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;

    letter-spacing: 0.04em;
}


.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.logo-text strong {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}


.logo-text small {
    margin-top: 5px;

    color: var(--wood-light);

    font-size: 0.6rem;
    font-weight: 600;

    letter-spacing: 0.25em;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}


.main-nav > a {
    position: relative;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition: color var(--transition);
}


.main-nav > a:not(.nav-cta)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--wood-light);

    transition: width var(--transition);
}


.main-nav > a:not(.nav-cta):hover {
    color: var(--wood-light);
}


.main-nav > a:not(.nav-cta):hover::after {
    width: 100%;
}


.nav-cta {
    padding: 14px 20px;

    border: 1px solid rgba(255,255,255,0.35);

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}


.nav-cta:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--black);
}


/* Mobile menu button */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 20px;
    height: 1px;

    margin: 5px auto;

    background: var(--white);

    transition: var(--transition);
}


/* =========================================================
   04. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(7,9,7,0.96) 0%,
            rgba(7,9,7,0.78) 42%,
            rgba(7,9,7,0.30) 100%
        ),
        url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}


.hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.30)
        );
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.25),
            transparent 45%,
            rgba(0,0,0,0.7)
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}


.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 30px;

    color: var(--wood-light);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.2em;
}


.hero-eyebrow span {
    width: 32px;
    height: 1px;

    background: var(--wood-light);
}


.hero h1 {
    max-width: 900px;

    font-size: clamp(
        5rem,
        11vw,
        11rem
    );

    letter-spacing: -0.04em;
}


.hero-description {
    max-width: 500px;

    margin-top: 38px;

    color: rgba(255,255,255,0.72);

    font-size: 1.05rem;
    line-height: 1.8;
}


.hero-buttons {
    display: flex;
    gap: 14px;

    margin-top: 42px;
}


/* =========================================================
   05. BUTTONS
========================================================= */

.button {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 0 28px;

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}


.button:hover {
    transform: translateY(-3px);
}


.button-primary {
    background: var(--wood);
    color: var(--white);
}


.button-primary:hover {
    background: var(--wood-light);
}


.button-secondary {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
}


.button-secondary:hover {
    background: var(--white);
    color: var(--black);
}


/* =========================================================
   06. HERO STATS
========================================================= */

.hero-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;
}


.hero-stats {
    min-height: 115px;

    display: flex;
    align-items: center;

    border-top: 1px solid rgba(255,255,255,0.2);
}


.stat {
    min-width: 190px;

    display: flex;
    align-items: center;
    gap: 16px;

    margin-right: 70px;
}


.stat strong {
    color: var(--wood-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}


.stat span {
    max-width: 100px;

    color: rgba(255,255,255,0.65);

    font-size: 0.65rem;
    font-weight: 600;

    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.hero-scroll {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 18px;

    color: rgba(255,255,255,0.5);

    font-size: 0.6rem;
    font-weight: 600;

    letter-spacing: 0.15em;
}


.scroll-line {
    width: 55px;
    height: 1px;

    background: rgba(255,255,255,0.4);
}


/* =========================================================
   07. ABOUT
========================================================= */

.intro {
    background: var(--cream);
}


.intro-grid {
    display: grid;

    grid-template-columns:
        minmax(180px, 0.5fr)
        minmax(0, 1.5fr);

    gap: 80px;
}


.intro-content {
    max-width: 900px;
}


.intro-content h2 {
    max-width: 900px;

    margin-bottom: 50px;
}


.intro-content h2 span,
.section-heading h2 span,
.operations-content h2 span,
.values-content h2 span,
.cta h2 span {
    color: var(--wood);
}


.intro-content .lead {
    max-width: 700px;

    margin-bottom: 25px;

    font-size: 1.4rem;
    line-height: 1.6;
}


.intro-content > p:not(.lead) {
    max-width: 650px;

    color: #656861;

    line-height: 1.9;
}


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 38px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--wood);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.text-link span {
    color: var(--wood);

    transition: transform var(--transition);
}


.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   08. DARK SECTIONS
========================================================= */

.section-dark {
    background: var(--black);
    color: var(--white);
}


/* =========================================================
   09. SECTION HEADINGS
========================================================= */

.section-heading {
    margin-bottom: 80px;
}


.section-heading h2 {
    max-width: 850px;

    margin-top: 28px;
}


/* =========================================================
   10. SERVICES
========================================================= */

.services {
    padding: 140px 0;
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid var(--border-dark);
    border-left: 1px solid var(--border-dark);
}


.service-card {
    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 36px;

    border-right: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);

    transition:
        background var(--transition),
        transform var(--transition);
}


.service-card:hover {
    background: var(--forest);
}


.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.service-number {
    color: var(--wood);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
}


.service-arrow {
    color: rgba(255,255,255,0.4);

    font-size: 1.2rem;

    transition:
        color var(--transition),
        transform var(--transition);
}


.service-card:hover .service-arrow {
    color: var(--wood-light);
    transform: translate(4px,-4px);
}


.service-card h3 {
    margin-bottom: 20px;
}


.service-card p {
    max-width: 340px;

    color: var(--muted);

    font-size: 0.9rem;
    line-height: 1.8;
}


.service-card > a {
    color: var(--wood-light);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   11. OPERATIONS
========================================================= */

.operations-grid {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 100px;

    align-items: stretch;
}


.operations-image {
    min-height: 700px;

    position: relative;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.8),
            transparent 50%
        ),
        url("https://images.unsplash.com/photo-1511497584788-876760111969?auto=format&fit=crop&w=1600&q=85")
        center / cover no-repeat;
}


.image-overlay {
    position: absolute;
    inset: 0;

    background: rgba(10,15,10,0.12);
}


.image-caption {
    position: absolute;

    left: 40px;
    right: 40px;
    bottom: 40px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    color: var(--white);
}


.image-caption span {
    color: var(--wood-light);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}


.image-caption strong {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 2rem;
    font-weight: 400;

    text-transform: uppercase;
}


.operations-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.operations-content h2 {
    margin: 30px 0;

    font-size: clamp(4rem, 6vw, 6rem);
}


.operations-content > p {
    max-width: 500px;

    color: #696d67;

    line-height: 1.9;
}


.operation-list {
    margin-top: 55px;

    border-top: 1px solid var(--border-light);
}


.operation-item {
    display: flex;
    align-items: center;
    gap: 30px;

    padding: 20px 0;

    border-bottom: 1px solid var(--border-light);
}


.operation-item strong {
    color: var(--wood);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 400;
}


.operation-item span {
    font-size: 0.85rem;
    font-weight: 500;
}


/* =========================================================
   12. PROJECTS
========================================================= */

.projects {
    padding: 140px 0;
}


.projects-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


.projects-heading h2 {
    margin: 0;
}


.project-grid {
    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr;

    grid-template-rows:
        420px
        420px;

    gap: 16px;
}


.project-card {
    position: relative;

    overflow: hidden;

    min-height: 300px;
}


.project-one {
    grid-row: span 2;
}


.project-image {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;

    transition: transform 0.8s ease;
}


.project-one .project-image {
    background-image:
        url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=1800&q=85");
}


.project-two .project-image {
    background-image:
        url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1400&q=85");
}


.project-three .project-image {
    background-image:
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1400&q=85");
}


.project-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.8),
            transparent 65%
        );
}


.project-card:hover .project-image {
    transform: scale(1.04);
}


.project-info {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 30px;
    z-index: 2;
}


.project-info span {
    color: var(--wood-light);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}


.project-info h3 {
    margin: 10px 0 18px;
    font-size: 2.5rem;
}


.project-info a {
    color: rgba(255,255,255,0.75);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   13. VALUES
========================================================= */

.values-grid {
    display: grid;
    grid-template-columns:
        minmax(180px, 0.5fr)
        minmax(0, 1.5fr);
    gap: 80px;
}


.values-content {
    max-width: 900px;
}


.values-content h2 {
    max-width: 800px;
    margin-bottom: 70px;
}


.values-list {
    border-top: 1px solid var(--border-light);
}


.value {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
}


.value > span {
    color: var(--wood);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
}


.value h3 {
    margin-bottom: 10px;
    font-size: 2rem;
}


.value p {
    max-width: 550px;
    color: #686c65;
    font-size: 0.9rem;
    line-height: 1.8;
}


/* =========================================================
   14. CTA
========================================================= */

.cta {
    padding: 110px 0;
    background: var(--forest);
    color: var(--white);
}


.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.cta-content h2 {
    margin: 28px 0;
    font-size: clamp(4rem, 7vw, 7rem);
}


.cta-content p {
    max-width: 500px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}


.cta .button {
    flex-shrink: 0;
}


/* =========================================================
   15. FOOTER
========================================================= */

.site-footer {
    padding: 80px 0 30px;
    background: var(--black);
    color: var(--white);
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 80px;
}


.footer-brand p {
    max-width: 250px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 0.85rem;
}


.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.footer-title {
    margin-bottom: 10px;
    color: var(--wood-light);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}


.footer-column a {
    color: #898d86;
    font-size: 0.78rem;
    transition: color var(--transition);
}


.footer-column a:hover {
    color: var(--white);
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid var(--border-dark);
    color: #62655f;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
}


/* =========================================================
   16. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .container {
        width: min(
            calc(100% - 50px),
            var(--container)
        );
    }


    .main-nav {
        gap: 20px;
    }


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


    .operations-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .operations-image {
        min-height: 550px;
    }


    .projects-heading {
        display: block;
    }


    .projects-heading h2 {
        margin-top: 30px;
    }


    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

}


/* =========================================================
   17. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {

    .container {
        width: calc(100% - 40px);
    }


    .section {
        padding: 90px 0;
    }


    /* Header */

    .nav-container {
        min-height: 80px;
    }


    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 20px 25px;
        background: rgba(12,13,11,0.98);
        border-bottom: 1px solid var(--border-dark);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }


    .main-nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .main-nav > a {
        padding: 17px 5px;

        border-bottom: 1px solid var(--border-dark);
    }


    .main-nav .nav-cta {
        margin-top: 15px;

        text-align: center;

        border: 1px solid rgba(255,255,255,0.25);
    }


    .menu-toggle {
        display: block;
    }


    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(6px)
            rotate(45deg);
    }


    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-6px)
            rotate(-45deg);
    }


    /* Hero */

    .hero {
        min-height: 800px;

        background-position:
            62% center;
    }


    .hero-content {
        padding-top: 80px;
    }


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


    .hero-description {
        margin-top: 28px;

        font-size: 0.9rem;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .button {
        width: 100%;
    }


    .hero-bottom {
        display: none;
    }


    /* About */

    .intro-grid,
    .values-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .intro-content h2 {
        margin-bottom: 35px;

        font-size: clamp(
            3.5rem,
            15vw,
            5rem
        );
    }


    .intro-content .lead {
        font-size: 1.1rem;
    }


    /* Services */

    .services {
        padding: 90px 0;
    }


    .section-heading {
        margin-bottom: 50px;
    }


    .section-heading h2 {
        font-size: clamp(
            3.5rem,
            15vw,
            5rem
        );
    }


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


    .service-card {
        min-height: 340px;

        padding: 28px;
    }


    /* Operations */

    .operations-image {
        min-height: 450px;
    }


    .operations-content h2 {
        font-size: clamp(
            3.5rem,
            15vw,
            5rem
        );
    }


    /* Projects */

    .projects {
        padding: 90px 0;
    }


    .project-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }


    .project-card,
    .project-one {
        min-height: 420px;
    }


    .project-info h3 {
        font-size: 2.1rem;
    }


    /* Values */

    .values-content h2 {
        font-size: clamp(
            3.5rem,
            15vw,
            5rem
        );

        margin-bottom: 50px;
    }


    .value {
        grid-template-columns: 45px 1fr;

        gap: 15px;
    }


    /* CTA */

    .cta {
        padding: 90px 0;
    }


    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }


    .cta-content h2 {
        font-size: clamp(
            3.8rem,
            16vw,
            6rem
        );
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 50px 30px;
    }


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


    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

}


/* =========================================================
   18. SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .container {
        width: calc(100% - 30px);
    }


    .logo-mark {
        width: 40px;
        height: 40px;
    }


    .logo-text strong {
        font-size: 0.8rem;
    }


    .hero {
        min-height: 750px;
    }


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


    .operations-image {
        min-height: 400px;
    }


    .image-caption {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }


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

}



/* =========================================================
   19. SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   20. SCROLLED HEADER
========================================================= */

.site-header {
    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease;
}


.site-header.scrolled {
    position: fixed;
    background: rgba(12, 13, 11, 0.92);
    backdrop-filter: blur(14px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.18);
}


@media (max-width: 720px) {
    .site-header.scrolled {
        background: rgba(12, 13, 11, 0.97);
    }

}



/* =========================================================
   21. QUOTE REQUEST FORM
========================================================= */

.quote-section {
    padding: 140px 0;
    background: var(--forest);
    color: var(--white);
}


.quote-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: start;
}


.quote-intro {
    position: sticky;
    top: 130px;
}


.quote-intro h2 {
    max-width: 650px;
    margin: 35px 0 30px;
    font-size: clamp(4rem, 6vw, 6.5rem);
}


.quote-intro h2 span {
    display: block;
    color: var(--wood-light);
}


.quote-intro > p {
    max-width: 500px;
    color: rgba(255,255,255,0.58);
    line-height: 1.9;
}


.quote-contact {
    margin-top: 60px;
    border-top: 1px solid var(--border-dark);
}


.quote-contact > div {
    padding: 22px 0;
    border-bottom: 1px solid var(--border-dark);
}


.quote-contact span {
    display: block;
    margin-bottom: 8px;
    color: var(--wood-light);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}


.quote-contact a,
.quote-contact strong {
    font-size: 0.9rem;
    font-weight: 500;
}


.quote-contact a {
    transition: color var(--transition);
}


.quote-contact a:hover {
    color: var(--wood-light);
}


/* Form container */

.quote-form-wrapper {
    padding: 45px;
    background: rgba(255,255,255,0.045);
    border: 1px solid var(--border-dark);
}


.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


.form-field label {
    color: rgba(255,255,255,0.75);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,0.16);
    outline: none;
    background: rgba(0,0,0,0.18);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    border-radius: 0;
    transition:
        border-color var(--transition),
        background var(--transition);
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,0.30);
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--wood-light);
    background: rgba(0,0,0,0.28);
}


.form-field select {
    cursor: pointer;
}


.form-field select option {
    background: var(--black);
    color: var(--white);
}


.form-field textarea {
    resize: vertical;
    min-height: 150px;
}


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


.form-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    margin-top: 5px;
}


.form-submit:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.form-status {
    min-height: 20px;

    font-size: 0.78rem;
    line-height: 1.5;
}
.form-status.success {
    color: #a9d49b;
}
.form-status.error {
    color: #e2a09a;
}


.form-note {
    color: rgba(255,255,255,0.35);
    font-size: 0.65rem;
    line-height: 1.6;
}


@media (max-width: 900px) {

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .quote-intro {
        position: static;
    }

}


@media (max-width: 600px) {

    .quote-section {
        padding: 90px 0;
    }

    .quote-form-wrapper {
        padding: 25px 20px;
    }

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

}



/* =========================================================
   22. QUOTE MODAL
========================================================= */

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}


.quote-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* Dark background */

.quote-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        rgba(5, 7, 5, 0.88);
    backdrop-filter: blur(12px);
}


/* Main modal */

.quote-modal-container {
    position: relative;
    z-index: 2;
    width: min(
        1200px,
        100%
    );
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background: var(--forest);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.45);
    transform: translateY(25px) scale(0.98);
    transition:
        transform 0.45s ease;
}


.quote-modal.active
.quote-modal-container {
    transform:
        translateY(0)
        scale(1);

}


/* Close button */

.quote-close {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}


.quote-close:hover {
    background: var(--wood);
    border-color: var(--wood);
}


.quote-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: white;
}


.quote-close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


.quote-close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* Modal layout */

.quote-modal-grid {
    display: grid;
    grid-template-columns:
        0.85fr
        1.15fr;
    min-height: 700px;
}


/* Intro */

.quote-modal-intro {
    padding: 70px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(
            145deg,
            #1d2a20,
            #111711
        );
}


.quote-modal-intro h2 {
    margin: 35px 0 30px;
    font-size:
        clamp(4rem, 5.5vw, 6rem);
}


.quote-modal-intro h2 span {
    display: block;
    color: var(--wood-light);
}


.quote-modal-intro > p {
    max-width: 430px;
    color:
        rgba(255,255,255,0.58);
    line-height: 1.9;
}


.quote-modal-contact {
    margin-top: 55px;
    border-top:
        1px solid var(--border-dark);
}


.quote-modal-contact > div {
    padding: 20px 0;
    border-bottom:
        1px solid var(--border-dark);

}


.quote-modal-contact span {
    display: block;
    margin-bottom: 7px;
    color: var(--wood-light);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}


.quote-modal-contact a,
.quote-modal-contact strong {
    font-size: 0.82rem;
    font-weight: 500;
}


.quote-modal-contact a:hover {
    color: var(--wood-light);
}


/* Form */

.quote-modal .quote-form-wrapper {
    padding: 55px;
    background: #10130f;
}


/* Hide honeypot */

.hidden-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* Prevent background scroll */

body.quote-open {
    overflow: hidden;
}


/* Mobile */
@media (max-width: 900px) {
    .quote-modal {
        padding: 15px;
    }


    .quote-modal-container {
        max-height:
            calc(100vh - 30px);
    }


    .quote-modal-grid {
        grid-template-columns: 1fr;
    }


    .quote-modal-intro {
        padding:
            70px 30px 45px;
    }


    .quote-modal-intro h2 {
        font-size:
            clamp(3.5rem, 13vw, 5rem);
    }


    .quote-modal .quote-form-wrapper {
        padding:
            35px 25px;
    }
}


@media (max-width: 600px) {
    .quote-modal {
        padding: 0;
    }


    .quote-modal-container {
        width: 100%;
        max-height: 100vh;
        height: 100vh;
        border: 0;
    }


    .quote-modal-intro {
        padding:
            80px 22px 35px;

    }


    .quote-modal .quote-form-wrapper {
        padding:
            30px 20px 50px;

    }


    .quote-close {

        top: 18px;
        right: 18px;

    }
}


/* =========================================================
   23. CORPORATE INFORMATION
========================================================= */

.corporate {
    background: #eeeae1;
}


.corporate-header {
    display: grid;
    grid-template-columns:
        0.5fr
        1.5fr;

    gap: 80px;
    margin-bottom: 80px;
}


.corporate-header h2 {
    max-width: 800px;
    margin-bottom: 30px;
}


.corporate-header h2 span {
    color: var(--wood);
}


.corporate-header p {
    max-width: 620px;
    color: #686b65;
    line-height: 1.9;
}


/* Cards */

.corporate-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    border-top:
        1px solid var(--border-light);
    border-left:
        1px solid var(--border-light);
}


.corporate-card {
    min-height: 440px;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    padding: 40px;
    border-right:
        1px solid var(--border-light);
    border-bottom:
        1px solid var(--border-light);
    transition:
        background 0.35s ease;
}


.corporate-card:hover {
    background: rgba(255,255,255,0.55);
}


.corporate-card-number {
    color: var(--wood);
    font-family:
        "Barlow Condensed",
        sans-serif;
    font-size: 1.1rem;
}


.corporate-card-label {
    display: block;
    margin-bottom: 15px;
    color: var(--wood);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}


.corporate-card h3 {
    margin-bottom: 35px;
    font-size: 2.8rem;
}


.corporate-card dl {
    border-top:
        1px solid var(--border-light);
}


.corporate-card dl > div {
    display: grid;
    grid-template-columns:
        0.85fr
        1.15fr;
    gap: 20px;
    padding: 14px 0;
    border-bottom:
        1px solid var(--border-light);
}


.corporate-card dt {
    color: #858880;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.corporate-card dd {
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.6;
}


.corporate-note {
    display: grid;
    grid-template-columns:
        0.5fr
        1.5fr;
    gap: 80px;
    margin-top: 45px;
    padding-top: 30px;
    border-top:
        1px solid var(--border-light);
}


.corporate-note > span {
    color: var(--wood);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}


.corporate-note p {
    max-width: 650px;
    color: #858880;
    font-size: 0.75rem;
    line-height: 1.8;
}


/* =========================================================
   CORPORATE RESPONSIVE
========================================================= */


.corporate {
    background: #eeeae1;
}

.corporate-header {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 80px;
    margin-bottom: 55px;
}

.corporate-header h2 {
    max-width: 800px;
    margin-bottom: 22px;
}

.corporate-header h2 span {
    color: var(--wood);
}

.corporate-header p {
    max-width: 620px;
    color: #686b65;
    line-height: 1.8;
}


/* Main information grid */

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}


/* Individual cards */

.corporate-card {
    min-height: 0;
    height: fit-content;
    padding: 38px 40px 42px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    align-items: start;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.corporate-card:nth-child(4) {
    padding-bottom: 34PX;
}

.corporate-card:hover {
    background: rgba(255, 255, 255, 0.52);
}


/* Card number */

.corporate-card-number {
    color: var(--wood);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}


/* Card label */

.corporate-card-label {
    display: block;
    margin-bottom: 12px;
    color: var(--wood);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* Card heading */

.corporate-card h3 {
    margin-bottom: 25px;
    color: var(--black);
    font-size: 2.45rem;
    line-height: 0.95;
}


/* Data list */

.corporate-card dl {
    margin: 0;
    border-top: 1px solid var(--border-light);
}

.corporate-card dl > div {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.corporate-card dt {
    color: #858880;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1.5;
    text-transform: uppercase;
}

.corporate-card dd {
    margin: 0;
    color: var(--black);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.55;
}


/* Business information note */

.corporate-note {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 80px;
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid var(--border-light);
}

.corporate-note > span {
    color: var(--wood);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.corporate-note p {
    max-width: 650px;
    margin: 0;
    color: #858880;
    font-size: 0.72rem;
    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .corporate-header,
    .corporate-note {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .corporate-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .corporate-card {
        width: 100%;
        height: fit-content;
        padding: 34px 30px 38px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .corporate {
        padding: 90px 0;
    }
    .corporate-header {
        margin-bottom: 40px;
    }
    .corporate-header h2 {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }
    .corporate-card {
        grid-template-columns: 34px 1fr;
        gap: 16px;
        padding: 28px 20px 32px;
    }
    .corporate-card h3 {
        margin-bottom: 22px;
        font-size: 2.1rem;
    }
    .corporate-card dl > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 11px 0;
    }

    .corporate-card dt {
        font-size: 0.58rem;
    }

    .corporate-card dd {
        font-size: 0.74rem;
    }

    .corporate-note {
        margin-top: 30px;
        padding-top: 22px;
    }
}