/* ========================================
   REAL IS RARE - GLOBAL STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --grey-dark: #1a1a1a;
    --grey: #333333;
    --grey-mid: #666666;
    --grey-light: #cccccc;
    --grey-lighter: #f5f5f5;
    --gold: #D4AF37;
    --gold-dark: #B8941E;
    
    --font-brand: 'Lobster', cursive;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

/* ========================================
   NAVIGATION
======================================== */

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 1.5rem 3rem;
    }
}

.nav-logo {
    font-family: var(--font-brand);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--black);
    font-weight: 400;
    white-space: nowrap;
    z-index: 100;
    letter-spacing: 1px;
}

.nav-menu {
    display: none;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    position: relative;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    transition: var(--transition);
}

.nav-icon:hover {
    transform: translateY(-2px);
    color: var(--gold);
}

.nav-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.nav-badge:empty {
    display: none;
}

.nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.hamburger {
    width: 24px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    color: var(--black);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--grey-lighter);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-slide.active img {
    animation: zoomIn 8s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-brand);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.75rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    transition: var(--transition);
    min-height: 48px;
    line-height: 1.5;
}

.btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-hero {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-hero:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    position: relative;
}

.hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.hero-dot.active::before,
.hero-dot:hover::before {
    background: var(--gold);
    width: 16px;
    height: 16px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* ========================================
   SECTIONS
======================================== */

.brand-intro {
    background: var(--black);
    color: var(--white);
    padding: 5rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .brand-intro {
        padding: 8rem 3rem;
    }
}

.brand-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-brand);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.brand-text {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    line-height: 1.8;
    color: var(--grey-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Collection */
.featured-collection {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .featured-collection {
        padding: 7rem 0;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-all {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold);
    transition: var(--transition);
}

.view-all:hover {
    transform: translateX(8px);
    color: var(--gold-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

/* Product Card */
.product-card {
    display: block;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--grey-lighter);
    margin-bottom: 1rem;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.action-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.action-btn svg {
    width: 20px;
    height: 20px;
}

.action-btn.active {
    background: var(--gold);
}

.stock-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--black);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.product-info {
    padding: 0.5rem 0;
}

.product-name {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dark);
}

/* Editorial Section */
.editorial-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 5rem 1.5rem;
    background: var(--grey-lighter);
}

@media (min-width: 1024px) {
    .editorial-section {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 7rem 3rem;
    }
}

.editorial-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.editorial-image:hover img {
    transform: scale(1.05);
}

.editorial-content {
    padding: 2rem 1.5rem;
}

@media (min-width: 1024px) {
    .editorial-content {
        padding: 3rem;
    }
}

.editorial-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--grey);
}

/* CTA Banner */
.cta-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 4rem 0;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.cta-content h2 {
    font-family: var(--font-brand);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
}

.gallery-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--grey-lighter);
}

.gallery-item.large {
    aspect-ratio: 4/5;
}

@media (min-width: 768px) {
    .gallery-item.large {
        grid-row: span 2;
        aspect-ratio: 3/4;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Final CTA */
.final-cta {
    background: var(--grey-lighter);
    padding: 5rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 7rem 3rem;
    }
}

.final-cta p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--grey);
    margin-bottom: 2rem;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 1.5rem 2rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 5rem 3rem 3rem;
    }
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
    }
}

.footer-logo {
    font-family: var(--font-brand);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--grey-light);
    line-height: 1.7;
    max-width: 400px;
}

.footer-section h3 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--grey-light);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--grey);
    color: var(--grey-light);
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 767px) {
    .hero {
        min-height: 500px;
    }
    
    .section-title {
        line-height: 1.2;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}
