:root {
    --navy: #061321;
    --navy-light: #0B223C;
    --gold: #D4AF37;
    --gold-light: #E6C85A;
    --white: #FFFFFF;
    --text: #D9E1EA;
}

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;
    color: var(--white);

    background:
        radial-gradient(circle at top left, #16314d 0%, transparent 40%),
        radial-gradient(circle at bottom right, #102742 0%, transparent 35%),
        linear-gradient(135deg, #04111d, #071a2e, #061321);

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow-x: hidden;

    position: relative;

}

/* ========================= */

.hero {

    width: min(760px, 92%);

    padding: 70px 50px;

    text-align: center;

    animation: fadeUp .8s ease;

}

/* ========================= */

.logo {

    font-family: "Cormorant Garamond", serif;

    font-size: 72px;

    font-weight: 700;

    letter-spacing: 12px;

    color: var(--gold);

    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);

}

/* ========================= */

.company-name {

    margin-top: 12px;

    font-size: 17px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #d7dde5;

}

/* ========================= */

.tagline {

    margin-top: 18px;

    color: #aeb8c5;

    font-size: 12px;

    letter-spacing: 4px;

    text-transform: uppercase;

}

/* ========================= */

h1 {

    margin-top: 50px;

    font-size: 60px;

    line-height: 1.15;

    font-weight: 600;

}

h1 span {

    display: block;

    color: var(--gold);

}

/* ========================= */

.description {

    margin: 35px auto;

    max-width: 650px;

    color: var(--text);

    line-height: 1.9;

    font-size: 18px;

}

/* ========================= */

.divider {

    width: 90px;

    height: 2px;

    background: var(--gold);

    margin: 45px auto;

}

/* ========================= */

.contact-card {

    display: inline-flex;

    flex-direction: column;

    gap: 14px;

    padding: 30px 42px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(212, 175, 55, .15);

    border-radius: 16px;

}

.contact-card h3 {

    color: var(--gold);

    font-size: 18px;

    margin-bottom: 4px;

}

.contact-card a {

    color: white;

    text-decoration: none;

    font-size: 18px;

    transition: .25s;

}

.contact-card a:hover {

    color: var(--gold-light);

}

.contact-card span {

    color: #b7c3cf;

    font-size: 15px;

}

/* ========================= */

footer {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    color: #95A4B6;

    font-size: 13px;

    text-align: center;

}

/* ========================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ========================= */

@media (max-width:768px) {

    .hero {

        padding: 55px 24px;

    }

    .logo {

        font-size: 48px;

        letter-spacing: 8px;

    }

    .company-name {

        font-size: 13px;

        letter-spacing: 2px;

    }

    .tagline {

        font-size: 11px;

        letter-spacing: 2px;

    }

    h1 {

        font-size: 40px;

    }

    .description {

        font-size: 16px;

        line-height: 1.8;

    }

    .contact-card {

        width: 100%;

        padding: 24px;

    }

}

@media (max-width:480px) {

    .hero {

        padding: 45px 20px;

    }

    .logo {

        font-size: 40px;

    }

    h1 {

        font-size: 32px;

    }

    .description {

        font-size: 15px;

    }

    footer {

        width: 90%;

        font-size: 12px;

    }

}