:root {
    --orange-1: #ffad20;
    --orange-2: #ff7900;
    --orange-3: #f05a00;
    --navy: #122a4f;
    --navy-2: #1d3762;
    --cream: #fff7eb;
    --white: #ffffff;
    --line: rgba(255, 121, 0, 0.25);
    --shadow: 0 26px 70px rgba(91, 35, 0, 0.20);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.5;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(90deg, var(--orange-2), var(--orange-3));
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 30px rgba(125, 48, 0, 0.16);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand img {
    width: 46px;
    height: 46px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,.12));
}

.brand-dot {
    font-weight: 700;
    opacity: 0.88;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    color: var(--white);
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 999px;
    transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    border: 0;
    width: 46px;
    height: 42px;
    border-radius: 14px;
    background: rgba(18, 42, 79, 0.95);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    margin: 4px 0;
}

.hero {
    min-height: 690px;
    position: relative;
    overflow: hidden;
    background-image: url('../img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto -5% -110px -5%;
    height: 190px;
    background: var(--cream);
    border-radius: 50% 50% 0 0 / 45% 45% 0 0;
    z-index: -1;
}

.hero-grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.86fr);
    align-items: center;
    gap: 30px;
    padding: 56px 0 95px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(18, 42, 79, 0.18);
    border: 1px solid rgba(255,255,255,.28);
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow.dark {
    color: var(--orange-3);
    background: rgba(255, 121, 0, 0.10);
    border-color: rgba(255, 121, 0, 0.2);
}

.hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(4.8rem, 10vw, 9.6rem);
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    text-shadow: 0 12px 35px rgba(111, 40, 0, 0.22);
}

.lead {
    margin: 28px 0 26px;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    color: var(--navy);
    font-weight: 900;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 26px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(18, 42, 79, .28);
    transition: 180ms ease;
}

.btn-primary:hover {
    background: var(--navy-2);
    transform: translateY(-2px);
}

.soon-line {
    color: var(--white);
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(91, 35, 0, .18);
}

.hero-mascot {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mascot-img {
    width: min(560px, 100%);
    height: auto;
    filter: drop-shadow(0 30px 45px rgba(91, 35, 0, 0.26));
    transform: translateY(8px);
}

.speech-bubble {
    position: absolute;
    top: 90px;
    right: -12px;
    max-width: 270px;
    padding: 25px 30px;
    border-radius: 46% 54% 53% 47% / 55% 45% 55% 45%;
    background: var(--white);
    color: var(--navy);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 900;
    text-align: center;
    box-shadow: var(--shadow);
    rotate: -3deg;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    background: var(--white);
    transform: translateX(-45%) rotate(45deg);
    border-radius: 8px;
}

.teasers {
    position: relative;
    padding: 28px 0 58px;
    background: var(--cream);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.teaser-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 42px rgba(122, 61, 0, 0.08);
    transition: 180ms ease;
}

.teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 58px rgba(122, 61, 0, 0.13);
}

.card-icon {
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff4db, #fff);
    border: 1px solid rgba(255, 121, 0, .22);
}

.card-icon img {
    width: 74px;
    height: 74px;
}

.teaser-card h2 {
    margin: 3px 0 8px;
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.teaser-card p {
    margin: 0 0 14px;
    color: #2c4166;
}

.teaser-card a {
    color: var(--orange-3);
    font-weight: 900;
}

.about {
    padding: 30px 0 74px;
    background: var(--cream);
}

.about-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
    align-items: center;
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 18px 55px rgba(122, 61, 0, 0.08);
}

.about h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.about p:last-child {
    margin: 0;
    color: #2c4166;
    font-size: 1.08rem;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    color: var(--white);
    background: var(--navy);
}

.site-footer::before {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    top: -38px;
    height: 70px;
    background: var(--orange-2);
    border-radius: 0 0 50% 50% / 0 0 80% 80%;
}

.footer-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        background: var(--navy);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 44px;
    }

    .hero-mascot {
        min-height: 500px;
    }

    .speech-bubble {
        top: 20px;
        right: 5%;
    }

    .cards-grid,
    .about-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand {
        font-size: 1.35rem;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        padding: 40px 0 70px;
    }

    .hero h1 {
        font-size: clamp(4.2rem, 19vw, 6.8rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-mascot {
        min-height: 390px;
    }

    .mascot-img {
        width: min(410px, 100%);
    }

    .speech-bubble {
        top: 0;
        right: 0;
        padding: 18px 22px;
        max-width: 210px;
    }

    .teaser-card {
        grid-template-columns: 82px 1fr;
        gap: 16px;
        padding: 20px;
    }

    .card-icon {
        width: 82px;
        height: 82px;
    }

    .card-icon img {
        width: 55px;
        height: 55px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
