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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
  background: #f7f7f7;
  line-height: 1.6;
}

.hero {
  min-height: 92vh;
  background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)), url('assets/gallery-2.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #d6ad3a;
  background: white;
}

.nav-links a {
  color: white;
  margin-left: 22px;
  text-decoration: none;
  font-weight: bold;
}

.hero-content {
  padding: 120px 8%;
  max-width: 780px;
}

.tagline {
  color: #d6ad3a;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 58px;
  line-height: 1.08;
  margin: 15px 0;
}

h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 19px;
  max-width: 640px;
}

.btn {
  display: inline-block;
  background: #d6ad3a;
  color: #111;
  padding: 14px 25px;
  margin-top: 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.btn.ghost {
  background: transparent;
  color: white;
  border: 2px solid white;
  margin-left: 12px;
}

.section {
  padding: 75px 8%;
}

.intro {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 45px;
  background: white;
}

.intro h2 {
  text-align: left;
}

.intro p {
  font-size: 18px;
}

.intro img {
  width: 100%;
  max-width: 280px;
  border-radius: 50%;
  justify-self: center;
  box-shadow: 0 12px 35px rgba(0,0,0,.15);
}

.cards, .pricing, .review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card, .price-card, .contact-box, .review {
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.card {
  border-top: 4px solid #d6ad3a;
}

.card h3, .price-card h3 {
  margin-bottom: 10px;
}

.gallery-section {
  background: #efefef;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 28px;
  color: #555;
}

.gallery {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
  break-inside: avoid;
  background: white;
}

.dark {
  background: #111;
  color: white;
}

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

.price-card {
  color: #111;
  text-align: center;
}

.featured {
  transform: scale(1.04);
  border: 3px solid #d6ad3a;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin: 12px 0;
  color: #111;
}

.reviews {
  background: white;
}

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

.review {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.contact {
  text-align: center;
}

.contact-box {
  max-width: 560px;
  margin: 25px auto 0;
}

.contact a {
  color: #111;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 28px;
}

footer img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 2px solid #d6ad3a;
}

@media (max-width: 900px) {
  h1 {
    font-size: 40px;
  }

  .cards, .pricing, .review-grid, .intro {
    grid-template-columns: 1fr;
  }

  nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    text-align: center;
  }

  .nav-links a {
    display: inline-block;
    margin: 6px 8px;
  }

  .btn.ghost {
    margin-left: 0;
    display: block;
    width: fit-content;
  }

  .featured {
    transform: none;
  }
}
