/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,.9));
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 260px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* BUTTONS */
.cta-button {
  background: #c40000;
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 1.1rem;
}

/* TRUST */
.trust {
  padding: 40px 20px;
  text-align: center;
  background: #111;
}

/* BRAND */
.brand {
  padding: 50px 20px;
  text-align: center;
}

.brand h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

/* REEL */
.reel {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 20px;
}

.reel img {
  height: 220px;
  border-radius: 6px;
}

/* SERVICES */
.services {
  padding: 40px 20px;
  background: #111;
}

.services ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.services li {
  background: #1c1c1c;
  padding: 15px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
}

/* MAP */
.map {
  padding: 40px 20px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* FOOTER */
.final-cta {
  padding: 50px 20px 90px 20px; /* extra bottom space */
  text-align: center;
  background: #000;
}

/* STICKY CALL */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c40000;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-weight: 800;
  text-decoration: none;
  z-index: 999;
}

/* DESKTOP ENHANCEMENTS */
@media (min-width: 900px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .services ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .reel img {
    height: 320px;
  }
}

.tiktok-section {
  padding: 50px 20px;
  text-align: center;
  background: #000;
}

.tiktok-section h2 {
  font-family: 'Anton', sans-serif;
  margin-bottom: 10px;
}

.tiktok-section p {
  margin-bottom: 25px;
  color: #ccc;
}
