/* ===== Lima-Lozic — styles.css ===== */
:root{
  --bg:#0b0b0d; --bg-2:#141418; --surface:#1a1a1f; --surface-2:#22222a;
  --text:#f2f2f0; --muted:#a8a8a8;
  --gold:#d4a84c; --gold-2:#f0d78c; --gold-dark:#8a6b28;
  --border:rgba(212,168,76,0.2);
  --shadow: 0 20px 60px rgba(0,0,0,.5);
  --radius: 14px;
  --font-display:'Cinzel', serif;
  --font-body:'Inter', system-ui, -apple-system, sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);background:var(--bg);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 1.25rem}

h1,h2,h3,h4{font-family:var(--font-display);letter-spacing:.02em;line-height:1.15;font-weight:700}
h1{font-size:clamp(2.2rem,5vw,4rem)}
h2{font-size:clamp(1.8rem,3.5vw,2.75rem)}
h3{font-size:1.25rem;font-family:var(--font-body);font-weight:600}
.gold{background:linear-gradient(135deg,var(--gold-2),var(--gold),var(--gold-dark));-webkit-background-clip:text;background-clip:text;color:transparent}
.muted{color:var(--muted)}
.small{font-size:.85rem}
.eyebrow{display:inline-flex;align-items:center;gap:.5rem;text-transform:uppercase;letter-spacing:.25em;font-size:.75rem;color:var(--muted);margin-bottom:1rem;font-weight:600}
.eyebrow.gold{color:var(--gold);-webkit-text-fill-color:var(--gold);background:none}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.55rem;padding:.9rem 1.6rem;border-radius:999px;font-weight:600;font-size:.95rem;transition:all .3s ease;cursor:pointer;border:none;font-family:inherit}
.btn i{font-size:.9em}
.btn-gold{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#111;box-shadow:0 8px 24px rgba(212,168,76,.35)}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(212,168,76,.5)}
.btn-outline{background:transparent;color:var(--text);border:1.5px solid var(--gold)}
.btn-outline:hover{background:var(--gold);color:#111}
.btn-sm{padding:.55rem 1rem;font-size:.85rem}
.btn-lg{padding:1.1rem 2rem;font-size:1.05rem}

/* HEADER */
.site-header{position:sticky;top:0;z-index:100;background:rgba(11,11,13,.9);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.85rem 1.25rem}
.brand{display:flex;align-items:center;gap:.75rem}
.brand-logo{width:52px;height:52px;border-radius:50%;object-fit:cover;border:1.5px solid var(--gold)}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-title{font-family:var(--font-display);font-weight:700;font-size:1.1rem;letter-spacing:.1em;color:var(--gold)}
.brand-sub{font-size:.7rem;color:var(--muted);letter-spacing:.15em;text-transform:uppercase}
.nav{display:flex;gap:2rem}
.nav a{font-size:.9rem;font-weight:500;color:var(--text);position:relative;transition:color .2s}
.nav a:hover{color:var(--gold)}
.nav a::after{content:'';position:absolute;left:0;bottom:-6px;width:0;height:2px;background:var(--gold);transition:width .3s}
.nav a:hover::after{width:100%}
.nav-toggle{display:none;background:none;border:none;color:var(--gold);font-size:1.4rem;cursor:pointer}

/* HERO */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:url('images/hero.jpg') center/cover no-repeat;filter:brightness(.5)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(11,11,13,.9) 0%,rgba(11,11,13,.55) 60%,rgba(212,168,76,.15) 100%)}
.hero-content{position:relative;padding:6rem 1.25rem;max-width:900px}
.hero .lead{font-size:1.15rem;color:#e0e0d8;margin:1.5rem 0 2rem;max-width:640px}
.hero-cta{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:3rem}
.hero-stats{display:flex;flex-wrap:wrap;gap:2.5rem;padding-top:2rem;border-top:1px solid var(--border)}
.hero-stats div{display:flex;flex-direction:column}
.hero-stats strong{font-family:var(--font-display);font-size:2rem;color:var(--gold)}
.hero-stats span{font-size:.85rem;color:var(--muted);text-transform:uppercase;letter-spacing:.1em}

/* VALUES */
.values{padding:5rem 0;background:var(--bg-2)}
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem}
.value-card{background:var(--surface);padding:2rem;border-radius:var(--radius);border:1px solid var(--border);transition:transform .3s,border-color .3s;text-align:left}
.value-card:hover{transform:translateY(-4px);border-color:var(--gold)}
.value-icon{width:56px;height:56px;border-radius:14px;background:linear-gradient(135deg,rgba(212,168,76,.15),rgba(212,168,76,.05));display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:1.5rem;margin-bottom:1.1rem;border:1px solid var(--border)}
.value-card h3{color:var(--gold);margin-bottom:.5rem;font-family:var(--font-display);font-size:1.1rem}
.value-card p{color:var(--muted);font-size:.95rem}

/* SECTION HEAD */
.section-head{text-align:center;max-width:720px;margin:0 auto 3.5rem}
.section-head p{color:var(--muted);margin-top:1rem;font-size:1.05rem}

/* PRODUCTS */
.products{padding:6rem 0;background:var(--bg)}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.75rem;margin-bottom:4rem}
.product-card{background:var(--surface);border-radius:var(--radius);overflow:hidden;border:1px solid rgba(255,255,255,.06);transition:all .35s;display:flex;flex-direction:column}
.product-card:hover{transform:translateY(-6px);border-color:var(--gold);box-shadow:var(--shadow)}
.product-img{aspect-ratio:4/3;overflow:hidden;background:#0f0f12}
.product-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.product-card:hover .product-img img{transform:scale(1.08)}
.product-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.product-body h3{font-family:var(--font-display);color:var(--gold);font-size:1.3rem;margin-bottom:.5rem}
.product-body p{color:var(--muted);font-size:.95rem;margin-bottom:1rem;flex:1}
.tags{list-style:none;display:flex;flex-wrap:wrap;gap:.4rem}
.tags li{background:rgba(212,168,76,.12);color:var(--gold);padding:.3rem .7rem;border-radius:999px;font-size:.75rem;font-weight:600}

/* SPECS */
.specs{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:2rem}
.specs-card{background:linear-gradient(135deg,var(--surface),var(--surface-2));padding:2rem;border-radius:var(--radius);border:1px solid var(--border)}
.specs-card h3{font-family:var(--font-display);color:var(--gold);margin-bottom:.75rem;font-size:1.2rem;display:flex;align-items:center;gap:.6rem}
.specs-card p{color:var(--muted);margin-bottom:1.25rem}
.chip-row{display:flex;flex-wrap:wrap;gap:.5rem}
.chip{background:#111;border:1px solid var(--gold);color:var(--gold);padding:.5rem 1rem;border-radius:8px;font-weight:600;font-size:.9rem}
.color-row{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:.75rem}
.color{width:44px;height:44px;border-radius:8px;border:2px solid rgba(255,255,255,.15);cursor:pointer;transition:transform .2s}
.color:hover{transform:scale(1.15);border-color:var(--gold)}

/* GALLERY */
.gallery{padding:6rem 0;background:var(--bg-2)}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem}
.gallery-item{position:relative;display:block;overflow:hidden;border-radius:var(--radius);cursor:pointer;aspect-ratio:4/3;background:#111;border:1px solid rgba(255,255,255,.05)}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.gallery-item:hover img{transform:scale(1.1)}
.gallery-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(212,168,76,.25),rgba(0,0,0,.65));display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:2rem;opacity:0;transition:opacity .3s}
.gallery-item:hover .gallery-overlay{opacity:1}
.gallery-note{text-align:center;margin-top:2.5rem;color:var(--muted);font-size:.95rem}
.gallery-note i{color:#1877f2;margin-right:.4rem}
.gallery-note a{color:var(--gold);font-weight:600;text-decoration:underline;text-underline-offset:3px}

/* LIGHTBOX */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.94);z-index:200;display:none;align-items:center;justify-content:center;padding:2rem;animation:fadeIn .3s ease}
.lightbox.open{display:flex}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.lb-img{max-width:92%;max-height:88vh;border-radius:8px;box-shadow:0 30px 80px rgba(0,0,0,.7);object-fit:contain}
.lb-close,.lb-prev,.lb-next{position:absolute;background:rgba(212,168,76,.15);color:var(--gold);border:1px solid var(--gold);border-radius:50%;width:52px;height:52px;font-size:1.3rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s}
.lb-close:hover,.lb-prev:hover,.lb-next:hover{background:var(--gold);color:#111}
.lb-close{top:24px;right:24px}
.lb-prev{left:24px;top:50%;transform:translateY(-50%)}
.lb-next{right:24px;top:50%;transform:translateY(-50%)}

/* ABOUT */
.about{padding:6rem 0;background:var(--bg)}
.about-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:4rem;align-items:center}
.about-text p{margin-bottom:1rem;color:#d0d0c8}
.checklist{list-style:none;margin:1.5rem 0 2rem}
.checklist li{padding:.5rem 0;color:#d0d0c8;font-weight:500;display:flex;align-items:center;gap:.7rem}
.checklist i{color:var(--gold);background:rgba(212,168,76,.12);width:26px;height:26px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:.75rem}
.about-img{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--border)}
.about-img img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/5}

/* SERVICES */
.services{padding:6rem 0;background:var(--bg-2)}
.service-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.25rem}
.service{padding:1.75rem;background:var(--surface);border-radius:var(--radius);border-left:3px solid var(--gold);transition:transform .3s}
.service:hover{transform:translateX(4px)}
.service h3{font-family:var(--font-display);color:var(--gold);font-size:1.1rem;margin-bottom:.4rem;display:flex;align-items:center;gap:.6rem}
.service p{color:var(--muted);font-size:.95rem}

/* CTA */
.cta-band{padding:4rem 0;background:linear-gradient(135deg,var(--gold-dark),var(--gold));color:#111}
.cta-inner{display:flex;flex-wrap:wrap;gap:2rem;align-items:center;justify-content:space-between}
.cta-band h2{color:#111}
.cta-band .gold{color:#111;background:none;-webkit-text-fill-color:#111}
.cta-band p{color:#2a1f0a;margin-top:.5rem}
.cta-band .btn-gold{background:#111;color:var(--gold);box-shadow:0 8px 24px rgba(0,0,0,.3)}
.cta-band .btn-gold:hover{background:#000}

/* CONTACT */
.contact{padding:6rem 0;background:var(--bg)}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:2rem}
.contact-info{display:flex;flex-direction:column;gap:1rem}
.info-card{display:flex;gap:1rem;align-items:center;padding:1.25rem 1.5rem;background:var(--surface);border-radius:var(--radius);border:1px solid var(--border);transition:all .3s;cursor:pointer}
.info-card:hover:not(.static){transform:translateX(4px);border-color:var(--gold)}
.info-card.static{cursor:default}
.info-icon{width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,var(--gold),var(--gold-dark));display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:#111;flex-shrink:0}
.info-card h4{font-family:var(--font-body);font-size:.75rem;text-transform:uppercase;letter-spacing:.15em;color:var(--muted);font-weight:600;margin-bottom:.2rem}
.info-card p{color:var(--text);font-weight:600;font-size:1.05rem}
.map-wrap{border-radius:var(--radius);overflow:hidden;min-height:400px;border:1px solid var(--border);box-shadow:var(--shadow)}
.map-wrap iframe{filter:invert(.9) hue-rotate(180deg) saturate(.7)}

/* FOOTER */
.site-footer{background:#050506;padding-top:4rem;border-top:1px solid var(--border)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:3rem;padding-bottom:3rem}
.footer-grid h4{font-family:var(--font-display);color:var(--gold);margin-bottom:1rem;font-size:1rem;letter-spacing:.08em;text-transform:uppercase}
.footer-links{list-style:none}
.footer-links li{padding:.35rem 0;color:var(--muted);display:flex;align-items:center;gap:.5rem}
.footer-links a{color:var(--muted);transition:color .2s}
.footer-links a:hover{color:var(--gold)}
.footer-links i{color:var(--gold);width:16px}
.socials{display:flex;gap:.6rem;margin-top:1.25rem}
.socials a{width:40px;height:40px;border-radius:50%;background:var(--surface);border:1px solid var(--border);color:var(--gold);display:flex;align-items:center;justify-content:center;transition:all .2s}
.socials a:hover{background:var(--gold);color:#111;transform:translateY(-2px)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.05);padding:1.5rem 0;text-align:center;color:var(--muted);font-size:.85rem}

/* FLOATING CALL */
.floating-call{position:fixed;bottom:24px;right:24px;width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,var(--gold),var(--gold-dark));display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:#111;box-shadow:0 8px 24px rgba(212,168,76,.5);z-index:99;animation:pulse 2s infinite;transition:transform .3s}
.floating-call:hover{transform:scale(1.1)}
@keyframes pulse{0%,100%{box-shadow:0 8px 24px rgba(212,168,76,.5)}50%{box-shadow:0 8px 32px rgba(212,168,76,.8)}}

/* REVEAL */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s ease, transform .8s ease}
.reveal.in{opacity:1;transform:none}

/* RESPONSIVE */
@media (max-width:900px){
  .nav{position:fixed;top:70px;right:-100%;flex-direction:column;background:var(--bg-2);width:80%;height:100vh;padding:2rem;gap:1.5rem;transition:right .3s;border-left:1px solid var(--border)}
  .nav.open{right:0}
  .nav-toggle{display:block}
  .header-inner .btn{display:none}
  .about-grid,.contact-grid,.specs{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .hero-stats{gap:1.5rem}
  .hero-stats strong{font-size:1.5rem}
  .cta-inner{text-align:center;justify-content:center}
  .lb-prev,.lb-next{width:44px;height:44px}
  .lb-close{top:14px;right:14px}
}
.color-row{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    justify-content:center;
    margin-top:20px;
}

.color-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

.color{
    width:42px;
    height:42px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.12);
    box-shadow:0 0 15px rgba(0,0,0,.25);
}

.color-item small{
    color:#bdbdbd;
    font-size:.78rem;
    font-weight:600;
    letter-spacing:.4px;
}
/* ───────── FOOTER BOTTOM (PROFESSIONAL) ───────── */
.footer-bottom{
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,0.06);
  background:#0b0f14;
}

.footer-bottom-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-align:center;
}

/* COPYRIGHT */
.footer-bottom .copyright{
  font-size:13px;
  color:rgba(255,255,255,0.6);
  letter-spacing:.2px;
}

/* POWERED BY */
.powered-by{
  font-size:11px;
  color:rgba(255,255,255,0.4);
  letter-spacing:.12em;
  text-transform:uppercase;
}

/* BRAND */
.powered-by .brand{
  color:rgba(255,255,255,0.85);
  text-decoration:none;
  font-weight:600;
  margin-left:4px;
  transition:opacity .2s ease;
}

/* HOVER (minimal) */
.powered-by .brand:hover{
  opacity:0.7;
}