:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: #171717;
  --text: #f5e7c8;
  --text-soft: #d4c097;
  --gold: #d4af37;
  --gold-strong: #f0cf60;
  --line: rgba(212, 175, 55, 0.3);
  --radius: 18px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Urbanist", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% -10%, rgba(212, 175, 55, 0.18), transparent 38%),
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.12), transparent 34%), var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

.glow {
  position: fixed;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  filter: blur(14px);
}

.glow-left {
  top: 60px;
  left: -120px;
}

.glow-right {
  bottom: 30px;
  right: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7, 7, 7, 0.86);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 150px;
  max-width: 42vw;
  height: auto;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-strong);
  border-color: var(--line);
  background: rgba(212, 175, 55, 0.08);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--gold-strong);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
}

.page-wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

section {
  margin: 76px 0;
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.3px;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.12;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--gold-strong);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.8px;
  font-size: 0.72rem;
}

.hero p {
  max-width: 66ch;
  color: var(--text-soft);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #b98a18, var(--gold));
  color: #0c0b08;
}

.btn-outline {
  color: var(--gold-strong);
  border-color: var(--line);
  background: transparent;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links-footer {
  justify-content: center;
  margin: 0 0 10px;
}

.social-links-footer a {
  color: var(--gold-strong);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

.image-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
}

.image-showcase-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.image-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 456px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05);
}

.slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.slideshow-track {
  position: relative;
  min-height: 420px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.slide.active {
  opacity: 1;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.65);
  color: var(--gold-strong);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.slide-prev {
  left: 12px;
}

.slide-next {
  right: 12px;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.slide-dot.active {
  background: var(--gold-strong);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.03)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel p,
.panel li {
  color: var(--text-soft);
}

.contact-panel {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03)),
    #101010;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.contact-details p {
  margin: 0;
}

.contact-link {
  color: var(--gold-strong);
  text-decoration: none;
  font-weight: 800;
  word-break: break-word;
}

.contact-link:hover {
  text-decoration: underline;
}

.price {
  color: var(--gold-strong);
  font-weight: 800;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  color: var(--text);
  font: inherit;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-policy {
  display: grid;
  gap: 8px;
}

details summary {
  cursor: pointer;
  color: var(--gold-strong);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 24px 5vw;
  color: var(--text-soft);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.1s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.2s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 5vw;
    width: min(300px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #0d0d0d;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
  }

  .nav.open {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .image-showcase,
  .image-showcase-two {
    grid-template-columns: 1fr;
  }

  .image-showcase {
    grid-auto-rows: auto;
  }

  .image-card-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .slideshow,
  .slideshow-track {
    min-height: 300px;
  }
}
