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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #f7efe3;
  background: #0d0a07;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7%;
  background: rgba(13, 10, 7, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #7b5b16);
  color: #0d0a07;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: #eadcc7;
  font-weight: 600;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, #d4af37, #9d7420);
  color: #120d07 !important;
  border: 0;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  color: #f7efe3;
  font-size: 30px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: 88vh;
  padding: 80px 7%;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.22), transparent 34%),
    linear-gradient(135deg, #0d0a07 0%, #1d140b 100%);
}

.eyebrow {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 700px;
  font-size: clamp(42px, 7vw, 82px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 18px;
}

h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.hero-text,
.section-heading p,
.split-section p,
.contact-card p {
  color: #d9cbb8;
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #f7efe3;
}

.hero-card,
.package-box,
.contact-card,
.service-card {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.hero-card {
  overflow: hidden;
}

.hero-main-photo {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: #1d140b;
}

.hero-card-footer {
  padding: 22px;
}

.hero-card-footer span {
  display: block;
  color: #d9cbb8;
  margin-top: 6px;
}

.section,
.split-section,
.contact-section {
  padding: 90px 7%;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 28px;
}

.service-card span {
  display: inline-block;
  font-size: 34px;
  margin-bottom: 14px;
}

.service-card p,
.package-box li,
.check-list li,
.contact-details {
  color: #d9cbb8;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  background: #140f09;
}

.check-list {
  list-style: none;
  margin: 28px 0;
}

.check-list li {
  margin-bottom: 10px;
}

.check-list li::before {
  content: "✓";
  color: #d4af37;
  font-weight: 900;
  margin-right: 10px;
}

.package-box {
  padding: 34px;
}

.package-box ul {
  padding-left: 20px;
  margin-top: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  background: #1d140b;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.contact-section {
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.18), transparent 38%),
    #0d0a07;
}

.contact-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px;
  text-align: center;
}

.contact-details {
  margin-top: 28px;
}

.contact-details p {
  margin-bottom: 8px;
}

.footer {
  padding: 26px 7%;
  text-align: center;
  color: #bba98e;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #9d7420);
  color: #120d07;
  font-weight: 900;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 7%;
    right: 7%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 22px;
    background: #171008;
    border: 1px solid rgba(212, 175, 55, 0.22);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 54px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 15px 5%;
  }

  .hero,
  .section,
  .split-section,
  .contact-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-main-photo {
    height: 340px;
  }

  .gallery-photo {
    height: 320px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .button {
    width: 100%;
  }

  .floating-whatsapp {
    left: 18px;
    text-align: center;
  }
}
