.azp-wrapper {
    --azp-brand: #57a4d2;
    --azp-dark: #050a11;
    --azp-light: #f9fafb;
    --azp-gray: #8892a0;
    --azp-line: rgba(0, 0, 0, 0.1);
    --azp-line-light: rgba(255, 255, 255, 0.15);
    --azp-ease: cubic-bezier(0.25, 1, 0.5, 1);
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
    color: var(--azp-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.azp-wrapper * {
    box-sizing: border-box;
}

.azp-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5vw;
}

.azp-kicker {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--azp-gray);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.azp-kicker::before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: var(--azp-brand);
}

.azp-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    width: 100%;
    background-color: var(--azp-dark);
    display: flex;
    align-items: flex-end;
    padding-bottom: 8vh;
}

.azp-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.azp-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.azp-hero-title {
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 200;
    line-height: 1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.azp-hero-title span {
    font-weight: 400;
    font-style: italic;
    color: #fff;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.azp-scroll-down {
    position: absolute;
    right: 5vw;
    bottom: 8vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.azp-scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.azp-scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #fff;
    animation: azp-drop 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes azp-drop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

.azp-mission,
.azp-services,
.azp-works,
.azp-contact {
    padding: 150px 0;
}

.azp-mission {
    background-color: #fff;
}

.azp-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.azp-mission-headline h2,
.azp-works-title,
.azp-contact-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 200;
    line-height: 1.1;
    margin: 0;
}

.azp-mission-headline h2 span {
    font-style: italic;
    color: var(--azp-gray);
}

.azp-mission-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
}

.azp-mission-text p {
    margin-top: 0;
    margin-bottom: 30px;
}

.azp-mission-brand {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--azp-line);
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.azp-mission-brand img {
    display: block;
    height: 40px;
    max-width: 220px;
    object-fit: contain;
    
    opacity: 0.8;
}

.azp-mission-brand p {
    display: block;
    font-size: 9px;
    letter-spacing: 0.2em;
    line-height: 1.45;
    text-transform: uppercase;
    margin: 0;
    color: var(--azp-gray);
}

.azp-services {
    background-color: var(--azp-light);
}

.azp-service-list {
    margin-top: 80px;
    border-top: 1px solid var(--azp-line);
}

.azp-service-item {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    padding: 6px 0 0;
    border-bottom: 1px solid var(--azp-line);
    transition: background-color 0.5s var(--azp-ease);
    align-items: stretch;
}

.azp-service-item:hover {
    background-color: #fff;
}

.azp-service-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding: 80px 0 40px;
}

.azp-srv-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.azp-srv-number {
    font-size: 14px;
    font-weight: 400;
    color: var(--azp-brand);
    margin-top: 10px;
}

.azp-srv-title {
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    font-weight: 300;
    margin: 0;
    color: var(--azp-dark);
    line-height: 1.1;
}

.azp-srv-body {
    padding-left: 50px;
}

.azp-srv-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    margin: 0 0 30px;
}

.azp-service-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #eee;
    display: flex;
}

.azp-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform 1.5s var(--azp-ease);
}

.azp-service-item:hover .azp-service-image img {
    transform: scale(1.05);
}

.azp-works {
    background-color: #fff;
}

.azp-works-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    gap: 30px;
    position: relative;
}

.azp-works-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.azp-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.azp-work-item {
    display: block;
    color: inherit;
    cursor: default;
}

.azp-work-visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--azp-light);
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.azp-work-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--azp-ease);
}

.azp-work-item:hover .azp-work-visual img {
    transform: scale(1.05);
}

.azp-work-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--azp-line);
    padding-bottom: 15px;
}

.azp-work-type {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--azp-brand);
}

.azp-work-year {
    font-size: 12px;
    color: var(--azp-gray);
}

.azp-work-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 15px 0 5px;
}

.azp-work-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--azp-gray);
    margin: 0;
}

.azp-work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.azp-work-tag {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--azp-dark);
    background-color: rgba(87, 164, 210, 0.12);
    border: 1px solid rgba(87, 164, 210, 0.18);
    padding: 9px 12px;
}

.azp-work-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.azp-work-nav {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid var(--azp-line);
    background-color: #fff;
    color: var(--azp-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.azp-work-nav:hover {
    transform: translateY(-2px);
    border-color: rgba(87, 164, 210, 0.45);
    background-color: var(--azp-light);
}

.azp-work-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.azp-work-status {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--azp-gray);
}

.azp-work-empty {
    padding: 40px 0 0;
    font-size: 1rem;
    color: var(--azp-gray);
}

.azp-work-more {
    display: none;
    margin-top: 40px;
}

.azp-work-more-btn {
    width: 100%;
    border: 1px solid var(--azp-line);
    background-color: #fff;
    color: var(--azp-dark);
    padding: 18px 22px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.azp-work-more-btn:hover {
    background-color: var(--azp-light);
    border-color: rgba(87, 164, 210, 0.45);
}

.azp-work-more-btn:disabled {
    opacity: 0.55;
    cursor: default;
}

.azp-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--azp-dark);
    text-decoration: none;
    margin-top: 80px;
    transition: gap 0.3s ease;
}

.azp-btn-link::after {
    content: "→";
    font-size: 16px;
}

.azp-btn-link:hover {
    gap: 25px;
}

.azp-contact {
    background-color: var(--azp-dark);
    color: #fff;
}

.azp-contact .azp-kicker {
    color: var(--azp-gray);
}

.azp-contact .azp-kicker::before {
    background-color: #fff;
}

.azp-contact-title {
    margin: 0 0 60px;
}

.azp-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.azp-input-group {
    position: relative;
}

.azp-input-group label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--azp-gray);
    margin-bottom: 10px;
}

.azp-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--azp-line-light);
    padding: 15px 0;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    transition: border-color 0.4s ease;
    border-radius: 0;
}

.azp-input:focus {
    outline: none;
    border-bottom-color: #fff;
}

.azp-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

select.azp-input {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 15px;
}

select.azp-input option {
    background-color: #0a0e1a;
    color: #fff;
}

.azp-submit-row {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.azp-submit-btn {
    background: #fff;
    color: var(--azp-dark);
    border: none;
    padding: 20px 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.azp-submit-btn:hover {
    background: var(--azp-brand);
    color: #fff;
}

.azp-privacy {
    font-size: 11px;
    color: var(--azp-gray);
    font-weight: 300;
}

@media (min-width: 768px) {
    .azp-mission-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .azp-service-item {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .azp-service-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .azp-service-content,
    .azp-service-image {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
        min-width: 0;
    }

    .azp-service-image {
        aspect-ratio: auto;
        min-height: 100%;
    }

    .azp-service-content {
        padding: 120px 80px 120px 0;
    }

    .azp-service-item:nth-child(even) .azp-service-content {
        padding: 120px 0 120px 80px;
    }

    .azp-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .azp-works-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding-right: 260px;
    }

    .azp-btn-link {
        margin-top: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

    .azp-work-controls {
        position: absolute;
        right: 0;
        top: 54px;
    }

    .azp-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }

    .azp-submit-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

@media (min-width: 1024px) {
    .azp-mission-grid {
        grid-template-columns: 6fr 4fr;
        gap: 100px;
    }

    .azp-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .azp-works-toolbar {
        align-items: flex-start;
    }

    .azp-work-controls {
        display: none;
    }

    .azp-btn-link {
        position: static;
    }

    .azp-work-more {
        display: block;
    }
}
