:root {
    --pink: #e6008d;
    --pink-2: #ff4bb6;
    --pink-3: #b90072;
    --ink: #111114;
    --ink-2: #24242a;
    --muted: #74717a;
    --line: rgba(17, 17, 20, .1);
    --paper: #ffffff;
    --soft: #f6f1f4;
    --soft-2: #fff4fb;
    --shadow: 0 28px 70px rgba(17, 17, 20, .12);
    --shadow-strong: 0 36px 100px rgba(230, 0, 141, .22);
    --radius: 26px;
    --radius-small: 16px;
    --max: 1510px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f1f4 40%, #f2edf1 100%);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    width: 100%;
    overflow: hidden;
}

.site-header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--line);
    min-height: 220px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(230, 0, 141, .08), transparent 28%),
        radial-gradient(circle at 76% 32%, rgba(230, 0, 141, .11), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fff 62%, #f8eef4 100%);
}

.hex {
    position: absolute;
    width: 170px;
    aspect-ratio: 1;
    border-radius: 34px;
    transform: rotate(30deg);
    border: 2px solid rgba(230, 0, 141, .17);
    background: rgba(230, 0, 141, .07);
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .5);
}

.hex-a {
    left: 10%;
    bottom: -80px;
}

.hex-b {
    left: 44%;
    bottom: 18px;
    width: 210px;
    opacity: .7;
}

.hex-c {
    right: 16%;
    bottom: -34px;
    width: 190px;
}

.hex-d {
    right: 34%;
    bottom: 8px;
    width: 150px;
    opacity: .4;
    background: rgba(17, 17, 20, .13);
    border-color: rgba(17, 17, 20, .05);
}

.topbar {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    min-height: 180px;
    padding: 20px 34px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.brand {
    width: clamp(130px, 11vw, 190px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(230, 0, 141, .16));
}

.brand.brand-text::after {
    content: attr(data-fallback);
    font-weight: 1000;
    font-size: 32px;
    line-height: .9;
    color: var(--pink);
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: #111114;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    position: relative;
    z-index: 3;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 24px;
    min-height: 56px;
}

.main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    font-weight: 950;
    font-size: 13px;
    letter-spacing: -.03em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: var(--pink);
    color: #fff;
    outline: none;
}

main {
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px 34px 70px;
}

.headline-strip {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: center;
    min-height: 54px;
    margin: 0 0 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .05);
}

.strip-label {
    position: relative;
    height: 54px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--pink);
    color: #fff;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: -.04em;
    font-size: 19px;
}

.strip-label::after {
    content: "";
    position: absolute;
    right: -22px;
    top: 0;
    border-top: 27px solid transparent;
    border-bottom: 27px solid transparent;
    border-left: 22px solid var(--pink);
}

.strip-label span {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .16);
}

.ticker {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 42px;
    padding-left: 42px;
    animation: ticker 42s linear infinite;
}

.ticker-track a {
    color: #4f4b52;
    font-weight: 850;
    font-size: 14px;
}

.ticker-track a::before {
    content: "➜";
    color: var(--pink);
    margin-right: 8px;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 28px;
    margin: 20px 0 32px;
    align-items: stretch;
}

.hero-copy {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(230, 0, 141, .16), transparent 35%),
        linear-gradient(135deg, #111114 0%, #1c1720 64%, #3a1230 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: clamp(30px, 4vw, 64px);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-copy::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 42px solid rgba(230, 0, 141, .24);
    border-radius: 68px;
    transform: rotate(25deg);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--pink-2);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
}

.hero-copy h1,
.page-hero h1,
.article-header h1,
.contact-copy h1 {
    margin: 0;
    line-height: .92;
    letter-spacing: -.075em;
    font-weight: 1000;
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(44px, 6vw, 92px);
}

.hero-copy p:not(.eyebrow) {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 1.4vw, 21px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 23px;
    border: 0;
    cursor: pointer;
    font-weight: 950;
    letter-spacing: -.035em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 18px 36px rgba(230, 0, 141, .28);
}

.btn-ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.btn-light {
    background: #fff;
    color: var(--pink);
}

.btn-dark {
    background: var(--pink);
    color: #fff;
}

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

.feature-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #252128;
    box-shadow: var(--shadow);
    opacity: 1;
    transform: translateY(0);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.feature-card:hover img {
    transform: scale(1.04);
}

.card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .78));
}

.card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px;
    color: #fff;
}

.pill,
.news-image span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}

.card-content h2 {
    margin: 12px 0 8px;
    max-width: 680px;
    line-height: 1;
    letter-spacing: -.055em;
    font-weight: 1000;
    font-size: clamp(30px, 3.2vw, 56px);
}

.card-content p {
    max-width: 700px;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .78);
}

.card-content time {
    font-size: 14px;
    font-weight: 850;
    color: rgba(255, 255, 255, .82);
}

.category-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 28px;
}

.category-row a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(17, 17, 20, .06);
}

.category-row span {
    min-width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-2);
    color: var(--pink);
    font-size: 12px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.post-grid,
.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(17, 17, 20, .07);
    box-shadow: 0 18px 60px rgba(17, 17, 20, .07);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .35s ease, transform .35s ease, box-shadow .25s ease;
}

.news-card.is-visible,
.panel-box.is-visible,
.feature-card.is-visible,
.article-wrap.is-visible,
.contact-form.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    box-shadow: 0 26px 80px rgba(230, 0, 141, .14);
}

.news-image {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1d5e6, #b9b7bd);
}

.archive-card .news-image {
    height: 220px;
}

.news-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .28));
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-image span {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
}

.news-body {
    padding: 22px;
}

.meta-line {
    color: var(--pink);
    font-weight: 950;
    font-size: 13px;
    margin-bottom: 8px;
}

.news-body h2 {
    margin: 0;
    font-size: clamp(21px, 1.7vw, 29px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 1000;
}

.news-body h2 a:hover {
    color: var(--pink);
}

.news-body p {
    margin: 12px 0 18px;
    color: var(--muted);
}

.read-more {
    color: var(--pink);
    font-weight: 950;
}

.read-more::after {
    content: " →";
}

.side-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.panel-box {
    border-radius: var(--radius);
    padding: 30px;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .35s ease, transform .35s ease;
}

.pink-box {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .36), transparent 30%),
        linear-gradient(135deg, var(--pink) 0%, var(--pink-3) 100%);
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.dark-box {
    background:
        radial-gradient(circle at top right, rgba(230, 0, 141, .2), transparent 35%),
        linear-gradient(135deg, #111114 0%, #2d2530 100%);
    color: #fff;
    box-shadow: var(--shadow);
}

.panel-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .78);
    font-weight: 950;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}

.panel-box h2 {
    margin: 0;
    font-size: 34px;
    line-height: .98;
    letter-spacing: -.06em;
    font-weight: 1000;
}

.panel-box p {
    color: rgba(255, 255, 255, .78);
    margin: 12px 0 22px;
}

.page-hero,
.contact-layout {
    border-radius: var(--radius);
    background:
        radial-gradient(circle at top right, rgba(230, 0, 141, .16), transparent 35%),
        #fff;
    box-shadow: var(--shadow);
    padding: clamp(34px, 5vw, 76px);
    margin-bottom: 28px;
}

.page-hero.compact h1,
.contact-copy h1 {
    font-size: clamp(44px, 6vw, 94px);
}

.page-hero p:not(.eyebrow),
.contact-copy p {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(17px, 1.4vw, 21px);
}

.article-wrap {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius);
    padding: clamp(26px, 4vw, 62px);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .35s ease, transform .35s ease;
}

.article-header {
    margin-bottom: 26px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--pink);
    font-weight: 950;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.article-meta time,
.article-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--soft-2);
    color: var(--pink);
    font-weight: 900;
    font-size: 13px;
}

.article-header h1 {
    font-size: clamp(38px, 5.2vw, 82px);
}

.article-image {
    margin: 0 0 32px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--soft);
}

.article-image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}

.article-content {
    color: #29262c;
    font-size: 18px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    line-height: 1.04;
    letter-spacing: -.05em;
    font-weight: 1000;
    color: var(--ink);
}

.article-content h2 {
    font-size: clamp(30px, 3vw, 48px);
    margin: 42px 0 14px;
}

.article-content h3 {
    font-size: clamp(24px, 2vw, 34px);
    margin: 32px 0 12px;
}

.article-content p {
    margin: 0 0 18px;
}

.article-content a {
    color: var(--pink);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
}

.article-content img {
    border-radius: 18px;
    margin: 22px 0;
    height: auto;
}

.article-content blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    border-left: 6px solid var(--pink);
    background: var(--soft-2);
    border-radius: 18px;
    font-weight: 800;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    gap: 36px;
    align-items: start;
}

.contact-card-mini {
    margin-top: 26px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #111114;
    color: #fff;
    box-shadow: 0 18px 40px rgba(17, 17, 20, .16);
}

.contact-card-mini span {
    color: rgba(255, 255, 255, .72);
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(22px, 3vw, 34px);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .35s ease, transform .35s ease;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-form label span {
    color: var(--ink);
    font-weight: 950;
    letter-spacing: -.03em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 20, .12);
    border-radius: 18px;
    background: #f9f5f8;
    padding: 15px 16px;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 190px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 5px rgba(230, 0, 141, .11);
    background: #fff;
}

.form-button {
    width: 100%;
    min-height: 54px;
}

.trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-success,
.form-errors {
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 850;
}

.form-success {
    background: #e9fff4;
    color: #067a41;
}

.form-errors {
    background: #fff0f5;
    color: #ad005c;
}

.form-errors p {
    margin: 0;
}

.form-errors p + p {
    margin-top: 6px;
}

.empty-state {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: var(--radius);
    padding: 34px;
    color: var(--muted);
    box-shadow: var(--shadow);
    font-weight: 850;
}

.site-footer {
    max-width: var(--max);
    margin: 0 auto;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--muted);
    border-top: 1px solid rgba(17, 17, 20, .08);
}

.site-footer strong {
    display: block;
    color: var(--ink);
    font-size: 20px;
    letter-spacing: -.04em;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    font-weight: 900;
    color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    .news-card,
    .panel-box,
    .feature-card,
    .article-wrap,
    .contact-form {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .hero-section,
    .content-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .side-panel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 860px) {
    .site-header {
        min-height: auto;
    }

    .topbar {
        min-height: 120px;
        align-items: flex-start;
        padding: 18px 18px 22px;
    }

    .brand {
        width: 128px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        padding: 10px 18px 18px;
        flex-direction: column;
        gap: 8px;
        background: #000;
    }

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

    .main-nav a {
        min-height: 48px;
        justify-content: flex-start;
        border-radius: 16px;
        padding: 0 16px;
        background: rgba(255, 255, 255, .07);
    }

    main {
        padding: 16px 16px 54px;
    }

    .headline-strip {
        grid-template-columns: 1fr;
    }

    .strip-label {
        height: 48px;
        font-size: 17px;
    }

    .strip-label::after {
        display: none;
    }

    .ticker {
        height: 44px;
        display: flex;
        align-items: center;
    }

    .hero-copy,
    .feature-card,
    .hero-card {
        min-height: auto;
    }

    .hero-copy {
        padding: 34px 24px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .feature-card {
        min-height: 420px;
    }

    .card-content {
        padding: 24px;
    }

    .post-grid,
    .archive-grid,
    .side-panel {
        grid-template-columns: 1fr;
    }

    .news-image,
    .archive-card .news-image {
        height: 240px;
    }

    .page-hero,
    .contact-layout,
    .article-wrap {
        border-radius: 22px;
        padding: 26px 20px;
    }

    .page-hero.compact h1,
    .contact-copy h1,
    .article-header h1 {
        font-size: clamp(38px, 13vw, 58px);
    }

    .article-content {
        font-size: 17px;
    }

    .site-footer {
        padding: 28px 18px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    body {
        background: #f7f1f5;
    }

    .hex {
        opacity: .45;
    }

    .headline-strip {
        margin-bottom: 16px;
    }

    .hero-section {
        gap: 16px;
        margin-top: 16px;
    }

    .hero-copy {
        border-radius: 20px;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .feature-card {
        border-radius: 20px;
        min-height: 370px;
    }

    .category-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .category-row::-webkit-scrollbar {
        display: none;
    }

    .category-row a {
        flex: 0 0 auto;
    }

    .news-card,
    .panel-box,
    .contact-form {
        border-radius: 20px;
    }

    .news-image,
    .archive-card .news-image {
        height: 218px;
    }

    .news-body {
        padding: 19px;
    }

    .panel-box {
        min-height: 240px;
        padding: 24px;
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 16px;
    }
}
