/* =========================
   OYA GLOBAL
   Main Stylesheet
   ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: #f5f1e8;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* NAVIGATION */

header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 180px;
    height: auto;
    display: block;
}


.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #f5f1e8;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.65;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(190, 108, 48, 0.14),
            transparent 35%
        ),
        #080808;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 40px 100px;
}

.eyebrow {
    color: #d9a441;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.hero h1 {
    max-width: 850px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -2px;

    margin-bottom: 32px;
}

.hero-text {
    max-width: 620px;

    color: #bdb9b0;
    font-size: 1.1rem;

    margin-bottom: 40px;
}

/* BUTTON */

.primary-button {
    display: inline-block;

    padding: 15px 27px;

    background: linear-gradient(
        135deg,
        #d7a63d,
        #b76532
    );

    color: #080808;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
/* WHAT WE DO */

.services {
    padding: 120px 40px;
    background-color: #0d0d0d;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 25px;
}

.section-heading > p:last-child {
    color: #9f9b93;
    max-width: 620px;
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #3a3025;
}

.service-card {
    padding: 35px 30px 40px 0;
    min-height: 270px;
    border-right: 1px solid #3a3025;
}

.service-card:not(:first-child) {
    padding-left: 30px;
}

.service-card:last-child {
    border-right: none;
}

.service-card span {
    display: block;
    color: #c77b3c;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 45px;
}

.service-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 18px;
}

.service-card p {
    color: #96928b;
    font-size: 0.9rem;
    line-height: 1.7;
}
/* CURRENT FOCUS */

.focus {
    padding: 130px 40px;
    background-color: #080808;
    border-top: 1px solid #211c17;
}

.focus-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.focus h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
}

.focus-lead {
    color: #bdb9b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 45px;
}

.product-list {
    border-top: 1px solid #3a3025;
}

.product-list div {
    padding: 17px 0;
    border-bottom: 1px solid #3a3025;
    color: #e3dfd6;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* BUYERS & SUPPLIERS */

.connections {
    padding: 130px 40px;
    background-color: #0d0d0d;
}

.connections-heading {
    max-width: 750px;
    margin-bottom: 70px;
}

.connections-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
}

.connection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #3a3025;
    border-bottom: 1px solid #3a3025;
}

.connection-card {
    padding: 60px 60px 60px 0;
}

.connection-card + .connection-card {
    padding-left: 60px;
    border-left: 1px solid #3a3025;
}

.card-label {
    color: #c77b3c;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.connection-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}

.connection-text {
    color: #96928b;
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.text-link {
    color: #d9a441;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.text-link:hover {
    opacity: 0.7;
}
/* HOW OYA WORKS */

.process {
    padding: 130px 40px;
    background-color: #080808;
}

.process-heading {
    max-width: 750px;
    margin-bottom: 70px;
}

.process-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #3a3025;
}

.process-step {
    padding: 40px 30px 20px 0;
}

.process-step:not(:first-child) {
    padding-left: 30px;
    border-left: 1px solid #3a3025;
}

.process-step span {
    display: block;
    color: #c77b3c;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.process-step h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 18px;
}

.process-step p {
    color: #96928b;
    font-size: 0.9rem;
    line-height: 1.7;
}
/* FINAL CTA */

.final-cta {
    padding: 150px 40px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(190, 108, 48, 0.12),
            transparent 40%
        ),
        #0d0d0d;
}

.final-cta .section-container {
    max-width: 900px;
}

.final-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px;
}

.final-cta .section-container > p:not(.eyebrow) {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #96928b;
}


/* FOOTER */

footer {
    background-color: #080808;
    border-top: 1px solid #3a3025;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h3 {
    color: #d9a441;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #77736d;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.footer-links a {
    color: #bdb9b0;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #d9a441;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid #211c17;
    color: #5f5b55;
    font-size: 0.75rem;
}
/* MOBILE */

@media (max-width: 768px) {

    nav {
        padding: 24px;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 130px 24px 80px;
    }

    .hero h1 {
        font-size: 3.4rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .services,
    .focus,
    .connections,
    .process {
        padding: 80px 24px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card:not(:first-child) {
        padding: 30px 0;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #3a3025;
    }

    .service-card span {
        margin-bottom: 20px;
    }

    .focus-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .focus h2 {
        font-size: 2.8rem;
    }

    .focus-lead {
        font-size: 1rem;
    }

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

    .connection-card,
    .connection-card + .connection-card {
        padding: 45px 0;
        border-left: none;
    }

    .connection-card + .connection-card {
        border-top: 1px solid #3a3025;
    }

    .process-step,
    .process-step:not(:first-child) {
        padding: 30px 0;
        border-left: none;
        border-bottom: 1px solid #3a3025;
    }

    .process-step span {
        margin-bottom: 20px;
    }

    .final-cta {
        padding: 100px 24px;
    }

    .final-cta h2 {
        font-size: 3rem;
    }

    footer {
        padding: 50px 24px 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
