/* style.css */
:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-light: #121212;
    --color-text-main: #f4f4f0;
    --color-text-muted: #888888;
    --color-accent-gold: #c5a059;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-serif);
    font-weight: 400;
}

h1 {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Layout Utilities */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 5%;
    transition: var(--transition-smooth);
    background: transparent;
}

#navbar.scrolled {
    padding: 1.2rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    cursor: pointer;
}

.nav-links {
    display: none;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
        gap: 3rem;
    }
    .nav-links a {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        position: relative;
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--color-accent-gold);
        transition: width 0.4s ease;
    }
    .nav-links a:hover::after {
        width: 100%;
    }
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

@media (min-width: 900px) {
    .menu-toggle { display: none; }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.mobile-drawer.active {
    transform: translateY(0);
}

.mobile-drawer a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-text-main);
    color: var(--color-bg-dark);
    border: 1px solid var(--color-text-main);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-text-main);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateY(0); /* Handled by JS */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin: 1.5rem 0 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Intro Section */
.intro {
    padding: 10rem 0;
    background-color: var(--color-bg-dark);
}

.editorial-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 900px) {
    .editorial-layout {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }
}

.intro h2 span {
    color: var(--color-accent-gold);
    font-style: italic;
}

.intro-copy p {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Collection Section */
.collection {
    padding: 5rem 0 10rem;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .staggered {
        margin-top: 5rem;
    }
}

.watch-card {
    cursor: pointer;
    group: hover;
}

.card-img-wrapper {
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: var(--color-bg-light);
    aspect-ratio: 3/4;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.watch-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

.discover-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.watch-card:hover .discover-link {
    border-color: var(--color-text-main);
}

/* Craftsmanship */
.craftsmanship {
    position: relative;
    padding: 10rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.craft-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.craft-img-wrapper img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    opacity: 0.4;
}

.craft-content {
    position: relative;
    z-index: 2;
}

.craft-details {
    max-width: 500px;
}

.craft-details p {
    color: var(--color-text-main);
    font-size: 1.1rem;
}

/* Features */
.features {
    padding: 10rem 0;
    background-color: var(--color-bg-dark);
}

.split-layout {
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .split-layout {
        flex-direction: row;
    }
    .feature-text, .feature-img {
        width: 50%;
    }
}

.feature-text {
    padding: 5% 5% 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specs-list {
    list-style: none;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.specs-list li {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 600px) {
    .specs-list li {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.spec-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-accent-gold);
}

.spec-desc {
    font-size: 0.9rem;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

/* Editorial Img */
.editorial-img {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.editorial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Philosophy */
.philosophy {
    padding: 15rem 0;
}

.center-text {
    text-align: center;
}

.phil-word {
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 1.1;
    margin: 0;
    color: var(--color-text-main);
    transition: var(--transition-slow);
}

/* Press */
.press {
    padding: 5rem 0 10rem;
    background-color: var(--color-bg-light);
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.press-item blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-text-main);
}

.press-item cite {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    font-style: normal;
}

/* Final CTA */
.final-cta {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.final-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.final-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.final-content {
    position: relative;
    z-index: 2;
}

.final-content h2 {
    margin-bottom: 3rem;
}

/* Footer */
footer {
    background-color: var(--color-bg-dark);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

footer h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.footer-links a, .footer-social a {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--color-accent-gold);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-family: var(--font-sans);
    width: 100%;
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
    font-size: 1.2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links {
    display: flex;
    gap: 2rem;
}

/* Animations / Reveal Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal-fade {
    opacity: 0;
    transition: var(--transition-slow);
}

.reveal-text {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.5s ease;
}

.active.reveal-up {
    opacity: 1;
    transform: translateY(0);
}

.active.reveal-fade {
    opacity: 1;
}

.active.reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transform: translateY(0);
    opacity: 1;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }