/* Hero section */

.hero {
    min-height: 760px;
    background: #fff;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1500px;
    min-height: 760px;
    margin: 0 auto;
    padding: 70px 20px 40px;
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(5rem, 9vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-align: center;
    white-space: nowrap;
}

.hero-image {
    position: absolute;
    z-index: 2;

    left: 50%;
    bottom: 0;
    transform: translateX(-50%);

    max-height: 680px;
    width: auto;
    object-fit: contain;
}

.hero-subtitle {
    position: absolute;
    z-index: 3;

    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);

    text-align: center;
}

.hero-subtitle span {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.hero-subtitle span::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 12px auto 0;
    background: #c90000;
}

/* ==========================
   Intro Section
========================== */

.intro {
    position: relative;
    margin-top: -150px;
    padding: 260px 20px 100px;

    background: #080808;
    color: #fff;

    overflow: hidden;

    clip-path: polygon(
        0 45%,
        100% 0,
        100% 100%,
        0 100%
    );
}

.intro-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 120px;
}

/* Left */

.left {
    flex: 1;
}

.left h2 {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

/* Right */

.right {
    flex: 1;
    max-width: 360px;
}

.right span {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.right span::before {
    content: "";

    display: block;

    width: 55px;
    height: 2px;

    margin-bottom: 14px;

    background: #c90000;
}

.right ul {
    list-style: none;
    margin-bottom: 30px;
}

.right li {
    display: inline;
    font-size: 1rem;
    line-height: 2;
}

.right li:not(:last-child)::after {
    content: " / ";
    margin: 0 10px;
    color: #c90000;
}

.right p {
    color: #d4d4d4;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;

    padding: 14px 28px;

    border: 1px solid #c90000;

    color: #fff;
    text-decoration: none;

    transition: 0.3s ease;
}

.btn:hover {
    background: #fff;
    color: #000;
}

