/* GI.MA Solutions - static site */
:root{
  --bg:#1c1a17;
  --bg-2:#242220;
  --fg:#f4efe6;
  --muted:#a8a196;
  --gold:#d4b26a;
  --gold-soft:#b8945a;
  --border:rgba(212,178,106,.25);
  --radius:.5rem;
}
*{box-sizing:border-box;margin:0;padding:0;border-color:var(--border)}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--fg);
  font-family:'Inter',system-ui,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:'Playfair Display',serif;letter-spacing:.01em;font-weight:700}
.text-gold{color:var(--gold)}
.muted{color:var(--muted)}

.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}

/* Logo */
.logo{line-height:1;font-family:'Playfair Display',serif}
.logo-main{font-size:1.5rem;font-weight:700;letter-spacing:.05em}
.logo-main .dot{color:var(--gold)}
.logo-sub{font-size:.65rem;letter-spacing:.35em;color:var(--gold);margin-top:.15rem}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.9rem 1.75rem;border-radius:var(--radius);
  font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  transition:background .2s,color .2s;
  cursor:pointer;border:none;
}
.btn-primary{background:var(--gold);color:#1c1a17}
.btn-primary:hover{background:var(--gold-soft)}
.btn-outline{border:1px solid rgba(212,178,106,.7);color:var(--gold);background:transparent}
.btn-outline:hover{background:rgba(212,178,106,.1)}
.icon{width:1rem;height:1rem;flex-shrink:0}

/* Social circle */
.social{
  width:2.5rem;height:2.5rem;border-radius:50%;
  border:1px solid rgba(212,178,106,.6);
  display:inline-flex;align-items:center;justify-content:center;color:var(--gold);
  transition:background .2s,color .2s;
}
.social:hover{background:var(--gold);color:#1c1a17}
.social-lg{width:2.75rem;height:2.75rem}

/* HERO */
.hero{position:relative;min-height:100vh;overflow:hidden;padding-bottom:3rem}
.hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(to right,var(--bg) 0%,rgba(28,26,23,.85) 40%,transparent 100%);z-index:1}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,var(--bg),transparent 40%,rgba(28,26,23,.4));z-index:1}
.hero-inner{position:relative;z-index:2}
.top-bar{display:flex;justify-content:space-between;align-items:center;padding:2rem 1.5rem 0}
.top-bar .socials{display:flex;gap:.75rem}

.hero-content{padding:6rem 1.5rem 0;max-width:720px}
.eyebrow{color:var(--gold);font-size:.75rem;letter-spacing:.35em;margin-bottom:1.5rem;text-transform:uppercase}
.hero h1{font-size:clamp(3rem,8vw,6rem);line-height:.95;font-weight:700}
.hero h1 .gold{color:var(--gold);display:block}
.divider{width:6rem;height:1px;background:var(--gold);margin:2rem 0}
.hero .lead{font-size:1.125rem;font-weight:600;margin-bottom:.75rem}
.hero .desc{color:var(--muted);max-width:28rem;line-height:1.6}
.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2.5rem}

/* Info strip */
.info-strip{
  margin:6rem 1.5rem 0;
  max-width:1200px;margin-left:auto;margin-right:auto;
  border:1px solid rgba(212,178,106,.3);border-radius:var(--radius);
  background:rgba(28,26,23,.6);backdrop-filter:blur(8px);
  padding:1.5rem;
  display:grid;grid-template-columns:1fr;gap:1.5rem;
}
@media(min-width:768px){.info-strip{grid-template-columns:repeat(3,1fr)}}
.info-item{display:flex;align-items:center;gap:1rem}
.info-item .badge{
  width:2.5rem;height:2.5rem;border-radius:50%;
  border:1px solid rgba(212,178,106,.6);
  display:flex;align-items:center;justify-content:center;color:var(--gold);flex-shrink:0;
}
.info-item .label{font-size:.7rem;letter-spacing:.25em;color:var(--muted);text-transform:uppercase}
.info-item .value{font-size:.9rem;font-weight:600;margin-top:.15rem}

/* Sections */
section{padding:6rem 1.5rem}
.section-title{text-align:center;font-size:clamp(1.75rem,3vw,2.5rem);margin-bottom:4rem}

/* Why */
.features{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:3rem}
@media(min-width:768px){.features{grid-template-columns:repeat(3,1fr)}}
.feature{text-align:center}
.feature .circle{
  width:5rem;height:5rem;margin:0 auto 1.5rem;border-radius:50%;
  border:2px solid rgba(212,178,106,.7);
  display:flex;align-items:center;justify-content:center;color:var(--gold);
}
.feature .circle svg{width:2rem;height:2rem}
.feature h3{font-family:'Inter',sans-serif;font-size:.85rem;letter-spacing:.3em;margin-bottom:1rem;font-weight:600}
.feature p{color:var(--muted);font-size:.9rem;max-width:20rem;margin:0 auto;line-height:1.6}

/* Story */
.story{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
@media(min-width:768px){.story{grid-template-columns:1fr 1fr}}
.story h2{font-size:clamp(2rem,4vw,3rem);margin-bottom:2rem;line-height:1.15}
.story p{color:var(--muted);line-height:1.7;margin-bottom:1rem}
.story img{border-radius:var(--radius);width:100%;object-fit:cover}
.story .cta{margin-top:2rem}

/* Cars */
.cars{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
@media(min-width:768px){.cars{grid-template-columns:repeat(4,1fr)}}
.car{
  position:relative;overflow:hidden;border-radius:var(--radius);
  aspect-ratio:4/3;
}
.car img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.car:hover img{transform:scale(1.05)}
.car .overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(28,26,23,.8),transparent 60%);
  opacity:0;transition:opacity .3s;
  display:flex;align-items:flex-end;padding:1rem;
}
.car:hover .overlay{opacity:1}
.car .name{font-size:.85rem;font-weight:600}

/* Footer */
footer{
  border-top:1px solid rgba(212,178,106,.25);
  margin-top:3rem;padding:4rem 1.5rem;
}
.footer-grid{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:2.5rem}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
.footer-grid h3{font-family:'Inter',sans-serif;font-size:.8rem;letter-spacing:.3em;color:var(--gold);margin-bottom:1.5rem;font-weight:600}
.footer-grid p{color:var(--muted);font-size:.9rem;line-height:1.6;margin-top:1.5rem}
.footer-grid ul{list-style:none}
.footer-grid ul li{display:flex;align-items:center;gap:.75rem;font-size:.9rem;margin-bottom:.75rem}
.footer-grid ul li svg{color:var(--gold);flex-shrink:0}
.services li{color:var(--muted)}
.copyright{
  max-width:1400px;margin:3.5rem auto 0;padding-top:1.5rem;
  border-top:1px solid rgba(212,178,106,.25);
  text-align:center;font-size:.75rem;color:var(--muted);
}

/* WhatsApp */
.whatsapp{
  position:fixed;bottom:1.5rem;right:1.5rem;
  width:3.5rem;height:3.5rem;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  transition:transform .2s;z-index:50;
}
.whatsapp:hover{transform:scale(1.05)}
.whatsapp svg{width:1.5rem;height:1.5rem}
