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

html, body {
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ── BACKGROUND HERO ── */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    color: #fff;
}

.hero {
    position: fixed;
    inset: 0;
    background-image: url("./assets/background.jpg");
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.75) 100%
    );
}

/* ── TOP BANNER ── */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-banner__title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
   /* text-transform: uppercase; */
    color: rgba(255,255,255,1);
}

/* ── LAYOUT ── */
.page {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
    text-align: center;
    gap: 0;
}

/* ── LOGO ── */
.logo {
    width: 120px;
    margin-bottom: 52px;
    filter: brightness(1) drop-shadow(0 2px 16px rgba(0,0,0,0.5));
    border-radius: 6px;
}

/* ── HEADLINE ── */
.headline {
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.title {
    font-size: clamp(26px, 4.5vw, 52px);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #fff;
    max-width: 760px;
    margin-bottom: 16px;
}

.title em {
    font-style: normal;
    font-weight: 600;
}

.subtitle {
    font-size: clamp(13px, 1.6vw, 16px);
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 52px;
}

/* ── BADGE ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 64px;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.06);
}

/* ── CONTACT ── */
.contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 13px 26px;
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-btn--primary {
    background: rgba(255,255,255,0.92);
    color: #111;
    border: 1px solid transparent;
}
.contact-btn--primary:hover {
    background: #fff;
}

.contact-btn--secondary {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}
.contact-btn--secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.45);
    color: #fff;
}

/* ── SVG ICONS ── */
.ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
}

/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.25);
}

@media (max-width: 480px) {
    .contact { flex-direction: column; align-items: center; }
    .contact-btn { width: 280px; justify-content: center; }
    .logo { width: 90px; margin-bottom: 40px; }
}
