/* Website/styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

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

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

/* =========================
   HEADER
========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 2.2rem 3rem 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.28) 62%,
            rgba(0, 0, 0, 0)
        );
}

.brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    width: 100%;
    max-width: 1500px;
}

.brand-record {
    flex: 0 0 auto;

    width: clamp(185px, 13vw, 250px);
    height: clamp(185px, 13vw, 250px);

    object-fit: contain;

    filter:
        drop-shadow(0 0 22px rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.12));
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.brand-title {
    display: block;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: clamp(4.8rem, 6vw, 8.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;

    text-shadow:
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 42px rgba(0, 0, 0, 0.5);
}

.brand-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;

    margin-top: 1rem;

    color: rgba(255, 255, 255, 0.84);

    font-size: clamp(0.72rem, 0.9vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-subtitle::before,
.brand-subtitle::after {
    content: "";
    display: block;
    width: clamp(80px, 8vw, 170px);
    height: 1px;
    background: rgba(255, 255, 255, 0.34);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    margin-top: 1.8rem;

    white-space: nowrap;
}

.site-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.92);

    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;

    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #ffffff;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.42rem;

    width: 0;
    height: 1px;

    background: #ffffff;

    transition: width 0.2s ease;
}

.site-nav a:hover::after {
    width: 100%;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at 73% 46%,
            rgba(255, 135, 35, 0.22),
            transparent 34%
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.32) 48%,
            rgba(0, 0, 0, 0.58) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding: clamp(20rem, 25vw, 24rem) 6vw 7rem;
}

.hero-label {
    margin-bottom: 1rem;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 2rem;

    color: #ffffff;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: clamp(4.8rem, 10vw, 8.6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.012em;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;

    margin-bottom: 2.5rem;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.35rem;
    line-height: 1.5;
}

.hero-actions,
.contact-actions,
.project-actions,
.shop-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button,
.project-actions a,
.shop-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 1rem 1.9rem;

    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.button {
    min-width: 138px;
}

.button:hover,
.project-actions a:hover,
.shop-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost {
    background: rgba(0, 0, 0, 0.18);
}

/* =========================
   SECTIONS
========================= */

.content-section {
    padding: 8rem 2rem;
    background: #0a0a0a;
}

.content-section.dark {
    background: #050505;
}

.section-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-kicker,
.mini-kicker {
    margin-bottom: 1rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.mini-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
}

.section-inner h2 {
    max-width: 900px;
    margin-bottom: 2rem;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1;
}

.section-copy {
    max-width: 780px;
    margin-bottom: 4rem;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.18rem;
    line-height: 1.85;
}

/* =========================
   CARDS
========================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;

    margin-top: 4rem;
}

.media-card {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.media-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.media-card-body {
    padding: 1.5rem;
}

.media-card h3 {
    margin-bottom: 0.75rem;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
}

.media-card span {
    color: rgba(255, 255, 255, 0.68);
}

/* =========================
   PROJECTS
========================= */

.projects-section {
    background:
        linear-gradient(
            135deg,
            #0a0a0a,
            #12080f 48%,
            #070707
        );
}

.projects-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 2rem;
    align-items: stretch;

    margin-top: 4rem;
}

.project-card {
    min-height: 430px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.09);
}

.rentawifey-card {
    position: relative;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(255, 70, 162, 0.32),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 90%,
            rgba(144, 65, 255, 0.35),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            rgba(46, 6, 31, 0.96),
            rgba(11, 6, 18, 0.96)
        );

    box-shadow: 0 0 60px rgba(255, 38, 139, 0.16);
}

.rentawifey-card::after {
    content: "";
    position: absolute;
    inset: 1rem;

    border: 1px solid rgba(255, 255, 255, 0.08);

    pointer-events: none;
}

.project-card-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
    padding: 3rem;
}

.project-tag {
    display: inline-flex;

    margin-bottom: 1.4rem;
    padding: 0.45rem 0.75rem;

    color: rgba(255, 255, 255, 0.72);

    background: rgba(0, 0, 0, 0.2);

    border: 1px solid rgba(255, 255, 255, 0.18);

    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.project-card h3 {
    margin-bottom: 2rem;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 900;
    line-height: 0.9;
}

.project-card p {
    max-width: 680px;
    margin-bottom: 1.2rem;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.08rem;
    line-height: 1.75;
}

.project-actions {
    margin-top: 2rem;
}

.project-actions a:first-child {
    background: rgba(255, 77, 166, 0.18);
    border-color: rgba(255, 140, 204, 0.45);
}

.shop-bubble {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: end;

    min-height: 360px;
    padding: 2.4rem;

    overflow: hidden;

    border-radius: 42px;

    background:
        radial-gradient(
            circle at 20% 8%,
            rgba(255, 205, 86, 0.34),
            transparent 35%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(255, 116, 37, 0.22),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(93, 45, 8, 0.98),
            rgba(20, 11, 4, 0.98)
        );

    border: 1px solid rgba(255, 188, 86, 0.36);

    box-shadow: 0 0 70px rgba(255, 151, 49, 0.18);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.shop-bubble:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 210, 120, 0.58);
    box-shadow: 0 0 90px rgba(255, 151, 49, 0.24);
}

.shop-bubble::before {
    content: "";
    position: absolute;
    inset: 1rem;

    border: 1px dashed rgba(255, 255, 255, 0.13);
    border-radius: 30px;

    pointer-events: none;
}

.shop-bubble-kicker {
    position: relative;
    z-index: 2;

    margin-bottom: 1rem;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.shop-bubble strong {
    position: relative;
    z-index: 2;

    max-width: 420px;
    margin-bottom: 1rem;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
}

.shop-bubble span {
    position: relative;
    z-index: 2;

    max-width: 430px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.02rem;
    line-height: 1.72;
}

.shop-bubble em {
    position: relative;
    z-index: 2;

    margin-top: 1.7rem;

    color: rgba(255, 232, 175, 0.95);

    font-style: normal;
    font-weight: 800;
}

/* =========================
   IMAGE STRIP
========================= */

.image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.image-strip img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

/* =========================
   SHOP PAGE
========================= */

.page-header {
    position: relative;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1.5rem 2rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(0, 0, 0, 0.88);
}

.page-brand {
    display: flex;
    align-items: center;
    gap: 1rem;

    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.page-nav {
    margin-top: 0;
}

.shop-hero {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background: #070707;
}

.shop-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 30% 15%,
            rgba(255, 168, 56, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 78% 65%,
            rgba(255, 255, 255, 0.08),
            transparent 26%
        );
}

.shop-hero .section-inner {
    position: relative;
    z-index: 2;
}

.shop-hero h1 {
    max-width: 1000px;
    margin-bottom: 2rem;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.92;
}

.shop-catalog-section {
    background: #090909;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;

    margin-top: 4rem;
}

.catalog-card {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.18);
}

.catalog-art {
    min-height: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;

    background:
        linear-gradient(
            135deg,
            #151515,
            #050505
        );
}

.catalog-art img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.catalog-art.logo-art img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.catalog-art span {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.08em;
}

.graphic-art {
    background: linear-gradient(135deg, #111111, #3a140c);
}

.hoodie-art {
    background: linear-gradient(135deg, #050505, #202020);
}

.media-art {
    background: linear-gradient(135deg, #151515, #34240a);
}

.bundle-art {
    background: linear-gradient(135deg, #080808, #211639);
}

.decal-art {
    background: linear-gradient(135deg, #070707, #273019);
}

.catalog-body {
    padding: 1.4rem;
}

.catalog-body h3 {
    margin-bottom: 0.8rem;

    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
}

.catalog-body p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.catalog-status {
    display: inline-flex;

    margin-top: 1.3rem;
    padding: 0.5rem 0.7rem;

    color: rgba(255, 255, 255, 0.65);

    border: 1px solid rgba(255, 255, 255, 0.14);

    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rentawifey-link {
    background: rgba(255, 77, 166, 0.16);
    border-color: rgba(255, 140, 204, 0.42);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050505;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;

    color: rgba(255, 255, 255, 0.55);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1450px) {
    .brand-record {
        width: clamp(165px, 12vw, 225px);
        height: clamp(165px, 12vw, 225px);
    }

    .brand-title {
        font-size: clamp(3.8rem, 5.6vw, 7.2rem);
    }

    .brand-subtitle {
        letter-spacing: 0.28em;
    }

    .hero-content {
        padding-top: clamp(19rem, 24vw, 23rem);
    }
}

@media (max-width: 1160px) {
    .site-header {
        gap: 1.25rem;
    }

    .brand-lockup {
        width: 100%;
        max-width: 980px;
    }

    .site-nav {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1.2rem;
    }

    .projects-layout {
        grid-template-columns: 1fr;
    }

    .shop-bubble {
        align-self: stretch;
    }
}

@media (max-width: 850px) {
    .site-header {
        padding: 1.2rem;
    }

    .brand-lockup {
        gap: 1rem;
        justify-content: center;
    }

    .brand-record {
        width: 110px;
        height: 110px;
    }

    .brand-title {
        font-size: clamp(2.3rem, 11vw, 4.2rem);
        white-space: normal;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-content {
        padding: 12rem 1.4rem 5rem;
    }

    .hero h1 {
        font-size: clamp(3.7rem, 16vw, 5rem);
    }

    .hero-copy p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 5rem 1.4rem;
    }

    .project-card-content {
        padding: 2rem;
    }

    .shop-bubble {
        min-height: auto;
        border-radius: 28px;
    }

    .shop-bubble strong {
        font-size: 2.2rem;
    }

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

    .image-strip img {
        height: 320px;
    }

    .page-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
