*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --bg: #070707;
  --surface: #0f0f0f;
  --surface-alt: #0d0d0d;
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e8c96a 100%);
  --shadow-gold: 0 0 24px rgba(201,168,76,0.35);
  --shadow-gold-strong: 0 0 36px rgba(201,168,76,0.6);
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: #f5f5f5; font-family: var(--font-body); font-size: 17px; line-height: 1.8; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITIES ---- */
.gold { color: var(--gold); }
.text-gradient-gold { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.logo-glow { filter: drop-shadow(0 0 14px rgba(201,168,76,0.65)); }
.gradient-gold { background: var(--gradient-gold); }
.pulse-gold { animation: pulse-gold 2s infinite; }
@keyframes pulse-gold { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,0.6);}50%{box-shadow:0 0 0 14px rgba(201,168,76,0);} }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.btn-gold { background: var(--gradient-gold); color: #070707; font-weight: 600; border: 1px solid transparent; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all .3s; cursor: pointer; }
.btn-gold:hover { box-shadow: var(--shadow-gold-strong); transform: translateY(-1px); }
.btn-ghost-gold { border: 1px solid var(--gold); color: var(--gold); background: transparent; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all .3s; cursor: pointer; }
.btn-ghost-gold:hover { background: rgba(201,168,76,0.1); box-shadow: var(--shadow-gold); }
.card-dark { background: var(--surface); border: 1px solid rgba(201,168,76,0.15); transition: all .3s; border-radius: 8px; }
.card-dark:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
section { position: relative; }

/* ---- TOP BAR ---- */
#topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 40px; background: #0d0d0d; border-bottom: 1px solid rgba(201,168,76,0.6); display: flex; align-items: center; }
#topbar .container { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; width: 100%; }
#topbar a { font-size: 13px; font-weight: 500; color: #fff; display: flex; align-items: center; gap: 6px; transition: color .2s; }
#topbar a:hover { color: var(--gold); }
#topbar .tb-phone { justify-self: start; }
#topbar .tb-email { justify-self: center; }
#topbar .tb-ig { justify-self: end; }
#topbar svg { width: 15px; height: 15px; color: var(--gold); }
#topbar .ig-icon svg { width: 18px; height: 18px; }
@media(max-width:768px){ #topbar .tb-email{display:none;} #topbar .container{grid-template-columns:1fr 1fr;} }

/* ---- NAV ---- */
#navbar { position: fixed; top: 40px; left: 0; right: 0; z-index: 40; transition: all .3s; }
#navbar.scrolled { background: rgba(0,0,0,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(201,168,76,0.15); }
#navbar .container { height: 64px; display: flex; align-items: center; justify-content: space-between; }
#navbar .logo img { height: 44px; width: auto; }
#navbar .nav-links { display: flex; gap: 32px; }
#navbar .nav-links a { font-size: 14px; color: #fff; font-weight: 500; letter-spacing: .05em; transition: color .2s; }
#navbar .nav-links a:hover { color: var(--gold); }
#navbar .nav-right { display: flex; align-items: center; gap: 12px; }
#navbar .btn-cta { padding: 10px 20px; font-size: 14px; }
.menu-toggle { display: none; padding: 8px; color: var(--gold); }
.menu-toggle svg { width: 24px; height: 24px; }
#mobile-menu { display: none; background: rgba(0,0,0,0.97); backdrop-filter: blur(12px); border-top: 1px solid rgba(201,168,76,0.2); }
#mobile-menu.open { display: block; }
#mobile-menu a { display: block; color: #fff; padding: 12px 16px; border-bottom: 1px solid rgba(201,168,76,0.1); transition: color .2s; }
#mobile-menu a:hover { color: var(--gold); }
@media(max-width:1024px){ #navbar .nav-links{display:none;} .menu-toggle{display:block;} #navbar .btn-cta{display:none;} }
@media(max-width:640px){ #navbar .btn-cta{display:none;} }

/* ---- HERO ---- */
#hero { min-height: 100vh; display: flex; align-items: center; padding-top: 128px; padding-bottom: 96px; overflow: hidden; }
#hero .hero-bg { position: absolute; inset: 0; }
#hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
#hero .hero-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 40%, #070707); }
#hero .hero-bg::before { content:''; position:absolute; inset:0; background: rgba(0,0,0,0.72); z-index:1; }
#hero .hero-bg img, #hero .hero-bg::after, #hero .hero-bg::before { position: absolute; inset: 0; }
#hero .hero-bg img { z-index: 0; }
#hero .hero-bg::before { z-index: 1; }
#hero .hero-bg::after { z-index: 2; }
#hero .hero-content { position: relative; z-index: 3; width: 100%; }
#hero .hero-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 32px; }
#hero .hero-logo img { height: 160px; width: auto; }
#hero .hero-logo .gold-divider { width: 96px; margin-top: 20px; }
#hero .hero-eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: #fff; font-weight: 700; margin-bottom: 16px; }
#hero h1 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin-bottom: 28px; }
#hero h1 .title-main { display: block; font-size: clamp(2.5rem,7vw,4.5rem); letter-spacing: -.02em; }
#hero h1 .title-sub { display: block; font-size: clamp(1rem,2.5vw,1.5rem); color: rgba(255,255,255,0.9); font-weight: 400; letter-spacing: .05em; font-family: var(--font-body); margin-top: 12px; }
#hero .hero-desc { color: rgba(255,255,255,0.92); font-size: clamp(14px,2vw,17px); max-width: 640px; margin-bottom: 40px; line-height: 1.8; }
#hero .hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
#hero .hero-tags span { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.6); border: 1px solid rgba(201,168,76,0.5); color: var(--gold); padding: 8px 16px; border-radius: 9999px; font-size: 13px; font-weight: 700; }
#hero .hero-tags svg { width: 16px; height: 16px; }
#hero .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 64px; }
#hero .hero-btns a { padding: 16px 32px; font-size: 15px; }
#hero .hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; max-width: 900px; margin: 0 auto; padding-top: 40px; border-top: 1px solid rgba(201,168,76,0.2); }
#hero .stat-num { font-size: clamp(1.8rem,4vw,2.5rem); color: var(--gold); font-weight: 700; margin-bottom: 4px; }
#hero .stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #fff; font-weight: 500; }
@media(max-width:640px){ #hero .hero-logo img{height:112px;} #hero .hero-stats{grid-template-columns:repeat(2,1fr);} #hero .hero-tags span{font-size:12px;} }

/* ---- SECTIONS COMMON ---- */
.section-dark { background: var(--bg); padding: 80px 0; }
.section-light { background: #fff; padding: 80px 0; }
.section-surface { background: var(--surface-alt); padding: 80px 0; }
@media(min-width:768px){ .section-dark,.section-light,.section-surface{padding:96px 0;} }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .gold-divider { width: 160px; margin: 0 auto 24px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; margin-bottom: 16px; line-height: 1.1; }
.section-header p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; font-size: 17px; }
.section-header.light h2 { color: #111; }
.section-header.light p { color: #555; }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { padding: 32px; border-top: 2px solid var(--gold); display: flex; flex-direction: column; }
.service-card svg { width: 40px; height: 40px; color: var(--gold); margin-bottom: 20px; flex-shrink: 0; }
.service-card h3 { font-size: 18px; color: #fff; margin-bottom: 12px; font-weight: 700; }
.service-card p { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.7; flex: 1; }
.service-card a { margin-top: 20px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; align-self: stretch; justify-content: center; padding: 11px 16px; }
.svc-btn { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: center !important; gap: 8px !important; }
.svc-btn svg { display: inline-block; vertical-align: middle; flex-shrink: 0; position: static !important; }
@media(max-width:900px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .services-grid{grid-template-columns:1fr;} }

/* ---- FOR WHO ---- */
.forwho-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.forwho-card { background: #f9f9f9; border: 1px solid rgba(201,168,76,0.3); border-left: 3px solid var(--gold); padding: 32px; border-radius: 8px; display: flex; flex-direction: column; transition: all .3s; }
.forwho-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,168,76,0.18); }
.forwho-card svg { width: 36px; height: 36px; color: var(--gold); margin-bottom: 20px; }
.forwho-card h3 { font-size: 18px; color: #111; margin-bottom: 12px; font-weight: 600; }
.forwho-card p { color: #555; font-size: 15px; line-height: 1.7; flex: 1; }
.forwho-card a { margin-top: 24px; padding: 12px 20px; font-size: 14px; }
@media(max-width:900px){ .forwho-grid{grid-template-columns:1fr;} }

/* ---- DIFFERENTIALS ---- */
.diff-highlight { padding: 32px; border-radius: 8px; border: 1px solid var(--gold); box-shadow: var(--shadow-gold); margin-bottom: 40px; display: flex; align-items: flex-start; gap: 20px; }
.diff-highlight .icon-wrap { flex-shrink: 0; background: var(--gradient-gold); border-radius: 8px; padding: 12px; }
.diff-highlight .icon-wrap svg { width: 28px; height: 28px; color: #000; }
.diff-highlight h3 { font-size: 22px; color: #fff; margin-bottom: 8px; font-weight: 600; }
.diff-highlight p { color: rgba(255,255,255,0.95); font-size: 16px; }
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 16px; transition: transform .4s ease; }
.carousel-track .slide { flex-shrink: 0; }
.diff-card { padding: 32px; height: 100%; }
.diff-card .icon-box { background: #000; border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; padding: 12px; width: fit-content; margin-bottom: 20px; }
.diff-card .icon-box svg { width: 28px; height: 28px; color: var(--gold); }
.diff-card h3 { font-size: 17px; color: #fff; margin-bottom: 12px; font-weight: 600; }
.diff-card p { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.7; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: #000; border: 1px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; z-index: 5; transition: all .2s; cursor: pointer; }
.carousel-btn:hover { background: var(--gold); color: #000; }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }
@media(max-width:640px){ .carousel-btn.prev{left:-8px;} .carousel-btn.next{right:-8px;} }

/* ---- BRANDS ---- */
.brands-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.brand-card { background: #fff; border: 1px solid rgba(201,168,76,0.6); padding: 40px; border-radius: 8px; text-align: center; box-shadow: 0 8px 30px rgba(201,168,76,0.12); transition: box-shadow .3s; }
.brand-card:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.25); }
.brand-card .brand-name { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; letter-spacing: .1em; margin-bottom: 12px; }
.brand-card p { color: #555; font-size: 15px; }
@media(max-width:768px){ .brands-grid{grid-template-columns:1fr;} }

/* ---- GALLERY ---- */
.ba-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 40px; }
.ba-container { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; border: 1px solid rgba(201,168,76,0.3); cursor: ew-resize; user-select: none; }
.ba-after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; }
.ba-before-wrap img { position: absolute; top: 0; left: 0; height: 100%; max-width: none; object-fit: cover; }
.ba-line { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--gold); pointer-events: none; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; }
.ba-handle svg { width: 20px; height: 20px; color: #000; }
.ba-label-before, .ba-label-after { position: absolute; top: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; background: rgba(0,0,0,0.7); color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 4px 12px; border-radius: 4px; }
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }
.ba-caption { text-align: center; color: rgba(255,255,255,0.85); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; margin-top: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); grid-template-rows: auto; gap: 16px; margin-bottom: 40px; }
.gallery-grid .gitem { position: relative; overflow: hidden; border-radius: 8px; border: 1px solid rgba(201,168,76,0.2); cursor: zoom-in; }
.gallery-grid .gitem:first-child { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .7s; }
.gallery-grid .gitem:hover img { transform: scale(1.05); }
.gallery-grid .gitem .zoom-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all .3s; }
.gallery-grid .gitem:hover .zoom-overlay { background: rgba(0,0,0,0.6); opacity: 1; }
.gallery-grid .gitem .zoom-overlay svg { width: 40px; height: 40px; color: var(--gold); }
@media(min-width:768px){ .gallery-grid{grid-template-columns:repeat(3,1fr);} .gallery-grid .gitem:first-child{grid-column:span 2; grid-row:span 2;} }
@media(max-width:640px){ .ba-grid{grid-template-columns:1fr;} }

/* ---- TESTIMONIALS ---- */
.testi-card { padding: 28px; border-top: 2px solid var(--gold); }
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.testi-text { color: #fff; font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-name { color: var(--gold); font-weight: 600; }
.testi-city { color: rgba(255,255,255,0.7); font-size: 12px; }

/* ---- MID CTA ---- */
#midcta { padding: 100px 0; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
#midcta .bg { position: absolute; inset: 0; }
#midcta .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
#midcta .bg::before { content:''; position:absolute;inset:0; background:rgba(0,0,0,0.82); z-index:1; }
#midcta .bg::after { content:''; position:absolute;inset:0; background:linear-gradient(135deg,rgba(201,168,76,0.18),transparent 60%); z-index:2; }
#midcta .content { text-align:center; max-width:720px; margin:0 auto; padding:0 24px; width:100%; }
#midcta .gold-divider { width:128px; margin:0 auto 28px; }
#midcta h2 { font-family:var(--font-display); font-size:clamp(1.6rem,3.5vw,2.6rem); font-weight:700; color:#fff; margin-bottom:16px; line-height:1.2; }
#midcta h2 .text-gradient-gold { background:var(--gradient-gold); -webkit-background-clip:text; background-clip:text; color:transparent; }
#midcta p { color:rgba(255,255,255,0.9); font-size:17px; margin-bottom:36px; max-width:520px; margin-left:auto; margin-right:auto; line-height:1.8; }
#midcta a { padding:16px 40px; font-size:16px; font-weight:700; }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.faq-img { border-radius: 8px; overflow: hidden; border: 1px solid rgba(201,168,76,0.3); position: relative; }
.faq-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.faq-img .faq-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 24px; }
.faq-img .faq-img-overlay p { font-size: 12px; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.faq-img .faq-img-overlay h3 { font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight: 700; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #f9f9f9; border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: var(--gold); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; text-align: left; cursor: pointer; }
.faq-q span { font-size: clamp(14px,2vw,17px); font-weight: 600; color: #111; }
.faq-q svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 20px 20px; border-top: 1px solid rgba(201,168,76,0.3); padding-top: 16px; color: #444; font-size: 15px; line-height: 1.7; }
@media(max-width:900px){ .faq-grid{grid-template-columns:1fr;} .faq-img{display:none;} }
.faq-item { background: #f9f9f9; border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: var(--gold); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; text-align: left; cursor: pointer; }
.faq-q span { font-size: clamp(14px,2vw,17px); font-weight: 600; color: #111; }
.faq-q svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 20px 20px; border-top: 1px solid rgba(201,168,76,0.3); padding-top: 16px; color: #444; font-size: 15px; line-height: 1.7; }


/* ---- FOOTER ---- */
footer { background: var(--bg); border-top: 1px solid rgba(201,168,76,0.3); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-bottom: 40px; }
.footer-logo img { height: 80px; width: auto; margin-bottom: 16px; }
.footer-brand { color: var(--gold); font-family: var(--font-display); font-size: 17px; letter-spacing: .1em; font-weight: 700; margin-bottom: 12px; }
.footer-desc { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-ig { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 14px; font-weight: 500; transition: color .2s; }
.footer-ig svg { width: 20px; height: 20px; }
.footer-col h4 { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .2em; font-size: 13px; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.9); font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.footer-copyright { color: rgba(255,255,255,0.6); font-size: 12px; text-align: center; padding-top: 20px; border-top: 1px solid rgba(201,168,76,0.15); }
@media(max-width:768px){ .footer-grid{grid-template-columns:1fr;} }

/* ---- FLOATING WA ---- */
#wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 50; width: 56px; height: 56px; border-radius: 50%; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; animation: pulse-gold 2s infinite; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
#wa-float svg { width: 28px; height: 28px; color: #000; }
#wa-float .tooltip { position: absolute; right: calc(100% + 12px); white-space: nowrap; background: #000; color: var(--gold); font-size: 12px; padding: 8px 12px; border-radius: 4px; border: 1px solid rgba(201,168,76,0.4); opacity: 0; transition: opacity .2s; pointer-events: none; }
#wa-float:hover .tooltip { opacity: 1; }
@media(max-width:768px){ #wa-float{display:none;} }

/* ---- MOBILE STICKY BAR ---- */
#mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; background: var(--gradient-gold); color: #000; font-weight: 700; text-align: center; padding: 16px; border-top: 2px solid rgba(0,0,0,0.2); }
#mobile-spacer { display: none; height: 64px; }
@media(max-width:768px){ #mobile-sticky{display:block;} #mobile-spacer{display:block;} }

/* ---- LIGHTBOX ---- */
#lightbox { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.92); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 16px; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
#lightbox .close-btn { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,0.7); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
#lightbox .close-btn:hover { background: var(--gold); color: #000; }
#lightbox .close-btn svg { width: 24px; height: 24px; }
