* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.6;
}

/* NAVBAR */

.navbar {
  width: 100%;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #030303;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 105px;
  width: auto;
  display: block;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 34px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: #c9a44c;
}

/* HERO */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.95),
      rgba(0,0,0,.60),
      rgba(0,0,0,.25)
    ),
    url("images/hero.png");
  background-size: cover;
  background-position: center right;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  color: #c9a44c;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: bold;
  margin-bottom: 14px;
}

.brand-eyebrow {
  color: #c9a44c;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 18px;
}

h1 {
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 900;
}

h2 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-text {
  font-size: 1.1rem;
  color: #d6d6d6;
  max-width: 560px;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
  margin-right: 12px;
  transition: 0.2s ease;
}

.primary {
  background: #c9a44c;
  color: #050505;
}

.secondary {
  border: 1px solid #c9a44c;
  color: #c9a44c;
}

.btn:hover {
  transform: translateY(-2px);
}

/* FEATURES */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #222;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.feature {
  background: #090909;
  padding: 35px 28px;
}

.feature h3 {
  margin-bottom: 12px;
}

.feature p {
  color: #bdbdbd;
}

/* SECTIONS */

.section {
  padding: 85px 8%;
}

.section h2 {
  text-align: center;
}

.section .eyebrow {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: -15px auto 42px;
  color: #bdbdbd;
  font-size: 1rem;
}

/* SERVICES */

.cards {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 6px 4px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cards::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 390px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, #141414, #080808);
  border: 1px solid #2f2f2f;
  padding: 32px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #c9a44c;
}

.featured-card {
  border-color: #c9a44c;
}

.service-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid #c9a44c;
  color: #c9a44c;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.card h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.price {
  color: #c9a44c;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 2px;
}

.duration {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.card ul {
  padding-left: 18px;
  margin: 20px 0;
}

.card li {
  margin-bottom: 9px;
  color: #d0d0d0;
  font-size: 0.95rem;
}

.card-btn {
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  padding: 13px 18px;
  border: 1px solid #c9a44c;
  color: #c9a44c;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.card-btn:hover {
  background: #c9a44c;
  color: #050505;
}

/* GALLERY */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border: 1px solid #2c2c2c;
}

/* CONTACT */

.contact {
  padding: 85px 8%;
  background: #101010;
  border-top: 1px solid #222;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 45px;
  align-items: center;
}

.contact h2 {
  font-size: 3rem;
}

.contact p {
  color: #d0d0d0;
}

.contact-box {
  border: 1px solid #c9a44c;
  padding: 30px;
  background: #060606;
}

.contact-box p {
  margin-bottom: 16px;
}

.contact-box a {
  color: #c9a44c;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* FOOTER */

footer {
  padding: 28px;
  text-align: center;
  background: #030303;
  color: #777;
  border-top: 1px solid #222;
}

/* MOBILE */

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
  }

  .logo img {
    height: 85px;
  }

  .nav-links a {
    margin: 0 10px;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 80vh;
    background-position: center;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2,
  .contact h2 {
    font-size: 2.1rem;
  }

  .features,
  .gallery,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .card {
    flex: 0 0 320px;
    min-height: 620px;
  }

  .gallery img {
    height: 260px;
  }
}
.services-wrapper {
  position: relative;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 50px;
  height: 50px;

  border: 1px solid #c9a44c;
  background: rgba(0,0,0,0.85);
  color: #c9a44c;

  font-size: 2rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.scroll-btn:hover {
  background: #c9a44c;
  color: #050505;
}

.scroll-btn.left {
  left: -25px;
}

.scroll-btn.right {
  right: -25px;
}