.hero-title,
.hero-title__group {
    display: block;
    font-family: var(--sans);
    font-size: clamp(42px, 5.6vw, 84px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.055em;
    font-style: normal;
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero-title__accent {
    color: #667c6b;
}

.hero-title {
    width: 100%;
    max-width: none;
    margin-inline: auto;
}

.button-skin-check {
    border: 1px solid #667c6b;
    background: #667c6b;
    color: #fff;
}

.button-skin-check:hover,
.home-skin-check__cta:hover {
    transform: translateY(-2px);
    background: #526658;
}

.home-skin-check {
    padding: 80px 0;
    background: #f1f5f1;
}

.home-skin-check__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    gap: 72px;
    align-items: center;
    padding: 72px;
    border-radius: 40px;
    background: #f5f6f2;
}

.home-skin-check__content h2 {
    margin: 0 0 22px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.2;
}

.home-skin-check__content > p:not(.eyebrow) {
    max-width: 560px;
    color: var(--muted);
}

.home-skin-check__meta {
    display: flex;
    gap: 36px;
    margin: 32px 0 8px;
}

.home-skin-check__meta span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-skin-check__meta strong {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.04em;
}

.home-skin-check__meta small {
    color: var(--muted);
    font-size: 12px;
}

.home-skin-check__cta {
    transition: transform .2s ease, background-color .2s ease;
}

.home-skin-check__visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 28px;
}

.mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 12;
    border-radius: 999px;
    padding: 9px 16px;
    background: #fff;
    color: #161616;
    border-color: #d2d2d7;
    cursor: pointer;
}

.hero-actions .button {
    min-height: 64px;
    white-space: nowrap;
}

@media (max-width: 760px) {
    body.menu-is-open {
        overflow: hidden;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header {
        z-index: 20;
    }

    .site-header .mobile-navigation {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 11;
        display: flex;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        max-height: none;
        overflow-y: auto;
        padding: 18px 20px 24px;
        background: #ffffff;
        color: #111111;
        -webkit-text-fill-color: #111111;
        mix-blend-mode: normal;
        border-top: 1px solid #e5e5e7;
        border-bottom: 1px solid #e5e5e7;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-header .mobile-navigation a,
    .site-header .mobile-navigation a:visited {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #111111;
        opacity: 1;
        padding: 13px 8px;
        white-space: nowrap;
        border-bottom: 1px solid #f0f0f2;
    }

    .site-header .mobile-navigation a[href$="/skin-check/"],
    .site-header .mobile-navigation a[href$="/skin-check/"]:visited {
        margin: 6px 0;
        padding-left: 14px;
        border-radius: 12px;
        background: #f1f5f1;
        color: #526658;
    }

    .site-header .mobile-navigation .nav-cta {
        margin-top: 10px;
        border: 0;
        background: #161616;
        color: #fff;
        text-align: center;
    }

    .hero-content {
        padding-inline: 20px;
    }

    .hero-title,
    .hero-title__group {
        width: 100%;
        max-width: none;
        margin-inline: auto;
        font-size: clamp(36px, 10.5vw, 46px);
        line-height: 1.13;
        letter-spacing: -.045em;
        word-break: keep-all;
        overflow-wrap: normal;
        text-align: center;
    }

    .hero-content > .eyebrow {
        margin-bottom: 28px;
    }

    .hero-content > p:not(.eyebrow) {
        margin-top: 28px;
    }
}

@media (max-width: 359px) {
    .hero-title,
    .hero-title__group {
        font-size: 36px;
        letter-spacing: -.04em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-navigation {
        transition: none;
    }
}

@media (max-width: 760px) {
    .home-skin-check {
        padding: 48px 0;
    }

    .home-skin-check__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 32px 28px;
        border-radius: 32px;
    }

    .home-skin-check__meta {
        gap: 24px;
    }

    .home-skin-check__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-skin-check__cta {
        transition: none;
    }

    .button-skin-check:hover,
    .home-skin-check__cta:hover {
        transform: none;
    }
}
