@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Red Hat Display", sans-serif;
    background-color: #000;
    color: #fff;
}

/* Contact – Hero */
.contact-hero {
    background-color: #1a1a1a;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 8vw, 10rem);
    min-height: calc(50vh - 88px);
    display: flex;
    align-items: center;
}

.contact-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

.contact-hero__heading {
    flex: 0 1 auto;
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: 0.02em;
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    color: #fff;
}

.contact-hero__bold {
    font-weight: 800;
}

.contact-hero__light {
    font-weight: 800;
}

.contact-hero__text {
    flex: 0 1 480px;
    max-width: 480px;
    margin: 0;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
}

@keyframes contact-hero-slide-left {
    from {
        opacity: 0;
        transform: translate3d(-32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes contact-hero-slide-right {
    from {
        opacity: 0;
        transform: translate3d(32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.contact-hero__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

.contact-hero__anim--left {
    animation-name: contact-hero-slide-left;
    animation-delay: 0.15s;
}

.contact-hero__anim--right {
    animation-name: contact-hero-slide-right;
    animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
    .contact-hero__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .contact-hero {
        padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
        min-height: calc(30vh - 88px);
    }

    .contact-hero__inner {
        gap: 2rem;
    }

    .contact-hero__text {
        flex: 0 1 380px;
        max-width: 380px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .contact-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .contact-hero__heading {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .contact-hero__text {
        flex: none;
        max-width: 100%;
        font-size: 0.9375rem;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Contact page – Details & form */
.contact-page {
    background-color: #222222;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.contact-page__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.contact-page__info {
    flex: 0 1 40%;
    max-width: 520px;
}

.contact-page__detail {
    margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.contact-page__detail:last-of-type {
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.contact-page__label {
    margin: 0 0 0.5rem;
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    font-weight: 400;
    color: #a0a0a0;
}

.contact-page__value {
    display: block;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    text-decoration: none;
}

a.contact-page__value:hover,
a.contact-page__value:focus-visible {
    opacity: 0.85;
}

.contact-page__social {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    max-width: 280px;
}

.contact-page__social-label {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
}

.contact-page__social-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-page__social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity 0.2s ease;
    text-decoration: none;
}
.contact-page__social-list a i {
    font-size: 1.5rem;
}

.contact-page__social-list a:hover,
.contact-page__social-list a:focus-visible {
    opacity: 0.7;
}

.contact-page__form-wrap {
    flex: 0 1 58%;
    max-width: 680px;
    width: 100%;
}

.contact-page__form {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
}

.contact-page__field {
    margin-bottom: 1.25rem;
}

.contact-page__field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-page__required {
    color: #fff;
}

.contact-page__field input,
.contact-page__field textarea,
.contact-page__field select {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.contact-page__field input::placeholder,
.contact-page__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-page__field input:focus,
.contact-page__field textarea:focus,
.contact-page__field select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-page__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-page__phone-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding-left: 0.75rem;
}

.contact-page__phone-wrap:focus-within {
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-page__phone-wrap input {
    border: none;
    padding-left: 0;
    background: transparent;
}

.contact-page__phone-wrap input:focus {
    border: none;
}

.contact-page__flag {
    font-size: 1.125rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact-page__select-wrap {
    position: relative;
}

.contact-page__select-wrap select {
    appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-page__select-wrap select option {
    background-color: #1a1a1a;
    color: #fff;
}

.contact-page__select-icon {
    position: absolute;
    right: 1rem;
    bottom: 50%;
    transform: translateY(50%);
    pointer-events: none;
    color: #fff;
    display: flex;
}

.contact-page__submit {
    display: block;
    margin: 0.5rem auto 0;
    padding: 0.75rem 2.5rem;
    background-image: linear-gradient(180deg, #ffe3a1 0%, #d29e31 45%, #8b6110 100%);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-page__submit:hover,
.contact-page__submit:focus-visible {
    background-color: #888;
}

.contact-page__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form__status {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

.contact-form__status--success {
    color: #4ade80;
}

.contact-form__status--error {
    color: #f87171;
}

/* Scroll reveal (Contact page) */
@keyframes contact-reveal-left {
    from {
        opacity: 0;
        transform: translate3d(-36px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes contact-reveal-right {
    from {
        opacity: 0;
        transform: translate3d(36px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes contact-reveal-up {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.contact-reveal__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.contact-reveal.is-visible .contact-reveal__anim--left {
    animation-name: contact-reveal-left;
    animation-play-state: running;
}

.contact-reveal.is-visible .contact-reveal__anim--right {
    animation-name: contact-reveal-right;
    animation-play-state: running;
}

.contact-reveal.is-visible .contact-reveal__anim--up {
    animation-name: contact-reveal-up;
    animation-play-state: running;
}

.contact-reveal.is-visible .contact-page__detail:nth-child(2).contact-reveal__anim--left {
    animation-delay: 0.1s;
}

.contact-reveal.is-visible .contact-page__detail:nth-child(3).contact-reveal__anim--left {
    animation-delay: 0.18s;
}

.contact-reveal.is-visible .contact-page__detail:nth-child(4).contact-reveal__anim--left {
    animation-delay: 0.26s;
}

.contact-reveal.is-visible .contact-page__detail:nth-child(5).contact-reveal__anim--left {
    animation-delay: 0.34s;
}

.contact-reveal.is-visible .contact-page__social.contact-reveal__anim--left {
    animation-delay: 0.42s;
}

.contact-reveal.is-visible .contact-page__form-wrap.contact-reveal__anim--right {
    animation-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
    .contact-reveal__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .contact-page {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .contact-page__inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-page__info,
    .contact-page__form-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .contact-page__social {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .contact-page {
        padding: 2.5rem 1rem;
    }

    .contact-page__row {
        grid-template-columns: 1fr;
    }

    .contact-page__form {
        padding: 2rem 1.25rem;
    }

    .contact-page__value {
        font-size: clamp(1rem, 4.5vw, 1.25rem);
    }
}

/* Map */
.contact-map {
    background-color: #222222;
    padding: 0 clamp(1.5rem, 6vw, 8rem) clamp(3.5rem, 7vw, 6rem);
}

.contact-map__wrap {
    max-width: 1700px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    line-height: 0;
}

.contact-map__iframe {
    display: block;
    width: 100%;
    height: clamp(280px, 42vw, 520px);
    border: 0;
    filter: grayscale(0.05) contrast(1.02);
}

.contact-reveal.is-visible .contact-map__wrap.contact-reveal__anim--up {
    animation-delay: 0.1s;
}

@media (max-width: 1024px) {
    .contact-map {
        padding: 0 clamp(1.5rem, 5vw, 3rem) clamp(3rem, 5vw, 4rem);
    }

    .contact-map__iframe {
        height: clamp(260px, 45vw, 400px);
    }
}

@media (max-width: 640px) {
    .contact-map {
        padding: 0 1rem 2.5rem;
    }

    .contact-map__iframe {
        height: clamp(240px, 55vw, 320px);
    }
}

/* CTA – Let's chat */
.eds-cta {
    background-color: #1a1a1a;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.eds-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    background-color: #222222;
    margin: 0 auto;
    padding: 50px;
}

.eds-cta__lead {
    flex: 0 1 48%;
    max-width: 48%;
}

.eds-cta__eyebrow {
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.75rem;
}

.eds-cta__heading {
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
}

.eds-cta__heading-bold {
    display: block;
    font-weight: 800;
}

.eds-cta__heading-light {
    display: block;
    font-weight: 800;
}

.eds-cta__action {
    flex: 0 1 42%;
    max-width: 480px;
}

.eds-cta__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.eds-cta__btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: inherit;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(180deg, #ffe3a1 0%, #d29e31 45%, #8b6110 100%);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.eds-cta__btn:hover {
    background-color: #666666;
}

.eds-cta__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.eds-reveal.is-visible .eds-cta__eyebrow.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.eds-reveal.is-visible .eds-cta__heading-bold.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.eds-reveal.is-visible .eds-cta__heading-light.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.32s;
}

.eds-reveal.is-visible .eds-cta__text.eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.15s;
}

.eds-reveal.is-visible .eds-cta__btn.eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.35s;
}

@media (max-width: 1024px) {
    .eds-cta {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .eds-cta__inner {
        gap: 2.5rem;
    }

    .eds-cta__lead {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .eds-cta__action {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 640px) {
    .eds-cta {
        padding: 2.5rem 1rem;
    }

    .eds-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .eds-cta__lead,
    .eds-cta__action {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .eds-cta__heading {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .eds-cta__text {
        margin-bottom: 1.5rem;
    }
}

