@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg-dark: #050505; --bg-lighter: #121212; --gold: #d4af37; --gold-hover: #f1d299;
    --text-main: #f5f5f5; --text-muted: #888888;
    --font-serif: 'Playfair Display', 'Garamond', serif;
    --font-sans: 'Inter', 'Helvetica Neue', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .font-serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.02em; }
em { font-style: italic; font-family: var(--font-serif); }
p { color: var(--text-muted); }
.small-caps { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.8rem; font-weight: 600; color: var(--gold); display: inline-block; }
.gold-text { color: var(--gold); font-family: var(--font-serif); }

header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; position: absolute; width: 100%; top: 0; left: 0; z-index: 100; background: transparent; border-bottom: 1px solid rgba(255,255,255,0.05); }
.logo { font-family: var(--font-serif); color: var(--gold); text-decoration: none; font-size: 1.5rem; letter-spacing: 0.1em; font-weight: 400; transition: var(--transition-smooth); }
.logo:hover { color: var(--gold-hover); }
nav ul { display: flex; list-style: none; gap: 3rem; }
nav ul a { color: var(--text-main); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; transition: var(--transition-smooth); }
nav ul a:hover, nav ul a.gold-text { color: var(--gold); }

.btn { display: inline-block; padding: 1rem 2.5rem; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; font-weight: 600; transition: var(--transition-smooth); cursor: pointer; background: transparent; }
.btn:hover { background: var(--gold); color: var(--bg-dark); }
.btn-solid { background: var(--gold); border-color: var(--gold); color: var(--bg-dark); }
.btn-solid:hover { background: transparent; color: var(--gold); }

section { padding: 8rem 5%; position: relative; }
.bg-lighter { background-color: var(--bg-lighter); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }

.cinematic-hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding-bottom: 8rem; }
.cinematic-hero h1 { font-size: 5rem; line-height: 1.1; margin-bottom: 2rem; text-shadow: 0px 4px 25px rgba(0, 0, 0, 0.9); }
.cinematic-hero p { text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.9); }

.trust-bar { display: flex; justify-content: space-between; background: var(--bg-lighter); padding: 3rem 5%; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.trust-item h4 { color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem; margin-bottom: 0.3rem; }

.img-wrap { overflow: hidden; background: #151515; position: relative; border: 1px solid #1a1a1a; }
.aspect-portrait { aspect-ratio: 3 / 4; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-landscape { aspect-ratio: 16 / 9; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }

.award-wrap { overflow: hidden; position: relative; border: 1px solid #333; background: #000; box-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.award-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease; filter: brightness(0.9); }
.award-wrap::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(0,0,0,0.6); pointer-events: none; transition: box-shadow 0.8s ease; }
.grid-2:hover .award-wrap img { transform: scale(1.05); filter: brightness(1.1); }
.grid-2:hover .award-wrap::after { box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.3); } 

.glass-card {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold);
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    transition: transform 0.4s ease;
}
.glass-card:hover { transform: translateY(-5px); }

.vault-item-wrap { aspect-ratio: 1 / 1; overflow: hidden; background: #050505; position: relative; border: 1px solid #1a1a1a; display: flex; align-items: center; justify-content: center; padding: 0.5rem; }
.vault-item-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
a:hover .vault-item-wrap img, .product-card:hover .vault-item-wrap img { transform: scale(1.08); }

footer { background-color: #050505; padding: 6rem 5% 2rem; border-top: 1px solid #111; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 4rem; margin-bottom: 4rem; }
.footer-col h4 { color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.85rem; margin-bottom: 1.5rem; font-family: var(--font-sans); font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a, .footer-col p { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: var(--transition-smooth); }
.footer-col ul a:hover { color: var(--text-main); }

.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; background: #25d366; color: white; text-decoration: none; padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; box-shadow: 0 4px 20px rgba(37,211,102,0.3); z-index: 1000; display: flex; align-items: center; transition: var(--transition-smooth); }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

img { max-width: 100%; height: auto; }

/* Desktop Tweaks for the Exchange Section */
.exchange-section {
    background-position: 20% center !important; /* Pushes the artisan to the left */
}

@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { gap: 4rem; }
    .cinematic-hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; }

    header { padding: 0.8rem 2%; flex-direction: column; gap: 0.5rem; text-align: center; position: fixed; top: 0; background: rgba(5, 5, 5, 0.95) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 1000; }
    header .logo img { height: 35px !important; } 
    nav ul { gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
    nav ul a { font-size: 0.75rem; letter-spacing: 0.05em; }
    header .btn { display: none; }

    .cinematic-hero { 
        align-items: center; text-align: center; min-height: 100vh;
        justify-content: flex-end; padding-top: 120px; padding-bottom: 120px; 
        background-position: center 15% !important; 
    }
    .cinematic-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
    .cinematic-hero p { font-size: 1rem; margin-bottom: 1.5rem; }
    .cinematic-hero .btn { width: 100%; margin-bottom: 1rem; }
    
    /* MOBILE FIX: Push the Glass Card down below the artisan's face */
    .exchange-section {
        background-position: center top !important; /* Locks face to top */
        padding-top: 350px !important; /* Huge gap at top to reveal face */
        padding-bottom: 4rem !important;
        justify-content: center !important;
    }
    
    .glass-card { padding: 2.5rem 1.5rem; border-left: none; border-top: 4px solid var(--gold); text-align: center; }
    
    .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .trust-bar { flex-direction: column; gap: 2rem; text-align: center; margin-top: 2rem; }
    section { padding: 4rem 5%; }
    div[style*="column-count: 3;"] { column-count: 1 !important; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.grid-3 .reveal:nth-child(1) { transition-delay: 0.1s; }
.grid-3 .reveal:nth-child(2) { transition-delay: 0.2s; }
.grid-3 .reveal:nth-child(3) { transition-delay: 0.3s; }