/* =========================================================
   REGAL — KITCHEN CABINET
   MAIN CONTENT ONLY
   Header + Footer are NOT included
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

.kc-page {

    --kc-red: #ed2d35;
    --kc-black: #090b0e;
    --kc-paper: #f5f4ef;
    --kc-white: #ffffff;
    --kc-text: #171918;
    --kc-muted: #737774;
    --kc-line: rgba(20, 22, 21, .14);

    width: 100%;
    margin: 0;
    padding: 0;

    background: var(--kc-paper);
    color: var(--kc-text);

    font-family: "Inter", sans-serif;

    overflow: hidden;
}


/* =========================================================
   GLOBAL RESET
========================================================= */

.kc-page *,
.kc-page *::before,
.kc-page *::after {
    box-sizing: border-box;
}

.kc-page img {
    display: block;
    width: 100%;
    height: auto;
}

.kc-page h1,
.kc-page h2,
.kc-page h3,
.kc-page p {
    margin-top: 0;
}

.kc-page h1,
.kc-page h2,
.kc-page h3 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.kc-container {

    width: min(1316px, calc(100% - 44px));

    margin-left: auto;
    margin-right: auto;

    padding-left: 0;
    padding-right: 0;
}


/* =========================================================
   COMMON EYEBROW
========================================================= */

.kc-eyebrow {

    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 28px;

    font-family: "Inter", sans-serif;
}

.kc-eyebrow span {

    color: var(--kc-red);

    font-size: 18px;
    line-height: 1;

    font-weight: 700;
}

.kc-eyebrow i {

    width: 32px;
    height: 1px;

    display: block;

    background: var(--kc-red);
}

.kc-eyebrow strong {

    color: #5f6460;

    font-size: 10px;
    line-height: 1.3;

    letter-spacing: 2.2px;

    font-weight: 700;
}

.kc-eyebrow-light strong {
    color: rgba(255,255,255,.72);
}


/* =========================================================
   HERO
========================================================= */

.kc-hero {

    width: 100%;

    margin: 0;
    padding: 0;

    background: var(--kc-black);

    color: var(--kc-white);
}

.kc-hero-layout {

    min-height: 720px;

    display: grid;
    grid-template-columns: 40% 60%;

    position: relative;
}


/* HERO COPY */

.kc-hero-copy {

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 70px 100px 55px;

    position: relative;
    z-index: 2;
}

.kc-hero-copy .kc-eyebrow {
    margin-bottom: 34px;
}

.kc-hero-copy h1 {

    max-width: 550px;

    margin-bottom: 38px;

    font-size: clamp(76px, 8vw, 148px);

    line-height: .84;

    letter-spacing: -.8px;

    color: #fff;
}

.kc-hero-copy h1 span {

    display: block;

    color: var(--kc-red);

    margin-left: 36px;

    line-height: .84;
}

.kc-hero-copy p {

    max-width: 470px;

    margin-bottom: 38px;

    color: rgba(255,255,255,.68);

    font-size: 15px;
    line-height: 1.8;
}


/* HERO IMAGE */

.kc-hero-image {

    min-height: 720px;

    position: relative;

    overflow: hidden;
}

.kc-hero-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9,11,14,.25),
            transparent 28%
        );

    pointer-events: none;
}

.kc-hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform .8s ease;
}

.kc-hero-image:hover img {
    transform: scale(1.035);
}


/* HERO LABEL */

.kc-hero-image-label {

    position: absolute;

    left: 32px;
    bottom: 30px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #fff;
}

.kc-hero-image-label span {

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--kc-red);

    font-size: 13px;
    font-weight: 700;
}

.kc-hero-image-label strong {

    font-size: 10px;
    letter-spacing: 2px;

    font-weight: 700;
}


/* =========================================================
   BUTTON
========================================================= */

.kc-button {

    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 17px 22px;

    border: 1px solid rgba(255,255,255,.35);

    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.kc-button i {

    color: var(--kc-red);

    transition: transform .3s ease;
}

.kc-button:hover {

    color: #fff;

    background: var(--kc-red);

    border-color: var(--kc-red);
}

.kc-button:hover i {

    color: #fff;

    transform: translate(3px,-3px);
}


/* =========================================================
   INTRO
========================================================= */

.kc-intro {

    padding: 125px 0 115px;

    background: var(--kc-paper);
}

.kc-intro-grid {

    display: grid;

    grid-template-columns: 110px 1.15fr .85fr;

    gap: 55px;

    align-items: start;
}

.kc-section-number {

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.kc-section-number span {

    color: var(--kc-red);

    font-size: 18px;
    font-weight: 700;
}

.kc-section-number small {

    color: var(--kc-muted);

    font-size: 8px;

    letter-spacing: 1.8px;
}

.kc-intro-heading h2 {

    max-width: 700px;

    margin-bottom: 0;

    font-size: clamp(68px, 7.2vw, 122px);

    line-height: .86;

    letter-spacing: -.5px;
}

.kc-intro-heading h2 span {

    display: block;

    color: var(--kc-red);

    line-height: .86;
}

.kc-intro-text {

    padding-top: 18px;
}

.kc-intro-text p {

    max-width: 450px;

    margin-bottom: 22px;

    color: var(--kc-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.kc-feature-image {

    padding: 0 0 120px;

    background: var(--kc-paper);
}

.kc-feature-frame {

    position: relative;

    height: min(690px, 55vw);

    overflow: hidden;
}

.kc-feature-frame img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.kc-feature-frame:hover img {
    transform: scale(1.025);
}

.kc-feature-caption {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 390px;

    padding: 27px 32px;

    background: rgba(9,11,14,.93);

    color: #fff;
}

.kc-feature-caption span {

    display: block;

    margin-bottom: 9px;

    color: var(--kc-red);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}

.kc-feature-caption strong {

    font-family: "Bebas Neue", sans-serif;

    font-size: 31px;

    line-height: 1;
    font-weight: 400;
}


/* =========================================================
   STYLES
========================================================= */

.kc-styles {

    padding: 120px 0 130px;

    background: #ebe9e2;
}

.kc-heading-row {

    display: grid;

    grid-template-columns: 1fr 370px;

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}

.kc-heading-row h2 {

    margin: 0;

    font-size: clamp(72px, 7vw, 118px);

    line-height: .86;
}

.kc-heading-row h2 span {

    color: var(--kc-red);

    display: block;

    line-height: .86;
}

.kc-heading-row > p {

    margin: 0 0 7px;

    color: var(--kc-muted);

    font-size: 14px;

    line-height: 1.8;
}

.kc-style-grid {

    margin-left: 0;
    margin-right: 0;
}

.kc-style-card {

    height: 100%;

    background: #fff;

    overflow: hidden;
}

.kc-style-image {

    overflow: hidden;
}

.kc-style-tall .kc-style-image {
    height: 510px;
}

.kc-style-wide .kc-style-image {
    height: 390px;
}

.kc-style-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.kc-style-card:hover .kc-style-image img {
    transform: scale(1.045);
}

.kc-style-content {

    padding: 30px 30px 34px;
}

.kc-style-content > span {

    display: block;

    margin-bottom: 16px;

    color: var(--kc-red);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}

.kc-style-content h3 {

    margin-bottom: 18px;

    font-size: 42px;

    line-height: .92;
}

.kc-style-content p {

    max-width: 450px;

    margin: 0;

    color: var(--kc-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   BACKGROUND IMAGE SECTION
========================================================= */

.kc-background {

    min-height: 720px;

    display: flex;
    align-items: center;

    position: relative;

    background-image:
        url("../images/upvckitchen.png");

    background-size: cover;
    background-position: center;
}

.kc-background-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,7,9,.92) 0%,
            rgba(5,7,9,.68) 46%,
            rgba(5,7,9,.18) 100%
        );
}

.kc-background-content {

    position: relative;
    z-index: 2;

    max-width: 670px;

    padding: 110px 0;
}

.kc-background-content h2 {

    margin-bottom: 34px;

    color: #fff;

    font-size: clamp(75px, 8vw, 140px);

    line-height: .83;
}

.kc-background-content h2 span {

    display: block;

    color: var(--kc-red);

    line-height: .83;
}

.kc-background-content p {

    max-width: 470px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   STORAGE
========================================================= */

.kc-storage {

    padding: 125px 0;

    background: var(--kc-paper);
}

.kc-storage-heading {

    margin-bottom: 70px;
}

.kc-storage-heading h2 {

    margin: 0;

    font-size: clamp(75px, 7vw, 120px);

    line-height: .85;
}

.kc-storage-heading h2 span {

    color: var(--kc-red);

    display: inline-block;
}

.kc-storage-list {

    border-top: 1px solid var(--kc-line);
}

.kc-storage-item {

    min-height: 185px;

    display: grid;

    grid-template-columns: 90px 245px 1fr 50px;

    gap: 35px;

    align-items: center;

    padding: 25px 0;

    border-bottom: 1px solid var(--kc-line);

    transition: padding .35s ease;
}

.kc-storage-item:hover {
    padding-left: 15px;
}

.kc-storage-number {

    color: var(--kc-red);

    font-size: 18px;

    font-weight: 700;
}

.kc-storage-image {

    height: 135px;

    overflow: hidden;
}

.kc-storage-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.kc-storage-item:hover .kc-storage-image img {
    transform: scale(1.06);
}

.kc-storage-info h3 {

    margin-bottom: 12px;

    font-size: 35px;

    line-height: .95;
}

.kc-storage-info p {

    max-width: 480px;

    margin: 0;

    color: var(--kc-muted);

    font-size: 13px;

    line-height: 1.75;
}

.kc-storage-arrow {

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--kc-line);

    transition:
        background .3s ease,
        color .3s ease;
}

.kc-storage-arrow i {

    color: var(--kc-red);

    font-size: 12px;
}

.kc-storage-item:hover .kc-storage-arrow {

    color: #fff;

    background: var(--kc-red);
}


/* =========================================================
   MATERIALS
========================================================= */

.kc-materials {

    padding: 125px 0;

    background: #deddd7;
}

.kc-material-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.kc-material-copy h2 {

    max-width: 600px;

    margin-bottom: 30px;

    font-size: clamp(68px, 7vw, 118px);

    line-height: .85;
}

.kc-material-copy h2 span {

    display: block;

    color: var(--kc-red);

    line-height: .85;
}

.kc-material-copy > p {

    max-width: 480px;

    margin-bottom: 40px;

    color: var(--kc-muted);

    font-size: 14px;

    line-height: 1.85;
}

.kc-material-points {

    display: flex;
    flex-direction: column;

    max-width: 460px;

    border-top: 1px solid var(--kc-line);
}

.kc-material-points div {

    display: flex;
    align-items: center;

    gap: 24px;

    padding: 17px 0;

    border-bottom: 1px solid var(--kc-line);
}

.kc-material-points strong {

    color: var(--kc-red);

    font-size: 12px;
}

.kc-material-points span {

    font-size: 9px;

    letter-spacing: 1.8px;

    font-weight: 700;
}

.kc-material-images {

    position: relative;

    min-height: 620px;
}

.kc-material-main {

    width: 78%;
    height: 580px;

    margin-left: auto;

    overflow: hidden;
}

.kc-material-main img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.kc-material-small {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42%;
    height: 245px;

    border: 12px solid #deddd7;

    overflow: hidden;
}

.kc-material-small img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   GALLERY STRIP
========================================================= */

.kc-gallery-strip {

    padding: 0;

    background: var(--kc-black);
}

.kc-gallery-grid {

    display: grid;

    grid-template-columns: 1.6fr .7fr .7fr;

    height: 510px;
}

.kc-gallery-image {

    height: 100%;

    overflow: hidden;
}

.kc-gallery-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.kc-gallery-image:hover img {
    transform: scale(1.05);
}

.kc-gallery-large {
    border-right: 1px solid rgba(255,255,255,.15);
}


/* =========================================================
   PROCESS
========================================================= */

.kc-process {

    padding: 125px 0;

    background: var(--kc-black);

    color: #fff;
}

.kc-process-header {

    margin-bottom: 80px;
}

.kc-process-header h2 {

    max-width: 780px;

    margin: 0;

    font-size: clamp(75px, 7.5vw, 128px);

    line-height: .84;
}

.kc-process-header h2 span {

    color: var(--kc-red);

    line-height: .84;
}

.kc-process-grid {

    display: grid;

    grid-template-columns:
        1fr
        40px
        1fr
        40px
        1fr
        40px
        1fr;

    align-items: stretch;

    border-top: 1px solid rgba(255,255,255,.15);

    border-bottom: 1px solid rgba(255,255,255,.15);
}

.kc-process-step {

    padding: 35px 18px 38px 0;
}

.kc-process-step > span {

    display: block;

    margin-bottom: 40px;

    color: var(--kc-red);

    font-size: 13px;

    font-weight: 700;
}

.kc-process-step h3 {

    margin-bottom: 17px;

    font-size: 38px;

    line-height: .9;
}

.kc-process-step p {

    max-width: 240px;

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.75;
}

.kc-process-line {

    width: 1px;

    height: 100%;

    background: rgba(255,255,255,.15);
}


/* =========================================================
   INSTALLATION
========================================================= */

.kc-installation {

    padding: 120px 0;

    background: var(--kc-paper);
}

.kc-installation-frame {

    height: min(650px, 55vw);

    position: relative;

    overflow: hidden;
}

.kc-installation-frame img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.kc-installation-frame:hover img {
    transform: scale(1.025);
}

.kc-installation-label {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 370px;

    padding: 30px 34px;

    background: var(--kc-red);

    color: #fff;
}

.kc-installation-label span {

    display: block;

    margin-bottom: 20px;

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}

.kc-installation-label strong {

    font-family: "Bebas Neue", sans-serif;

    font-size: 52px;

    line-height: .87;

    font-weight: 400;
}


/* =========================================================
   PROJECTS
========================================================= */

.kc-projects {

    padding: 125px 0 140px;

    background: #e9e8e2;
}

.kc-project-heading {

    margin-bottom: 70px;
}

.kc-project-heading h2 {

    margin: 0;

    font-size: clamp(75px, 7.5vw, 128px);

    line-height: .84;
}

.kc-project-heading h2 span {

    display: block;

    color: var(--kc-red);

    line-height: .84;
}

.kc-project-grid {

    display: grid;

    grid-template-columns: 1.05fr .75fr 1.05fr;

    gap: 18px;

    align-items: start;
}

.kc-project {

    background: #fff;
}

.kc-project-two {
    margin-top: 110px;
}

.kc-project-image {

    height: 470px;

    overflow: hidden;
}

.kc-project-two .kc-project-image {
    height: 370px;
}

.kc-project-three .kc-project-image {
    height: 520px;
}

.kc-project-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.kc-project:hover .kc-project-image img {
    transform: scale(1.05);
}

.kc-project-info {

    padding: 25px 26px 29px;
}

.kc-project-info span {

    display: block;

    margin-bottom: 15px;

    color: var(--kc-red);

    font-size: 9px;

    letter-spacing: 1.8px;

    font-weight: 700;
}

.kc-project-info h3 {

    margin: 0;

    font-size: 39px;

    line-height: .9;
}


/* =========================================================
   FINAL CTA
========================================================= */

.kc-final {

    min-height: 720px;

    margin: 0;
    padding: 0;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;
}

.kc-final-background {

    position: absolute;

    inset: 0;

    background-image:
        url("../images/conttactkitchen.png");

    background-size: cover;
    background-position: center;
}

.kc-final-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,9,11,.9),
            rgba(7,9,11,.55),
            rgba(7,9,11,.18)
        );
}

.kc-final-content {

    position: relative;

    z-index: 2;

    max-width: 720px;

    padding: 110px 0;
}

.kc-final-content h2 {

    margin-bottom: 32px;

    font-size: clamp(78px, 8vw, 145px);

    line-height: .82;
}

.kc-final-content h2 span {

    display: block;

    color: var(--kc-red);

    line-height: .82;
}

.kc-final-content p {

    max-width: 470px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.8;
}

.kc-final-button {

    display: inline-flex;
    align-items: center;
    gap: 20px;

    padding: 18px 24px;

    background: var(--kc-red);

    color: #fff;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.8px;

    font-weight: 700;

    transition:
        background .3s ease,
        transform .3s ease;
}

.kc-final-button:hover {

    color: #fff;

    background: #c92129;

    transform: translateY(-2px);
}

.kc-final-button i {
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .kc-container {
        width: min(100% - 36px, 1316px);
    }

    .kc-hero-layout {
        grid-template-columns: 44% 56%;
    }

    .kc-hero-copy {
        padding: 80px 45px 80px 30px;
    }

    .kc-intro-grid {
        grid-template-columns: 80px 1fr;
        gap: 35px;
    }

    .kc-intro-text {
        grid-column: 2;
        padding-top: 0;
    }

    .kc-heading-row {
        grid-template-columns: 1fr 300px;
        gap: 50px;
    }

    .kc-storage-item {
        grid-template-columns: 65px 210px 1fr 45px;
        gap: 25px;
    }

    .kc-material-grid {
        gap: 50px;
    }

    .kc-gallery-grid {
        height: 430px;
    }

    .kc-process-grid {
        grid-template-columns: 1fr 25px 1fr;
    }

    .kc-process-step:nth-of-type(n+3) {
        border-top: 1px solid rgba(255,255,255,.15);
    }

    .kc-process-line:nth-of-type(4) {
        display: none;
    }

    .kc-project-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kc-project-two {
        margin-top: 80px;
    }

    .kc-project-three {
        margin-top: 20px;
    }
}


/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .kc-hero-layout {
        grid-template-columns: 1fr;
    }

    .kc-hero-copy {
        min-height: auto;

        padding: 80px 30px 70px;
    }

    .kc-hero-image {
        min-height: 550px;
    }

    .kc-hero-copy h1 {
        font-size: clamp(78px, 14vw, 125px);
    }

    .kc-intro {
        padding: 90px 0;
    }

    .kc-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .kc-intro-text {
        grid-column: auto;
    }

    .kc-intro-heading h2 {
        font-size: clamp(70px, 12vw, 110px);
    }

    .kc-heading-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kc-heading-row > p {
        max-width: 550px;
    }

    .kc-style-tall .kc-style-image,
    .kc-style-wide .kc-style-image {
        height: 450px;
    }

    .kc-background {
        min-height: 620px;
    }

    .kc-storage-item {
        grid-template-columns: 60px 200px 1fr;
    }

    .kc-storage-arrow {
        display: none;
    }

    .kc-material-grid {
        grid-template-columns: 1fr;
    }

    .kc-material-images {
        min-height: 600px;
    }

    .kc-gallery-grid {
        height: 370px;
        grid-template-columns: 1.4fr .8fr .8fr;
    }

    .kc-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kc-process-line {
        display: none;
    }

    .kc-process-step {
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .kc-installation-frame {
        height: 500px;
    }

    .kc-project-grid {
        grid-template-columns: 1fr;
    }

    .kc-project-two,
    .kc-project-three {
        margin-top: 25px;
    }

    .kc-project-image,
    .kc-project-two .kc-project-image,
    .kc-project-three .kc-project-image {
        height: 470px;
    }

    .kc-final {
        min-height: 650px;
    }
}


/* =========================================================
   RESPONSIVE — 650px
========================================================= */

@media (max-width: 650px) {

    .kc-container {
        width: calc(100% - 28px);
    }

    .kc-hero-copy {
        padding: 65px 10px 60px;
    }

    .kc-hero-copy h1 {
        font-size: clamp(66px, 19vw, 100px);
        line-height: .86;
    }

    .kc-hero-copy h1 span {
        margin-left: 20px;
    }

    .kc-hero-copy p {
        font-size: 13px;
        line-height: 1.7;
    }

    .kc-hero-image {
        min-height: 420px;
    }

    .kc-hero-image-label {
        left: 18px;
        bottom: 18px;
    }

    .kc-intro {
        padding: 75px 0 80px;
    }

    .kc-intro-heading h2,
    .kc-heading-row h2,
    .kc-storage-heading h2,
    .kc-material-copy h2,
    .kc-project-heading h2 {
        font-size: clamp(60px, 17vw, 92px);
    }

    .kc-feature-image {
        padding-bottom: 80px;
    }

    .kc-feature-frame {
        height: 430px;
    }

    .kc-feature-caption {
        width: 100%;
        padding: 22px;
    }

    .kc-styles,
    .kc-storage,
    .kc-materials,
    .kc-process,
    .kc-projects {
        padding: 80px 0;
    }

    .kc-style-tall .kc-style-image,
    .kc-style-wide .kc-style-image {
        height: 360px;
    }

    .kc-style-content h3 {
        font-size: 35px;
    }

    .kc-background {
        min-height: 580px;
    }

    .kc-background-content {
        padding: 80px 10px;
    }

    .kc-background-content h2 {
        font-size: clamp(65px, 18vw, 100px);
    }

    .kc-storage-item {
        grid-template-columns: 40px 1fr;
        gap: 18px;

        padding: 24px 0;
    }

    .kc-storage-image {
        grid-column: 2;
        height: 220px;
    }

    .kc-storage-info {
        grid-column: 2;
    }

    .kc-storage-number {
        grid-row: 1 / span 3;
        align-self: start;
        padding-top: 3px;
    }

    .kc-material-images {
        min-height: 480px;
    }

    .kc-material-main {
        width: 88%;
        height: 450px;
    }

    .kc-material-small {
        width: 48%;
        height: 190px;
        border-width: 8px;
    }

    .kc-gallery-grid {
        height: auto;

        grid-template-columns: 1fr 1fr;
    }

    .kc-gallery-image {
        height: 240px;
    }

    .kc-gallery-large {
        grid-column: 1 / -1;
        height: 330px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .kc-process-grid {
        grid-template-columns: 1fr;
    }

    .kc-process-step {
        padding: 28px 0;
    }

    .kc-installation {
        padding: 80px 0;
    }

    .kc-installation-frame {
        height: 430px;
    }

    .kc-installation-label {
        width: 100%;
        padding: 23px;
    }

    .kc-installation-label strong {
        font-size: 43px;
    }

    .kc-project-image,
    .kc-project-two .kc-project-image,
    .kc-project-three .kc-project-image {
        height: 390px;
    }

    .kc-final {
        min-height: 580px;
    }

    .kc-final-content {
        padding: 75px 10px;
    }

    .kc-final-content h2 {
        font-size: clamp(66px, 18vw, 105px);
    }

}


/* =========================================================
   RESPONSIVE — 360px
========================================================= */

@media (max-width: 360px) {

    .kc-container {
        width: calc(100% - 22px);
    }

    .kc-eyebrow {
        gap: 8px;
    }

    .kc-eyebrow strong {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .kc-hero-copy h1 {
        font-size: 62px;
    }

    .kc-intro-heading h2,
    .kc-heading-row h2,
    .kc-storage-heading h2,
    .kc-material-copy h2,
    .kc-project-heading h2 {
        font-size: 58px;
    }

    .kc-feature-frame {
        height: 350px;
    }

    .kc-style-tall .kc-style-image,
    .kc-style-wide .kc-style-image {
        height: 300px;
    }

    .kc-background-content h2 {
        font-size: 60px;
    }

    .kc-material-main {
        height: 360px;
    }

    .kc-material-small {
        height: 155px;
    }

    .kc-gallery-large {
        height: 280px;
    }

    .kc-gallery-image {
        height: 190px;
    }

    .kc-project-image,
    .kc-project-two .kc-project-image,
    .kc-project-three .kc-project-image {
        height: 320px;
    }

    .kc-final-content h2 {
        font-size: 62px;
    }

}