@font-face {
    font-family: "EncodeSansSemi";
    src: url("/fonts/Encode_Sans_Semi_Condensed/EncodeSansSemiCondensed-ExtraLight.ttf") format("truetype");
}

@font-face {
    font-family: "CormorantGaramond";
    src: url("/fonts/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    color: #f3f3f3;
    font-family: "EncodeSansSemi", sans-serif;
    line-height: 1.7;
}

section {
    margin: 0 40px;
}

/* HERO */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.8));
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
}

.logo a,
.nav a {
    color: white;
    text-decoration: none;
    letter-spacing: .24rem;
    font-size: .9rem;
    opacity: .85;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a:hover {
    opacity: 1;
}

.hero-content {
    margin: auto;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
}

.hero h1,
.about-content h2 {
    font-family: "CormorantGaramond", serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero h3 {
    font-family: "CormorantGaramond", serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 500;
    color: #ccc;
}

.description {
    max-width: 650px;
    margin: 1.5rem auto 0;
    opacity: .85;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,.25);
    color: white;
    text-decoration: none;
    transition: .3s ease;
}

.button:hover {
    background: white;
    color: black;
}

.inline-circle-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-right: 16px;
}

.inline-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PROCESS FLOW */
.process-flow {
    position: relative;
    max-width: 1500px;
    margin: auto;
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.process-flow::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,.08);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 60px;
    align-items: center;
}

.process-step:nth-child(even) {
    grid-template-columns: 420px minmax(0, 1fr);
}

.process-step:nth-child(even) .step-image {
    order: 2;
}

.process-step:nth-child(even) .step-content {
    order: 1;
}

.step-image {
    overflow: hidden;
    background: #111;
}

.step-image img {
    width: 100%;
    max-height: 82vh;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.process-step:hover .step-image img {
    transform: scale(1.02);
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-number {
    font-family: "CormorantGaramond", serif;
    font-size: 6rem;
    line-height: .9;
    opacity: .08;
    margin-bottom: 1rem;
}

.step-content h2 {
    font-family: "CormorantGaramond", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.step-content p {
    opacity: .85;
    font-size: 1.02rem;
}

.final-step {
    grid-template-columns: minmax(0, 1fr) 520px;
}

/* ABOUT */
.about-section {
    padding: 120px 0;
}

.about-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-content p {
    opacity: .85;
}

/* CONTACT */
.contact-section {
    text-align: center;
}

/* FOOTER */
.site-footer {
    padding: 40px;
    text-align: center;
    opacity: .6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .process-flow::before {
        display: none;
    }

    .process-step,
    .process-step:nth-child(even),
    .final-step {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step:nth-child(even) .step-image,
    .process-step:nth-child(even) .step-content {
        order: initial;
    }

    .step-image img {
        max-height: none;
    }
}

@media (max-width: 700px) {

    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }

    section {
        margin: 0 20px;
    }

    .process-flow {
        padding: 80px 20px;
        gap: 80px;
    }

    .step-number {
        font-size: 4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}