/* =====================================================================
   The Logo Wall - app.css
   "Brand graffiti" wall · clean modern chrome.
   Dense, layered, alive in <main>; meticulous everywhere else.
   ===================================================================== */

:root {
    /* Surfaces ------------------------------------------------------ */
    --bg: #F2EFE6;
    /* warm cream - paper, road-case bumper */
    --bg-chrome: #FAF8F1;
    /* slightly lighter for header / footer */
    --bg-card: #FFFFFF;
    --line: #D5D1C3;
    --line-soft: #E8E4D5;

    /* Ink ----------------------------------------------------------- */
    --ink: #0A0908;
    /* off-black, not pure */
    --ink-soft: #2A2722;
    --ink-mute: #76726A;

    /* Bold singular accent ----------------------------------------- */
    --accent: #FF2E1F;
    /* fluorescent sticker red-orange */
    --accent-deep: #C71F12;
    --accent-ink: #FFFFFF;

    /* Highlighter - used SPARINGLY for tape, marker, marquee ------- */
    --tape: #F0F23A;
    --tape-deep: #D9DC2F;

    /* Shadows tinted to the base hue (anti-AI-glow) ----------------- */
    --shadow-1: 0 1px 2px rgba(10, 9, 8, 0.06);
    --shadow-2: 0 8px 24px rgba(10, 9, 8, 0.10);
    --shadow-3: 0 18px 50px rgba(10, 9, 8, 0.18);
    --shadow-sticker: 0 1px 1px rgba(10, 9, 8, 0.10),
        0 6px 14px rgba(10, 9, 8, 0.08),
        0 18px 36px rgba(10, 9, 8, 0.10);

    /* Geometry ------------------------------------------------------ */
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --container: min(1280px, 92vw);

    /* Type ---------------------------------------------------------- */
    --font-sans: 'IBM Plex Sans', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Bricolage Grotesque', 'IBM Plex Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, "SFMono-Regular", Menlo, monospace;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Paper grain - subtle. Lives on body so the chrome inherits it
       too, but the wall section overlays a heavier scribble texture. */
    background-image:
        radial-gradient(rgba(10, 9, 8, 0.020) 1px, transparent 1px),
        radial-gradient(rgba(10, 9, 8, 0.013) 1px, transparent 1px);
    background-size: 3px 3px, 7px 7px;
    background-position: 0 0, 1px 2px;
}

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

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

::selection {
    background: var(--tape);
    color: var(--ink);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.02;
    margin: 0 0 0.5em;
}

h1 {
    font-size: clamp(2.6rem, 6.4vw, 5.2rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

p {
    margin: 0 0 1em;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

/* ==== Buttons ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.78rem 1.2rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: transform 140ms cubic-bezier(.16, 1, .3, 1),
        background-color 140ms ease,
        color 140ms ease,
        box-shadow 200ms ease;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0) scale(0.985);
}

.btn--primary {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: var(--shadow-1);
}

.btn--primary:hover {
    background: var(--accent-deep);
    color: var(--accent-ink);
    box-shadow: var(--shadow-2);
}

.btn--ghost {
    color: var(--ink);
    border-color: var(--line);
    background: var(--bg-card);
}

.btn--ghost:hover {
    border-color: var(--ink);
}

.btn--lg {
    padding: 0.95rem 1.45rem;
    font-size: 1rem;
}

/* ==== Header (clean chrome) =========================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg-chrome) 88%, transparent);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border-bottom: 1px solid var(--line);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
}

.brand-mark__icon {
    display: block;
    flex-shrink: 0;
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1.15);
}

.brand-mark:hover {
    text-decoration: none;
}

.brand-mark:hover .brand-mark__icon {
    transform: rotate(8deg) scale(1.08);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav a:not(.btn) {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
}

.site-nav a:not(.btn):hover {
    text-decoration: none;
    color: var(--accent);
}

/* ==== Marquee - bridge from clean chrome into graffiti =============== */
.marquee {
    background: var(--ink);
    color: var(--bg);
    border-block: 1px solid var(--ink);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
    mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}

.marquee__track {
    display: flex;
    gap: 2.5rem;
    padding: 0.65rem 0;
    white-space: nowrap;
    width: max-content;
    animation: marquee 38s linear infinite;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.marquee__track>span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.marquee__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateY(-1px);
}

@keyframes marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==== Hero (asymmetric, clean) ====================================== */
.wall-hero {
    padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3.2rem);
}

.wall-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.7rem 0.3rem 0.55rem;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.4rem;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent);
    animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent);
    }

    70% {
        box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent);
    }

    100% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent);
    }
}

.wall-hero__title {
    margin: 0 0 1rem;
    max-width: 14ch;
}

.wall-hero__title .accent {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.wall-hero__title .accent::after {
    /* hand-drawn underline */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.05em;
    height: 0.18em;
    background: var(--tape);
    border-radius: 3px;
    transform: skewX(-12deg) translateY(0.06em);
    z-index: -1;
}

.wall-hero__sub {
    max-width: 38ch;
    margin: 0 0 1.6rem;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.3vw, 1.15rem);
}

.wall-stats {
    color: var(--ink-mute);
    font-size: 0.85rem;
    margin: 0 0 1.6rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.wall-stats .counter {
    color: var(--ink);
    font-weight: 600;
    font-feature-settings: "tnum" 1;
}

.wall-hero__cta {
    display: inline-flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

/* Sticker stack on the right side of hero - preview of the chaos */
.hero-stack {
    position: relative;
    aspect-ratio: 1 / 0.92;
    min-height: 320px;
}

.hero-stack__sticker {
    position: absolute;
    height: 80px;
    width: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-sticker);
    transition: transform 280ms cubic-bezier(.2, .8, .2, 1);
}

.hero-stack__sticker:hover {
    transform: rotate(0) scale(1.04);
}

.hero-stack__sticker:nth-child(1) {
    top: 6%;
    left: 4%;
    transform: rotate(-9deg) scale(1.05);
}

.hero-stack__sticker:nth-child(2) {
    top: 12%;
    left: 36%;
    transform: rotate(6deg) scale(0.95);
}

.hero-stack__sticker:nth-child(3) {
    top: 38%;
    left: 12%;
    transform: rotate(3deg) scale(1.10);
}

.hero-stack__sticker:nth-child(4) {
    top: 44%;
    left: 50%;
    transform: rotate(-6deg) scale(0.88);
}

.hero-stack__sticker:nth-child(5) {
    top: 68%;
    left: 22%;
    transform: rotate(11deg) scale(1.00);
}

.hero-stack__sticker:nth-child(6) {
    top: 70%;
    left: 56%;
    transform: rotate(-3deg) scale(1.04);
}

/* "Tape" decoration on a hero sticker */
.hero-stack__sticker:nth-child(2)::before {
    content: "";
    position: absolute;
    left: -10px;
    top: -14px;
    width: 56px;
    height: 18px;
    background: var(--tape);
    transform: rotate(-12deg);
    box-shadow: 0 1px 0 rgba(10, 9, 8, 0.12);
    border-radius: 1px;
    opacity: 0.92;
}

/* ==== Category rail (clean) ======================================== */
.category-rail {
    border-block: 1px solid var(--line);
    background: var(--bg-chrome);
}

.category-rail__inner {
    display: flex;
    gap: 0.4rem;
    padding: 0.7rem 0;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.category-rail__inner::-webkit-scrollbar {
    height: 4px;
}

.category-rail__inner::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 4px;
}

.chip {
    flex: 0 0 auto;
    padding: 0.45rem 0.95rem;
    border: 1px solid var(--line);
    background: var(--bg-card);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
    white-space: nowrap;
}

.chip:hover {
    border-color: var(--ink);
    color: var(--ink);
}

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

/* ==== THE WALL - graffiti, dense, alive ============================ */
.wall {
    position: relative;
    padding: 2.2rem 0 4.5rem;
    overflow: hidden;
    /* contain rotated stickers + scribbles */
    isolation: isolate;
    /* prevents blend-mode bleed */
}

/* Subtle marker scribbles - hand-drawn vibe in the background. The SVG
   is built into the gradient via data URI so it's a single asset. */
.wall::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'>\
<g fill='none' stroke='%230A0908' stroke-width='1.4' stroke-linecap='round' opacity='0.07'>\
<path d='M40 120 q40 -30 80 0 t80 0' />\
<path d='M620 60 l50 20 -10 -28 z' />\
<circle cx='720' cy='240' r='34' />\
<path d='M120 460 l60 -10 -20 28' />\
<path d='M380 280 q24 -30 0 -60 q-24 -30 0 -60' />\
<path d='M60 700 l40 -20 40 20 40 -20 40 20' />\
<path d='M530 540 l28 28 m0 -28 l-28 28' />\
<path d='M680 700 q-30 -30 -60 0 q-30 30 -60 0' />\
<path d='M260 80 l8 -22 8 22 22 8 -22 8 -8 22 -8 -22 -22 -8 z' />\
</g></svg>");
    background-repeat: repeat;
    background-size: 800px 800px;
    pointer-events: none;
    z-index: -1;
}

.wall__grid {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    align-items: flex-end;
    justify-content: center;
}

/* ---- A single sticker ---- */
.sticker {
    --rot: 0;
    /* unitless integer; CSS adds the deg + multiplier */
    --scale: 1;
    /* per-brand size variance, set inline by template */
    position: relative;
    display: inline-block;
    height: calc(80px * var(--scale));
    transform: rotate(calc(var(--rot) * 2.4deg)) scale(var(--scale));
    transform-origin: center;
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1.15),
        filter 180ms ease;
    filter: drop-shadow(0 1px 1px rgba(10, 9, 8, 0.12)) drop-shadow(0 6px 12px rgba(10, 9, 8, 0.06));
    will-change: transform;
}

.sticker__img {
    height: 100%;
    width: auto;
    display: block;
    border-radius: 10px;
    pointer-events: none;
    user-select: none;
}

.sticker:hover {
    transform: rotate(0deg) scale(calc(var(--scale) * 1.08)) translateY(-2px);
    filter: drop-shadow(0 2px 3px rgba(10, 9, 8, 0.18)) drop-shadow(0 14px 28px rgba(10, 9, 8, 0.22));
    z-index: 2;
}

/* When you hover any sticker, dim the rest - focus the one you're near */
.wall__grid:hover .sticker:not(:hover) {
    filter: drop-shadow(0 1px 1px rgba(10, 9, 8, 0.04));
    opacity: 0.62;
}

/* TAPE - a few stickers carry a torn highlighter strip */
.sticker:nth-child(11n+3)::before,
.sticker:nth-child(13n+7)::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 18%;
    width: 44%;
    height: 16px;
    background: var(--tape);
    transform: rotate(-9deg);
    box-shadow: 0 1px 0 rgba(10, 9, 8, 0.10);
    border-radius: 1px;
    opacity: 0.92;
    z-index: 1;
    pointer-events: none;
}

.sticker:nth-child(13n+7)::before {
    left: auto;
    right: 14%;
    top: auto;
    bottom: -8px;
    transform: rotate(7deg);
}

/* SHARPIE marker - tiny circle/asterisk near the corner of every 17th */
.sticker:nth-child(17n+5)::after {
    content: "★";
    position: absolute;
    top: -16px;
    right: -14px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    transform: rotate(15deg);
    pointer-events: none;
    text-shadow: 1px 1px 0 var(--ink);
}

/* On touch devices, kill the wider rotation to keep tap accuracy. */
@media (hover: none) {
    .sticker {
        transform: rotate(calc(var(--rot) * 1deg)) scale(var(--scale));
    }

    .sticker:hover {
        transform: rotate(0) scale(calc(var(--scale) * 1.02));
    }
}

.wall__sentinel {
    width: 100%;
    height: 1px;
}

.wall__loading {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    color: var(--ink-mute);
    font-size: 0.95rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid var(--line);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.wall__empty {
    text-align: center;
    padding: 4rem 0;
}

.wall__empty h2 {
    font-size: 1.4rem;
}

/* ==== Brand profile (clean chrome) ================================= */
.brand-page {
    padding: 3.2rem 0 5rem;
    max-width: 760px;
    margin-inline: auto;
}

.brand-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--ink-mute);
    font-size: 0.88rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2.4rem;
    text-decoration: none;
    transition: color 140ms ease;
}

.brand-page__back:hover {
    color: var(--ink);
    text-decoration: none;
}

.brand-page__back::before {
    content: "←";
    font-style: normal;
}

.brand-page__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.6rem 2.4rem;
    align-items: flex-start;
    margin-bottom: 2.4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.brand-page__logo-wrap {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.brand-page__logo {
    height: 88px;
    width: auto;
    max-width: 160px;
}

.brand-page__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-page__intro h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 0.35rem;
    line-height: 1.05;
}

.brand-page__tagline {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
    line-height: 1.4;
}

.brand-page__cta {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.brand-page__body {
    margin-bottom: 2.4rem;
}

.brand-page__body p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 65ch;
    line-height: 1.65;
}

.brand-page__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem 2rem;
    border-top: 1px solid var(--line);
    padding-top: 1.6rem;
}

.brand-page__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-page__meta-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
}

.brand-page__meta-value {
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.brand-page__meta-value a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.brand-page__meta-value a:hover {
    text-decoration-color: var(--accent-deep);
}

@media (max-width: 640px) {
    .brand-page__head {
        grid-template-columns: 1fr;
    }

    .brand-page__logo-wrap {
        min-width: auto;
    }
}

/* ==== Static pages (clean chrome) ================================== */
.static-page {
    padding: 3.2rem 0 4rem;
    max-width: 720px;
    margin-inline: auto;
}

.static-page__lede {
    font-size: 1.18rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 60ch;
}

.static-page__updated {
    color: var(--ink-mute);
    font-family: var(--font-mono);
    font-size: 0.82rem;
}

.static-page h2 {
    margin-top: 2.4rem;
}

.static-page ul,
.static-page ol {
    padding-left: 1.4rem;
    margin: 0 0 1em;
}

.static-page li {
    margin-bottom: 0.4rem;
}

/* ==== Placeholders ================================================= */
.placeholder {
    text-align: center;
    padding: 5rem 0;
}

.placeholder h1 {
    max-width: 18ch;
    margin-inline: auto;
}

.placeholder__price {
    font-size: 1.05rem;
    color: var(--ink-soft);
}

/* ==== Errors ======================================================= */
.error-page {
    text-align: center;
    padding: 5rem 0;
}

.error-page__code {
    font-family: var(--font-mono);
    color: var(--ink-mute);
    font-size: 0.82rem;
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
}

.error-page .btn+.btn {
    margin-left: 0.4rem;
}

/* ==== Footer (clean chrome) ======================================= */
.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 3rem;
    padding: 2rem 0 2rem;
    color: var(--ink-mute);
    font-size: 0.9rem;
    background: var(--bg-chrome);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.site-footer nav {
    display: flex;
    gap: 1rem;
}

.site-footer a {
    color: var(--ink-mute);
}

.site-footer a:hover {
    color: var(--ink);
    text-decoration: none;
}

/* ==== Responsive collapse ========================================= */
@media (max-width: 880px) {
    .wall-hero__inner {
        grid-template-columns: 1fr;
    }

    .hero-stack {
        display: none;
    }
}

@media (max-width: 640px) {
    /* Header — tighter on small screens, no wrapping */
    .site-nav a:not(.btn) {
        display: none;
    }
    .brand-mark {
        font-size: 1.05rem;
    }
    .brand-mark__icon {
        width: 32px;
        height: 32px;
    }
    .site-nav .btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.82rem;
    }

    /* Footer — centered, slightly smaller */
    .site-footer {
        font-size: 0.82rem;
    }
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }
}

/* ==== Reduced motion =============================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .marquee__track {
        animation: none;
        transform: none;
    }

    .sticker {
        transform: rotate(calc(var(--rot) * 1deg)) scale(var(--scale));
    }

    .sticker:hover {
        transform: scale(calc(var(--scale) * 1.02));
    }

    .eyebrow::before {
        animation: none;
    }
}