/* ═══════════════════════════════════════════════════════════════════
   VINAY JEWELLERS — style.css | Warm Velvet · Antique Gold
   ═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Raleway:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Backgrounds */
    --bg-base:      #09080a;
    --bg-elevated:  #0f0d0b;
    --bg-card:      #141210;
    --bg-surface:   #1c1915;

    /* Gold palette */
    --gold-bright:  #f2da7a;
    --gold-light:   #e5c882;
    --gold-mid:     #c9a84c;
    --gold-warm:    #b8913a;
    --gold-dark:    #856820;
    --gold-muted:   #5e4c18;
    --gold-pale:    #f5ead2;
    --ivory:        #f0ebe2;

    /* Text */
    --text-muted:   #8a7460;

    /* WhatsApp */
    --green-wa:     #25d366;

    /* Shadows */
    --shadow-gold:  0 0 60px rgba(201,168,76,0.1), 0 0 120px rgba(201,168,76,0.05);
    --shadow-deep:  0 20px 80px rgba(0,0,0,0.75);
    --shadow-card:  0 8px 48px rgba(0,0,0,0.6);

    /* Timing */
    --ease:         cubic-bezier(0.4,0,0.2,1);
    --t-fast:       0.2s;
    --t-mid:        0.38s;
    --t-slow:       0.6s;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-title:   'Raleway', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body { background-color: var(--bg-base); color: var(--ivory); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201,168,76,0.055) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 90%, rgba(201,168,76,0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201,168,76,0.025) 0%, transparent 60%);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-elevated); }
::-webkit-scrollbar-thumb { background: var(--gold-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-mid); }

/* == ANNOUNCEMENT BAR == */
.announcement-bar { background: var(--bg-elevated); border-bottom: 1px solid rgba(201,168,76,0.18); padding: 8px 0; overflow: hidden; position: relative; z-index: 1000; }
.announcement-bar::before, .announcement-bar::after { content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.announcement-bar::before { left: 0; background: linear-gradient(to right, var(--bg-elevated), transparent); }
.announcement-bar::after  { right: 0; background: linear-gradient(to left, var(--bg-elevated), transparent); }
.marquee-track { display: flex; white-space: nowrap; animation: marqueeScroll 30s linear infinite; }
.marquee-content { display: inline-flex; align-items: center; padding-right: 80px; font-family: var(--font-title); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.2em; color: var(--gold-mid); text-transform: uppercase; }
.marquee-content .sep { margin: 0 18px; color: var(--gold-muted); font-size: 0.7rem; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* == HEADER / NAV == */
.site-header { position: sticky; top: 0; z-index: 999; background: rgba(9,8,10,0.72); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%); border-bottom: 1px solid rgba(201,168,76,0.1); transition: background var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease); }
.site-header.scrolled { background: rgba(9,8,10,0.97); box-shadow: 0 2px 40px rgba(0,0,0,0.7), 0 1px 0 rgba(201,168,76,0.1); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 36px; height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1; text-decoration: none; }
.nav-logo-img { width: 54px; height: 54px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(201,168,76,0.3)); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-main {
    font-family: var(--font-title); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.12em;
    background: linear-gradient(90deg, var(--gold-warm) 0%, var(--gold-bright) 30%, var(--gold-light) 50%, var(--gold-bright) 70%, var(--gold-warm) 100%);
    background-size: 220% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: shimmerGold 7s linear infinite;
}
@keyframes shimmerGold { 0% { background-position: 0% center; } 100% { background-position: 220% center; } }
.nav-logo .logo-sub { font-family: var(--font-title); font-size: 0.55rem; font-weight: 400; letter-spacing: 0.35em; color: var(--text-muted); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a { font-family: var(--font-title); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); position: relative; padding-bottom: 4px; transition: color var(--t-mid) var(--ease); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 1px; background: linear-gradient(to right, transparent, var(--gold-mid), transparent); transition: left var(--t-mid) var(--ease), right var(--t-mid) var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold-mid); border-radius: 2px; transition: transform var(--t-mid), opacity var(--t-mid); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* == HERO LANDING == */
.hero-landing { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 100px 36px 80px; text-align: center; }
.hero-landing::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 700px; background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 65%); pointer-events: none; z-index: 1; }
.hero-landing-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-title); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 28px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 48px; height: 1px; }
.hero-eyebrow::before { background: linear-gradient(to right, transparent, var(--gold-mid)); }
.hero-eyebrow::after  { background: linear-gradient(to left,  transparent, var(--gold-mid)); }
.hero-dot { width: 7px; height: 7px; background: var(--green-wa); border-radius: 50%; display: inline-block; animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.75); } }
.hero-title { font-family: var(--font-display); font-size: clamp(3.4rem, 8vw, 7rem); font-weight: 300; line-height: 1.04; color: var(--ivory); margin-bottom: 28px; letter-spacing: 0.02em; }
.hero-gold { font-style: italic; font-weight: 400; background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-bright) 40%, var(--gold-light) 60%, var(--gold-warm) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-italic { font-style: italic; font-weight: 300; color: var(--gold-pale); -webkit-text-fill-color: var(--gold-pale); }
.hero-subtitle { font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300; font-style: italic; line-height: 1.9; color: var(--text-muted); max-width: 560px; margin: 0 auto 44px; letter-spacing: 0.02em; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-title); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; padding: 17px 42px; border: 1px solid var(--gold-mid); background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-warm) 100%); color: #09080a; transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), filter var(--t-mid); box-shadow: 0 4px 24px rgba(201,168,76,0.25), inset 0 1px 0 rgba(255,255,255,0.15); }
.btn-primary svg { transition: transform var(--t-mid); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,168,76,0.4); filter: brightness(1.1); }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--gold-light); font-family: var(--font-title); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; padding: 16px 38px; border: 1px solid rgba(201,168,76,0.3); transition: border-color var(--t-mid), color var(--t-mid), background var(--t-mid); }
.btn-outline:hover { border-color: var(--gold-mid); color: var(--gold-bright); background: rgba(201,168,76,0.06); }
.hero-badges { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 9px; font-family: var(--font-title); font-size: 0.63rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); padding: 0 28px; }
.hero-badge svg { color: var(--gold-dark); flex-shrink: 0; }
.hero-badge-sep { width: 1px; height: 26px; background: rgba(201,168,76,0.15); }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.hero-orb-1 { width: 700px; height: 700px; top: -200px; right: -200px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%); animation: orbFloat 12s ease-in-out infinite; }
.hero-orb-2 { width: 500px; height: 500px; bottom: -120px; left: -150px; background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 60%); animation: orbFloat 16s ease-in-out infinite reverse; }
.hero-orb-3 { width: 220px; height: 220px; top: 30%; left: 8%; background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 65%); animation: orbFloat 10s ease-in-out infinite 3s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-24px) scale(1.04); } }

/* == SECTION HEADER == */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow { font-family: var(--font-title); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 400; color: var(--ivory); line-height: 1.18; letter-spacing: 0.03em; }
.section-title .gold { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--gold-warm), var(--gold-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-rule { width: 180px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-mid), transparent); margin: 22px auto 0; display: block; }

/* == COLLECTIONS == */
.collections-section { padding: 90px 36px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.collection-card { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow-card); border: 1px solid rgba(201,168,76,0.08); transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease), border-color var(--t-mid); }
.collection-card:hover { transform: translateY(-8px); box-shadow: 0 24px 72px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.25), var(--shadow-gold); border-color: rgba(201,168,76,0.3); }
.card-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter var(--t-slow); filter: brightness(0.9) saturate(0.85); }
.collection-card:hover .card-bg { transform: scale(1.07); filter: brightness(1) saturate(1.1); }
.card-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(9,8,10,0) 20%, rgba(9,8,10,0.3) 55%, rgba(9,8,10,0.9) 100%); }
.collection-card::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,168,76,0); transition: border-color var(--t-mid); pointer-events: none; z-index: 3; }
.collection-card:hover::after { border-color: rgba(201,168,76,0.4); }
.card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 26px; z-index: 2; }
.card-tag { display: inline-block; font-family: var(--font-title); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-mid); padding: 4px 0; margin-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.3); }
.card-name { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 6px; letter-spacing: 0.02em; }
.card-desc { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.6); font-style: italic; font-family: var(--font-display); }
.card-cta { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-title); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); opacity: 0; transform: translateY(10px); transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease); }
.card-cta svg { width: 15px; height: 15px; transition: transform var(--t-mid); }
.collection-card:hover .card-cta { opacity: 1; transform: translateY(0); }
.collection-card:hover .card-cta svg { transform: translateX(4px); }
.collections-cta { text-align: center; margin-top: 60px; padding-top: 44px; border-top: 1px solid rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.collections-cta p { font-family: var(--font-display); font-size: 1.55rem; font-style: italic; font-weight: 300; color: var(--text-muted); }
.btn-outline-gold { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); font-family: var(--font-title); font-size: 0.66rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; padding: 14px 32px; transition: background var(--t-mid), border-color var(--t-mid), color var(--t-mid); }
.btn-outline-gold:hover { background: rgba(201,168,76,0.1); border-color: var(--gold-mid); color: var(--gold-bright); }

/* == CONTACT CARD == */
.hero-section { padding: 80px 36px; max-width: 1280px; margin: 0 auto; }
.contact-card { background: var(--bg-card); border: 1px solid rgba(201,168,76,0.15); padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow-deep); }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent 10%, var(--gold-mid) 50%, transparent 90%); }
.contact-card::after { content: ''; position: absolute; top: -120px; right: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%); pointer-events: none; }
.card-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(201,168,76,0.2); padding: 6px 18px; font-family: var(--font-title); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.28em; color: var(--gold-mid); text-transform: uppercase; margin-bottom: 24px; }
.card-badge .dot { width: 6px; height: 6px; background: var(--green-wa); border-radius: 50%; animation: pulse-dot 2.4s ease-in-out infinite; }
.card-title { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 300; line-height: 1.07; color: var(--gold-light); margin-bottom: 14px; }
.card-title .italic { font-style: italic; font-weight: 300; color: var(--gold-pale); }
.card-divider { width: 56px; height: 1px; background: linear-gradient(to right, var(--gold-mid), transparent); margin: 22px 0; }
.card-slogan { font-family: var(--font-display); font-size: 1.08rem; font-weight: 300; font-style: italic; line-height: 1.85; color: var(--text-muted); max-width: 380px; }
.story-stats { display: flex; align-items: center; gap: 0; margin-top: 36px; padding-top: 26px; border-top: 1px solid rgba(201,168,76,0.12); }
.story-stat { flex: 1; text-align: center; padding: 0 16px; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; font-style: italic; color: var(--gold-light); line-height: 1; margin-bottom: 5px; }
.stat-label { font-family: var(--font-title); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.story-stat-sep { width: 1px; height: 44px; background: rgba(201,168,76,0.15); flex-shrink: 0; }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; color: var(--gold-mid); transition: background var(--t-mid), border-color var(--t-mid); }
.contact-item:hover .contact-icon { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); }
.contact-label { font-family: var(--font-title); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.contact-value { font-family: var(--font-display); font-size: 1.05rem; font-weight: 300; color: var(--ivory); line-height: 1.5; }
.contact-value a { color: var(--ivory); transition: color var(--t-mid); }
.contact-value a:hover { color: var(--gold-light); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--green-wa), #1cb84e); color: #fff; font-family: var(--font-title); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 16px 34px; transition: transform var(--t-mid), box-shadow var(--t-mid), filter var(--t-mid); box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); filter: brightness(1.05); }

/* == CONTACT PAGE HERO == */
.page-hero { position: relative; overflow: hidden; padding: 90px 36px 64px; text-align: center; border-bottom: 1px solid rgba(201,168,76,0.1); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 60%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 300; color: var(--ivory); line-height: 1.1; margin: 14px 0 0; letter-spacing: 0.02em; }
.page-hero-sub { margin-top: 20px; font-family: var(--font-display); font-size: 1rem; font-weight: 300; font-style: italic; line-height: 1.85; color: var(--text-muted); }

/* == MAP SECTION == */
.map-section { padding: 20px 36px 90px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.map-card { overflow: hidden; border: 1px solid rgba(201,168,76,0.12); box-shadow: var(--shadow-deep); position: relative; }
.map-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent 10%, var(--gold-mid) 50%, transparent 90%); z-index: 2; }
.map-card-header { background: var(--bg-card); border-bottom: 1px solid rgba(201,168,76,0.12); padding: 22px 36px; display: flex; align-items: center; gap: 14px; }
.map-card-header .map-icon { width: 36px; height: 36px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; color: var(--gold-mid); flex-shrink: 0; }
.map-card-header h2 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--gold-light); letter-spacing: 0.02em; }
.map-card-header p { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; font-style: italic; font-family: var(--font-display); }
.map-wrapper { position: relative; width: 100%; height: 420px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* == RICH FOOTER == */
.site-footer { background: var(--bg-elevated); border-top: 1px solid rgba(201,168,76,0.12); padding: 64px 36px 0; position: relative; z-index: 1; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent 5%, var(--gold-mid) 50%, transparent 95%); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 60px; padding-bottom: 52px; border-bottom: 1px solid rgba(201,168,76,0.08); }
.footer-brand {}
.footer-logo { font-family: var(--font-title); font-size: 1.7rem; font-weight: 500; letter-spacing: 0.12em; background: linear-gradient(90deg, var(--gold-warm) 0%, var(--gold-bright) 40%, var(--gold-light) 70%, var(--gold-warm) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 18px; display: block; }
.footer-tagline { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300; font-style: italic; line-height: 1.85; color: var(--text-muted); max-width: 420px; margin-bottom: 30px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-icon { width: 44px; height: 44px; border: 1px solid rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: background var(--t-mid), border-color var(--t-mid), color var(--t-mid), transform var(--t-mid); }
.footer-social-icon svg { width: 18px; height: 18px; }
.footer-social-icon:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.35); color: var(--gold-light); transform: translateY(-2px); }
.footer-social-icon.footer-social-wa:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.35); color: var(--green-wa); }
.footer-col-title { font-family: var(--font-title); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 26px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300; color: var(--text-muted); transition: color var(--t-mid), padding-left var(--t-mid); display: inline-block; }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-row { max-width: 1280px; margin: 0 auto; padding: 40px 0 44px; border-bottom: 1px solid rgba(201,168,76,0.06); }
.footer-contact-items { display: flex; flex-wrap: wrap; gap: 22px 48px; margin-top: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 300; color: var(--text-muted); }
.footer-contact-item svg { color: var(--gold-dark); flex-shrink: 0; width: 18px; height: 18px; }
.footer-contact-item a { color: var(--text-muted); transition: color var(--t-mid); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 24px 0; text-align: center; }
.footer-bottom p { font-family: var(--font-title); font-size: 0.72rem; letter-spacing: 0.18em; color: rgba(138,116,96,0.45); text-transform: uppercase; }

/* == FAB WHATSAPP == */
.fab-whatsapp { position: fixed; bottom: 28px; right: 28px; z-index: 9999; width: 64px; height: 64px; background: linear-gradient(135deg, var(--green-wa), #1cb84e); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.4); color: #fff; transition: transform var(--t-mid), box-shadow var(--t-mid); overflow: visible; }
.fab-whatsapp svg { width: 34px; height: 34px; }
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.55); }
.fab-pulse { position: absolute; inset: -4px; border-radius: 50%; background: rgba(37,211,102,0.22); animation: fab-ring 2.8s ease-out infinite; }
@keyframes fab-ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }
.fab-tooltip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: var(--bg-surface); border: 1px solid rgba(201,168,76,0.15); color: var(--ivory); font-family: var(--font-title); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; padding: 7px 14px; opacity: 0; pointer-events: none; transition: opacity var(--t-mid), transform var(--t-mid); }
.fab-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--bg-surface); }
.fab-whatsapp:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(-4px); }

/* == MOBILE NAV == */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 998; pointer-events: none; }
.mobile-nav.open { pointer-events: all; }
.mobile-nav-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.35s ease; }
.mobile-nav.open .mobile-nav-overlay { background: rgba(0,0,0,0.78); }
.mobile-nav-drawer { position: absolute; top: 0; right: 0; width: 280px; height: 100%; background: var(--bg-card); border-left: 1px solid rgba(201,168,76,0.12); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); padding: 36px 28px; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-logo { font-family: var(--font-title); font-size: 1.15rem; font-weight: 500; letter-spacing: 0.1em; background: linear-gradient(90deg, var(--gold-warm), var(--gold-bright), var(--gold-warm)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(201,168,76,0.12); }
.mobile-nav-links a { display: block; font-family: var(--font-title); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color var(--t-mid), padding-left var(--t-mid); }
.mobile-nav-links a:hover { color: var(--gold-light); padding-left: 8px; }

/* == UTILITIES == */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* == RESPONSIVE == */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .contact-card { padding: 48px 40px; gap: 40px; }
    .hero-landing { padding: 90px 28px 70px; }
    .nav-inner { padding: 0 28px; }
}

/* ── Mobile-L (≤768px) ── */
@media (max-width: 768px) {

    /* Base */
    html { font-size: 16px; }

    /* Announcement bar */
    .announcement-bar { padding: 7px 0; }
    .marquee-content { font-size: 0.72rem; letter-spacing: 0.12em; }

    /* Nav */
    .nav-inner { padding: 0 18px; height: 68px; }
    .nav-logo-img { width: 40px; height: 40px; }
    .nav-logo .logo-main { font-size: 1.15rem; }
    .nav-logo .logo-sub { font-size: 0.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-nav { display: block; }

    /* Mobile Drawer — bigger touch targets */
    .mobile-nav-drawer { width: 260px; padding: 28px 22px; }
    .mobile-nav-logo { font-size: 1.1rem; margin-bottom: 24px; padding-bottom: 16px; }
    .mobile-nav-links a { font-size: 0.85rem; padding: 15px 0; letter-spacing: 0.15em; }

    /* Hero */
    .hero-landing { padding: 80px 18px 56px; min-height: 85vh; text-align: center; }
    .hero-landing-inner { max-width: 100%; }
    .hero-eyebrow { font-size: 0.58rem; gap: 8px; }
    .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
    .hero-title { font-size: clamp(2.4rem, 9vw, 3.6rem); margin-bottom: 20px; line-height: 1.1; }
    .hero-subtitle { font-size: 0.95rem; max-width: 100%; margin-bottom: 32px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 36px; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; padding: 15px 24px; }
    .hero-badges { gap: 0; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 0 4px; }
    .hero-badge { padding: 0 14px; font-size: 0.58rem; white-space: nowrap; flex-shrink: 0; }
    .hero-badge-sep { height: 20px; }
    .hero-orb-1 { width: 320px; height: 320px; top: -80px; right: -100px; }
    .hero-orb-2 { width: 240px; height: 240px; bottom: -60px; left: -80px; }
    .hero-orb-3 { display: none; }

    /* Section Header */
    .section-header { margin-bottom: 36px; }
    .section-eyebrow { font-size: 0.58rem; }
    .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }

    /* Collections */
    .collections-section { padding: 56px 18px 48px; }
    .collections-grid { grid-template-columns: 1fr; gap: 14px; }
    .collection-card { aspect-ratio: 4/3; }
    .card-name { font-size: 1.7rem; }
    .card-desc { font-size: 0.82rem; }
    .collections-cta { flex-direction: column; gap: 14px; margin-top: 40px; padding-top: 32px; }
    .collections-cta p { font-size: 1.2rem; text-align: center; }
    .btn-outline-gold { width: 100%; max-width: 320px; justify-content: center; }

    /* Contact card (index.php / contact.php shared) */
    .hero-section { padding: 40px 18px; }
    .contact-card { grid-template-columns: 1fr; padding: 32px 22px; gap: 32px; }
    .card-badge { font-size: 0.55rem; padding: 5px 14px; }
    .card-title { font-size: 2.2rem; margin-bottom: 10px; }
    .card-divider { margin: 16px 0; }
    .card-slogan { font-size: 0.95rem; max-width: 100%; }
    .story-stats { flex-direction: row; flex-wrap: wrap; gap: 0; margin-top: 24px; padding-top: 20px; }
    .story-stat { flex: 1; min-width: 80px; padding: 0 10px; }
    .stat-num { font-size: 2rem; }
    .stat-label { font-size: 0.55rem; }
    .story-stat-sep { width: 1px; height: 36px; }
    .contact-list { gap: 16px; margin-bottom: 28px; }
    .contact-icon { width: 36px; height: 36px; }
    .contact-value { font-size: 0.95rem; }
    .btn-whatsapp { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.65rem; }

    /* Page hero (contact.php) */
    .page-hero { padding: 60px 18px 44px; }
    .page-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .page-hero-sub { font-size: 0.92rem; }

    /* Map */
    .map-section { padding: 16px 18px 52px; }
    .map-card-header { padding: 18px 22px; gap: 10px; }
    .map-card-header h2 { font-size: 1rem; }
    .map-wrapper { height: 280px; }

    /* Footer */
    .site-footer { padding: 48px 18px 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer-logo { font-size: 1.4rem; }
    .footer-tagline { font-size: 0.95rem; max-width: 100%; margin-bottom: 22px; }
    .footer-col-title { font-size: 0.68rem; margin-bottom: 18px; }
    .footer-links a { font-size: 0.95rem; }
    .footer-contact-row { padding: 28px 0 32px; }
    .footer-contact-items { flex-direction: column; gap: 12px; }
    .footer-contact-item { font-size: 0.9rem; gap: 10px; }
    .footer-bottom p { font-size: 0.65rem; }

    /* FAB */
    .fab-whatsapp { bottom: 18px; right: 18px; width: 54px; height: 54px; }
    .fab-whatsapp svg { width: 28px; height: 28px; }
    .fab-tooltip { display: none; }
}

/* ── Mobile-S (≤480px) ── */
@media (max-width: 480px) {

    html { font-size: 15px; }

    .nav-inner { height: 62px; }
    .nav-logo .logo-main { font-size: 1.05rem; }
    .nav-logo .logo-sub { display: none; }

    .hero-landing { padding: 72px 14px 48px; min-height: 80vh; }
    .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
    .hero-subtitle { font-size: 0.88rem; }
    .hero-badges { gap: 0; }
    .hero-badge { padding: 0 10px; font-size: 0.52rem; }

    .collections-section { padding: 44px 14px 36px; }
    .collection-card { aspect-ratio: 3/2; }
    .card-name { font-size: 1.5rem; }

    .contact-card { padding: 26px 16px; gap: 28px; }
    .card-title { font-size: 1.9rem; }
    .stat-num { font-size: 1.8rem; }

    .page-hero { padding: 52px 14px 36px; }
    .page-hero-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }

    .map-wrapper { height: 240px; }

    .site-footer { padding: 40px 14px 0; }
    .footer-logo { font-size: 1.25rem; }
    .footer-social-icon { width: 38px; height: 38px; }

    .btn-primary, .btn-outline, .btn-outline-gold, .btn-whatsapp { font-size: 0.65rem; }

    .fab-whatsapp { bottom: 14px; right: 14px; width: 50px; height: 50px; }
    .fab-whatsapp svg { width: 26px; height: 26px; }
}
