/* =========================================================
   FC RENT — Coming Soon
   Mobile first
   ========================================================= */

:root {
    --bg: #07090b;
    --bg-soft: #0c0f12;
    --card: #14171b;
    --text: #f4f4f2;
    --muted: #a7abb1;
    --line: rgba(255,255,255,.10);
    --yellow: #ffbd00;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

.container {
    width: min(100% - 32px, var(--max-width));
    margin-inline: auto;
}

/* HEADER */

.header {
    position: relative;
    z-index: 5;
    background: rgba(7,9,11,.95);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
}

.logo {
    display: inline-block;
}

.logo img {
    width: 165px;
    height: auto;
    mix-blend-mode: screen;
}

/* HERO */

.hero {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 45%, rgba(255,189,0,.13), transparent 25%),
        linear-gradient(110deg, #07090b 15%, #0b0e11 55%, #151209 100%);
}

.hero-grid {
    position: relative;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 55px 0 35px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(38px, 10vw, 72px);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 900;
}

.hero h1 span {
    color: var(--yellow);
}

.yellow-line {
    width: 65px;
    height: 3px;
    margin: 27px 0 24px;
    background: var(--yellow);
}

.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(22px, 5vw, 32px);
    line-height: 1.1;
    font-weight: 900;
}

.lead {
    margin: 0;
    max-width: 530px;
    color: var(--muted);
    font-size: 15px;
}

.hero-image {
    position: absolute;
    z-index: 1;
    right: -30%;
    bottom: -5px;
    width: 100%;
    height: 330px;
    opacity: .58;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg) 0%, transparent 42%, rgba(7,9,11,.08) 75%, var(--bg) 100%),
        linear-gradient(0deg, var(--bg) 0%, transparent 35%);
}

/* CONTACT */

.contact-section {
    padding: 55px 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(255,189,0,.035), transparent 35%),
        var(--bg);
}

.contact-card {
    padding: 28px 22px;
    background: linear-gradient(145deg, #16191d, #101216);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 20px 70px rgba(0,0,0,.25);
}

.contact-heading h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 900;
}

.contact-heading .yellow-line {
    margin: 15px 0 18px;
    width: 38px;
}

.contact-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 92px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,189,0,.55);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 23px;
}

.contact-item strong,
.contact-item small {
    display: block;
}

.contact-item strong {
    margin-bottom: 3px;
    font-size: 14px;
}

.contact-item small {
    color: #c1c4c8;
    font-size: 14px;
}

/* CLOSING */

.closing {
    padding: 40px 0 75px;
    text-align: center;
}

.tools-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,189,0,.55);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 25px;
}

.closing h2 {
    margin: 0;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 900;
}

.closing p {
    margin: 15px auto 4px;
    color: var(--muted);
    font-size: 14px;
}

.closing strong {
    color: var(--yellow);
    font-size: 18px;
}

/* FOOTER */

.footer {
    border-top: 2px solid var(--yellow);
    background: #0b0d10;
}

.footer-grid {
    display: grid;
    gap: 30px;
    padding: 40px 0;
}

.footer-brand img {
    width: 165px;
    mix-blend-mode: screen;
    margin-bottom: 14px;
}

.footer-brand p {
    margin: 0;
    color: #9da2a8;
    font-size: 12px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a,
.footer-contact > span {
    color: var(--yellow);
    font-size: 14px;
}

.footer-contact a span,
.footer-contact > span span {
    margin-left: 12px;
    color: #d0d2d5;
}

.social {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.social h3 {
    margin: 0 0 14px;
    font-size: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f2f2f0;
    color: #111;
    font-size: 20px;
    font-weight: 900;
}

.copyright {
    padding: 18px 16px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: #60656b;
    font-size: 11px;
}

/* TABLET */

@media (min-width: 650px) {
    .container {
        width: min(100% - 48px, var(--max-width));
    }

    .hero {
        min-height: 620px;
    }

    .hero-grid {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-image {
        right: -8%;
        width: 78%;
        height: 460px;
        opacity: .75;
    }

    .contact-card {
        padding: 38px 42px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .contact-item {
        padding: 20px 25px 20px 0;
    }

    .contact-item:nth-child(2),
    .contact-item:nth-child(4) {
        padding-left: 30px;
        border-left: 1px solid var(--line);
    }

    .contact-item:nth-child(3),
    .contact-item:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        align-items: center;
    }

    .social {
        border-top: 0;
        border-left: 1px solid var(--line);
        padding: 15px 0 15px 35px;
    }
}

/* DESKTOP */

@media (min-width: 900px) {
    .container {
        width: min(100% - 70px, var(--max-width));
    }

    .header-inner {
        min-height: 110px;
    }

    .logo img {
        width: 220px;
    }

    .hero {
        min-height: 640px;
    }

    .hero-grid {
        min-height: 640px;
        display: grid;
        grid-template-columns: 48% 52%;
        align-items: center;
    }

    .hero-content {
        padding: 50px 0;
    }

    .hero-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: 640px;
        opacity: .95;
    }

    .hero-image::after {
        background:
            linear-gradient(90deg, var(--bg) 0%, transparent 25%, transparent 90%, var(--bg) 100%),
            linear-gradient(0deg, var(--bg) 0%, transparent 25%);
    }

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

    .contact-card {
        padding: 40px 45px;
    }

    .contact-heading h2 {
        font-size: 31px;
    }

    .closing {
        padding: 40px 0 90px;
    }

    .footer-grid {
        padding: 45px 0;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 66px;
    }

    .hero-image {
        transform: scale(1.08);
        transform-origin: center right;
    }
}

/* ACCESSIBILITY */

a:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
