/* ================================================================
   PSYCHOTATTERS — MAIN STYLESHEET
   Premium underground punk fashion
   ================================================================ */

/* ---------------------------------------------------------------
   1. ROOT VARIABLES
   --------------------------------------------------------------- */
:root {
    /* Brand colors */
    --pt-black:      #050505;
    --pt-white:      #EAE6E1;
    --pt-pink:       #FF2E88;
    --pt-red:        #8A0E16;
    --pt-purple:     #5D2EFF;
    --pt-rust:       #8F4A2B;
    --pt-gray-dark:  #707070;
    --pt-gray-smoke: #2A2A2A;
    --pt-white-glow: #F7F3FF;
    --pt-section-alt: #0a0a0a;

    /* Fonts */
    --font-display:     'Rubik Glitch', cursive;
    --font-display-alt: 'Special Elite', cursive;
    --font-body:        'Space Grotesk', 'Inter', sans-serif;

    /* Glows */
    --glow-pink:   0 0 15px rgba(255, 46, 136, 0.7), 0 0 40px rgba(255, 46, 136, 0.3);
    --glow-purple: 0 0 15px rgba(93, 46, 255, 0.7),  0 0 40px rgba(93, 46, 255, 0.3);
    --glow-red:    0 0 15px rgba(138, 14, 22, 0.7),  0 0 30px rgba(138, 14, 22, 0.3);

    /* Grain SVG data URI */
    --grain-svg: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}


/* ---------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--pt-black);
    color: var(--pt-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body * { cursor: none !important; }

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }

.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;
}

.pt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ---------------------------------------------------------------
   3. FILM GRAIN OVERLAY
   --------------------------------------------------------------- */
.pt-grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: var(--grain-svg);
    background-size: 256px 256px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 9999;
    animation: grain-drift 0.6s steps(3) infinite;
}

@keyframes grain-drift {
    0%   { transform: translate(0, 0);     }
    20%  { transform: translate(-4%, -8%); }
    40%  { transform: translate(6%, 4%);   }
    60%  { transform: translate(-3%, 7%);  }
    80%  { transform: translate(7%, -3%);  }
    100% { transform: translate(-5%, 5%);  }
}


/* ---------------------------------------------------------------
   4. CRT SCANLINES
   --------------------------------------------------------------- */
.pt-scanlines {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.06) 3px,
        rgba(0, 0, 0, 0.06) 4px
    );
    pointer-events: none;
    z-index: 9998;
    animation: scanline-drift 8s linear infinite;
}

@keyframes scanline-drift {
    0%   { background-position: 0 0;   }
    100% { background-position: 0 100px; }
}


/* ---------------------------------------------------------------
   5. CUSTOM CURSOR
   --------------------------------------------------------------- */
.pt-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 28px; height: 28px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, opacity 0.2s;
    color: var(--pt-white);
    filter: drop-shadow(0 0 4px var(--pt-pink));
    will-change: transform;
}

.pt-cursor svg {
    width: 100%; height: 100%;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.pt-cursor.is-hovering {
    transform: translate(-50%, -50%) scale(1.4);
    filter: drop-shadow(0 0 8px var(--pt-pink));
}

.pt-cursor.is-clicking {
    transform: translate(-50%, -50%) scale(0.85);
}


/* ---------------------------------------------------------------
   6. TYPOGRAPHY — shared styles
   --------------------------------------------------------------- */
.pt-display {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.01em;
}

.pt-display-alt {
    font-family: var(--font-display-alt);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ---------------------------------------------------------------
   7. SHARED COMPONENTS
   --------------------------------------------------------------- */

/* --- Stamp label --- */
.pt-stamp {
    display: inline-block;
    font-family: var(--font-display-alt);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pt-pink);
    border: 1px solid var(--pt-pink);
    padding: 0.2rem 0.6rem;
    transform: rotate(-1.5deg);
    line-height: 1.4;
}

/* --- Section noise overlay --- */
.pt-section-noise {
    position: absolute;
    inset: 0;
    background-image: var(--grain-svg);
    background-size: 256px 256px;
    opacity: 0.04;
    pointer-events: none;
}

/* --- Scattered glyphs --- */
.pt-scatter-glyph {
    position: absolute;
    left: var(--x);
    top:  var(--y);
    transform: rotate(var(--r, 0deg)) scale(var(--s, 1));
    font-size: 1.5rem;
    color: var(--pt-gray-dark);
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}


/* ---------------------------------------------------------------
   8. BUTTONS
   --------------------------------------------------------------- */
.pt-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.15s ease;
    /* Slightly imperfect shape */
    clip-path: polygon(2px 0%, 100% 0%, calc(100% - 1px) 100%, 0% 100%);
}

.pt-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--grain-svg);
    background-size: 128px 128px;
    opacity: 0.08;
    pointer-events: none;
}

.pt-btn--primary {
    background: var(--pt-pink);
    color: var(--pt-black);
    transform: skewX(-1deg) rotate(-0.4deg);
    box-shadow: 3px 3px 0 var(--pt-red);
}

.pt-btn--primary:hover {
    box-shadow: 3px 3px 0 var(--pt-red), var(--glow-pink);
    animation: btn-flicker 0.25s steps(3);
}

.pt-btn--secondary {
    background: transparent;
    color: var(--pt-white);
    border: 1.5px solid var(--pt-white);
    transform: skewX(1deg) rotate(0.3deg);
}

.pt-btn--secondary:hover {
    color: var(--pt-pink);
    border-color: var(--pt-pink);
    box-shadow: var(--glow-pink);
    animation: btn-flicker 0.25s steps(3);
}

@keyframes btn-flicker {
    0%   { opacity: 1; }
    30%  { opacity: 0.6; }
    60%  { opacity: 1; }
    80%  { opacity: 0.8; }
    100% { opacity: 1; }
}


/* ---------------------------------------------------------------
   9. NAVBAR
   --------------------------------------------------------------- */
.pt-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.pt-navbar--scrolled {
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 46, 136, 0.08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
}

/* Logo */
.pt-navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.pt-navbar__logo-icon svg { width: 32px; height: 32px; }

.pt-navbar__logo-text {
    font-family: var(--font-display-alt);
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--pt-white);
    text-transform: uppercase;
}

/* Nav items */
.pt-navbar__nav-wrap { flex: 1; display: flex; justify-content: center; }

.pt-navbar__nav {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.pt-navbar__nav li a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pt-white);
    position: relative;
    padding-bottom: 3px;
}

.pt-navbar__nav li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--pt-pink);
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pt-navbar__nav li a:hover { color: var(--pt-white); }

.pt-navbar__nav li a:hover::after { width: 100%; }

.pt-navbar__nav li a:hover {
    animation: nav-jitter 0.12s ease;
}

@keyframes nav-jitter {
    0%, 100% { transform: none; }
    33%  { transform: translateX(-1px); }
    66%  { transform: translateX(1px); }
}

/* Icons */
.pt-navbar__icons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.pt-navbar__icon {
    color: var(--pt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    position: relative;
}

.pt-navbar__icon:hover { color: var(--pt-pink); }

.pt-navbar__cart { position: relative; }

.pt-navbar__cart-count {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--pt-pink);
    color: var(--pt-black);
    font-size: 0.55rem;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pt-navbar__cart-count:empty { display: none; }

/* Hamburger */
.pt-navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 4px;
}

.pt-navbar__hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--pt-white);
    transform-origin: center;
    transition: transform 0.2s, opacity 0.2s;
}

.pt-navbar__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.pt-navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.pt-navbar__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }


/* ---------------------------------------------------------------
   10. MOBILE NAV
   --------------------------------------------------------------- */
.pt-mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 90vw);
    height: 100vh;
    background: #0d0d0d;
    z-index: 600;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 46, 136, 0.15);
}

.pt-mobile-nav.is-open {
    transform: translateX(0);
}

.pt-mobile-nav__close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none; border: none;
    color: var(--pt-white);
    font-size: 1.2rem;
}

.pt-mobile-nav__list { display: flex; flex-direction: column; gap: 0.25rem; }

.pt-mobile-nav__list a {
    display: block;
    font-family: var(--font-display-alt);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: var(--pt-white);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.15s, padding-left 0.15s;
}

.pt-mobile-nav__list a:hover {
    color: var(--pt-pink);
    padding-left: 0.5rem;
}

.pt-mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    z-index: 590;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.pt-mobile-nav__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}


/* ---------------------------------------------------------------
   11. HERO SECTION
   --------------------------------------------------------------- */
.pt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pt-black);
}

/* Background layer */
.pt-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 55%, rgba(255, 46, 136, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(93, 46, 255, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 100%, rgba(138, 14, 22, 0.15) 0%, transparent 55%),
        var(--pt-black);
}

.pt-hero__bg.has-image {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.pt-hero__bg.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5,5,5,0.9) 35%, rgba(5,5,5,0.5) 65%, rgba(5,5,5,0.2) 100%);
}

/* Atmospheric glow layers */
.pt-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: glow-breathe 6s ease-in-out infinite;
}

.pt-hero__glow--pink {
    width: 40%; height: 50%;
    right: 5%; bottom: 10%;
    background: radial-gradient(ellipse, rgba(255, 46, 136, 0.12) 0%, transparent 70%);
    animation-delay: 0s;
}

.pt-hero__glow--purple {
    width: 30%; height: 40%;
    right: 25%; top: 5%;
    background: radial-gradient(ellipse, rgba(93, 46, 255, 0.08) 0%, transparent 70%);
    animation-delay: 2s;
}

.pt-hero__glow--red {
    width: 25%; height: 35%;
    right: 15%; bottom: 0;
    background: radial-gradient(ellipse, rgba(138, 14, 22, 0.1) 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes glow-breathe {
    0%, 100% { opacity: 0.8; transform: scale(1);    }
    50%       { opacity: 1.0; transform: scale(1.08); }
}

/* Neon sign */
.pt-hero__neon-sign {
    position: absolute;
    right: 5%; top: 18%;
    z-index: 4;
    text-align: right;
}

.pt-hero__neon-sign span {
    display: block;
    font-family: var(--font-display-alt);
    font-size: clamp(0.7rem, 1.3vw, 1rem);
    color: var(--pt-pink);
    text-shadow: var(--glow-pink);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.5;
    animation: neon-flicker 5s ease-in-out infinite;
}

.pt-hero__neon-sign span:nth-child(2) { animation-delay: 0.8s;  font-size: clamp(0.65rem, 1.2vw, 0.9rem); }
.pt-hero__neon-sign span:nth-child(3) { animation-delay: 1.5s;  font-size: clamp(1rem, 2vw, 1.5rem); }

@keyframes neon-flicker {
    0%, 90%, 100% { opacity: 1; }
    91%           { opacity: 0.3; }
    92%           { opacity: 1; }
    94%           { opacity: 0.5; }
    95%           { opacity: 1; }
}

/* Scatter glyphs */
.pt-hero__scatter { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

/* Main content */
.pt-hero__content {
    position: relative;
    z-index: 5;
    padding: 7rem 4rem 4rem;
    max-width: 760px;
}

/* Title */
.pt-hero__logo-text {
    line-height: 0.88;
    margin-bottom: 1.8rem;
    position: relative;
}

.pt-hero__line1,
.pt-hero__line2 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(5rem, 13vw, 10.5rem);
    color: var(--pt-white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow:
        5px 5px 0 rgba(0,0,0,0.9),
        -2px -2px 0 rgba(255, 46, 136, 0.08),
        2px 0 0 rgba(93, 46, 255, 0.05);
    will-change: transform;
}

.pt-hero__line2 {
    padding-left: 0.3em;
}

/* Glitch trigger class applied by JS */
.pt-hero__logo-text.glitch-on .pt-hero__line1 {
    animation: hero-glitch 0.18s steps(2) forwards;
}

@keyframes hero-glitch {
    0%   { transform: none;              color: var(--pt-white); }
    20%  { transform: translateX(-4px);  clip-path: polygon(0 10%, 100% 10%, 100% 35%, 0 35%); color: var(--pt-pink); }
    40%  { transform: none;              clip-path: none;        color: var(--pt-white); }
    60%  { transform: translateX(3px);   clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); color: var(--pt-purple); }
    80%  { transform: translateX(-1px);  clip-path: none;        color: var(--pt-white); }
    100% { transform: none;              clip-path: none;        color: var(--pt-white); }
}

/* Tagline tape */
.pt-hero__tagline { margin-bottom: 2.5rem; }

.pt-hero__tagline span {
    display: inline-block;
    background: var(--pt-pink);
    color: var(--pt-black);
    font-family: var(--font-display-alt);
    font-size: clamp(0.65rem, 1.3vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    transform: rotate(-0.6deg);
    position: relative;
    box-shadow: 2px 2px 0 var(--pt-red);
}

.pt-hero__tagline span::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 3px,
        rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 6px
    );
}

/* CTA buttons */
.pt-hero__ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* Scroll indicator */
.pt-hero__scroll {
    position: absolute;
    bottom: 2.5rem; left: 4rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pt-hero__scroll span {
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--pt-gray-dark);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.pt-hero__scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--pt-gray-dark), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1);    }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}


/* ---------------------------------------------------------------
   12. TORN PAPER EDGES
   --------------------------------------------------------------- */
.pt-torn-edge {
    position: relative;
    height: 60px;
    overflow: hidden;
    z-index: 10;
}

.pt-torn-edge--hero-to-collections {
    background: var(--pt-section-alt);
    margin-top: -1px;
}

.pt-torn-edge--hero-to-collections::before {
    content: '';
    position: absolute;
    top: -1px; left: -1%; right: -1%;
    height: 100%;
    background: var(--pt-black);
    clip-path: polygon(
        0% 0%, 3% 55%, 7% 20%, 11% 65%, 15% 30%, 19% 70%, 23% 25%,
        27% 60%, 31% 15%, 35% 55%, 39% 20%, 43% 65%, 47% 30%, 51% 70%,
        55% 20%, 59% 65%, 63% 30%, 67% 60%, 71% 15%, 75% 55%, 79% 20%,
        83% 65%, 87% 25%, 91% 60%, 95% 20%, 100% 55%, 100% 0%
    );
}

.pt-torn-edge--collections-to-asylum {
    background: var(--pt-black);
    margin-top: -1px;
}

.pt-torn-edge--collections-to-asylum::before {
    content: '';
    position: absolute;
    top: -1px; left: -1%; right: -1%;
    height: 100%;
    background: var(--pt-section-alt);
    clip-path: polygon(
        0% 0%, 2% 45%, 6% 10%, 10% 55%, 14% 20%, 18% 65%, 22% 25%,
        26% 60%, 30% 15%, 34% 55%, 38% 20%, 42% 60%, 46% 25%,
        50% 65%, 54% 20%, 58% 60%, 62% 25%, 66% 65%, 70% 15%,
        74% 55%, 78% 20%, 82% 60%, 86% 25%, 90% 65%, 94% 20%,
        98% 55%, 100% 30%, 100% 0%
    );
}

.pt-torn-edge--asylum-to-footer {
    background: var(--pt-black);
    margin-top: -1px;
}

.pt-torn-edge--asylum-to-footer::before {
    content: '';
    position: absolute;
    top: -1px; left: -1%; right: -1%;
    height: 100%;
    background: var(--pt-black);
    clip-path: polygon(
        0% 0%, 4% 60%, 8% 20%, 12% 65%, 16% 25%, 20% 70%, 24% 20%,
        28% 65%, 32% 25%, 36% 70%, 40% 20%, 44% 60%, 48% 15%,
        52% 65%, 56% 25%, 60% 70%, 64% 20%, 68% 60%, 72% 15%,
        76% 65%, 80% 25%, 84% 70%, 88% 20%, 92% 60%, 96% 25%,
        100% 65%, 100% 0%
    );
}


/* ---------------------------------------------------------------
   13. COLLECTIONS SECTION
   --------------------------------------------------------------- */
.pt-collections {
    background: var(--pt-section-alt);
    padding: 4.5rem 3rem 6rem;
    position: relative;
    overflow: hidden;
}

.pt-collections__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pt-collections__header-left {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.pt-collections__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--pt-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0;
    position: relative;
}

/* Scribble underline */
.pt-scribble-underline {
    display: block;
    position: absolute;
    bottom: -6px; left: 0;
    width: 80%;
    height: 4px;
    background: var(--pt-pink);
    clip-path: polygon(
        0% 30%, 3% 0%, 8% 70%, 14% 10%, 20% 80%, 26% 20%, 32% 90%,
        38% 15%, 44% 85%, 50% 20%, 56% 90%, 62% 15%, 68% 85%,
        74% 20%, 80% 70%, 86% 10%, 92% 80%, 96% 20%, 100% 60%, 100% 100%, 0% 100%
    );
    opacity: 0.7;
}

.pt-collections__view-all {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pt-gray-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--pt-gray-dark);
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.pt-collections__view-all:hover {
    color: var(--pt-pink);
    border-color: var(--pt-pink);
}

/* Grid — broken / asymmetric */
.pt-collections__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Collection card */
.pt-collection-card {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pt-collection-card--1 { transform: rotate(-1.2deg); margin-top:  1.5rem; }
.pt-collection-card--2 { transform: rotate( 0.7deg); margin-top: -1.0rem; }
.pt-collection-card--3 { transform: rotate(-0.4deg); margin-top:  2.0rem; }

.pt-collection-card:hover {
    box-shadow: 0 0 35px rgba(255, 46, 136, 0.25), 0 0 70px rgba(255, 46, 136, 0.1);
    z-index: 2;
}

.pt-collection-card--1:hover { transform: rotate(-1.2deg) scale(1.02); }
.pt-collection-card--2:hover { transform: rotate( 0.7deg) scale(1.02); }
.pt-collection-card--3:hover { transform: rotate(-0.4deg) scale(1.02); }

/* Card image */
.pt-collection-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.pt-collection-card:hover .pt-collection-card__image { transform: scale(1.05); }

/* Placeholder gradients */
.pt-collection-card--1 .pt-collection-card__image {
    background-color: #1a0810;
    background-image:
        radial-gradient(ellipse at 50% 30%, rgba(255, 46, 136, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, #1a0810 0%, #0d0508 60%, #050505 100%);
}

.pt-collection-card--2 .pt-collection-card__image {
    background-color: #150308;
    background-image:
        radial-gradient(ellipse at 50% 55%, rgba(138, 14, 22, 0.28) 0%, transparent 60%),
        linear-gradient(180deg, #150308 0%, #0d0407 60%, #050505 100%);
}

.pt-collection-card--3 .pt-collection-card__image {
    background-color: #05040d;
    background-image:
        radial-gradient(ellipse at 50% 45%, rgba(93, 46, 255, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, #05040d 0%, #030308 60%, #050505 100%);
}

/* Grain texture over image */
.pt-collection-card__distress {
    position: absolute;
    inset: 0;
    background-image: var(--grain-svg);
    background-size: 200px 200px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
}

/* Tape strip */
.pt-collection-card__tape {
    position: absolute;
    top: 14px; left: -6px;
    width: 90px; height: 18px;
    background: rgba(234, 230, 225, 0.12);
    transform: rotate(-4deg);
    z-index: 3;
    backdrop-filter: blur(2px);
}

.pt-collection-card--2 .pt-collection-card__tape {
    top: auto; bottom: 80px;
    right: -4px; left: auto;
    transform: rotate(3deg);
}

.pt-collection-card--3 .pt-collection-card__tape {
    transform: rotate(-2deg);
    width: 60px;
}

/* Overlay gradient + text */
.pt-collection-card__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    z-index: 4;
    background: linear-gradient(0deg, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.65) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pt-collection-card__icon {
    font-family: var(--font-display-alt);
    font-size: 0.9rem;
    color: var(--pt-pink);
    letter-spacing: 0.1em;
    order: -1;
}

.pt-collection-card__title {
    font-family: var(--font-display-alt);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--pt-white);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.15;
    margin: 0;
}

/* Neon glow that appears on hover */
.pt-collection-card__glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(255, 46, 136, 0.15) 0%, transparent 70%);
    transition: opacity 0.3s;
    z-index: 0;
    pointer-events: none;
}

.pt-collection-card:hover .pt-collection-card__glow { opacity: 1; }


/* ---------------------------------------------------------------
   14. JOIN THE ASYLUM (Email CTA)
   --------------------------------------------------------------- */
.pt-asylum {
    background: var(--pt-black);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr auto;
    gap: 0;
    align-items: center;
    min-height: 400px;
}

/* Left model strip */
.pt-asylum__model {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.pt-asylum__model-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(255, 46, 136, 0.1) 0%, transparent 60%),
        linear-gradient(160deg, #1a0610 0%, #0d0308 50%, #050505 100%);
}

/* When real model image is set */
.pt-asylum__model.has-image .pt-asylum__model-placeholder {
    background-size: cover;
    background-position: center;
}

/* Main content */
.pt-asylum__content {
    padding: 4rem 3.5rem;
    position: relative;
    z-index: 2;
}

.pt-asylum__eyebrow { margin-bottom: 0.75rem; }

.pt-asylum__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--pt-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 1.25rem;
}

.pt-asylum__desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--pt-gray-dark);
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Form */
.pt-asylum__form-group {
    display: flex;
    gap: 0;
    max-width: 420px;
}

.pt-asylum__input {
    flex: 1;
    background: var(--pt-gray-smoke);
    border: 1px solid rgba(112, 112, 112, 0.4);
    border-right: none;
    color: var(--pt-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    clip-path: polygon(2px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.pt-asylum__input::placeholder { color: var(--pt-gray-dark); }

.pt-asylum__input:focus { border-color: var(--pt-pink); }

/* Side text */
.pt-asylum__side-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 46, 136, 0.15);
    min-width: 200px;
    gap: 0.1rem;
}

.pt-asylum__side-text span {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--pt-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: 2px 2px 0 var(--pt-pink), var(--glow-pink);
    text-align: center;
    animation: text-flicker 8s ease-in-out infinite;
}

.pt-asylum__side-text span:nth-child(2) { animation-delay: 1s; }

@keyframes text-flicker {
    0%, 88%, 100% { opacity: 1; }
    89%           { opacity: 0.4; }
    90%           { opacity: 1; }
    92%           { opacity: 0.6; }
    93%           { opacity: 1; }
}

.pt-asylum__scatter { position: absolute; inset: 0; pointer-events: none; }


/* ---------------------------------------------------------------
   15. FOOTER
   --------------------------------------------------------------- */
.pt-footer {
    background: var(--pt-black);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 46, 136, 0.08);
}

/* Ripped paper top edge visual */
.pt-footer__torn-top {
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--pt-pink) 0px,
        var(--pt-pink) 2px,
        transparent 2px,
        transparent 8px
    );
    opacity: 0.3;
}

/* Background grunge elements */
.pt-footer__bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pt-footer__skull {
    position: absolute;
    font-size: 6rem;
    color: rgba(255, 46, 136, 0.04);
    user-select: none;
}

.pt-footer__skull--1 { bottom: 20px;  left: 2%;   transform: rotate(-15deg); }
.pt-footer__skull--2 { bottom: -10px; right: 15%;  transform: rotate(10deg);  font-size: 4rem; }

.pt-footer__spray {
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.pt-footer__spray--1 {
    background: rgba(255, 46, 136, 0.04);
    bottom: 0; left: 10%;
}

.pt-footer__spray--2 {
    background: rgba(93, 46, 255, 0.04);
    bottom: 0; right: 20%;
}

/* Footer inner grid */
.pt-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    gap: 3rem;
    padding: 4rem 3rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Brand column */
.pt-footer__brand {}

.pt-footer__logo {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
    filter: drop-shadow(0 0 8px rgba(255, 46, 136, 0.2));
}

.pt-footer__tagline {
    font-family: var(--font-display-alt);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--pt-gray-dark);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pt-footer__social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pt-footer__social-link {
    color: var(--pt-gray-dark);
    display: flex;
    align-items: center;
    transition: color 0.15s;
}

.pt-footer__social-link:hover { color: var(--pt-pink); }

/* Nav columns */
.pt-footer__col-title {
    font-family: var(--font-display-alt);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--pt-white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(234, 230, 225, 0.08);
}

.pt-footer__col-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pt-footer__col-list a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--pt-gray-dark);
    letter-spacing: 0.05em;
    transition: color 0.15s, padding-left 0.15s;
}

.pt-footer__col-list a:hover {
    color: var(--pt-white);
    padding-left: 0.3rem;
}

/* Handle with Care sticker */
.pt-footer__sticker {
    align-self: start;
}

.pt-footer__sticker-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 1.5px solid rgba(234, 230, 225, 0.15);
    transform: rotate(4deg);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    min-width: 110px;
}

.pt-footer__sticker-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--grain-svg);
    background-size: 128px 128px;
    opacity: 0.06;
}

.pt-footer__sticker-top,
.pt-footer__sticker-mid,
.pt-footer__sticker-bot {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pt-footer__sticker-top {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--pt-gray-dark);
    margin-bottom: 0.25rem;
}

.pt-footer__sticker-mid {
    font-family: var(--font-display-alt);
    font-size: 0.75rem;
    color: var(--pt-white);
    margin-bottom: 0.35rem;
}

.pt-footer__sticker-bot {
    font-family: var(--font-body);
    font-size: 0.5rem;
    color: var(--pt-pink);
}

/* Footer bottom bar */
.pt-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pt-footer__copyright {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(112, 112, 112, 0.6);
    letter-spacing: 0.05em;
}

.pt-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.pt-footer__legal a {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(112, 112, 112, 0.6);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.15s;
}

.pt-footer__legal a:hover { color: var(--pt-pink); }


/* ---------------------------------------------------------------
   16. BASIC POST / PAGE CONTENT
   --------------------------------------------------------------- */
.pt-main { padding: 8rem 0 4rem; min-height: 60vh; }

.pt-post__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--pt-white);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.pt-post__content {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pt-white);
    max-width: 720px;
}

.pt-post__content a { color: var(--pt-pink); text-decoration: underline; }
.pt-post__content h2, .pt-post__content h3 { font-family: var(--font-display-alt); color: var(--pt-white); margin: 1.5rem 0 0.75rem; }


/* ---------------------------------------------------------------
   17. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
    .pt-asylum {
        grid-template-columns: 1fr;
    }

    .pt-asylum__model {
        height: 250px;
        min-height: auto;
    }

    .pt-asylum__side-text {
        border-left: none;
        border-top: 1px solid rgba(255, 46, 136, 0.15);
        padding: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .pt-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .pt-footer__sticker { display: none; }
}

@media (max-width: 768px) {
    .pt-navbar__nav-wrap { display: none; }
    .pt-navbar__hamburger { display: flex; }
    .pt-navbar { padding: 1rem 1.5rem; }

    .pt-hero__content { padding: 6rem 1.5rem 3rem; }

    .pt-hero__neon-sign {
        right: 1.5rem;
        top: 12%;
    }

    .pt-hero__scroll { left: 1.5rem; }

    .pt-collections {
        padding: 3rem 1.5rem 4rem;
    }

    .pt-collections__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
        gap: 2rem;
    }

    .pt-collection-card--1,
    .pt-collection-card--2,
    .pt-collection-card--3 {
        transform: rotate(-0.5deg);
        margin-top: 0;
    }

    .pt-asylum__content { padding: 2.5rem 1.5rem; }

    .pt-asylum__form-group { flex-direction: column; max-width: 100%; }
    .pt-asylum__input { border-right: 1px solid rgba(112, 112, 112, 0.4); }

    .pt-footer__inner {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 2rem;
        gap: 2rem;
    }

    .pt-footer__bottom {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .pt-hero__line1,
    .pt-hero__line2 { font-size: clamp(3.5rem, 20vw, 5rem); }

    .pt-collections__title { font-size: clamp(2rem, 10vw, 3rem); }

    .pt-asylum__title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
}


/* ---------------------------------------------------------------
   18. ACCESSIBILITY
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .pt-grain { display: none; }
    .pt-scanlines { display: none; }
}

:focus-visible {
    outline: 2px solid var(--pt-pink);
    outline-offset: 3px;
}
