/* Mobile-first with centered slideshow images and clean spacing */
:root{
  --bg:#0a0a0a; --fg:#f2f2f2; --muted:#bdbdbd;
  --card:#141414; --outline:rgba(255,255,255,.25); --accent:#ffffff;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--fg);font-family:Inter,-apple-system,system-ui,Segoe UI,Roboto,Arial,sans-serif}

.slideshow{position:relative;min-height:88vh;overflow:hidden}
.slides{position:absolute;inset:0;display:grid}
.slide{
  position:absolute;inset:0;margin:auto;
  max-width:100%;max-height:100%;
  object-fit:contain; /* show full image */
  opacity:0;animation:fade 32s infinite;
  transform:scale(.96); /* a little margin around */
}
.slide:nth-child(1){animation-delay:0s}
.slide:nth-child(2){animation-delay:8s}
.slide:nth-child(3){animation-delay:16s}
.slide:nth-child(4){animation-delay:24s}
@keyframes fade{
  0%{opacity:0}
  8%{opacity:1}
  30%{opacity:1}
  38%{opacity:0}
  100%{opacity:0}
}

.overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.45),rgba(0,0,0,.85));backdrop-filter:saturate(120%) blur(1px)}
.hero{position:relative;z-index:2;display:grid;place-items:center;text-align:center;padding:6rem 1rem 3rem}
.hero h1{font-family:Montserrat,Inter,sans-serif;letter-spacing:.35rem;font-weight:800;margin:0 0 .5rem;font-size:clamp(1.6rem,5vw,3.2rem)}
.hero p{letter-spacing:.25rem;text-transform:uppercase;margin:.25rem 0 1rem;color:var(--muted)}
.phone{display:inline-block;font-size:1.25rem;font-weight:600;color:var(--fg);text-decoration:none;border-bottom:1px solid var(--fg);padding-bottom:.15rem;margin-bottom:1.25rem}
.cta-row{margin-top:1.3rem;display:flex;gap:.65rem;flex-wrap:wrap;justify-content:center}
.btn{display:inline-flex;align-items:center;gap:.35rem;padding:.8rem 1rem;border-radius:999px;text-decoration:none;color:#111;background:var(--accent);font-weight:700}
.btn.outline{background:transparent;color:var(--fg);border:1px solid var(--outline)}

main{padding:2rem 1rem;max-width:980px;margin:0 auto}
.intro{max-width:860px;margin:0 auto 1.25rem auto;color:#eaeaea;text-align:center;line-height:1.6}

.cards{display:grid;gap:1rem;grid-template-columns:1fr}
.card{background:var(--card);border:1px solid #1e1e1e;border-radius:16px;padding:1rem}
.card h2{margin:.25rem 0 1rem;font-family:Montserrat,Inter,sans-serif;letter-spacing:.1rem;text-transform:uppercase;font-size:1rem;color:#eaeaea}

.stats{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:.65rem .95rem}
.stats li{display:flex;align-items:center;gap:.5rem;color:#dfdfdf;font-size:.95rem}
.stats .label::after{content: ":"; margin-left:.15rem;}
.stats .dots{flex:1 1 auto;border-bottom:1px dashed #2a2a2a;opacity:.6;margin:0 .25rem}
.stats .value{font-weight:600}

.rates{list-style:none;padding:0;margin:0;display:grid;gap:.5rem}
.rates li{display:flex;align-items:center;justify-content:space-between;border-bottom:1px dashed #2a2a2a;padding:.5rem 0}
.notes{list-style:disc;margin:.25rem 1rem;color:#e8e8e8;display:grid;gap:.35rem}

.gallery{margin-top:2rem}
.gallery h2{font-family:Montserrat,Inter,sans-serif;letter-spacing:.1rem;text-transform:uppercase;font-size:1rem;color:#eaeaea}
.gallery .muted{color:var(--muted)}
.gallery .grid{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.5rem}
.gallery img{width:100%;height:260px;object-fit:cover;border-radius:12px;background:#222}

.footer{border-top:1px solid #1e1e1e;text-align:center;padding:2rem 1rem;color:var(--muted)}

@media (min-width:720px){
  .slideshow{min-height:86vh}
  .cards{grid-template-columns:1fr 1fr 1fr}
  .gallery .grid{grid-template-columns:repeat(4,1fr);}
  .gallery img{height:220px}
}
