/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0D0A0A; }
::-webkit-scrollbar-thumb { background: #B81F3B44; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #B81F3B77; }

/* ── Navigation ── */
#nav { transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s; }
#nav.scrolled {
    background: rgba(13, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: #D4AF37;
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #D4AF37 !important; }

/* ── Hamburger ── */
#menu-btn.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
#menu-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
#menu-btn.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 20px; margin-left: 0; }
#mobile-menu.open { opacity: 1 !important; pointer-events: all !important; }
.mobile-link { transition: transform 0.3s, color 0.3s; }
.mobile-link:hover { transform: scale(1.05); color: #D4AF37 !important; }

/* ── Buttons ── */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #C59B27 50%, #A67C1A 100%);
    color: #0D0A0A;
    font-weight: 600;
    border-radius: 9999px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #e8c547 0%, #D4AF37 50%, #C59B27 100%);
}
.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 9999px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

/* ── Hero ── */
.hero-gradient {
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(184, 31, 59, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(224, 130, 158, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0D0A0A 0%, #1a0f14 50%, #0D0A0A 100%);
}
.hero-orb { animation: orbFloat 8s ease-in-out infinite; }
.orb-2 { animation-delay: -3s; animation-duration: 10s; }
.orb-3 { animation-delay: -5s; animation-duration: 7s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}
.hero-title { opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease forwards 0.3s; }
.hero-subtitle { opacity: 0; transform: translateY(20px); animation: fadeUp 1s ease forwards 0.6s; }
.hero-ctas { opacity: 0; transform: translateY(20px); animation: fadeUp 1s ease forwards 0.8s; }
.hero-stats { opacity: 0; transform: translateY(20px); animation: fadeUp 1s ease forwards 1s; }
.hero-badge { opacity: 0; animation: fadeIn 0.8s ease forwards 0.1s; }
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.scroll-line { animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 48px; }
    50% { opacity: 0.8; height: 60px; }
}

/* ── Particles ── */
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-400px) scale(1); }
}

/* ── Section Shared ── */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.05);
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}
.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.45);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Scroll Reveal ── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Product Cards ── */
.product-card { perspective: 1000px; }
.product-card-inner {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s, border-color 0.5s;
    height: 100%;
}
.product-card:hover .product-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(184, 31, 59, 0.15), 0 10px 20px rgba(0,0,0,0.3);
    border-color: rgba(184, 31, 59, 0.25);
}
.product-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card:hover .product-img { transform: scale(1.08); }
.product-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,10,10,0.8) 0%, transparent 50%);
}
.product-content { padding: 1.5rem; }
.product-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(184,31,59,0.2), rgba(224,130,158,0.1));
    border: 1px solid rgba(184,31,59,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #e8708a;
    margin-bottom: 1rem;
    transition: background 0.3s, border-color 0.3s;
}
.product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(184,31,59,0.3), rgba(224,130,158,0.2));
    border-color: rgba(184,31,59,0.4);
}
.product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.product-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #D4AF37;
    transition: gap 0.3s;
}
.product-link:hover { gap: 10px; }
.product-link svg { transition: transform 0.3s; }
.product-link:hover svg { transform: translateX(2px); }

/* ── About ── */
.about-stat {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s, background 0.3s;
}
.about-stat:hover { border-color: rgba(212,175,55,0.2); background: rgba(212,175,55,0.03); }
.about-stat-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #D4AF37;
    margin-bottom: 0.75rem;
}

/* ── Gallery ── */
.gallery-item { cursor: pointer; }
.gallery-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,10,10,0.4) 0%, transparent 40%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }

/* ── Forms ── */
.form-label {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}
.form-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus {
    border-color: #D4AF37;
    background: rgba(212,175,55,0.04);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.form-input:hover:not(:focus) { border-color: rgba(255,255,255,0.2); }

/* ── Footer ── */
footer a { transition: color 0.3s; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .about-img-accent { display: none !important; }
    .hero-stats { gap: 8px !important; }
    .hero-stats > div > div { font-size: 1.75rem !important; }
    .section-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.25rem; }
    .product-img-wrapper { height: 180px; }
}
