/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --cream: #f5f0eb;
    --gold: #b0b0b0;
    --dark-gray: #1a1a1a;
    --mid-gray: #8a8a8a;
    --light-gray: #e8e4df;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 60px;
    height: 70px;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--light-gray);
    backdrop-filter: blur(10px);
}

.nav.scrolled .nav-logo,
.nav.scrolled .nav-link {
    color: var(--black);
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
    transition: color 0.4s ease;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.4s ease, opacity 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-dark .nav-logo,
.nav-dark .nav-link {
    color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-image.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 10vw, 120px);
    font-weight: 300;
    letter-spacing: 12px;
    line-height: 1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 16px 50px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollLine 2s ease infinite;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 140px 60px;
    background: var(--white);
}

.story-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.story-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 30px;
}

.story-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.story-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 40px;
}

.story-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--mid-gray);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* ===== IMAGE BAND ===== */
.image-band {
    padding: 0 60px;
    margin-bottom: 100px;
}

.image-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.band-image {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.band-image-1 {
    background-image: url('images/image1.png');
}

.band-image-2 {
    background-image: url('images/image2.png');
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 140px 60px;
    background: var(--dark-gray);
    text-align: center;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.cta-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 18px 55px;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px;
    background: var(--black);
    text-align: center;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 11px;
    color: var(--mid-gray);
    letter-spacing: 1px;
}

/* ===== PRODUCT PAGE ===== */

/* Product Hero */
.product-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-hero-image {
    position: absolute;
    inset: 0;
    background-image: url('images/image1.png');
    background-size: cover;
    background-position: center;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

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

.product-hero-content .hero-eyebrow {
    animation-delay: 0.2s;
}

.product-hero-content .hero-title {
    font-size: clamp(42px, 8vw, 90px);
    animation-delay: 0.4s;
}

/* Product Detail */
.product-detail {
    padding: 100px 60px;
    background: var(--white);
}

.product-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-image-main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--cream);
}

.product-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.product-img.active {
    opacity: 1;
}

.product-img-1 {
    background-image: url('images/hero.png');
}

.product-img-2 {
    background-image: url('images/image1.png');
}

.product-img-3 {
    background-image: url('images/image2.png');
}

.product-img-4 {
    background-image: url('images/image3.jpeg');
    background-position: 30% center;
}

.product-img-5 {
    background-image: url('images/image4.jpeg');
    background-position: 40% center;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.thumb {
    width: 72px;
    height: 90px;
    overflow: hidden;
    border: 1px solid transparent;
    padding: 0;
    transition: border-color 0.3s ease;
}

.thumb.active {
    border-color: var(--black);
}

.thumb-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.thumb-img-1 {
    background-image: url('images/hero.png');
}

.thumb-img-2 {
    background-image: url('images/image1.png');
}

.thumb-img-3 {
    background-image: url('images/image2.png');
}

.thumb-img-4 {
    background-image: url('images/image3.jpeg');
    background-position: 30% center;
}

.thumb-img-5 {
    background-image: url('images/image4.jpeg');
    background-position: 40% center;
}

/* Product Info */
.product-info {
    padding-top: 20px;
}

.product-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.product-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.product-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
}

.product-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--mid-gray);
    margin-bottom: 36px;
}

.product-includes {
    margin-bottom: 40px;
}

.includes-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.includes-list li {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid-gray);
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    letter-spacing: 0.3px;
}

.includes-list li:first-child {
    border-top: 1px solid var(--light-gray);
}

.includes-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid-gray);
    padding: 10px 0;
    letter-spacing: 0.3px;
}

/* Order Instructions */
.order-instructions {
    margin-bottom: 32px;
    padding: 28px;
    background: var(--cream);
}

.order-instructions-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.order-instructions-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid-gray);
}

/* Product Actions */
.product-actions {
    margin-bottom: 40px;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 54px;
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.order-btn:hover {
    background: var(--dark-gray);
}

.order-btn-icon {
    flex-shrink: 0;
}

/* Product Meta */
.product-meta {
    border-top: 1px solid var(--light-gray);
    padding-top: 24px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.meta-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-gray);
}

.meta-value {
    font-size: 12px;
    font-weight: 300;
    color: var(--mid-gray);
}

/* Product Story */
.product-story {
    padding: 0 60px 120px;
    background: var(--white);
}

.product-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-story-image {
    height: 500px;
    background-image: url('images/image2.png');
    background-size: cover;
    background-position: center;
}

.product-story-text .story-title {
    font-size: clamp(28px, 3vw, 38px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-detail-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-gallery {
        position: static;
    }

    .product-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 24px;
    }

    .nav-links {
        gap: 24px;
    }

    .hero-title {
        letter-spacing: 6px;
    }

    .story-section {
        padding: 80px 24px;
    }

    .image-band {
        padding: 0 24px;
    }

    .image-band-inner {
        grid-template-columns: 1fr;
    }

    .band-image {
        height: 400px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .footer {
        padding: 40px 24px;
    }

    .product-detail {
        padding: 60px 24px;
    }

    .product-story {
        padding: 0 24px 80px;
    }

    .product-story-image {
        height: 350px;
    }

    .product-actions {
        flex-direction: column;
    }

    .meta-item {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .nav-link {
        font-size: 10px;
    }

    .hero-subtitle br {
        display: none;
    }
}
