.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 42rem;
}
.contact-form__button {
    align-self: flex-start;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 999px;
    background-color: #1f1f1f;
    color: #ffffff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-form__button:focus-visible {
    outline: 3px solid rgba(78, 78, 78, 0.18);
    outline-offset: 3px;
}
.contact-form__button:hover {
    background-color: #363636;
    transform: translateY(-1px);
}
.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-form__honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-form__input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    background-color: #ffffff;
    color: #1f1f1f;
    font: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__input:focus {
    outline: none;
    border-color: #4e4e4e;
    box-shadow: 0 0 0 3px rgba(78, 78, 78, 0.12);
}
.contact-form__label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1f1f;
}
.contact-form__status {
    min-height: 1.5rem;
    margin-top: 0.5rem;
    color: #1f1f1f;
    font-weight: 500;
}
.contact-form__textarea {
    min-height: 12rem;
    resize: vertical;
}
.h250 img,
.h250 video {
    height: 250px;
    width: auto;
}
.h300 img,
.h300 video {
    height: 300px;
    width: auto;
}
.h350 img,
.h350 video {
    height: 350px;
    width: auto;
}
.h400 img,
.h400 video {
    height: 400px;
    width: auto;
}
.h450 img,
.h450 video {
    height: 450px;
    width: auto;
}
.h500 img,
.h500 video {
    height: 500px;
    width: auto;
}
.h550 img,
.h550 video {
    height: 550px;
    width: auto;
}
.h600 img,
.h600 video {
    height: 600px;
    width: auto;
}
.image_section_container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding-bottom: 10px;
}
.img_fill_width .image_section_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    padding-bottom: 10px;
    width: 100%;
}
.img_fill_width .image_section_container img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.image_section_container_captions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}
.image_with_caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    gap: 10px;
}
.img_caption {
    margin-top: 8px;
    font-size: 1rem;
    color: #444;
    text-align: left;
    font-style: italic;
}
.feature-row {
    display: grid;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}
.feature-row--reverse {
}
.frow-11 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.frow-12 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}
.frow-13 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
}
.frow-21 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}
.frow-23 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}
.frow-31 {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
}
.frow-32 {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}
.feature-row--reverse .feature-text {
    order: 2;
}
.feature-row--reverse .feature-media {
    order: 1;
}
.feature-text,
.feature-media {
    min-width: 0;
}
.feature-media.image_section_container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
}
.feature-row--reverse .feature-media.image_section_container {
    justify-content: flex-start;
}
.feature-media video {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}
.media-w100-max1200 video {
    width: 100%;
    max-width: 1200px;
}
.project_container {
    column-gap: 50px;
    grid-template-rows: repeat(2, auto);
}
.project_container,
.text_section_container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0 10;
    grid-row: auto;
    height: auto;
    width: auto;
}
.project_header {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 2;
    grid-column-end: 10;
}
.project_header h1 {
    font-size: 2.5rem;
}
.project_left {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 5;
    min-width: min-content;
}
.project_left h1,
.project_left h2,
.project_left h3,
.project_left h4,
.project_left h5,
.project_left h6 {
    white-space: nowrap;
}
.project_left img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}
.project_right {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: 5;
    grid-column-end: 10;
}

.prototype-iframe {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    height: 450px;
    display: block;
    margin: 0 auto;
}
.vrad40 video {
    border-radius: 40px;
}
.text_section {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 3;
    grid-column-end: 9;
}
.text_section_container {
    grid-template-rows: repeat(1, auto);
}
video {
    width: auto;
}
.works {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.works a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}
.works a h2 {
    text-decoration: none !important;
    color: inherit !important;
}
.works_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    justify-items: stretch;
}
.works_icon {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.works_icon:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1080px) {
    .image_section_container img,
    .image_with_caption img {
        height: auto;
        width: 100%;
    }
    .project_container {
        margin: 0 15px;
    }
    .project_header {
        grid-column-start: 1;
        grid-column-end: 11;
    }
    .project_left {
        grid-column-start: 1;
        grid-column-end: 11;
    }
    .project_left h1,
    .project_left h2,
    .project_left h3,
    .project_left h4,
    .project_left h5,
    .project_left h6 {
        white-space: normal;
    }
    .project_left img {
        height: auto;
    }
    .project_header h1 {
        white-space: normal;
    }
    .project_right {
        grid-row-start: 3;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 11;
    }
    .text_section {
        grid-column-start: 1;
        grid-column-end: 11;
    }
}

@media (max-width: 900px) {
    .contact-form__input {
        width: 80%;
    }
    .feature-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-row--reverse .feature-text,
    .feature-row--reverse .feature-media {
        order: initial;
    }
    .works_container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-form {
        gap: 1.25rem;
    }
    .contact-form__button {
        width: 100%;
        justify-content: center;
    }
    .image_section_container_captions {
        flex-direction: column;
        align-items: center;
    }
    .project_container {
        margin: 0 15px;
        grid-template-columns: minmax(0, 1fr);
    }
    .text_section_container {
        grid-template-columns: minmax(0, 1fr);
    }
    .project_header,
    .project_left,
    .project_right {
        grid-column: 1 / -1;
        grid-row: auto;
        min-width: 0;
    }
    .text_section {
        grid-column: 1 / -1;
        min-width: 0;
    }
    .project_header h1,
    .project_left h1,
    .project_left h2,
    .project_left h3,
    .project_right h1,
    .project_right h2,
    .project_right h3,
    .project_left p,
    .project_right p,
    .text_section h1,
    .text_section h2,
    .text_section h3,
    .text_section p {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        max-width: 100%;
    }
    .project_header h1,
    .text_section h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
    }
    .feature-media.image_section_container {
        justify-content: stretch;
    }
    .feature-media.image_section_container video,
    .feature-media.image_section_container.h500 video {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }
    img,
    video {
      max-width: 100%;
      height: auto;
    }
}
