:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: #151515;
  --panel-2: #1b1b1b;
  --gold: #d4af37;
  --gold-soft: #f3df9a;
  --text: #f7f4ed;
  --muted: #b9b2a3;
  --line: rgba(212, 175, 55, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #060606 0%, #101010 45%, #080808 100%);
  color: var(--text);
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.navbar,
.hero-inner,
.section-heading,
.section-grid,
.services-grid,
.gallery-grid,
.testimonial-grid,
.contact-grid,
.footer-inner,
.page-hero-inner {
  width: var(--container);
  margin: 0 auto;
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 700;
}

.brand-text,
h1,
h2,
h3,
.eyebrow,
.page-title,
.hero-badge {
  font-family: "Cinzel", serif;
}

.brand-text {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.nav-links a,
.nav-cta,
.hero-badge {
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-cta.is-active {
  color: var(--gold-soft);
}

.nav-cta,
.button,
.whatsapp-button,
.sticky-book,
.floating-whatsapp {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.button,
.whatsapp-button,
.sticky-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
}

.nav-cta,
.button-primary,
.sticky-book {
  background: linear-gradient(135deg, #f4e3aa 0%, #be9327 100%);
  color: #141008;
  box-shadow: 0 16px 34px rgba(190, 147, 39, 0.22);
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.button:hover,
.nav-cta:hover,
.whatsapp-button:hover,
.sticky-book:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

section {
  padding: 88px 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding-top: 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.22) 100%),
    url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1600&q=80") center/cover;
  opacity: 0.93;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-badge,
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.hero-copy h1,
.page-title {
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 0.96;
  margin: 0;
}

.hero-copy p,
.page-hero-copy {
  color: rgba(247, 244, 237, 0.82);
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 44rem;
  margin: 18px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.card,
.service-card,
.gallery-card,
.testimonial-card,
.contact-card,
.feature-card,
.booking-card,
.info-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 12, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.booking-card,
.contact-card,
.info-card {
  padding: 30px;
}

.hero-card {
  padding: 30px;
}

.hero-card p,
.service-meta,
.muted,
.contact-card p,
.contact-card a,
.contact-card address,
.feature-card p,
.testimonial-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-stats,
.feature-grid,
.contact-grid,
.section-grid {
  display: grid;
  gap: 20px;
}

.hero-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.mini-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-stat strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  margin: 0;
  max-width: 14ch;
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 46rem;
}

.section-grid.two,
.contact-grid,
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.feature-card {
  padding: 22px;
}

.feature-card strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

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

.service-card {
  overflow: hidden;
}

.service-image {
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 26px;
}

.service-card h3,
.testimonial-card h3,
.contact-card h3,
.booking-card h3,
.info-card h3 {
  font-size: 1.7rem;
  color: var(--gold-soft);
  margin: 0 0 16px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.16);
  padding-bottom: 12px;
}

.service-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-price {
  color: var(--gold-soft);
  font-weight: 700;
  white-space: nowrap;
}

.booking-card form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-soft);
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 16px;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

select option {
  color: #111;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.whatsapp-button {
  background: #1fa855;
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 168, 85, 0.24);
}

.icon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wa-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--gold-soft);
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  height: 280px;
  object-fit: cover;
}

.gallery-caption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 26px;
}

.stars {
  color: #ffd85d;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.contact-list,
.seo-list {
  display: grid;
  gap: 16px;
}

.contact-item strong,
.seo-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.page-hero {
  padding-top: 116px;
  padding-bottom: 56px;
}

.page-hero-inner {
  padding: 48px 0 0;
}

.image-banner {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-banner img {
  height: 380px;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 28px 0 44px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 18px;
}

.social-links a:hover {
  color: var(--gold-soft);
}

.floating-whatsapp,
.sticky-book {
  position: fixed;
  right: 18px;
  z-index: 1100;
}

.floating-whatsapp {
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.floating-whatsapp .wa-icon {
  width: 24px;
  height: 24px;
}

.sticky-book {
  bottom: 92px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-inner,
  .section-grid.two,
  .contact-grid,
  .booking-grid,
  .services-grid,
  .gallery-grid,
  .testimonial-grid,
  .feature-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 74px;
  }

  .nav-links {
    display: none;
  }

  .image-banner img {
    height: 280px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .hero-copy h1,
  .page-title {
    font-size: 2.6rem;
  }

  .hero-actions,
  .booking-actions {
    display: grid;
    width: 100%;
  }

  .button,
  .nav-cta,
  .whatsapp-button,
  .sticky-book {
    width: 100%;
  }

  .sticky-book {
    left: 16px;
    right: 16px;
    bottom: 88px;
  }

  .floating-whatsapp {
    bottom: 18px;
  }
}
