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

:root {
    --bg: #0b0b0d;
    --surface: #121215;
    --surface-2: #1a1a1f;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.68);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.24);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
}

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

button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.site-shell {
    min-height: 100vh;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 58px;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.78), rgba(8, 8, 10, 0));
}

.topbar__action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}

.topbar__action--icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.topbar__icon {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.topbar__icon span {
    width: 17px;
    height: 1.5px;
    background: currentColor;
    display: block;
}

.brandmark {
    font-family: "Michroma", sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.brandmark--small {
    font-size: 1rem;
}

.menu-panel[hidden] {
    display: none;
}

.menu-panel {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(9, 9, 11, 0.88);
    backdrop-filter: blur(16px);
}

.menu-panel__inner {
    width: min(720px, calc(100% - 32px));
    margin: 24px auto;
    padding: 28px;
    border: 1px solid var(--line);
    background: rgba(15, 15, 18, 0.9);
}

.menu-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-panel__close {
    font-size: 2rem;
    line-height: 1;
}

.menu-panel__nav {
    display: grid;
    gap: 14px;
    margin-top: 40px;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
}

.menu-panel__nav a {
    width: fit-content;
}

.menu-panel__note {
    margin-top: 36px;
    max-width: 40ch;
    color: var(--muted);
    line-height: 1.65;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #090a0f;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78) saturate(0.9);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 9, 17, 0.7), rgba(5, 9, 17, 0.08) 18%, rgba(5, 7, 10, 0.16) 62%, rgba(5, 7, 10, 0.68)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 44%);
}

.hero__content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 140px 58px 34px;
}

.hero__title-wrap {
    margin-top: auto;
    padding-bottom: 64px;
}

.hero__eyebrow {
    margin-bottom: 18px;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
    font-size: clamp(5rem, 10vw, 7.75rem);
    font-weight: 300;
    line-height: 0.95;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero__cta::after {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
}

.hero__disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.series {
    background: #ffffff;
    color: #111111;
    padding: 30px 58px 54px;
}

.series__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.series-card {
    background: #0b0b0d;
    color: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.series-card__visual {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.series-card__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 8, 12, 0.08), rgba(6, 8, 12, 0.58));
}

.series-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    gap: 7px;
    padding: 18px;
}

.series-card__body h3 {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.series-card__body p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}

.series-card__body span {
    margin-top: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.finder {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
    padding: 78px 58px;
    background: #ffffff;
    color: #121215;
}

.section-kicker {
    margin-bottom: 16px;
    color: rgba(17, 17, 19, 0.55);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.finder h2,
.crafted h2,
.discover h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 400;
    line-height: 0.96;
    text-transform: uppercase;
}

.finder__text,
.crafted p {
    margin-top: 18px;
    max-width: 42rem;
    color: rgba(18, 18, 21, 0.72);
    font-size: 1.02rem;
    line-height: 1.7;
}

.finder__actions,
.discover__cta {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid #111111;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
}

.btn--dark {
    background: #111111;
    color: #ffffff;
}

.btn--ghost,
.btn--light {
    background: transparent;
    color: inherit;
}

.finder__media img,
.crafted__media img,
.discover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.finder__media {
    min-height: 420px;
    overflow: hidden;
}

.crafted {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    min-height: 560px;
    background: #f1f1ee;
    color: #111111;
}

.crafted__copy {
    padding: 74px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discover {
    padding: 82px 58px 86px;
    background: #ffffff;
    color: #111111;
}

.discover__heading {
    margin-bottom: 32px;
    text-align: center;
}

.discover__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.discover-card {
    background: #111111;
    color: #ffffff;
}

.discover-card img {
    aspect-ratio: 1 / 1;
}

.discover-card__caption {
    padding: 18px;
    font-size: 1rem;
}

.footer {
    background: #121216;
    color: #ffffff;
    padding: 38px 58px 28px;
}

.footer__inner {
    max-width: 1600px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__top h3 {
    font-family: "Michroma", sans-serif;
    letter-spacing: 0.18em;
    font-size: 1.25rem;
}

.footer__top p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.68);
    max-width: 36rem;
    line-height: 1.6;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.footer__links span {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
}

.footer__links a,
.footer__links p {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.83rem;
}

@media (max-width: 1100px) {
    .series__grid,
    .discover__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .finder,
    .crafted {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .topbar,
    .hero__content,
    .series,
    .finder,
    .crafted__copy,
    .discover,
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .topbar {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .brandmark {
        font-size: 0.92rem;
        letter-spacing: 0.15em;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero__title-wrap {
        padding-bottom: 40px;
    }

    .series__grid,
    .discover__grid,
    .footer__links {
        grid-template-columns: 1fr;
    }

    .finder__actions,
    .discover__cta,
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
