@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;500;700&family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,800&display=swap');

:root {
    --bg: #fdfcf0; /* Warm Bone */
    --primary: #1b2b21; /* Deep Moss */
    --accent: #a0522d; /* Burnt Siena */
    --glass: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --text: #2c2c2c;
    
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor is mandatory for this vibe */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.4;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    position: fixed;
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    position: fixed;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transition: transform 0.15s ease-out;
}

/* Floating Navigation */
nav {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vw;
}

.hero-bg-media {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* Horizontal Gallery (Shop) */
.shop-container {
    padding: 10vw 0;
    background: var(--primary);
    color: white;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    padding: 0 5vw;
    gap: 3vw;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.shop-card {
    min-width: 60vw;
    height: 70vh;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.card-img {
    flex: 1;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s var(--ease-out-expo);
}

.shop-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    flex: 0.8;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.btn-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s var(--ease-out-expo);
    margin-top: 2rem;
}

.btn-circle:hover {
    transform: scale(1.1) rotate(15deg);
    background: white;
    color: var(--accent);
}

/* About Bento */
.about-bento {
    padding: 10vw 5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 2rem;
}

.bento-item {
    background: white;
    border-radius: 40px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}

.bento-item.large { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }

.bento-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
}

.bento-content {
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    padding: 10vw 5vw 15vw;
    text-align: center;
}

.footer-huge {
    font-family: var(--font-display);
    font-size: 15vw;
    line-height: 0.8;
    color: var(--primary);
    margin-bottom: 5vw;
}

@media (max-width: 900px) {
    .about-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
    .shop-card { min-width: 85vw; flex-direction: column; height: auto; }
    .card-content { padding: 2rem; }
    .card-img { height: 40vh; }
    .footer-huge { font-size: 25vw; }
}
