:root {
    --black: #070807;
    --charcoal: #111210;
    --olive: #7d8d3b;
    --olive2: #a2ae5a;
    --cream: #f7f7f3;
    --ink: #171817;
    --muted: #666a62;
    --line: #d9dbd3;
    --max: 1440px;
}

/* ================================
   GLOBAL
================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Montserrat, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
}

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

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

.container {
    width: min(calc(100% - 64px), var(--max));
    margin: auto;
}


/* ================================
   HEADER
================================ */

.site-header {
    height: 100px;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0 3vw;
    background: #050605;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #262823;
}


/* LOGO */

/* ================================
   LOGO
================================ */

.brand {
    width: 260px;
    height: 90px;
    margin-right: auto;
    overflow: visible;
    display: flex;
    align-items: center;
    position: relative;
}

.brand img {
    width: 260px;
    height: 110px;
    max-width: none;

    object-fit: contain;
    object-position: left center;

    transform: scale(1.25);
    transform-origin: left center;
}


/* NAVIGATION */

.nav {
    display: flex;
    gap: 30px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav a {
    padding: 31px 0;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 21px;
    height: 2px;
    width: 0;
    background: var(--olive2);
    transition: 0.25s;
}

.nav a:hover::after {
    width: 100%;
}


/* HEADER PHONE */

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 10px 0;
}

.header-phone:hover {
    color: var(--olive2);
}


/* MOBILE MENU */

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 27px;
    height: 2px;
    background: #fff;
    margin: 5px;
}


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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--olive);
    border: 1px solid var(--olive);
    color: white;
    padding: 16px 24px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: 0.2s;
    border-radius: 2px;
}

.btn:hover {
    transform: translateY(-2px);
    background: #8d9c48;
}

.btn-small {
    padding: 13px 19px;
}

.btn-outline {
    background: transparent;
    border-color: #fff;
}


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

.hero {
    min-height: 620px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: #080908;
}

.hero-image {
    position: absolute;
    inset: 0;
    background:
        url("../assets/images/hero.png")
        center right / cover no-repeat;
    filter: saturate(0.82) contrast(1.04);
    image-rendering: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 6, 5, 0.99) 0%,
        rgba(5, 6, 5, 0.94) 26%,
        rgba(5, 6, 5, 0.58) 48%,
        rgba(5, 6, 5, 0.12) 76%,
        rgba(5, 6, 5, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 520px;
    padding: 64px 0;
}

.eyebrow {
    color: var(--olive2);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 800;
    margin: 0 0 13px;
}

.hero h1 {
    font-size: clamp(48px, 5.4vw, 82px);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: -0.045em;
    margin: 0 0 24px;
}

.hero h1 span,
.philosophy h2 span {
    color: var(--olive2);
}

.hero-intro {
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
}


/* LOCATION */

.location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 22px 0 28px;
    color: #ddd;
    font-size: 12px;
    line-height: 1.65;
}

.location > span {
    color: var(--olive2);
    font-size: 22px;
    line-height: 1;
}

.location p {
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
}


/* ================================
   BENEFITS
================================ */

.benefits {
    padding: 40px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.benefits article {
    text-align: center;
    padding: 6px 45px;
    border-right: 1px solid var(--line);
}

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

.benefits h3 {
    text-transform: uppercase;
    font-size: 11px;
    margin: 10px 0;
}

.benefits p {
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
}


/* ================================
   BENEFIT ICONS
================================ */

.icon {
    width: 42px;
    height: 42px;
    margin: auto;
    position: relative;
    border: 2px solid var(--olive);
}


/* MAKE ROOM FOR LIFE */

.cube {
    transform: rotate(30deg);
    border-radius: 3px;
}


/* KEEP WHAT MATTERS */

.house {
    border-top: 0;
}

.house::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border-left: 2px solid var(--olive);
    border-top: 2px solid var(--olive);
    transform: rotate(45deg);
    left: 5px;
    top: -11px;
}


/* SAVE TIME & STRESS */

.clock {
    border-radius: 50%;
}

.clock::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    background: var(--olive);
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
}

.clock::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 2px;
    background: var(--olive);
    left: 50%;
    top: 19px;
    transform: rotate(35deg);
    transform-origin: left center;
}


/* DESIGNED AROUND YOU */

.design {
    border-radius: 3px;
}

/* Vertical floor plan wall */

.design::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 27px;
    background: var(--olive);
    left: 14px;
    top: 0;
}

/* Horizontal floor plan wall */

.design::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--olive);
    left: 14px;
    top: 26px;
}


/* ================================
   DARK SECTIONS
================================ */

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


/* ================================
   SERVICES
================================ */

.services {
    padding: 54px 0 62px;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: 30px;
    margin: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.service-card {
    height: 245px;
    position: relative;
    overflow: hidden;
    border: 1px solid #4d5139;
    border-radius: 5px;
    background: #171817;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    filter: saturate(0.78) brightness(0.86);
    image-rendering: auto;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(
        transparent,
        rgba(5, 6, 5, 0.96)
    );
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card > div {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card h3 {
    font-size: 12px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.25;
}

.mini-icon {
    color: var(--olive2);
    font-size: 26px;
}


/* ================================
   PROCESS
================================ */

.process {
    padding: 50px 0;
    background: #fff;
}

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

.process-step {
    padding: 8px 28px;
    border-right: 1px solid var(--line);
    min-height: 220px;
}

.process-step:last-child {
    border: 0;
}

.process-step strong {
    color: var(--olive);
    font-size: 24px;
}

.process-icon {
    display: block;
    font-size: 34px;
    line-height: 1;
    margin: 12px 0;
}

.process-step h3 {
    text-transform: uppercase;
    font-size: 12px;
}

.process-step p {
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}


/* ================================
   PHILOSOPHY
================================ */

.philosophy {
    padding: 52px 0;
}

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

.philosophy-copy,
.principle {
    padding: 10px 25px;
}

.philosophy-copy h2 {
    font-size: 30px;
    line-height: 1.03;
    text-transform: uppercase;
    margin-top: 0;
}

.philosophy-copy p,
.principle p {
    color: #c2c4be;
    line-height: 1.65;
    font-size: 12px;
}

.principle {
    text-align: center;
    border-left: 1px solid #3b3f2d;
}

.principle > span {
    font-size: 38px;
    color: var(--olive2);
}

.principle h3 {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--olive2);
    line-height: 1.4;
}


/* ================================
   CONSULTATION FORM
================================ */

.consultation {
    padding: 62px 0;
    background: #f4f3ef;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 48px;
}

.form-intro h2 {
    font-size: 38px;
    line-height: 1.03;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.form-intro > p {
    line-height: 1.7;
    color: #50534e;
}

.form-intro ul {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.form-intro li {
    padding: 9px 0 9px 30px;
    position: relative;
    font-size: 13px;
}

.form-intro li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--olive);
    font-weight: 900;
}

.area-card {
    padding: 18px 20px;
    border-left: 4px solid var(--olive);
    background: white;
}

.area-card span {
    display: block;
    color: #777;
    font-size: 11px;
    line-height: 1.6;
    margin-top: 5px;
}


/* DIRECT CONTACT */

.direct-contact {
    display: grid;
    gap: 7px;
    margin-top: 18px;
}

.direct-contact a {
    font-size: 12px;
    font-weight: 800;
    color: #4d571f;
}

.direct-contact a:hover {
    text-decoration: underline;
}


/* FORM BOX */

.consultation-form {
    background: white;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-grid label {
    font-size: 10px;
    font-weight: 700;
    color: #333;
}

.form-grid label b {
    color: #8c2f2f;
}

.form-grid label > span {
    color: #777;
    font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    margin-top: 7px;
    padding: 13px;
    border: 1px solid #d8d9d3;
    background: white;
    font: inherit;
    font-size: 12px;
    color: #222;
}

.form-grid textarea {
    resize: vertical;
}

.wide {
    grid-column: 1 / -1;
}


/* UPLOAD */

.upload input {
    border-style: dashed;
    background: #fafafa;
}

.upload small {
    display: block;
    color: #888;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 7px;
}


/* SUBMIT */

.submit-btn {
    width: 100%;
    margin-top: 18px;
}

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

.secure {
    text-align: center;
    color: #777;
    font-size: 10px;
}


/* SUCCESS */

.success {
    display: none;
    background: #eef2dc;
    color: #4a571c;
    padding: 14px;
    font-size: 12px;
    margin-top: 14px;
}

.success.show {
    display: block;
}


/* FORM ERROR */

.form-error {
    display: none;
    background: #fff0ef;
    color: #8a2424;
    padding: 14px;
    font-size: 12px;
    margin-top: 14px;
    border-left: 3px solid #b4453e;
}

.form-error.show {
    display: block;
}


/* HONEYPOT SPAM FIELD */

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


/* CLOUDFLARE TURNSTILE */

.turnstile-wrap {
    margin-top: 2px;
}

.turnstile-wrap[hidden] {
    display: none;
}


/* ================================
   FAQ
================================ */

.faq {
    padding: 54px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: 50px;
}

.left {
    text-align: left;
}

.accordion {
    border-top: 1px solid #393b36;
}

.faq-row button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    background: none;
    border: 0;
    border-bottom: 1px solid #393b36;
    color: white;
    padding: 17px 0;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-row button span {
    color: var(--olive2);
    font-size: 21px;
}

.faq-row > div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-row.open > div {
    max-height: 180px;
}

.faq-row p {
    color: #c0c2bc;
    font-size: 12px;
    line-height: 1.65;
    padding: 0 0 16px;
    margin: 0;
}


/* ================================
   FOOTER
================================ */

.site-footer {
    background: #040504;
    color: white;
    padding: 40px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.25fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 220px;
    height: 82px;
    object-fit: contain;
    object-position: left center;
}

.footer-grid h3 {
    color: var(--olive2);
    text-transform: uppercase;
    font-size: 11px;
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: #bcbeb9;
    font-size: 11px;
    line-height: 1.8;
    margin: 0;
}

.footer-brand small {
    display: block;
    color: #757871;
    font-size: 9px;
    line-height: 1.5;
    margin-top: 12px;
}


/* FOOTER CONTACT */

.footer-contact a {
    display: inline-block;
    margin: 4px 0;
    color: #fff;
}

.footer-contact a:hover {
    color: var(--olive2);
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #292a26;
    margin-top: 28px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: #777;
    font-size: 10px;
}


/* ================================
   LEGAL LINKS
================================ */

.legal-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-link {
    appearance: none;
    border: 0;
    background: none;
    color: #c9ccc2;
    font: inherit;
    font-size: 11px;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-link:hover {
    color: #fff;
}


/* ================================
   PRIVACY / TERMS DIALOG
================================ */

.legal-dialog {
    width: min(720px, calc(100% - 32px));
    max-height: 82vh;
    border: 1px solid #4b4e45;
    border-radius: 4px;
    background: #111210;
    color: #f7f7f3;
    padding: 0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.legal-dialog::backdrop {
    background: rgba(0, 0, 0, 0.78);
}

.legal-dialog-inner {
    padding: 34px 36px 38px;
    position: relative;
    overflow: auto;
}

.legal-dialog h2 {
    margin: 0 45px 8px 0;
    font-size: 30px;
}

.legal-dialog p,
.legal-dialog li {
    font-size: 13px;
    line-height: 1.75;
    color: #d8dad3;
}

.legal-updated {
    color: var(--olive2) !important;
    font-size: 11px !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.dialog-close {
    position: absolute;
    right: 24px;
    top: 20px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.dialog-close:hover {
    color: var(--olive2);
}


/* ================================
   SCROLL REVEAL
================================ */

.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}


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

@media (max-width: 1050px) {

    .nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav.open {
        display: flex;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        padding: 18px 32px;
        background: #060706;
        flex-direction: column;
        gap: 0;
    }

    .nav.open a {
        padding: 14px 0;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(5, 6, 5, 0.96),
            rgba(5, 6, 5, 0.6)
        );
    }

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

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

    .benefits article {
        padding: 20px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .philosophy-copy {
        grid-column: 1 / -1;
    }

    .consultation-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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


/* ================================
   HEADER PHONE RESPONSIVE
================================ */

@media (max-width: 980px) {

    .header-phone {
        display: none;
    }

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



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

@media (max-width: 650px) {

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


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

   .site-header {
    height: 110px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* CENTER LOGO IN ENTIRE MOBILE HEADER */

.brand {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 190px;
    height: 90px;
    margin: 0;

    transform: translate(-50%, -50%);

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

    z-index: 2;
}

.brand img {
    display: block;

    width: 190px;
    height: 100px;
    max-width: none;

    object-fit: contain;
    object-position: center;

    transform: scale(1.45);
    transform-origin: center center;
}


/* HAMBURGER REMAINS ON RIGHT */

.menu-toggle {
    display: block;

    position: absolute;
    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    margin: 0;

    z-index: 10;
}


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

    .nav.open {
        top: 110px;
    }


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

    .hero,
    .hero-content {
        min-height: 640px;
    }

    .hero-image {
        background-position: 65% center;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(5, 6, 5, 0.98),
            rgba(5, 6, 5, 0.75)
        );
    }

    .hero-copy {
        padding: 52px 0;
    }

    .hero h1 {
        font-size: 50px;
    }

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


    /* ================================
       GRIDS
    ================================ */

    .benefits-grid,
    .service-grid,
    .process-grid,
    .philosophy-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .service-card {
        height: 240px;
    }

    .process-step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .principle {
        border-left: 0;
        border-top: 1px solid #34372a;
    }


    /* ================================
       CONSULTATION FORM
    ================================ */

    .consultation-form {
        padding: 18px;
    }

    .wide {
        grid-column: auto;
    }

    .form-intro h2 {
        font-size: 32px;
    }


    /* ================================
       FOOTER
    ================================ */

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}


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

@media (max-width: 620px) {

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

    .legal-dialog-inner {
        padding: 28px 22px 30px;
    }

    .legal-dialog h2 {
        font-size: 24px;
    }

    .footer-bottom {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .legal-links {
        flex-wrap: wrap;
    }

}


/* ================================
   LARGE DESKTOP FOOTER
================================ */

@media (min-width: 1051px) {

    .footer-grid {
        grid-template-columns:
            1.45fr
            0.75fr
            1.1fr
            0.9fr
            1.15fr;
    }

}
/* REVIZE GREEN TEXT */

.form-intro h2 .revize-green {
    color: var(--olive) !important;
}
