:root {
    --ink: #120f14;
    --ink-soft: #2a222b;
    --paper: #fff8fb;
    --white: #ffffff;
    --muted: #756b73;
    --line: #eadde5;
    --pink: #d91378;
    --pink-deep: #8f0d52;
    --champagne: #c9a56d;
    --shadow: 0 18px 50px rgba(18, 15, 20, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

body.no-scroll {
    overflow: hidden;
}

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

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

p {
    color: var(--muted);
    line-height: 1.7;
}

strong {
    font-weight: 650;
}

.notice-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 7px 20px;
    color: #f8eaf1;
    background: var(--ink);
    font-size: 0.86rem;
    text-align: center;
}

.notice-bar strong {
    color: var(--white);
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 248, 251, 0.93);
    border-bottom: 1px solid rgba(234, 221, 229, 0.9);
    backdrop-filter: blur(16px);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 8px 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 138px;
    min-width: 118px;
}

.brand img {
    width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.03rem;
    font-weight: 560;
}

.nav-menu a {
    padding: 10px 0;
    color: var(--ink-soft);
}

.nav-menu a:hover {
    color: var(--pink);
}

.nav-pill {
    padding: 10px 16px !important;
    color: var(--white) !important;
    background: var(--ink);
    border-radius: 999px;
}

.mega {
    position: static;
}

.mega__trigger {
    min-height: 42px;
    padding: 9px 0;
    color: var(--ink-soft);
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 560;
    cursor: pointer;
}

.mega__trigger:hover,
.mega:focus-within .mega__trigger,
.mega:hover .mega__trigger {
    color: var(--pink);
}

.mega__panel {
    position: absolute;
    top: calc(100% + 14px);
    right: auto;
    left: 50%;
    z-index: 30;
    display: grid;
    align-items: stretch;
    grid-template-columns: 300px minmax(210px, 1fr) minmax(210px, 1fr);
    gap: 0;
    width: min(960px, calc(100vw - 44px));
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mega:hover .mega__panel,
.mega:focus-within .mega__panel,
.mega.is-open .mega__panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega__panel::before {
    content: "";
    position: absolute;
    top: -16px;
    right: 0;
    left: 0;
    height: 16px;
}

.mega__feature {
    display: grid;
    align-content: start;
    grid-template-rows: auto auto 1fr;
    gap: 12px;
    min-height: 100%;
    padding: 12px !important;
    background: #fff5fa;
    border-radius: var(--radius);
}

.mega__feature:hover {
    background: #ffeef7;
}

.mega__feature img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.mega__feature span {
    display: block;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 640;
    line-height: 1.2;
}

.mega__feature small {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.mega__group {
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 12px 16px;
}

.mega__group + .mega__group {
    border-left: 1px solid var(--line);
}

.mega__group a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 10px !important;
    color: var(--ink-soft);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.25;
}

.mega__group a:hover {
    color: var(--pink-deep);
    background: #fff2f8;
}

.mega__label {
    display: block;
    margin: 2px 10px 8px;
    color: var(--pink-deep);
    font-size: 0.72rem;
    font-weight: 680;
    text-transform: uppercase;
}

.mega__all {
    margin-top: 8px;
    color: var(--white) !important;
    background: var(--ink);
}

.mega__all:hover {
    color: var(--white) !important;
    background: var(--pink-deep) !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 15, 20, 0.76) 0%, rgba(18, 15, 20, 0.54) 38%, rgba(18, 15, 20, 0.08) 70%),
        url("/assets/images/hero.webp") center / cover no-repeat;
}

.hero__content {
    position: relative;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 70px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 560px;
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 0.98;
}

.hero__lead {
    max-width: 590px;
    margin: 22px 0 0;
    color: #f8eaf1;
    font-size: 1.12rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 650;
    cursor: pointer;
}

.button--primary {
    color: var(--white);
    background: var(--pink);
}

.button--primary:hover {
    background: var(--pink-deep);
}

.button--light {
    color: var(--ink);
    background: var(--white);
}

.button--ghost {
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
}

.section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 76px 0;
}

.section--tight {
    padding-top: 54px;
}

.section--soft {
    width: 100%;
    padding-right: max(22px, calc((100vw - 1180px) / 2));
    padding-left: max(22px, calc((100vw - 1180px) / 2));
    background: #fff;
}

.section--ink {
    width: 100%;
    padding-right: max(22px, calc((100vw - 1180px) / 2));
    padding-left: max(22px, calc((100vw - 1180px) / 2));
    color: var(--white);
    background: var(--ink);
}

.section--ink p {
    color: #e8d9e1;
}

.section__heading {
    max-width: 720px;
    margin-bottom: 30px;
}

.section__heading h2,
.split h2,
.page-hero h1,
.category-hero h1,
.article-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.45rem;
    line-height: 1.08;
}

.section__heading p {
    margin-bottom: 0;
}

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

.category-card,
.article-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(18, 15, 20, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.article-card a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.category-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
}

.category-card span {
    display: block;
    padding: 16px 16px 4px;
    font-size: 1.04rem;
    font-weight: 680;
}

.category-card small {
    display: block;
    min-height: 54px;
    padding: 0 16px 18px;
    color: var(--muted);
    line-height: 1.5;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: start;
}

.check-list {
    display: grid;
    gap: 10px;
}

.check-list span {
    position: relative;
    padding: 16px 18px 16px 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    font-weight: 450;
}

.check-list span::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pink);
}

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

.article-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-card img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    background: #efe1e8;
}

.article-card div {
    padding: 18px;
}

.tag {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--pink-deep);
    font-size: 0.78rem;
    font-weight: 650;
    text-transform: uppercase;
}

.article-card h2,
.article-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 680;
    line-height: 1.22;
}

.article-card p {
    min-height: 78px;
    margin: 10px 0 12px;
    font-size: 0.95rem;
}

.article-card small {
    color: var(--muted);
    font-weight: 560;
}

.page-hero,
.category-hero {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 72px 0 42px;
}

.page-hero p,
.category-hero p {
    max-width: 720px;
}

.page-hero--narrow {
    width: min(880px, calc(100% - 44px));
}

.category-hero {
    position: relative;
    min-height: 340px;
    display: grid;
    align-items: end;
    width: 100%;
    padding-right: max(22px, calc((100vw - 1180px) / 2));
    padding-left: max(22px, calc((100vw - 1180px) / 2));
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(18, 15, 20, 0.78), rgba(18, 15, 20, 0.24)),
        var(--category-image) center / cover no-repeat;
}

.category-hero p {
    color: #f6e6ee;
}

.toolbar {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.search-box {
    display: grid;
    gap: 8px;
    max-width: 520px;
    color: var(--ink);
    font-weight: 650;
}

.search-box input {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 9px 13px;
    color: var(--ink-soft);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 650;
}

.chip.is-active,
.chip:hover {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.article-page {
    width: min(1200px, calc(100% - 44px));
    margin: 0 auto;
    padding: 48px 0 72px;
}

.article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 40px;
}

.article-hero img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.article-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 40px rgba(18, 15, 20, 0.08);
}

.article-body h2 {
    margin: 38px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    line-height: 1.18;
}

.article-body p {
    margin: 0 0 18px;
    color: #554b53;
    font-size: 1.13rem;
    line-height: 1.78;
}

.article-body ul {
    padding-left: 22px;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.article-body li + li {
    margin-top: 7px;
}

.article-callout {
    position: relative;
    margin: 30px 0;
    padding: 24px 26px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
}

.article-callout::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border: 20px solid rgba(217, 19, 120, 0.38);
    border-radius: 50%;
}

.article-callout strong {
    display: block;
    margin-bottom: 8px;
    color: var(--pink);
    font-size: 0.82rem;
    font-weight: 650;
    text-transform: uppercase;
}

.article-callout p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff6fa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.35;
}

.article-tips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.article-tip {
    padding: 18px;
    background: #fff5fa;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.article-tip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--pink-deep);
    font-size: 0.82rem;
    font-weight: 650;
    text-transform: uppercase;
}

.article-tip p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
}

.legal {
    width: min(880px, calc(100% - 44px));
    margin: 0 auto 76px;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal--wide {
    width: min(1040px, calc(100% - 44px));
}

.legal h2 {
    margin: 24px 0 8px;
    font-size: 1.25rem;
}

.legal h2:first-child {
    margin-top: 0;
}

.legal h3 {
    margin: 24px 0 8px;
    font-size: 1.08rem;
}

.legal a {
    color: var(--pink-deep);
    text-decoration: underline;
}

.footer {
    color: #f7edf2;
    background: var(--ink);
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(160px, 0.5fr));
    gap: 38px;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 48px 0 26px;
}

.footer p {
    max-width: 460px;
    color: #d7c8d0;
}

.footer a {
    display: block;
    margin: 9px 0;
    color: #f7edf2;
}

.footer h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1rem;
}

.footer__logo {
    width: 190px;
    margin-bottom: 12px;
    border-radius: var(--radius);
}

.footer__bottom {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(18, 15, 20, 0.82);
}

.age-gate[hidden] {
    display: none;
}

.age-gate__panel {
    width: min(520px, 100%);
    padding: 30px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.age-gate__panel h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.12;
}

.age-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

@media (max-width: 980px) {
    .notice-bar {
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        display: none;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: grid;
        gap: 2px;
    }

    .nav-menu a {
        padding: 12px;
    }

    .mega__trigger {
        width: 100%;
        padding: 12px;
        text-align: left;
    }

    .mega__panel {
        position: static;
        display: none;
        width: 100%;
        margin-top: 6px;
        grid-template-columns: 1fr;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mega__feature {
        grid-template-columns: 96px minmax(0, 1fr);
        align-items: center;
    }

    .mega__feature img {
        grid-row: span 2;
        height: 86px;
        aspect-ratio: auto;
    }

    .mega__group + .mega__group {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .mega.is-open .mega__panel {
        display: grid;
    }

    .mega:hover .mega__panel,
    .mega:focus-within .mega__panel {
        transform: none;
    }

    .nav-pill {
        display: inline-flex;
        width: fit-content;
    }

    .hero {
        min-height: 68vh;
    }

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

    .category-grid,
    .article-grid,
    .article-grid--featured {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .article-hero,
    .footer__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand {
        width: 116px;
    }

    .hero__content,
    .section,
    .page-hero,
    .article-page,
    .legal {
        width: min(100% - 32px, 1180px);
    }

    .hero__bg {
        background:
            linear-gradient(180deg, rgba(18, 15, 20, 0.8), rgba(18, 15, 20, 0.42)),
            url("/assets/images/hero.webp") center / cover no-repeat;
    }

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

    .section__heading h2,
    .split h2,
    .page-hero h1,
    .category-hero h1,
    .article-hero h1 {
        font-size: 2rem;
    }

    .category-grid,
    .article-grid,
    .article-grid--featured {
        grid-template-columns: 1fr;
    }

    .category-card small,
    .article-card p {
        min-height: 0;
    }

    .article-body h2 {
        font-size: 1.45rem;
    }

    .legal,
    .age-gate__panel {
        padding: 22px;
    }

    .article-body {
        padding: 24px;
    }

    .article-tips {
        grid-template-columns: 1fr;
    }

    .article-callout p {
        font-size: 1.24rem;
    }
}
