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

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #f4efe7;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.02em;
}

.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("images/hero.PNG");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 28px 22px 72px;
}

.overlay {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 460px;
}

.eyebrow {
    color: #c6aa70;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1 {
    font-size: 72px;
    line-height: 0.9;
    font-weight: 300;
    letter-spacing: 0.28em;
    margin-bottom: 34px;
}

h2 {
    font-size: 38px;
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 26px;
}

h3 {
    font-size: 44px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

h4 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #c6aa70;
    margin-bottom: 14px;
}

p {
    color: #d8d0c5;
    font-size: 15px;
    line-height: 1.7;
    max-width: 34rem;
}

.hero p {
    margin-bottom: 34px;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border: 1px solid rgba(198, 170, 112, 0.75);
    background: transparent;
    color: #f4efe7;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.button:active,
button:active {
    transform: scale(0.98);
}

.section {
    padding: 78px 22px;
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.section.dark {
    background: #030303;
}

.lead {
    font-size: 16px;
    color: #d8d0c5;
}

.card {
    border: 1px solid rgba(255,255,255,0.11);
    background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
    padding: 24px;
    margin-bottom: 16px;
}

form {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

input {
    width: 100%;
    min-height: 54px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: #f4efe7;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

input::placeholder {
    color: rgba(244,239,231,0.45);
}

input:focus {
    border-color: #c6aa70;
}

button {
    background: #f4efe7;
    color: #050505;
    border-color: #f4efe7;
    cursor: pointer;
}

footer {
    padding: 34px 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: rgba(244,239,231,0.55);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Tablet and desktop expansion */
@media (min-width: 768px) {
    .hero {
        padding: 48px 64px 96px;
    }

    h1 {
        font-size: 104px;
    }

    h2 {
        font-size: 64px;
    }

    h3 {
        font-size: 72px;
    }

    .section {
        padding: 110px 64px;
    }

    .card {
        max-width: 620px;
    }

    form {
        max-width: 520px;
    }

    footer {
        padding: 42px 64px;
    }
}

@media (min-width: 1100px) {
    .hero {
        padding-left: 96px;
    }

    .section {
        padding-left: 96px;
        padding-right: 96px;
    }

    .section.dark {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
    }

    .section.dark .eyebrow,
    .section.dark h3,
    .section.dark form {
        grid-column: 1 / -1;
    }
}
