:root {
  --bg: #050506;
  --panel: #0d0d10;
  --panel-soft: #15151a;
  --text: #f7f3eb;
  --muted: #b9b1a4;
  --gold: #d7a84d;
  --gold-soft: #f6d783;
  --orange: #ff7b18;
  --blue: #1176ff;
  --purple: #a441d6;
  --line: rgba(246, 215, 131, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 168, 77, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(17, 118, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, #020203 0%, #09090b 44%, #030304 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 45%, rgba(215, 168, 77, 0.24), transparent 34rem),
    linear-gradient(180deg, #090806 0%, #040404 48%, #000 100%);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  height: min(100%, 90vh);
  object-fit: contain;
  border-radius: 8px;
  background: #050505;
  box-shadow:
    0 0 0 1px rgba(246, 215, 131, 0.24),
    0 26px 90px rgba(215, 168, 77, 0.18),
    0 30px 90px rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-video.is-ready {
  opacity: 1;
  filter: brightness(2.35) contrast(1.18) saturate(1.08);
}

.intro-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  gap: 14px;
  place-items: center;
  align-content: center;
  opacity: 0.92;
  pointer-events: none;
}

.intro-fallback img {
  width: min(52vw, 430px);
  max-height: 42vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.68);
}

.intro-fallback span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-play,
.intro-skip {
  position: absolute;
  bottom: clamp(16px, 4vw, 40px);
  z-index: 4;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(246, 215, 131, 0.55);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.58);
  font: 700 0.8rem/1 "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.intro-play {
  left: clamp(16px, 4vw, 44px);
}

.intro-skip {
  right: clamp(16px, 4vw, 44px);
}

.intro-play.is-hidden {
  display: none;
}

.intro-fallback.is-hidden {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(5, 5, 6, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.84rem;
}

.header-cta,
.button.primary {
  color: #120d03;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 44%, #8a5d16);
  box-shadow: 0 10px 34px rgba(215, 168, 77, 0.26);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: clamp(36px, 6vw, 86px) clamp(18px, 5vw, 72px);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 9% 4% -4%;
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: rotate(-2deg);
}

.hero-media img,
.hero-video {
  position: relative;
  width: min(100%, 590px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-video-wrap {
  display: grid;
  place-items: center;
}

.hero-video {
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 760px);
  object-fit: contain;
  background: #030303;
  border: 1px solid rgba(246, 215, 131, 0.22);
  filter: brightness(2.2) contrast(1.16) saturate(1.08);
}

.hero-video::-webkit-media-controls-panel {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}

.hero-stats span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-strip,
.packages,
.process,
.gallery,
.contact {
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.service-strip article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(246, 215, 131, 0.46);
  border-radius: 50%;
  color: var(--gold-soft);
}

.service-strip h2,
.section-heading h2,
.process-copy h2,
.contact h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-strip p,
.package-body p,
.process-copy p,
.contact p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

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

.package-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.package-card img {
  width: 100%;
  aspect-ratio: 0.67;
  object-fit: cover;
  object-position: top center;
}

.package-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.package-image-button img {
  transition: transform 0.24s ease, filter 0.24s ease;
}

.package-image-button:hover img {
  transform: scale(1.025);
  filter: contrast(1.06) saturate(1.04);
}

.package-body {
  padding: 20px;
}

.package-label {
  margin-bottom: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.package-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--text);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.package-card.gold {
  --accent: var(--gold);
  border-color: rgba(215, 168, 77, 0.48);
}

.package-card.orange {
  --accent: var(--orange);
  border-color: rgba(255, 123, 24, 0.48);
}

.package-card.blue {
  --accent: var(--blue);
  border-color: rgba(17, 118, 255, 0.48);
}

.package-card.purple {
  --accent: var(--purple);
  border-color: rgba(164, 65, 214, 0.48);
}

.package-label,
.package-card a {
  color: var(--accent);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background: linear-gradient(135deg, rgba(215, 168, 77, 0.12), rgba(17, 118, 255, 0.055), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.steps div {
  min-height: 122px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.gallery-image-button {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  object-fit: contain;
  background: #050505;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, filter 0.24s ease;
}

.gallery-image-button:hover img {
  transform: translateY(-3px);
  border-color: rgba(246, 215, 131, 0.5);
  filter: contrast(1.08) saturate(1.05);
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background: #070707;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #020202;
}

.footer img {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.footer p {
  margin: 0;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(246, 215, 131, 0.38);
  border-radius: 50%;
  color: #f7fff8;
  background: linear-gradient(135deg, #1fb857, #0e7d3a 58%, #07572a);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.46),
    0 0 30px rgba(31, 184, 87, 0.28);
  font-size: 0.88rem;
  font-weight: 900;
  max-width: 58px;
  min-width: 58px;
}

.whatsapp-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b3b1e;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(246, 215, 131, 0.26);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: clamp(8px, 2vw, 24px);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
}

.image-modal.is-open {
  display: grid;
}

.image-modal img {
  width: min(96vw, 1180px);
  max-height: 96vh;
  object-fit: contain;
  border: 1px solid rgba(246, 215, 131, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
}

.image-modal-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(246, 215, 131, 0.44);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.62);
  font: 800 0.78rem/1 "Montserrat", Arial, sans-serif;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-media {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand img {
    width: 58px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-stats,
  .service-strip,
  .process,
  .steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    min-height: 520px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card img {
    aspect-ratio: 0.78;
  }

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

  .footer p {
    text-align: left;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px !important;
    bottom: 14px !important;
    width: 56px !important;
    max-width: 56px !important;
    min-width: 56px !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    flex: 0 0 56px !important;
  }

  .whatsapp-icon {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body .whatsapp-float,
body a.whatsapp-float {
  width: 56px !important;
  max-width: 56px !important;
  min-width: 56px !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  flex: 0 0 56px !important;
}
