*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  margin:0;
  background:#111;
  color:#ddd;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:#f39c12}
.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}
header{
  background:#000;
  border-bottom:1px solid #333;
  position:sticky;
  top:0;
  z-index:1000;
}
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  min-width:0;
}
.brand img{
  height:56px;
  width:auto;
}
.brand span{
  font-size:1.2rem;
  font-weight:700;
  white-space:nowrap;
}
nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:14px;
}
nav a{
  color:#ddd;
  text-decoration:none;
  font-weight:bold;
}
nav a:hover{color:#f39c12}
.hero{
  min-height:560px;
  background:url('../images/bagger1.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:32px 20px;
}
.hero-overlay{
  background:rgba(0,0,0,0.75);
  padding:44px 28px;
  border-radius:14px;
  max-width:720px;
}
.hero h1{
  margin:0 0 12px;
  font-size:clamp(2rem,5vw,3.5rem);
  line-height:1.1;
}
.hero p{
  margin:0;
  font-size:clamp(1rem,2.6vw,1.3rem);
}
.btn{
  display:inline-block;
  margin-top:20px;
  background:#f39c12;
  color:#fff;
  padding:14px 24px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
}
.btn-secondary{
  background:#1f1f1f;
  border:1px solid #f39c12;
}
.section{
  padding:72px 20px;
  text-align:center;
}
.grey{background:#1a1a1a}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  max-width:1000px;
  margin:auto;
}
.card{
  background:#1c1c1c;
  padding:28px;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
}
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:15px;
  max-width:1000px;
  margin:auto;
}
.gallery img{
  width:100%;
  border-radius:8px;
  cursor:pointer;
  aspect-ratio:4/3;
  object-fit:cover;
}
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  max-width:1000px;
  margin:auto;
  text-align:left;
  align-items:start;
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.map iframe{
  width:100%;
  height:320px;
  border:0;
  border-radius:12px;
}
footer{
  background:#000;
  padding:30px;
  text-align:center;
  border-top:1px solid #333;
}
.fab-stack{
  position:fixed;
  right:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:1200;
}
.call-button,.whatsapp-button{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(0,0,0,0.35);
}
.call-button{
  background:#f39c12;
  color:#fff;
  font-size:24px;
}
.whatsapp-button{
  background:#25D366;
}
.whatsapp-button svg{
  width:28px;
  fill:#fff;
}
.mobile-action-bar{
  display:none;
}

@media (max-width: 900px){
  .header{
    flex-direction:column;
    align-items:flex-start;
  }
  nav{
    justify-content:flex-start;
  }
  .contact{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  body{
    padding-bottom:84px;
  }
  .container{
    padding:0 16px;
  }
  .header{
    padding:10px 0;
    gap:10px;
  }
  .brand img{
    height:42px;
  }
  .brand span{
    font-size:1rem;
    white-space:normal;
    line-height:1.2;
  }
  nav{
    width:100%;
    gap:10px 14px;
  }
  nav a{
    font-size:.95rem;
  }
  .hero{
    min-height:420px;
    padding:20px 14px;
  }
  .hero-overlay{
    padding:26px 18px;
  }
  .section{
    padding:52px 16px;
  }
  .grid,.gallery{
    grid-template-columns:1fr;
  }
  .map iframe{
    height:260px;
  }
  .fab-stack{
    display:none;
  }
  .mobile-action-bar{
    display:grid;
    grid-template-columns:1fr 1fr;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:1300;
    padding-bottom:env(safe-area-inset-bottom, 0);
    background:#000;
    border-top:1px solid #333;
  }
  .mobile-action-bar a{
    text-align:center;
    padding:14px 10px;
    text-decoration:none;
    font-weight:700;
    color:#fff;
  }
  .mobile-action-bar a:first-child{
    background:#d88708;
  }
  .mobile-action-bar a:last-child{
    background:#1fa851;
  }
}
