:root {
  --bg: #08090d;
  --bg-soft: #0f1118;
  --panel: #12151e;
  --card: rgba(255,255,255,.052);
  --line: rgba(255,255,255,.11);
  --text: #f8f8fa;
  --muted: #a9adb8;
  --red: #ff3b2f;
  --red-deep: #c91d17;
  --orange: #ff8a34;
  --cyan: #54dfff;
  --green: #25d366;
  --radius: 24px;
  --shadow: 0 24px 75px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 9% -8%, rgba(255,59,47,.13), transparent 28rem),
    radial-gradient(circle at 93% 8%, rgba(84,223,255,.08), transparent 27rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.viewer-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 9px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(8,9,13,.84);
  backdrop-filter: blur(20px);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 76px; height: 56px; object-fit: contain; filter: drop-shadow(0 7px 15px rgba(0,0,0,.5)); }
.brand-copy { display: grid; line-height: 1.06; }
.brand-copy strong { letter-spacing: .04em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .65rem; letter-spacing: .12em; }

.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { color: var(--muted); font-size: .94rem; font-weight: 700; }
.main-nav a:hover { color: var(--text); }
.menu-button { display: none; border: 0; background: transparent; font-size: 1.55rem; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: 76px clamp(20px, 6vw, 96px) 82px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 14%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255,59,47,.13);
  filter: blur(90px);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 {
  margin-bottom: 23px;
  font-size: clamp(3rem, 6.6vw, 6.3rem);
  letter-spacing: -.066em;
}
h1 span {
  background: linear-gradient(90deg, #fff 4%, #ff9587 45%, var(--red) 82%, var(--orange));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-text { max-width: 660px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.button-primary {
  border-color: transparent;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 13px 36px rgba(255,59,47,.25);
}
.button-secondary { background: rgba(255,255,255,.055); }
.full { width: 100%; }

.hero-highlights { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; }
.hero-highlights div { display: grid; }
.hero-highlights strong { font-size: 1.02rem; }
.hero-highlights span { color: var(--muted); font-size: .81rem; }

.hero-media {
  position: relative;
  z-index: 2;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: #111;
  box-shadow: 0 34px 90px rgba(0,0,0,.53), 0 0 0 1px rgba(255,59,47,.08);
  transform: rotate(1deg);
}
.hero-media > img:first-child { width: 100%; height: 510px; object-fit: cover; object-position: center; }
.hero-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,6,10,.04), rgba(5,6,10,.10) 48%, rgba(5,6,10,.88)),
    linear-gradient(90deg, rgba(255,59,47,.14), transparent 40%);
}
.hero-logo {
  position: absolute;
  top: 18px;
  right: 18px;
  width: min(34%, 175px);
  max-height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(0,0,0,.65));
}
.hero-media figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: grid;
  gap: 2px;
}
.hero-media figcaption span { color: #ff8279; font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.hero-media figcaption strong { font-size: clamp(1.1rem, 2vw, 1.45rem); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 46px;
  padding: 20px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #dedfe5;
  background: rgba(255,255,255,.025);
  font-size: .86rem;
  font-weight: 800;
}

.section { padding: 92px clamp(20px, 6vw, 96px); }
.section-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
}
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading h2, .about-strip h2, .booking-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  letter-spacing: -.048em;
}
.section-heading > p:last-child, .about-strip > p, .booking-copy > p:last-child { color: var(--muted); }

.card-grid, .package-grid { display: grid; gap: 18px; }
.card-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .package-card, .booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.service-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,59,47,.07);
}
.service-number {
  margin-bottom: 40px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .16em;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { margin-bottom: 0; color: var(--muted); }

.package-grid { grid-template-columns: repeat(3, 1fr); }
.package-card { position: relative; padding: 30px; }
.package-card.featured {
  border-color: rgba(255,59,47,.52);
  background: linear-gradient(180deg, rgba(255,59,47,.10), rgba(255,255,255,.035));
}
.package-badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-size: .69rem;
  font-weight: 900;
}
.package-type { margin: 0 0 18px; color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .17em; }
.price { font-size: 2.15rem; font-weight: 950; letter-spacing: -.045em; }
.price small { color: var(--muted); font-size: .78rem; font-weight: 600; letter-spacing: normal; }
.package-card ul { min-height: 150px; padding-left: 19px; color: var(--muted); }
.package-card li { margin-bottom: 10px; }
.fine-print { margin: 19px 0 0; color: var(--muted); font-size: .82rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 300px 300px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-wide { grid-row: 1 / 3; }
.gallery-tall img { object-position: center 54%; }
.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 2px;
  padding: 54px 23px 20px;
  text-align: left;
  background: linear-gradient(transparent, rgba(4,5,8,.94));
}
.gallery-overlay strong { font-size: 1.05rem; }
.gallery-overlay small { color: var(--muted); }

.video-section { overflow: hidden; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.video-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.video-card[hidden] { display: none; }
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #030407;
}
.video-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
}
.video-caption span {
  color: var(--red);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.video-caption strong { font-size: .92rem; }
.video-more {
  display: flex;
  width: min(100%, 340px);
  margin: 28px auto 0;
}
.video-more[hidden] { display: none; }
.video-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .78rem;
}

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 52px;
}
.booking-section { padding-top: 32px; }
.booking-card {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 52px;
  padding: clamp(28px, 5vw, 62px);
  background:
    radial-gradient(circle at 88% 5%, rgba(255,59,47,.15), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.booking-form label {
  display: grid;
  gap: 7px;
  color: #dedfe5;
  font-size: .82rem;
  font-weight: 800;
}
.booking-form input, .booking-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--text);
  background: rgba(5,6,10,.65);
}
.booking-form input:focus, .booking-form select:focus { border-color: rgba(255,59,47,.7); }
.booking-form select option { color: #111; }
.booking-form .button, .direct-call { grid-column: 1 / -1; }
.direct-call { text-align: center; color: var(--muted); font-weight: 800; }

.image-viewer {
  width: min(94vw, 1100px);
  max-height: 90vh;
  padding: 0;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 23px;
  overflow: hidden;
  background: #07080b;
  box-shadow: 0 40px 120px rgba(0,0,0,.8);
}
.image-viewer::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.image-viewer img { width: 100%; max-height: 88vh; object-fit: contain; }
.viewer-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  cursor: pointer;
  color: white;
  background: rgba(5,6,10,.8);
  font-size: 1.7rem;
}

.install-button {
  position: fixed;
  z-index: 65;
  left: 18px;
  bottom: 18px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 14px 40px rgba(0,0,0,.42);
  font-weight: 900;
}
.floating-whatsapp {
  position: fixed;
  z-index: 65;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #06150a;
  background: var(--green);
  box-shadow: 0 15px 40px rgba(37,211,102,.24);
  font-weight: 950;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
}
footer img { width: 68px; height: 50px; object-fit: contain; }
footer div { display: grid; line-height: 1.35; }
footer strong { color: var(--text); }
.footer-link { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.legal-page {
  min-height: 100vh;
  padding: 48px clamp(20px, 6vw, 96px) 72px;
  background: var(--bg);
}
.legal-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.legal-card h1 { margin: 18px 0 8px; font-size: clamp(2rem, 6vw, 4rem); }
.legal-card h2 { margin: 30px 0 10px; font-size: 1.3rem; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.75; }
.legal-card a { color: var(--text); }
.legal-card .button { margin-bottom: 10px; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy { max-width: 900px; }
  .hero-media { min-height: 470px; transform: none; }
  .hero-media > img:first-child { height: 470px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid { grid-template-columns: 1fr; }
  .package-card ul { min-height: auto; }
  .about-strip, .booking-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { min-height: 70px; }
  .brand img { width: 66px; height: 48px; }
  .brand-copy strong { font-size: .91rem; }
  .brand-copy small { display: none; }
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(8,9,13,.98);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px; }
  .hero { min-height: auto; padding-top: 48px; }
  h1 { font-size: clamp(2.75rem, 13.8vw, 4.6rem); }
  .hero-actions .button { width: 100%; }
  .hero-highlights { gap: 17px 24px; }
  .hero-media, .hero-media > img:first-child { min-height: 330px; height: 330px; }
  .hero-media { border-radius: 22px; }
  .hero-logo { width: 31%; }
  .trust-strip { justify-content: flex-start; gap: 10px 22px; }
  .section { padding-block: 70px; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item, .gallery-wide { grid-row: auto; min-height: 285px; }
  .gallery-tall { min-height: 430px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { border-radius: 17px; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form .button, .direct-call { grid-column: auto; }
  footer { grid-template-columns: auto 1fr; }
  footer p { grid-column: 1 / -1; margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
