/* ------------------------------
   BASE
------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: #111;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    line-height: 1.5;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
}
.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

/* ------------------------------
   TYPOGRAPHY
------------------------------ */
h1,
h2,
h3 {
    margin-top: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}
p {
    margin-top: 0;
}
h1 {
    max-width: 900px;
    margin-bottom: 24px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: .98;
    letter-spacing: -0.02em;
}
h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.08;
}
.eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ------------------------------
   BUTTONS
------------------------------ */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid #fff;
    border-radius: 100px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background-color .2s ease,
        color .2s ease;
}
.button:hover {
    background: #fff;
    color: #111;
}

.outline-button,
.dark-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.outline-button {
    border: 1px solid #171717;
    color: #171717;
    transition:
        background-color .2s ease,
        color .2s ease;
}
.outline-button:hover {
    border: 1px solid #445C8F;
    background-color: #445C8F;
    color: #ffffff;
}
.dark-button {
    border: 1px solid #171717;
    background: #171717;
    color: #fff;
    transition:
        background-color .2s ease,
        color .2s ease;
}
.dark-button:hover {
    border: 1px solid #E51E24;
    background: #E51E24;
    color: #fff;
}

/* ------------------------------
   HEADER
------------------------------ */
.site-header {
    position: relative;
    z-index: 10;
    padding: 10px 0;
    background: #202020;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1300px, calc(100% - 20px));
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}
.logo img {
    width: 160px;
    height: auto;
}
.logo span {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.2;
    padding-top: 26px;
}
.vh-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ------------------------------
   HERO
------------------------------ */
.hero {
    position: relative;
    display: flex;
    min-height: 76vh;
    align-items: center;
    background-image:
        url("../images/003-VHT_video-website.webp");
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.46) 42%,
            rgba(0, 0, 0, 0.08) 75%
        );
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-left: 5rem;
}
.hero h1 {
    max-width: 640px;
    font-size: clamp(44px, 5vw, 78px);
    line-height: 1.02;
    text-shadow: #1b1b1b 1px 0 10px;
}
.hero-intro {
    max-width: 500px;
    margin-bottom: 32px;
    font-size: 18px;
}
.hero-project-label {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    padding: 7px 26px;
    border-radius: 100px;
    background: #242424;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .03em;
    white-space: nowrap;
}

/* ------------------------------
   LANDING HERO
------------------------------ */
.landing-hero {
    position: relative;
    display: flex;
    min-height: 76vh;
    align-items: center;
    overflow: hidden;
    background: #111;
}
/* Background slider */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    /* Helps browsers animate large photos smoothly */
    will-change: opacity;
}
.hero-slide.is-active {
    opacity: 1;
}
.landing-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-left: 6rem;
}
.landing-hero-intro {
    max-width: 560px;
    margin-bottom: 32px;
    font-size: 18px;
}


/* ------------------------------
   COMING SOON
------------------------------ */
.coming-soon {
    padding: 110px 0;
}
.coming-soon .container {
    max-width: 900px;
}
.vht-new a.button {
    margin-top: 20px;
}


/* ------------------------------
   VHT DIFFERENCE
------------------------------ */
.difference {
    padding: 90px 0;
    background: #fff;
    color: #171717;
}
.difference-intro {
    max-width: 820px;
    text-align: center;
}
.difference .eyebrow {
    color: #284674;
}
.difference h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}
.difference-copy {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 17px;
}
.difference-copy p {
    margin-top: 16px;
    color: #555;
    font-size: 17px;
}

/* Certifications */
.certified {
    padding: 30px 0 0;
    background: #fff;
}
.certifications {
    display: flex;
    justify-content: center;
    gap: 65px;
    margin-top: 10px;
    line-height: 1.0;
}
.certification-item {
    text-align: center;
    color: #4c4c4c;
    max-width: 100px;
}
.certification-item img {
    width: 32px;
    margin: 0 auto 8px;
}
.certification-item span {
    font-size: 10px;
    line-height: 1.0;
}
@media (max-width: 850px) {
    .certifications {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Landing Certifications */
.landing-certifications {
    display: flex;
    justify-content: center;
    gap: 65px;
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid #777;
    line-height: 1.0;
}

/* ------------------------------
   OUR APPROACH --------- LANDING PAGE
------------------------------ */
.approach {
    padding: 100px 0 70px;
    background: #f5f5f5;
    color: #171717;
}
.approach-layout {
    display: grid;
    grid-template-columns: .8fr 1.6fr;
    gap: 75px;
}
.approach-intro h2 {
    margin-bottom: 42px;
}
.approach-intro > p {
    max-width: 330px;
    margin-bottom: 38px;
    font-size: 18px;
    line-height: 1.4;
}
.approach-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 340px;
}
.approach-content {
    position: relative;
    padding-top: 42px;
}
.approach-process-link {
    position: absolute;
    top: 0;
    right: 0;
    color: #171717;
    font-size: 13px;
    font-weight: 600;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.approach-card {
    min-height: 250px;
    padding: 42px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}
.approach-card img {
    width: 30px;
    height: 30px;
    margin-bottom: 18px;
}
.approach-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}
.approach-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 850px) {
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .approach-process-link {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
}


/* ------------------------------
   About section with video --------- LANDING PAGE
------------------------------ */
.installers-section {
    padding: 90px 0;
    background: #fff;
    color: #171717;
}
.installers-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}
.installers-media {
    overflow: hidden;
    border-radius: 14px;
}
.installers-media video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.installers-content h2 {
    margin-bottom: 24px;
}
.installers-content > p {
    margin-bottom: 30px;
    color: #444;
    font-size: 16px;
    line-height: 1.55;
}
.installers-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 580px;
}
.installers-list li {
    position: relative;
    padding: 14px 0 14px 32px;
    border-bottom: 1px solid #bbb;
    font-size: 14px;
    line-height: 1.45;
}
.installers-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    font-weight: 700;
}

@media (max-width: 800px) {
    .installers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .installers-media video {
        aspect-ratio: 16 / 10;
    }
}


/* ------------------------------
   SOLUTIONS ACCORDION --------- LANDING PAGE
------------------------------ */
/* Smart Solutions intro */
.solutions-section {
    padding: 90px 20px 60px;
    background: #f5f5f3;
    color: #171717;
}
.solutions-intro {
    padding: 0 0 45px;
    background: transparent;
}
.solutions-intro-inner {
    max-width: 720px;
    text-align: center;
}
.solutions-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 46px);
}
.solutions-intro p {
    max-width: 650px;
    margin: 0 auto 28px;
    font-size: 15px;
    line-height: 1.5;
}
.solutions-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.solutions-actions .outline-button,
.solutions-actions .dark-button {
    min-width: 220px;
}
.solutions-tabs {
    max-width: 1100px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    color: #171717;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
}
.tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #d8d8d8;
}
.tab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 16px;
    border: 0;
    background: transparent;
    color: #171717;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.tab-button img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}
.tab-button.is-active {
    background: #fff;
    border-radius: 10px 10px 0 0;
}
.tabs-panels {
    background: #fff;
}
.tab-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
    align-items: center;
    min-height: 400px;
    padding: 48px 55px;
}
.tab-panel[hidden] {
    display: none;
}
.panel-copy h2 {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 1.2;
}
.panel-copy > p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}
.feature-row {
    display: flex;
    gap: 10px;
    padding: 12px 8px;
    border-top: 1px solid #777;
    font-size: 12px;
    line-height: 1.35;
}
.feature-row:last-child {
    border-bottom: 1px solid #777;
}
.feature-row img {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}
.feature-row strong {
    margin-right: 4px;
}
.panel-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.panel-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ------------------------------
   LED VIDEO WALL --------- LANDING PAGE
------------------------------ */
.led-wall {
    padding: 110px 0;
    background: #fff;
    color: #171717;
}
.led-wall__heading {
    max-width: 760px;
    margin-bottom: 50px;
}
.led-wall__heading .eyebrow {
    color: #284674;
}
.led-wall__heading h2 {
    margin-bottom: 0;
}
.led-wall__row {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
}
.led-wall__image {
    overflow: hidden;
    border-radius: 18px;
}
.led-wall__image img {
    display: block;
    width: 100%;
    height: auto;
}
.led-wall__content {
    max-width: 520px;
}
.led-wall__content p {
    margin-bottom: 20px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}
.led-wall__content p:last-child {
    margin-bottom: 0;
}
.led-wall__link {
    padding-top: 12px;
    border-top: 1px solid #ccc;
}
.led-wall__link a {
    color: #171717;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.led-wall__link a:hover {
    opacity: .75;
}

/* Tablet */
@media (max-width: 900px) {
    .led-wall__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .led-wall__content {
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .led-wall {
        padding: 80px 0;
    }
    .led-wall__heading {
        margin-bottom: 35px;
    }
}

/* ------------------------------
   IMAGINE CAROUSEL --------- LANDING PAGE
------------------------------ */
.imagine-section {
    padding: 110px 0;
    background: #fff;
    color: #171717;
}
.imagine-shell {
    position: relative;
}
.imagine-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.imagine-track::-webkit-scrollbar {
    display: none;
}

/* Slides */
.imagine-slide {
    flex: 0 0 80%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 430px;
    scroll-snap-align: start;
}
.imagine-slide__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.imagine-slide__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 45px;
    background: #fff;
}
.imagine-slide__copy > div {
    max-width: 360px;
    text-align: center;
}
.imagine-copy h3 {
    margin: 0 0 26px;
    color: #747b80;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}
.imagine-copy p {
    margin-bottom: 20px;
    color: #747b80;
    font-size: 17px;
    line-height: 1.5;
}
.imagine-small {
    margin-bottom: 12px !important;
    font-size: 15px !important;
}
.imagine-link {
    display: inline-block;
    margin-top: 12px;
    padding-top: 12px;
    color: #747b80;
    font-size: 15px;
    text-underline-offset: 4px;
}
.imagine-caption {
    margin-top: 8px;
    font-size: 15px !important;
}

/* Arrow buttons */
.imagine-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #aaa;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: #737b80;
    font-size: 24px;
    cursor: pointer;
    transform: translateY(-50%);
}
.imagine-arrow--prev {
    left: 22px;
}
.imagine-arrow--next {
    right: 22px;
}
.imagine-arrow:hover {
    background: #171717;
    color: #fff;
}

/* Tablet */
@media (max-width: 900px) {
    .imagine-slide {
        flex-basis: 70vw;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .imagine-slide {
        grid-template-columns: 1fr;
    }
    .imagine-slide__image {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .imagine-section {
        padding: 80px 0;
    }
    .imagine-slide {
        flex: 0 0 88vw;
        min-width: 0;
        min-height: 380px;
    }
    .imagine-slide--copy {
        padding: 40px 28px;
    }
    .imagine-arrow {
        display: none;
    }
}

/* ------------------------------
   VISION TO REALITY --------- LANDING PAGE
------------------------------ */
.vision-reality {
    padding: 90px 0;
    background: #fff;
    color: #242424;
}
.vision-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}
.vision-copy h2 {
    margin-bottom: 38px;
}
.vision-copy p {
    max-width: 650px;
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.55;
}
.text-link {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    margin-top: 30px;
    color: #171717;
    font-size: 16px;
}
.text-link span {
    font-size: 24px;
    text-decoration: none;
}
.vision-image img {
    width: 100%;
    border-radius: 12px;
}
.vision-image > a {
    display: block;
    margin-top: 10px;
    color: #171717;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 800px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

/* ------------------------------
   CAPABILITIES --------- LANDING PAGE
------------------------------ */
.capabilities {
    padding: 60px 0 110px;
    background: #fff;
    color: #171717;
}
.capabilities-heading {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}
.capabilities-heading > div {
    max-width: 720px;
}
.capabilities-kicker {
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: .04em;
}
.capabilities-heading h2 {
    margin-bottom: 22px;
}
.capabilities-heading p {
    font-size: 16px;
    line-height: 1.5;
}
.capability-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 45px 25px;
    padding: 65px 45px;
    border-radius: 12px;
    background: #f5f5f5;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}
.capability {
    text-align: center;
}
.capability img {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}
.capability span {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

@media (max-width: 1000px) {
    .capability-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .capabilities-heading {
        display: block;
    }
    .capabilities-heading .outline-button {
        margin-top: 30px;
    }
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }
}

/* ------------------------------
   DREAM IT --------- LANDING PAGE
--------------------------------*/
.cta-hero {
    position: relative;
    display: flex;
    min-height: 76vh;
    align-items: center;
    background-image:
        url("../images/vht-project-home-theater-with-starry-ceiling.jpg");
    background-size: cover;
    background-position: center;
}
.cta-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-left: 6rem;
}
.cta-project-label {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    padding: 7px 26px;
    border-radius: 100px;
    background: #242424;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .03em;
    white-space: nowrap;
}


/* ------------------------------
   PROCESS --------- LANDING PAGE
------------------------------ */
.process-section {
    padding: 110px 0;
    background: #fff;
    color: #171717;
}
.process-heading {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}
.process-heading > div {
    max-width: 700px;
}
.process-heading .eyebrow {
    margin-bottom: 8px;
    color: #171717;
}
.process-heading h2 {
    margin-bottom: 16px;
}
.process-intro {
    max-width: 650px;
    color: #555;
}

/* main card */
.process-card {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 30px;
    padding: 28px;
    border-radius: 22px;
    background: #323232;
}

/* accordion */
.process-accordion {
    min-width: 0;
}
.process-item {
    border-bottom: 1px solid rgba(255,255,255,.55);
}
.process-trigger {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 18px 8px;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.process-number {
    font-weight: 500;
}
.process-chevron {
    font-size: 16px;
}
.process-content {
    padding: 0 8px 22px 42px;
    color: #eee;
    font-size: 13px;
    line-height: 1.45;
}
.process-content > p {
    margin-bottom: 20px;
}
.process-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 30px;
}
.process-points > div {
    position: relative;
    padding-left: 14px;
}
.process-points > div::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #fff;
}
.process-points strong,
.process-points span {
    display: block;
}
.process-points strong {
    font-size: 12px;
}
.process-points span {
    margin-top: 2px;
    color: #ddd;
}

/* image */
.process-image-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}
.process-image {
    display: block;
    width: 100%;
    max-width: 430px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
}
.process-image[hidden] {
    display: none;
}

/* Tablet */
@media (max-width: 900px) {
    .process-heading {
        display: block;
    }
    .process-heading .outline-button {
        margin-top: 25px;
    }
    .process-card {
        grid-template-columns: 1fr;
    }
    .process-image-wrap {
        order: -1;
    }
    .process-image {
        max-width: 100%;
        aspect-ratio: 16 / 10;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .process-section {
        padding: 80px 0;
    }
    .process-card {
        padding: 16px;
        border-radius: 16px;
    }
    .process-trigger {
        grid-template-columns: 28px 1fr auto;
        padding: 16px 4px;
        font-size: 14px;
    }
    .process-content {
        padding-left: 32px;
    }
    .process-points {
        grid-template-columns: 1fr;
    }
}


/* ------------------------------
   PROJECT STRIP
------------------------------ */
.services {
    padding: 90px 0;
    background: #f4f4f2;
    color: #171717;
}
.services-intro {
    max-width: 780px;
    text-align: center;
    margin-bottom: 60px;
}
.services-intro h2 {
    margin-bottom: 30px;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.project-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 18px;
    background: #222;
}
.project-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform .5s ease;
}
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .08) 55%,
            transparent 75%
        );
}
.project-card:hover img {
    transform: scale(1.03);
}
.project-card__content {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 10px;
    color: #fff;
}
.project-card__content span {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-shadow: 1px 1px 6px black;
}
.project-card__content h3 {
    margin: 0;
    max-width: 300px;
    font-size: 24px;
    line-height: 1.15;
    text-shadow: 1px 1px 6px black;
}
.project-card__content p {
    margin-top: 8px;
    max-width: 400px;
    font-size: 15px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px black;
}


/* ------------------------------
   PROJECT GALLERY
------------------------------ */
.project-gallery {
    padding: 110px 0;
    background: #ffffff;
    color: #171717;
}
.gallery-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}
.gallery-heading .eyebrow {
    color: #284674;
}
.gallery-heading h2 {
    margin-bottom: 20px;
}
.gallery-heading > p:last-child {
    max-width: 600px;
    margin: 0 auto;
    color: #4f4f4f;
    font-size: 16px;
}
/* Grid - Homepage version */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 3rem;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
    background: #252525;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .5s ease,
        opacity .5s ease;
}
.gallery-item:hover img {
    transform: scale(1.04);
    opacity: .9;
}
/* ------------------------------
   CAROUSEL GALLERY --------- LANDING PAGE
------------------------------ */
.gallery-carousel {
    position: relative;
    width: 100%;
}
.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    padding: 0 max(5vw, 30px);
    scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar {
    display: none;
}
/* 3 images visible on desktop */
.gallery-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    padding: 0;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
    cursor: zoom-in;
    scroll-snap-align: start;
}
.gallery-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-slide:hover img {
    transform: scale(1.025);
}
/* arrows */
.gallery-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #171717;
    box-shadow: 0 3px 15px rgba(0,0,0,.15);
    font-size: 22px;
    cursor: pointer;
    transform: translateY(-50%);
}
.gallery-arrow--prev {
    left: 18px;
}
.gallery-arrow--next {
    right: 18px;
}
.gallery-arrow:hover {
    background: #171717;
    color: #fff;
}
/* ------------------------------
   LIGHTBOX --------- LANDING PAGE
------------------------------ */
.gallery-lightbox[hidden] {
    display: none;
}
.gallery-lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 40px;
}
.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .9);
}
.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 92vw;
    max-height: 90vh;
}
.gallery-lightbox__image {
    display: block;
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
}
.gallery-lightbox__close {
    position: fixed;
    z-index: 2;
    top: 22px;
    right: 28px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 950px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Tablet: 2 images */
@media (max-width: 900px) {
    .gallery-slide {
        flex-basis: calc((100% - 20px) / 2);
    }
}
/* Mobile: 1 image */
@media (max-width: 600px) {
    .project-gallery {
        padding: 80px 0;
    }
    .gallery-track {
        gap: 14px;
        padding-inline: 20px;
    }
    .gallery-slide {
        flex: 0 0 86%;
        cursor: default;
    }
    .gallery-arrow {
        display: none;
    }
    .gallery-slide:hover img {
        transform: none;
    }
}
/* Mobile */
@media (max-width: 550px) {
    .project-gallery {
        padding: 80px 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}


/* ------------------------------
   REVIEWS
------------------------------ */
.reviews-section {
    padding: 30px 0;
    background: #f5f5f3;
    color: #171717;
}
.reviews-heading {
    padding-top: 80px;
    border-top: 1px solid #bdbdbd;
    max-width: 600px;
    margin: 0 auto 55px;
    text-align: center;
}
.reviews-heading .eyebrow {
    color: #284674;
}
.reviews-heading h2 {
    margin-bottom: 20px;
}
.reviews-heading p {
    font-size: 17px;
}
.review-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.review-location {
    padding: 30px;
    border: 1px solid #3b3b3b;
    border-radius: 16px;
    background: #202020;
}
.review-location h3 {
    margin-bottom: 24px;
    font-size: 24px;
    color: #ffffff;
}
.review-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.review-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border: 1px solid #555;
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition:
        background-color .2s ease,
        color .2s ease;
}
.review-link img {
    max-width: 10%;
}
.review-link:hover {
    background: #fff;
    color: #171717;
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 80px 0;
    }
    .review-locations {
        grid-template-columns: 1fr;
    }
    .hero-content {
    margin-left: 1rem;
    }
}


/* ------------------------------
   CUSTOMER REVIEWS --------- LANDING PAGE
------------------------------ */
.customer-reviews {
    padding: 110px 0;
    background: #f5f5f3;
    color: #171717;
}
.customer-reviews h2 {
    margin-bottom: 65px;
    text-align: center;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}
.review-card {
    text-align: center;
}
.review-stars {
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: 3px;
}
.review-card blockquote {
    max-width: 520px;
    margin: 0 auto 28px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 20px 0;
    border-top: 1px solid #777;
    color: #666;
    font-size: 14px;
}
.review-open {
    border: 0;
    background: transparent;
    color: #171717;
    font: inherit;
    font-size: 11px;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
}

/* ------------------------------
   REVIEW MODAL --------- LANDING PAGE
------------------------------ */
.review-modal[hidden] {
    display: none;
}
.review-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 25px;
}
.review-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}
.review-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: min(760px, calc(100vh - 50px));
    overflow-y: auto;
    padding: 55px 48px 28px;
    background: #f5f5f3;
    color: #171717;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.review-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #171717;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.review-modal__stars {
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 3px;
}
.review-modal__text {
    font-size: 16px;
    line-height: 1.55;
    text-align: center;
}
.review-modal__text p {
    margin-bottom: 20px;
}
.review-modal__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 15px;
    border-top: 1px solid #777;
    color: #666;
    font-size: 14px;
}
.review-modal__less {
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 11px;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
}

/* utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 700px) {
    .review-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .review-footer,
    .review-modal__footer {
        align-items: flex-start;
    }
    .review-modal__dialog {
        padding: 50px 25px 25px;
    }
}


/* ------------------------------
   CONTACT
------------------------------ */
.contact {
    padding: 120px 0;
    background: #f4f4f2;
    color: #171717;
}
.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}
.contact-heading {
    max-width: 450px;
}
.contact-heading .eyebrow {
    color: #284674;
}
.contact-heading h2 {
    margin-bottom: 24px;
}
.contact-heading > p:not(.eyebrow) {
    color: #555;
    font-size: 17px;
}
.contact-phone {
    margin-top: 35px;
}
.contact-phone a {
    display: block;
    margin-top: 5px;
    color: #171717;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
}

/* Form */
.vht-form {
    width: 100%;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
    background: #fff;
    color: #171717;
    font: inherit;
    font-size: 16px;
}
.form-field textarea {
    min-height: 135px;
    resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid #284674;
    outline-offset: 1px;
    border-color: transparent;
}

/* Submit */
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 5px;
    padding: 15px 26px;
    border: 1px solid #171717;
    border-radius: 100px;
    background: #171717;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color .2s ease,
        color .2s ease;
}
.form-submit:hover {
    background: transparent;
    color: #171717;
}

/* Mailchimp spam field */
.mailchimp-honeypot {
    position: absolute;
    left: -5000px;
}

/* Mobile */

@media (max-width: 767px) {
    .contact {
        padding: 80px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* ------------------------------
   FAQ --------- LANDING PAGE
------------------------------ */
.faq-section {
    padding: 90px 0;
    background: #ffffff;
    color: #171717;
}
.faq-intro {
    max-width: 720px;
    margin-bottom: 55px;
    text-align: center;
}
.faq-intro h2 {
    margin-bottom: 16px;
}
.faq-intro p {
    margin: 0;
    color: #555;
    font-size: 17px;
}

/* Accordion */
.faq-card {
    max-width: 950px;
}
.faq-accordion {
    border-top: 1px solid #b8b8b8;
}
.faq-item {
    border-bottom: 1px solid #b8b8b8;
}
/* Question */
.faq-trigger {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    width: 100%;
    padding: 24px 4px;
    border: 0;
    background: transparent;
    color: #171717;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.faq-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}
.faq-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 18px;
    line-height: 1;
    transition: transform .2s ease;
}
/* Answer */
.faq-content {
    max-width: 800px;
    padding: 0 55px 26px 4px;
    color: #4d4d4d;
    font-size: 15px;
    line-height: 1.65;
}
.faq-content[hidden] {
    display: none;
}
.faq-content p {
    margin-bottom: 16px;
}
.faq-content p:last-child {
    margin-bottom: 0;
}

/* Active state */
.faq-item.is-active .faq-title {
    color: #284674;
}

/* Mobile */
@media (max-width: 700px) {
    .faq-section {
        padding: 80px 0;
    }
    .faq-intro {
        margin-bottom: 40px;
    }
    .faq-trigger {
        gap: 18px;
        padding: 20px 0;
    }
    .faq-title {
        font-size: 16px;
    }
    .faq-content {
        padding: 0 35px 22px 0;
        font-size: 14px;
    }
}


/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
    padding: 30px 0;
    font-size: 13px;
    color: #aaa;
}

/* ------------------------------
   MOBILE
------------------------------ */
@media (max-width: 850px) {
    .difference {
        padding: 80px 0;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .project-card,
    .project-card img {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 50px 0;
    }
    .contact .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}