@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;700;800&display=swap');

:root {
    --bg: #050505;
    --bg-soft: #0c0c0c;
    --ink: #f6f6f6;
    --ink-dim: #b8b8b8;
    --line: #2d2d2d;
    --glow: #ffffff;
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background: radial-gradient(circle at 20% -10%, #1d1d1d 0%, var(--bg) 40%), var(--bg);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

.texture {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(transparent 97%, rgba(255, 255, 255, 0.06) 100%),
        linear-gradient(90deg, transparent 97%, rgba(255, 255, 255, 0.04) 100%);
    background-size: 3px 3px, 3px 3px;
    z-index: 1;
}

.glow-orb {
    position: fixed;
    width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 65%);
    filter: blur(8px);
    top: -120px;
    right: -90px;
    z-index: 0;
    animation: drift 8s ease-in-out infinite alternate;
}

@keyframes drift {
    from { transform: translateY(0); }
    to { transform: translateY(28px); }
}

.site {
    position: relative;
    z-index: 2;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 15;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nav {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    min-height: 72px;
    gap: 1rem;
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.7rem;
    cursor: pointer;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--ink);
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #3a3a3a;
    background: #0f0f0f;
}

.logo span {
    opacity: 0.72;
}

.nav-spacer {
    justify-self: end;
    width: 48px;
    height: 48px;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(84vw, 320px);
    padding: 1.2rem 1rem 1.5rem;
    background: rgba(5, 5, 5, 0.97);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    transform: translateX(-100%);
    transition: transform 240ms ease;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.site-nav.open {
    transform: translateX(0);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 25;
}

.nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.close-nav {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    cursor: pointer;
}

.site-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-nav a {
    display: block;
    padding: 0.85rem 0.95rem;
    border-radius: 10px;
    color: var(--ink-dim);
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 220ms ease, background 220ms ease;
}

.site-nav a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.05);
}

body.nav-open {
    overflow: hidden;
}

.access-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.access-card {
    width: min(92vw, 540px);
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01));
    border: 1px solid #353535;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 2;
}

.access-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.access-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.access-title {
    margin: 0;
    font-size: 1.45rem;
}

.access-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.7rem;
}

.access-copy {
    color: var(--ink-dim);
    line-height: 1.6;
    max-width: 50ch;
}

.access-form {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.8rem;
}

.access-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #474747;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
    font-size: 1rem;
}

.access-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.error {
    color: #ffb6b6;
    margin: 0;
}

section {
    padding: 5.5rem 0;
}

.hero {
    padding-top: 7rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d9d9d9;
    border: 1px solid #3a3a3a;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    margin-bottom: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.2rem;
    align-items: end;
}

h1,
h2,
h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.95;
}

h1 {
    font-size: clamp(2.7rem, 8vw, 6rem);
    margin-bottom: 1rem;
}

.hero p {
    color: var(--ink-dim);
    max-width: 58ch;
    font-size: 1.03rem;
}

.cta-row {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn {
    text-decoration: none;
    color: #050505;
    background: var(--ink);
    font-weight: 800;
    padding: 0.75rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--ink);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.16);
}

.btn.alt {
    color: var(--ink);
    background: transparent;
    border: 1px solid #474747;
}

.hero-panel {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01));
    border: 1px solid #353535;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -30% -55% -30%;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.hero-panel p {
    font-size: 0.94rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #2f2f2f;
    border-radius: 10px;
    padding: 0.7rem;
}

.stat strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat span {
    color: var(--ink-dim);
    font-size: 0.83rem;
}

.section-title {
    font-size: clamp(2.1rem, 5vw, 3.7rem);
    margin-bottom: 0.6rem;
}

.section-lead {
    color: var(--ink-dim);
    max-width: 68ch;
    margin-bottom: 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid #2f2f2f;
    border-radius: 14px;
    padding: 1.15rem;
    transition: transform 220ms ease, border-color 220ms ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #575757;
}

.card h3 {
    font-size: 1.9rem;
    margin-bottom: 0.4rem;
}

.tag {
    display: inline-block;
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid #474747;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.75rem;
    color: #d5d5d5;
}

.sheet {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed #3b3b3b;
    color: #d7d7d7;
    font-size: 0.87rem;
}

.products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-wrap {
    margin-top: 2rem;
    border: 1px solid #2f2f2f;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
    overflow: hidden;
}

.gallery-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #2d2d2d;
}

.gallery-top p {
    color: var(--ink-dim);
    font-size: 0.92rem;
}

.gallery-controls {
    display: flex;
    gap: 0.5rem;
}

.gallery-btn {
    border: 1px solid #454545;
    background: #121212;
    color: var(--ink);
    border-radius: 10px;
    padding: 0.4rem 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.gallery-btn:hover {
    transform: translateY(-1px);
    border-color: #6b6b6b;
    background: #181818;
}

.gallery-stage {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 420ms ease;
}

.gallery-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1rem;
    padding: 1rem;
}

.placeholder-art {
    min-height: 280px;
    border-radius: 14px;
    border: 1px solid #303030;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.placeholder-art h3 {
    font-size: clamp(2.1rem, 5vw, 3rem);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.slide-copy {
    border: 1px solid #2f2f2f;
    border-radius: 14px;
    padding: 1rem;
    background: #0a0a0a;
}

.slide-copy p {
    color: var(--ink-dim);
    margin-bottom: 0.75rem;
}

.slide-copy .sheet {
    margin-top: 0.6rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid #696969;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.dot.active {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.product {
    border-radius: 14px;
    border: 1px solid #2e2e2e;
    overflow: hidden;
    background: #090909;
}

.product-visual {
    height: 190px;
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 40%),
        repeating-linear-gradient(45deg, #0f0f0f, #0f0f0f 8px, #1a1a1a 8px, #1a1a1a 16px);
    border-bottom: 1px solid #2d2d2d;
}

.product-copy {
    padding: 1rem;
}

.product-copy h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.product-copy p {
    color: var(--ink-dim);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.05rem;
    font-weight: 800;
}

.cta-block {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02));
    border: 1px solid #383838;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-block h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 0.4rem;
}

.cta-block p {
    color: var(--ink-dim);
}

.contact-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-links {
    margin-top: 0.55rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d3d3d3;
    text-decoration: none;
    border-bottom: 1px solid #4f4f4f;
    padding-bottom: 0.1rem;
    transition: color 180ms ease, border-color 180ms ease;
}

.footer-links a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

footer {
    border-top: 1px solid #242424;
    padding: 1.3rem 0 2.2rem;
    color: #b5b5b5;
    font-size: 0.87rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 580ms ease, transform 580ms ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .cards,
    .products {
        grid-template-columns: 1fr;
    }

    .gallery-slide {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 0.75rem;
    }

    section {
        padding: 4.5rem 0;
    }

    .hero {
        padding-top: 5rem;
    }

    .stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nav {
        grid-template-columns: 48px 1fr 48px;
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 1.6rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 1.5rem;
    }

    .gallery-top {
        flex-direction: column;
        align-items: flex-start;
    }
}
