:root {
    --color-bg: #fdfaf5;
    --color-ink: #1a1a1a;
    --color-accent: #5a5a40;
    --color-gold: #c5a059;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --shadow: 0 30px 60px rgba(0,0,0,0.08);
    --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-ink);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 1.5s ease;
}

body.loaded {
    opacity: 1;
}

/* --- STICKY NAV --- */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

.sticky-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.sticky-nav.scrolled .nav-logo {
    color: var(--color-ink);
    opacity: 1;
    pointer-events: auto;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transform: scale(1.1);
    transition: transform 15s ease-out;
}

body.loaded .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.6));
    z-index: 0;
}

/* --- LOGO INTEGRATION --- */
.hero-logo-wrap {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    animation: fadeInDown 2s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-badge {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
}

.logo-badge::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    transition: var(--transition);
}

.hero-logo-wrap:hover .logo-badge {
    transform: scale(1.05);
    border-color: var(--color-gold);
}

.hero-logo-wrap:hover .logo-badge::after {
    transform: scale(1.1);
    opacity: 0;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 300;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 2.5s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 10vw, 110px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 0 10px 40px rgba(0,0,0,0.4);
    letter-spacing: -2px;
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff, transparent);
}

.hero-tagline {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 10px;
    opacity: 0.6;
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 2-COLUMN FEATURE SECTION --- */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1300px;
    margin: -120px auto 120px;
    position: relative;
    z-index: 5;
    background: #fff;
    box-shadow: var(--shadow);
}

.feature-box {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #f5f5f5;
}

.feature-box h3 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.1;
}

.feature-box p {
    font-size: 16px;
    color: #777;
    margin-bottom: 50px;
    font-weight: 300;
}

.btn-main {
    display: inline-block;
    padding: 20px 50px;
    background: var(--color-ink);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-main:hover {
    background: var(--color-gold);
    transform: translateX(15px);
}

.video-box {
    background: #000;
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 100%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- PRODUCT GRID --- */
.products-section {
    padding: 120px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 300;
    font-style: italic;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.product-card {
    background: #fff;
    padding: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-bottom-color: var(--color-gold);
}

.product-card:active {
    transform: translateY(-2px) scale(1.005);
}

.product-img-wrap {
    overflow: hidden;
    margin-bottom: 35px;
    aspect-ratio: 1;
    background: #f9f9f9;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(0.3) sepia(0.1);
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: grayscale(0) sepia(0);
}

.product-info {
    padding: 0 20px 40px;
    text-align: center;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 400;
}

.product-desc {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
    font-weight: 300;
}

.view-details {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.view-details::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: 0.4s;
}

.product-card:hover .view-details::after {
    width: 100%;
}

/* --- FOOTER --- */
footer {
    background: linear-gradient(135deg, #c5a059, #5a5a40);
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 32px;
    letter-spacing: 6px;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.4;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .feature-section { grid-template-columns: 1fr; margin-top: 0; }
    .feature-box { padding: 80px 40px; }
    .sticky-nav { padding: 20px 30px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 55px; }
    .logo-badge { width: 80px; height: 80px; font-size: 32px; }
    .logo-text { font-size: 20px; }
    .feature-box h3 { font-size: 30px; }

    .sticky-nav { padding: 12px 20px; }
    .sticky-nav .nav-logo { font-size: 16px; }

    .feature-box { padding: 60px 24px; }
    .video-box { margin-top: 20px; }

    .btn-main { width: 100%; text-align: center; padding: 16px 20px; font-size: 12px; letter-spacing: 2px; }

    .products-section { padding: 90px 12px; }
    .section-header h2 { font-size: 42px; }

    .product-grid { gap: 20px; }
    .product-card { border-radius: 14px; }
    .product-info { padding: 0 15px 30px; }
    .product-name { font-size: 24px; }
    .product-desc { font-size: 13px; }

    .footer { padding: 80px 16px; }
    .footer-logo { font-size: 26px; letter-spacing: 4px; margin-bottom: 24px; }
    .footer-links { gap: 18px; font-size: 11px; }
}

@media (max-width: 480px) {
    .hero { height: auto; min-height: 70vh; }
    .hero-title { font-size: 38px; }
    .hero-tagline { font-size: 11px; letter-spacing: 1px; }

    .feature-box { padding: 40px 16px; }
    .feature-box h3 { font-size: 28px; }
    .feature-box p { font-size: 15px; }

    .product-grid { grid-template-columns: 1fr; gap: 14px; }

    .sticky-nav { justify-content: center; gap: 12px; }
    .sticky-nav div { display: none; }

    .scroll-indicator { bottom: 20px; }

    .footer-links { flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 12px; }
    .footer { padding: 50px 12px; }
}
