@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&display=swap');

:root {
    --bg: #080808;
    --panel: #101010;
    --text: #f2f2ee;
    --muted: #969690;
    --line: rgba(255,255,255,.14);
    --light: #e9e9e2;
    --dark: #090909;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 42px;
    mix-blend-mode: difference;
    color: white;
}

.brand {
    display: flex;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .16em;
    font-weight: 500;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header-phone {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .08em;
    white-space: nowrap;
    opacity: .95;
}

.header-phone::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 1px;
    background: currentColor;
    transform: scaleX(.35);
    transform-origin: left;
    transition: transform .25s ease;
}

.header-phone:hover::after {
    transform: scaleX(1);
}

.direct-phone {
    font-size: clamp(22px, 2.4vw, 38px);
    letter-spacing: .02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
}

.nav a {
    opacity: .75;
    transition: opacity .25s ease;
}

.nav a:hover {
    opacity: 1;
}

.nav-cta {
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 6px auto;
    background: white;
}

.section {
    padding: 120px 6vw;
    border-bottom: 1px solid var(--line);
}

.hero {
    min-height: 100svh;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hero-kicker,
.section-label {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-title {
    margin: 80px 0 60px;
    max-width: 1450px;
    font-size: clamp(54px, 8.2vw, 142px);
    line-height: .95;
    letter-spacing: -.055em;
    font-weight: 300;
}

.hero-title span,
.approach-title span,
.contact-title span {
    color: #6e6e69;
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 35px;
}

.hero-bottom p {
    max-width: 590px;
    margin: 0;
    color: #b6b6b0;
    font-size: clamp(17px, 1.5vw, 23px);
}

.hero-line {
    position: absolute;
    left: 6vw;
    right: 6vw;
    bottom: 0;
    height: 1px;
    background: var(--line);
}

.button {
    min-width: 210px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 17px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--light);
    color: var(--dark);
}

.button-light {
    background: var(--light);
    color: var(--dark);
    border: 0;
}

.arrow {
    font-size: 20px;
}

.services-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
}

.service-card {
    min-height: 390px;
    padding: 35px 40px 40px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.service-card:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.service-card:nth-child(even) {
    padding-left: 40px;
}

.service-number {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .12em;
}

.service-card h2 {
    margin: 100px 0 24px;
    font-size: clamp(36px, 4vw, 65px);
    font-weight: 300;
    letter-spacing: -.04em;
}

.service-card p {
    max-width: 520px;
    margin: 0;
    color: #a8a8a2;
    font-size: 17px;
}

.approach-layout,
.about-layout {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 8vw;
}

.approach-title,
.contact-title {
    margin: 0;
    font-size: clamp(50px, 6vw, 100px);
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 300;
}

.steps {
    border-top: 1px solid var(--line);
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.step > span {
    color: var(--muted);
    font-size: 12px;
}

.step h3 {
    margin: 0 0 9px;
    font-size: 22px;
    font-weight: 400;
}

.step p {
    margin: 0;
    color: #9e9e98;
    max-width: 540px;
}

.about {
    background: var(--light);
    color: var(--dark);
}

.about .section-label {
    color: #6d6d68;
}

.about-name {
    margin: 0;
    font-size: clamp(55px, 8vw, 130px);
    line-height: .9;
    letter-spacing: -.06em;
    font-weight: 300;
}

.about-copy {
    align-self: end;
    max-width: 620px;
}

.about-copy p {
    font-size: 18px;
    color: #4a4a47;
}

.about-copy .lead {
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.18;
    letter-spacing: -.035em;
    color: var(--dark);
}

.contact {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-top {
    margin-bottom: 80px;
}

.contact-title {
    margin-top: 70px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 32px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 0 16px;
    background: transparent;
    color: var(--text);
    outline: none;
    border-radius: 0;
}

.field input:focus,
.field textarea:focus {
    border-bottom-color: rgba(255,255,255,.65);
}

.field textarea {
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.contact-form .button {
    margin-top: 12px;
}

.form-message {
    margin-bottom: 25px;
    padding: 15px 18px;
    border: 1px solid var(--line);
}

.form-message.success {
    background: rgba(255,255,255,.08);
}

.form-message.error {
    background: rgba(255,80,80,.08);
}

.direct-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 35px;
    margin-top: 60px;
    color: var(--muted);
}

.direct-contact a {
    color: var(--text);
}

.footer {
    padding: 28px 6vw;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {
    .header {
        padding: 18px 18px;
    }

    .brand {
        flex-direction: column;
        gap: 0;
        font-size: 10px;
    }

    .header-right {
        gap: 14px;
    }

    .header-phone {
        z-index: 103;
        font-size: 12px;
        letter-spacing: .04em;
        padding: 8px 0;
    }

    .header-phone::after {
        bottom: 3px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 102;
    }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        background: #080808;
        padding: 100px 24px 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 24px;
        font-size: 36px;
        transform: translateY(-100%);
        transition: transform .35s ease;
        mix-blend-mode: normal;
    }

    body.menu-open .nav {
        transform: translateY(0);
    }

    .nav-cta {
        padding: 0;
        border: 0;
        border-radius: 0;
    }

    .section {
        padding: 90px 22px;
    }

    .hero {
        padding-top: 130px;
        min-height: 92svh;
    }

    .hero-title {
        margin: 70px 0 45px;
        font-size: clamp(54px, 16vw, 92px);
    }

    .hero-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-line {
        left: 22px;
        right: 22px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card:nth-child(even) {
        min-height: auto;
        padding: 28px 0 35px;
        border-right: 0;
    }

    .service-card h2 {
        margin: 70px 0 18px;
    }

    .approach-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .about-copy {
        max-width: none;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }
}

@media (max-width: 390px) {
    .header-phone {
        font-size: 10px;
        letter-spacing: 0;
    }

    .header-right {
        gap: 8px;
    }
}

@media (max-width: 560px) {
    .hero-title {
        font-size: 50px;
    }

    .approach-title,
    .contact-title {
        font-size: 50px;
    }

    .about-name {
        font-size: 54px;
    }

    .footer {
        flex-direction: column;
    }
}
