:root {
    --ink: #180e1c;
    --coral: #ff4358;
    --coral-dark: #ec2f4d;
    --pink: #ef2a87;
    --yellow: #ffd45f;
    --cream: #fff4e3;
    --white: #fffaf2;
    --aqua: #83e7dc;
    --wrap: min(1180px, calc(100% - 48px));
    --radius: 26px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--ink); }

body {
    margin: 0;
    overflow-x: clip;
    color: var(--white);
    background: var(--ink);
    font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body:has(dialog[open]) { overflow: hidden; }
img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
::selection { color: var(--ink); background: var(--yellow); }
.wrap { width: var(--wrap); margin-inline: auto; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.section { position: relative; padding-block: clamp(88px, 11vw, 152px); }
.eyebrow {
    margin: 0 0 18px;
    color: var(--yellow);
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.eyebrow--dark { color: var(--coral-dark); }

/* Full-window hero */
.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: max(680px, 100svh);
    overflow: hidden;
    background: #521d50;
}

.hero__art, .hero__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__art {
    object-fit: cover;
    object-position: 50% 46%;
    will-change: transform;
    animation: hero-drift 20s var(--ease) both;
}

.hero__shade {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(17, 6, 20, .68) 0%, rgba(17, 6, 20, .06) 22%, rgba(17, 6, 20, .08) 45%, rgba(24, 14, 28, .76) 77%, var(--ink) 100%),
        radial-gradient(ellipse at 50% 63%, rgba(89, 18, 91, .05), rgba(20, 5, 25, .5) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .17;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.nav {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(18px, 3vw, 30px);
    transform: translateX(-50%);
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-size: .76rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: .12em;
    text-decoration: none;
}

.nav__brand img {
    width: 55px;
    border-radius: 11px;
    box-shadow: 0 10px 30px rgba(31, 7, 29, .25);
}

.nav__brand small {
    display: block;
    margin-top: 3px;
    color: var(--yellow);
    font-size: .66em;
    letter-spacing: .38em;
}

.nav__links { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); }
.nav__links a {
    position: relative;
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav__links a:not(.nav__steam)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__steam {
    padding: 10px 17px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 999px;
    box-shadow: 0 7px 0 rgba(77, 35, 29, .3);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav__steam:hover { box-shadow: 0 4px 0 rgba(77, 35, 29, .3); transform: translateY(3px); }

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: max(680px, 100svh);
    padding-top: 110px;
    padding-bottom: clamp(78px, 8vh, 108px);
    text-align: center;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: clamp(.68rem, 1.2vw, .78rem);
    font-weight: 900;
    letter-spacing: .19em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
    animation: hero-rise .7s .15s both var(--ease);
}

.hero__eyebrow span {
    display: inline-grid;
    width: 35px;
    aspect-ratio: 1;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    letter-spacing: -.03em;
    text-shadow: none;
    transform: rotate(-7deg);
}

.hero__logo {
    width: min(430px, 70vw);
    height: auto;
    margin-inline: auto;
    filter: drop-shadow(0 18px 15px rgba(35, 3, 34, .42));
    transform-origin: 50% 100%;
    animation: logo-arrive .85s .1s both var(--ease);
}

.hero__tagline {
    margin: 4px 0 24px;
    font-size: clamp(1rem, 2vw, 1.28rem);
    font-weight: 750;
    line-height: 1.42;
    letter-spacing: .01em;
    text-shadow: 0 3px 20px rgba(0, 0, 0, .82);
    animation: hero-rise .75s .25s both var(--ease);
}
.hero__tagline em { color: var(--yellow); font-style: normal; }

.hero__actions {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 13px;
    animation: hero-rise .75s .35s both var(--ease);
}

.button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    min-height: 61px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 17px;
    font-weight: 900;
    line-height: 1.05;
    text-align: left;
    text-decoration: none;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s ease;
}

.button::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -70%;
    bottom: -70%;
    left: -50%;
    width: 35%;
    background: rgba(255, 255, 255, .4);
    filter: blur(7px);
    transform: rotate(15deg);
    transition: left .6s var(--ease);
}
.button:hover::after { left: 120%; }
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(1px); }
.button svg { flex: 0 0 auto; fill: currentColor; }

.button--steam {
    min-width: 255px;
    padding: 11px 24px;
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 0 8px 0 #b56740, 0 18px 35px rgba(25, 4, 29, .3);
}
.button--steam:hover { box-shadow: 0 11px 0 #b56740, 0 20px 38px rgba(25, 4, 29, .38); }
.button--steam svg { width: 30px; }
.button--steam small { display: block; margin-bottom: 4px; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.button--steam span { font-size: 1.1rem; }

.button--demo {
    min-width: 205px;
    padding: 16px 22px;
    color: var(--white);
    background: rgba(32, 12, 35, .68);
    border-color: rgba(255, 255, 255, .62);
    box-shadow: 0 8px 0 rgba(30, 5, 34, .55), 0 18px 35px rgba(25, 4, 29, .24);
    backdrop-filter: blur(12px);
}
.button--demo:hover { background: rgba(239, 42, 135, .82); }
.button--demo svg { width: 23px; }

.hero__note {
    margin: 18px 0 0;
    color: rgba(255, 250, 242, .75);
    font-size: .75rem;
    font-weight: 650;
    letter-spacing: .04em;
    animation: hero-rise .75s .45s both var(--ease);
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 21px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}
.scroll-cue svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; animation: cue-bounce 1.8s infinite var(--ease); }

/* Introduction */
.intro {
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 24%, rgba(239, 42, 135, .18), transparent 27%),
        radial-gradient(circle at 10% 83%, rgba(127, 45, 135, .22), transparent 33%),
        var(--ink);
}

.intro::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -9vw;
    width: clamp(240px, 34vw, 540px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 212, 95, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 212, 95, .025), 0 0 0 120px rgba(255, 212, 95, .018);
}
.intro__glow { position: absolute; z-index: -1; top: 27%; left: 50%; width: 1px; height: 52%; background: linear-gradient(transparent, rgba(255, 212, 95, .2), transparent); }
.intro__numbers { position: absolute; top: 11%; right: -20px; color: rgba(255, 255, 255, .025); font-size: clamp(3.5rem, 10vw, 9rem); font-weight: 950; letter-spacing: -.04em; white-space: nowrap; transform: rotate(-5deg); pointer-events: none; }
.intro .wrap { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 30px; }
.intro__heading { grid-column: 1 / 7; }

.intro h2, .gallery h2, .studio h2 {
    margin: 0;
    font-size: clamp(3rem, 7.2vw, 6.4rem);
    font-weight: 950;
    line-height: .89;
    letter-spacing: -.065em;
    text-transform: uppercase;
}

.intro h2 em { position: relative; color: var(--coral); font-style: normal; }

.intro__copy {
    grid-column: 8 / -1;
    align-self: end;
    padding-bottom: .7rem;
    color: rgba(255, 250, 242, .69);
    font-size: clamp(.97rem, 1.6vw, 1.08rem);
}
.intro__copy p { max-width: 570px; margin: 0; }
.intro__copy p + p { margin-top: 18px; }
.intro__copy .intro__lead { color: var(--white); font-size: clamp(1.18rem, 2vw, 1.45rem); font-weight: 700; line-height: 1.42; }

.features {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
    margin: clamp(66px, 8vw, 100px) 0 0;
    list-style: none;
}

.feature {
    position: relative;
    min-height: 225px;
    padding: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .105);
    border-radius: var(--radius);
    transition: border-color .3s ease, background-color .3s ease, transform .3s var(--ease);
}
.feature::before { content: ""; position: absolute; top: -50px; right: -50px; width: 150px; aspect-ratio: 1; background: var(--feature-color, var(--pink)); border-radius: 50%; filter: blur(55px); opacity: .16; transition: opacity .3s ease; }
.feature:nth-child(2) { --feature-color: var(--yellow); }
.feature:nth-child(3) { --feature-color: var(--aqua); }
.feature:hover { background: rgba(255, 255, 255, .075); border-color: rgba(255, 212, 95, .4); transform: translateY(-6px); }
.feature:hover::before { opacity: .3; }
.feature__number { display: block; margin-bottom: 38px; color: var(--yellow); font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.feature h3 { margin: 0 0 9px; font-size: clamp(1.15rem, 2vw, 1.38rem); line-height: 1.1; }
.feature p { max-width: 310px; margin: 0; color: rgba(255, 250, 242, .63); font-size: .9rem; line-height: 1.55; }

.quick-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.quick-stats p { display: flex; align-items: baseline; gap: 10px; padding: 28px 20px; margin: 0; }
.quick-stats p + p { border-left: 1px solid rgba(255, 255, 255, .13); }
.quick-stats strong { color: var(--coral); font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1; letter-spacing: -.06em; }
.quick-stats span { color: rgba(255, 250, 242, .72); font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

/* Gallery */
.gallery {
    color: var(--ink);
    background: radial-gradient(circle at 7% 13%, rgba(255, 67, 88, .09), transparent 21%), linear-gradient(180deg, #fff8ed, var(--cream));
    border-radius: 52px 52px 0 0;
}

.gallery::before { content: "✦"; position: absolute; top: 45px; right: 5vw; color: var(--yellow); font-size: clamp(3rem, 7vw, 7rem); line-height: 1; text-shadow: 4px 4px 0 var(--coral); transform: rotate(12deg); }
.gallery__heading { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: end; margin-bottom: clamp(52px, 8vw, 92px); }
.gallery h2 { font-size: clamp(3rem, 7.6vw, 6.8rem); }
.gallery__heading > p { max-width: 390px; padding-bottom: .65rem; margin: 0; color: rgba(24, 14, 28, .7); font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 650; }
.gallery__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(18px, 2.2vw, 28px); }

.gallery-card {
    --card-tilt: 0deg;
    position: relative;
    display: block;
    grid-column: span 4;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border: 3px solid var(--ink);
    border-radius: 22px;
    box-shadow: 8px 9px 0 var(--coral);
    transform: rotate(var(--card-tilt));
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-card:nth-child(1) { --card-tilt: -.55deg; grid-column: span 7; }
.gallery-card:nth-child(2) { --card-tilt: .65deg; grid-column: span 5; }
.gallery-card:nth-child(3) { --card-tilt: .35deg; }
.gallery-card:nth-child(4) { --card-tilt: -.5deg; }
.gallery-card:nth-child(5) { --card-tilt: .6deg; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(17, 5, 19, .88) 100%); pointer-events: none; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .4s ease; }
.gallery-card:hover { box-shadow: 13px 15px 0 var(--coral); transform: translate(-4px, -6px) rotate(0); }
.gallery-card:hover img { filter: saturate(1.08) contrast(1.02); transform: scale(1.045); }

.gallery-card__caption { position: absolute; z-index: 2; bottom: 18px; left: 20px; display: flex; flex-direction: column; line-height: 1.1; }
.gallery-card__caption strong { font-size: clamp(.96rem, 1.7vw, 1.22rem); }
.gallery-card__caption small { margin-top: 6px; color: var(--yellow); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.gallery-card__open { position: absolute; z-index: 2; right: 15px; bottom: 15px; display: grid; width: 38px; aspect-ratio: 1; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-size: 1.15rem; font-weight: 900; transition: transform .3s var(--ease); }
.gallery-card:hover .gallery-card__open { transform: rotate(45deg); }
.gallery-card.is-loading { cursor: progress; }
.gallery-card.is-loading::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 16px;
    right: 16px;
    width: 27px;
    aspect-ratio: 1;
    border: 3px solid rgba(255, 255, 255, .5);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: loading-spin .75s linear infinite;
}
.gallery__hint { margin: 46px 0 0; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.gallery__hint span { display: inline-block; margin-right: 7px; color: var(--coral); }

/* Studio footer */
.site-footer { color: var(--white); background: radial-gradient(circle at 10% 40%, rgba(255, 212, 95, .14), transparent 26%), var(--coral); overflow: hidden; }
.studio { display: grid; grid-template-columns: minmax(250px, 440px) 1fr; gap: clamp(50px, 9vw, 120px); align-items: center; padding-block: clamp(85px, 11vw, 145px); }
.studio__logo { width: min(100%, 440px); border: 1px solid rgba(255, 255, 255, .28); border-radius: 34px; box-shadow: 18px 18px 0 rgba(119, 19, 58, .23); transform: rotate(-2deg); }
.studio__copy { max-width: 650px; }
.studio .eyebrow { color: var(--yellow); }
.studio h2 { font-size: clamp(3.2rem, 7.2vw, 6.8rem); text-shadow: 4px 5px 0 rgba(119, 19, 58, .22); }
.studio__copy > p:not(.eyebrow) { max-width: 580px; margin: 30px 0 0; font-size: clamp(1rem, 1.8vw, 1.16rem); font-weight: 650; }
.studio__copy em { color: var(--yellow); font-style: normal; }
.footer-links { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 38px; }
.footer-links a { display: inline-flex; align-items: center; gap: 17px; padding: 12px 18px; border: 1px solid rgba(255, 255, 255, .62); border-radius: 999px; font-size: .78rem; font-weight: 850; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; transition: color .2s ease, background-color .2s ease, transform .2s var(--ease); }
.footer-links a:hover { color: var(--ink); background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-block: 25px 32px; border-top: 1px solid rgba(255, 255, 255, .28); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: none; }

/* Keyboard-friendly modal gallery */
.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; padding: clamp(18px, 4vw, 48px); margin: 0; color: var(--white); background: transparent; border: 0; overflow: hidden; }
.lightbox::backdrop { background: rgba(16, 7, 18, .94); backdrop-filter: blur(12px); }
.lightbox[open] { display: grid; place-items: center; animation: lightbox-in .25s ease both; }
.lightbox__panel { position: relative; display: grid; width: min(100%, 1580px); height: 100%; place-items: center; }
.lightbox figure { display: flex; max-width: 100%; max-height: 100%; flex-direction: column; margin: 0; }
.lightbox figure img { width: auto; max-width: 100%; height: auto; max-height: calc(100svh - 145px); object-fit: contain; background: #100912; border: 2px solid rgba(255, 255, 255, .85); border-radius: 18px; box-shadow: 0 28px 70px rgba(0, 0, 0, .42); }
.lightbox figcaption { display: flex; justify-content: space-between; gap: 25px; padding: 14px 4px 0; color: rgba(255, 250, 242, .78); font-size: .82rem; }
.lightbox__count { flex: 0 0 auto; color: var(--yellow); font-weight: 900; letter-spacing: .12em; }
.lightbox__close, .lightbox__arrow { position: absolute; z-index: 3; display: grid; width: 50px; aspect-ratio: 1; place-items: center; color: var(--white); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; cursor: pointer; transition: color .2s ease, background-color .2s ease, transform .2s var(--ease); }
.lightbox__close:hover, .lightbox__arrow:hover { color: var(--ink); background: var(--yellow); transform: scale(1.06); }
.lightbox__close svg, .lightbox__arrow svg { width: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.lightbox__close { top: 0; right: 0; }
.lightbox__arrow { top: 50%; transform: translateY(-50%); }
.lightbox__arrow:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__arrow--previous { left: 0; }
.lightbox__arrow--next { right: 0; }

/* Adult-content gate */
.age-gate {
    width: min(620px, calc(100% - 30px));
    max-width: none;
    max-height: calc(100svh - 24px);
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 32px;
    overflow: auto;
}

.age-gate::backdrop {
    background: rgba(17, 6, 20, .9);
    backdrop-filter: blur(14px) saturate(.7);
}

.age-gate[open] { animation: gate-arrive .42s both var(--ease); }

.age-gate__card {
    position: relative;
    isolation: isolate;
    padding: clamp(30px, 6vw, 54px);
    overflow: hidden;
    background:
        radial-gradient(circle at 93% 8%, rgba(255, 67, 88, .3), transparent 29%),
        radial-gradient(circle at 3% 90%, rgba(118, 35, 125, .34), transparent 31%),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .5);
}

.age-gate__card::before {
    content: "01 · 02 · 03 · 04 · 05 · 06 · 07";
    position: absolute;
    z-index: -1;
    top: 21%;
    right: -48px;
    color: rgba(255, 255, 255, .035);
    font-size: 3.3rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.06em;
    white-space: nowrap;
    transform: rotate(-7deg);
}

.age-gate__close {
    position: absolute;
    z-index: 2;
    top: 19px;
    right: 19px;
    display: grid;
    width: 42px;
    aspect-ratio: 1;
    place-items: center;
    color: rgba(255, 255, 255, .76);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, transform .2s var(--ease);
}

.age-gate__close:hover {
    color: var(--ink);
    background: var(--yellow);
    transform: rotate(6deg) scale(1.06);
}

.age-gate__close svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.age-gate__heading {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 48px;
}

.age-gate__heading .eyebrow { margin: 0; }

.age-gate__badge {
    display: grid;
    width: 54px;
    aspect-ratio: 1;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 5px 5px 0 var(--coral);
    font-size: .85rem;
    font-weight: 950;
    letter-spacing: -.04em;
    transform: rotate(-7deg);
}

.age-gate h2 {
    margin: 25px 0 28px;
    font-size: clamp(2.7rem, 8vw, 4.7rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.065em;
    text-transform: uppercase;
}

.age-gate h2 em { color: var(--coral); font-style: normal; }

.age-gate__warning {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
    padding: 17px 19px;
    background: rgba(255, 67, 88, .1);
    border: 1px solid rgba(255, 67, 88, .35);
    border-radius: 18px;
}

.age-gate__warning > span {
    display: grid;
    width: 34px;
    aspect-ratio: 1;
    place-items: center;
    color: var(--ink);
    background: var(--coral);
    border-radius: 50%;
    font-weight: 950;
}

.age-gate__warning p {
    margin: 0;
    color: rgba(255, 250, 242, .72);
    font-size: .88rem;
    line-height: 1.5;
}

.age-gate__warning strong { color: var(--white); }

.age-gate__question {
    margin: 25px 0 12px;
    color: var(--white);
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .04em;
}

.age-gate__confirm {
    display: grid;
    grid-template-columns: 27px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 17px;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}

.age-gate__confirm:hover {
    background: rgba(255, 255, 255, .075);
    border-color: rgba(255, 212, 95, .45);
}

.age-gate__confirm input {
    appearance: none;
    display: grid;
    width: 27px;
    aspect-ratio: 1;
    place-items: center;
    margin: 0;
    background: rgba(255, 255, 255, .07);
    border: 2px solid rgba(255, 255, 255, .55);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .2s var(--ease);
}

.age-gate__confirm input::after {
    content: "✓";
    color: var(--ink);
    font-size: 1rem;
    font-weight: 950;
    opacity: 0;
    transform: scale(.4) rotate(-12deg);
    transition: opacity .18s ease, transform .18s var(--ease);
}

.age-gate__confirm input:checked {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: rotate(-3deg);
}

.age-gate__confirm input:checked::after { opacity: 1; transform: scale(1) rotate(0); }
.age-gate__confirm input:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.age-gate__confirm span {
    color: rgba(255, 250, 242, .7);
    font-size: .78rem;
    line-height: 1.45;
}

.age-gate__confirm strong {
    display: block;
    margin-bottom: 2px;
    color: var(--white);
    font-size: .86rem;
}

.age-gate__actions {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.age-gate__enter,
.age-gate__leave {
    min-height: 53px;
    padding: 12px 18px;
    border-radius: 15px;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .04em;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s var(--ease);
}

.age-gate__enter {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background: var(--yellow);
    border: 1px solid var(--yellow);
    box-shadow: 0 6px 0 #b56740;
}

.age-gate__enter:not(:disabled):hover { transform: translateY(-2px); }
.age-gate__enter:disabled { opacity: .36; cursor: not-allowed; filter: grayscale(.5); box-shadow: none; }

.age-gate__leave {
    color: rgba(255, 255, 255, .75);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
}

.age-gate__leave:hover { color: var(--white); border-color: rgba(255, 255, 255, .6); }

.age-gate__privacy {
    margin: 18px 0 0;
    color: rgba(255, 250, 242, .42);
    font-size: .64rem;
    letter-spacing: .03em;
    text-align: center;
}

/* Entrance effects */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.features .reveal:nth-child(2), .gallery__grid .reveal:nth-child(2) { transition-delay: .08s; }
.features .reveal:nth-child(3), .gallery__grid .reveal:nth-child(3) { transition-delay: .16s; }
.gallery__grid .reveal:nth-child(4) { transition-delay: .24s; }
.gallery__grid .reveal:nth-child(5) { transition-delay: .32s; }

@keyframes hero-drift { from { transform: scale(1.045); } to { transform: scale(1); } }
@keyframes logo-arrive { from { opacity: 0; transform: translateY(22px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cue-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes loading-spin { to { transform: rotate(1turn); } }
@keyframes gate-arrive {
    from { opacity: 0; transform: translateY(18px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
    :root { --wrap: min(calc(100% - 36px), 760px); }
    .intro .wrap, .gallery__heading { display: block; }
    .intro__heading, .intro__copy { grid-column: auto; }
    .intro__copy { max-width: 630px; margin-top: 34px; }
    .features { grid-template-columns: 1fr; }
    .feature { display: grid; min-height: 0; grid-template-columns: 42px 1fr; gap: 10px; padding: 24px; }
    .feature__number { margin: 5px 0 0; }
    .gallery__heading > p { margin-top: 28px; }
    .gallery-card, .gallery-card:nth-child(1), .gallery-card:nth-child(2) { grid-column: span 6; }
    .gallery-card:nth-child(5) { grid-column: 4 / span 6; }
    .studio { grid-template-columns: minmax(210px, 330px) 1fr; gap: 45px; }
    .lightbox__arrow { top: auto; bottom: 0; }
    .lightbox__arrow--previous { left: calc(50% - 62px); }
    .lightbox__arrow--next { right: calc(50% - 62px); }
    .lightbox figure img { max-height: calc(100svh - 165px); }
}

@media (max-width: 680px) {
    :root { --wrap: min(calc(100% - 30px), 540px); --radius: 22px; }
    .section { padding-block: 82px; }
    .hero { min-height: max(630px, 100svh); }
    .hero__art { object-position: 48% 48%; }
    .hero__shade { background: linear-gradient(180deg, rgba(17, 6, 20, .7), rgba(17, 6, 20, .09) 21%, rgba(17, 6, 20, .16) 40%, rgba(24, 14, 28, .84) 68%, var(--ink) 100%), radial-gradient(ellipse at center, transparent, rgba(20, 5, 25, .35) 100%); }
    .nav__brand img { width: 50px; }
    .nav__links a:not(.nav__steam) { display: none; }
    .nav__steam { padding: 9px 15px; font-size: .69rem !important; }
    .hero__content { min-height: max(630px, 100svh); padding-top: 95px; padding-bottom: 62px; }
    .hero__logo { width: min(355px, 88vw); }
    .hero__tagline { margin-top: 2px; }
    .hero__actions { width: min(100%, 375px); flex-direction: column; gap: 11px; }
    .button { width: 100%; min-height: 56px; }
    .button--steam { box-shadow: 0 6px 0 #b56740, 0 15px 30px rgba(25, 4, 29, .3); }
    .hero__note { margin-top: 14px; }
    .scroll-cue { display: none; }
    .intro__numbers { top: 6%; font-size: 4rem; }
    .intro h2, .gallery h2, .studio h2 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
    .features { margin-top: 54px; }
    .quick-stats { grid-template-columns: 1fr 1fr; margin-top: 52px; }
    .quick-stats p { padding: 22px 14px; }
    .quick-stats p:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .13); }
    .quick-stats p:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .13); }
    .gallery { border-radius: 32px 32px 0 0; }
    .gallery::before { top: 34px; }
    .gallery__grid { gap: 22px; }
    .gallery-card, .gallery-card:nth-child(1), .gallery-card:nth-child(2), .gallery-card:nth-child(5) { grid-column: 1 / -1; box-shadow: 6px 7px 0 var(--coral); }
    .gallery-card__caption { bottom: 13px; left: 15px; }
    .gallery-card__open { right: 11px; bottom: 11px; width: 34px; }
    .studio { display: flex; flex-direction: column; align-items: flex-start; gap: 58px; }
    .studio__logo { width: min(82vw, 330px); align-self: center; border-radius: 28px; box-shadow: 13px 14px 0 rgba(119, 19, 58, .23); }
    .footer-bottom { gap: 25px; font-size: .61rem; }
    .lightbox { padding: 14px; }
    .lightbox__close, .lightbox__arrow { width: 45px; }
    .lightbox figcaption { font-size: .72rem; }

    .age-gate { width: min(calc(100% - 20px), 620px); }
    .age-gate__card { padding: 27px 20px 24px; border-radius: 25px; }
    .age-gate__close { top: 14px; right: 14px; }
    .age-gate__badge { width: 48px; }
    .age-gate h2 { margin-block: 21px 23px; font-size: clamp(2.45rem, 13vw, 3.55rem); }
    .age-gate__warning { padding: 14px; }
    .age-gate__actions { grid-template-columns: 1fr; }
    .age-gate__leave { min-height: 45px; }
}

@media (max-width: 390px) {
    .nav__brand span { display: none; }
    .hero__content { padding-top: 86px; padding-bottom: 38px; }
    .hero__eyebrow { margin-bottom: 2px; }
    .hero__logo { width: min(310px, 88vw); }
    .hero__tagline { margin-bottom: 18px; font-size: .93rem; }
    .button { min-height: 52px; }
    .button--steam span { font-size: 1rem; }
    .button--steam small { margin-bottom: 2px; }
    .hero__note { font-size: .67rem; }
    .feature { grid-template-columns: 34px 1fr; padding: 20px; }
    .quick-stats p { display: block; }
    .quick-stats span { display: block; margin-top: 6px; }
    .footer-links { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}
