/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #1c1c1a;
    line-height: 1.6;
}

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


/* =========================
   GLOBAL
========================= */

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #666666;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.nav-container {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    position: relative;
    font-size: 13px;
    color: #555555;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #000000;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #1557d6;
    transition: width 0.25s ease;
}

nav a:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    border-bottom: 1px solid #dddddd;
    background: #ffffff;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -3px;
    max-width: 900px;
    margin-bottom: 35px;
}

.hero-text {
    max-width: 590px;
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
}


/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;
    padding: 14px 30px;

    background: linear-gradient(
        135deg,
        #0b2e91 0%,
        #1557d6 50%,
        #3b82f6 100%
    );

    color: #ffffff !important;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    border: none;
    border-radius: 999px;

    box-shadow: 0 8px 20px rgba(21, 87, 214, 0.30);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    background: linear-gradient(
        135deg,
        #08246f 0%,
        #1048b8 50%,
        #2563eb 100%
    );

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 12px 26px rgba(21, 87, 214, 0.40);
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 130px 0;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.section h2,
.contact-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2px;
}

.two-column p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 25px;
}


/* =========================
   GRAY GRADIENT SECTION
========================= */

.section-dark {
    background: linear-gradient(
        135deg,
        #171717 0%,
        #343434 45%,
        #666666 75%,
        #8c8c8c 100%
    );

    color: #ffffff;
}

.section-dark .eyebrow {
    color: #dddddd;
}

.section-dark h2 {
    max-width: 700px;
    margin-bottom: 80px;
}



.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.principle {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 25px;
}

.principle span {
    font-size: 12px;
    color: #dddddd;
}

.principle h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    margin: 20px 0 15px;
}

.principle p {
    color: #e5e5e5;
    font-size: 15px;
}


/* =========================
   PORTFOLIO
========================= */

.portfolio-text {
    max-width: 650px;
    color: #666666;
    font-size: 17px;
    margin: 25px 0 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #cccccc;
}

.portfolio-grid div {
    padding: 30px 0;
    border-bottom: 1px solid #cccccc;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 150px 0;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.contact-section h2 {
    margin-bottom: 25px;
}

.contact-section p {
    color: #555555;
    font-size: 17px;
    max-width: 650px;
    margin-bottom: 35px;
}

.email {
    display: inline-block;
    font-size: 18px;
    border-bottom: 1px solid #1c1c1a;
    padding-bottom: 5px;
    transition: opacity 0.2s ease;
}

.email:hover {
    opacity: 0.6;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #171717;
    color: #aaaaaa;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

footer p {
    font-size: 11px;
    letter-spacing: 0.5px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .nav-container {
        height: 75px;
    }

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 12px;
    }

    .hero {
        min-height: 80vh;
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section {
        padding: 90px 0;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .contact-section {
        padding: 100px 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 10px;
    }
}
