/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Typography ── */
.eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
}

/* ── Navigation ── */
.nav {
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(107, 58, 94, 0.08);
    box-shadow: 0 1px 24px rgba(107, 58, 94, 0.06);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(107, 58, 94, 0.7);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: #6B3A5E;
}

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

.nav-cta {
    text-decoration: none;
}

.nav-logo {
    text-decoration: none;
}

/* Mobile nav */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #6B3A5E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile {
    border-top: 1px solid rgba(107, 58, 94, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
}

.nav-mobile-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(107, 58, 94, 0.7);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(107, 58, 94, 0.06);
    transition: color 0.3s ease;
}

.nav-mobile-link:hover {
    color: #6B3A5E;
}

/* ── Hero ── */
.hero {
    position: relative;
}

.hero-gradient {
    background: linear-gradient(
        135deg,
        #2e1528 0%,
        #6B3A5E 30%,
        #8c2d60 50%,
        #a83d76 70%,
        #4a2640 100%
    );
}

.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(46, 21, 40, 0.15) 0%,
        rgba(46, 21, 40, 0.3) 100%
    );
}

.hero-orb {
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 61, 118, 0.5) 0%, transparent 70%);
    bottom: 5%;
    left: -3%;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 250, 235, 0.3) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
}

.hero-headline {
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-weight: 300;
}

.hero-eyebrow {
    font-weight: 500;
}

/* Hero scroll indicator */
.scroll-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollFloat 2s ease-in-out infinite;
}

.scroll-line::before {
    content: '';
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes scrollFloat {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C518;
    color: #2e1528;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(245, 197, 24, 0.3);
}

.btn-primary:hover {
    background: #ffe066;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-amber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C518;
    color: #2e1528;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(245, 197, 24, 0.25);
}

.btn-amber:hover {
    background: #ffe066;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.35);
}

/* ── Product Cards ── */
.product-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card h3 {
    font-weight: 400;
}

/* ── Contact Form ── */
.contact-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-input:focus {
    border-color: rgba(245, 197, 24, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-orb-1 {
        width: 300px;
        height: 300px;
    }

    .hero-orb-2 {
        width: 200px;
        height: 200px;
    }

    .hero-orb-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
