* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #ffffff;
    --border: rgba(255,255,255,0.1);
    --gradient: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    font-weight: 300;
}

/* Cursor */
body {
    cursor: none;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 4rem;
    backdrop-filter: blur(20px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 1px;
    background: var(--accent);
    transition: all 0.3s ease;
}

.menu-items {
    display: flex;
    gap: 3rem;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-items a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.menu-items a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.menu-items a:hover {
    color: var(--accent);
}

.menu-items a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 135%;
    height: 135%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    opacity: 0.2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.4));
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.02" numOctaves="1"/><feColorMatrix values="1 1 1 0 0  1 1 1 0 0  1 1 1 0 0  0 0 0 1 0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.02"/></svg>');
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.coming-soon {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 200;
    letter-spacing: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.hero .subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
}

.hero .description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeUp 1s ease 2s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-lr;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeUp 1s ease 2.5s forwards;
    z-index: 4;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: var(--text-secondary);
    margin: 1rem auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}

/* Collections */
.collections {
    padding: 10rem 4rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 8rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.collection-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--border);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.collection-item:hover::before {
    opacity: 1;
}

.collection-photos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.collection-item:hover .collection-photos {
    opacity: 1;
}

.photos-slider {
    display: flex;
    height: 100%;
    animation: slidePhotos 8s linear infinite;
}

.photo-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
}

.collection-content {
    position: relative;
    z-index: 3;
}

.collection-item h3 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.collection-item .items {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.collection-item .items span {
    display: block;
    margin-bottom: 0.5rem;
}

/* Philosophy */
.philosophy {
    padding: 10rem 4rem;
    background: var(--bg-primary);
}

.philosophy-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.philosophy p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.philosophy .highlight {
    color: var(--accent);
    font-weight: 400;
}

/* Notify Section */
.notify {
    padding: 10rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notify-content {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.notify h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.notify-form {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.notify-form:focus-within {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.input-group {
    position: relative;
    flex: 1;
}

.notify-form input {
    width: 100%;
    padding: 0.75rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.4s ease;
}

.notify-form input:focus {
    border-color: var(--accent);
}

.notify-form label {
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.4s ease;
    font-size: 1rem;
    font-weight: 300;
}

.notify-form input:focus + label,
.notify-form input:valid + label {
    bottom: 2.5rem;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.notify-form button {
    padding: 0.75rem 1.5rem;
    margin-left: 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    line-height: 1;
}

.notify-form button:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Footer */
.footer {
    padding: 4rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

@keyframes slidePhotos {
    0% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(-400%); }
}

/* Mobile */
@media (max-width: 768px) {
    .header { padding: 1.5rem 2rem; }
    .logo { letter-spacing: 4px; }
    .menu-items { display: none; }
    .nav-toggle { display: flex; }
    .hero h1 { letter-spacing: 1rem; }
    .hero .subtitle { letter-spacing: 4px; }
    .section-title { letter-spacing: 4px; }
    .collections-grid { grid-template-columns: 1fr; gap: 2rem; }
    .collections, .philosophy, .notify { padding: 6rem 2rem; }
    .notify h2 { letter-spacing: 3px; }
    .notify-form { flex-direction: column; align-items: stretch; background: none; box-shadow: none; padding: 0; }
    .notify-form button { margin-left: 0; margin-top: 1rem; border: 1px solid var(--border); color: var(--accent); padding: 1rem; }
    .footer { padding: 3rem 2rem; }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
}

@media (max-width: 480px) {
    .cursor, .cursor-follower { display: none; }
    body { cursor: default; }
}