:root {
  --bg: #2a1041;
  --accent: #0ebab5;
  --text: #f5ffff;
  --ink: #16333d;
  --glass: rgba(14, 186, 181, 0.2);
  --ring: rgba(255, 255, 255, 0.52);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(14, 186, 181, 0.18), transparent 27rem),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.08), transparent 18rem),
    linear-gradient(145deg, #170922 0%, var(--bg) 46%, #210735 100%);
}

.stage::after {
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(14, 186, 181, 0.17), transparent);
}

.bubble-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -12vh;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  opacity: 0;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.92) 0 8%, transparent 9%),
    radial-gradient(circle at 68% 72%, rgba(14, 186, 181, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset -8px -10px 22px rgba(14, 186, 181, 0.12),
    inset 6px 8px 18px rgba(255, 255, 255, 0.15);
  animation: rise var(--d) linear var(--delay) infinite;
}

@keyframes rise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  8%,
  78% {
    opacity: var(--o);
  }
  100% {
    transform: translate3d(var(--drift), -122vh, 0) scale(1.08);
    opacity: 0;
  }
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
}

.logo-wrap {
  display: grid;
  place-items: center;
  width: min(42vw, 330px);
  transform: translateY(0);
}

.main-logo {
  width: min(42vw, 330px);
  max-width: min(42vw, 330px);
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.45));
}

.logo-wrap picture {
  display: contents;
}

.tagline {
  position: absolute;
  top: calc(50% + 226px);
  left: 50%;
  width: min(560px, 90vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
}

.orbit-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-button,
.lang-bubble {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: white;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.85) 0 8%, transparent 9%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.26), transparent 46%),
    var(--accent);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.2),
    0 15px 35px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.orbit-button:hover,
.lang-bubble:hover,
.orbit-button:focus-visible,
.lang-bubble:focus-visible {
  outline: 0;
  transform: translateY(-8px) scale(1.13);
  filter: saturate(1.2) brightness(1.05);
  box-shadow:
    inset 0 0 26px rgba(255, 255, 255, 0.32),
    0 24px 54px rgba(0, 0, 0, 0.48);
}

.orbit-button {
  position: absolute;
  width: 94px;
  height: 94px;
  pointer-events: auto;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.button-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--bg);
  font-size: 2.45rem;
  line-height: 1;
}

.button-icon svg {
  width: 45%;
  height: 45%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-label {
  position: absolute;
  left: calc(100% + 1rem);
  top: 50%;
  display: block;
  min-width: 10rem;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: left;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.46);
  text-transform: uppercase;
  transform: translateY(-50%);
  pointer-events: none;
}

.orbit-button:hover .button-label,
.orbit-button:focus-visible .button-label {
  color: white;
}

.orbit-info {
  top: calc(50% - 178px);
  right: calc(50% - 350px);
}

.orbit-how {
  top: calc(50% - 47px);
  right: calc(50% - 430px);
}

.orbit-gallery {
  right: calc(50% - 350px);
  bottom: calc(50% - 178px);
}

.whatsapp-float {
  position: fixed;
  z-index: 1000;
  right: clamp(1rem, 3vw, 2rem) !important;
  bottom: clamp(1rem, 3vw, 2rem) !important;
  left: auto !important;
  top: auto !important;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: white;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  outline: 0;
  transform: translateY(-5px) scale(1.08);
  filter: saturate(1.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.language-dock {
  position: fixed;
  z-index: 4;
  top: 50%;
  left: clamp(0.8rem, 2vw, 1.5rem);
  display: grid;
  gap: 0.75rem;
  transform: translateY(-50%);
}

.lang-bubble {
  width: 54px;
  height: 54px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
}

.active-lang {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.34),
    inset 0 0 18px rgba(255, 255, 255, 0.24),
    0 15px 35px rgba(0, 0, 0, 0.32);
}

.modal-layer {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-layer[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 4, 21, 0.62);
  backdrop-filter: blur(10px);
}

.modal {
  position: relative;
  display: none;
  grid-template-columns: minmax(0, 1.02fr) minmax(190px, 0.82fr);
  gap: clamp(0.8rem, 3vw, 1.5rem);
  align-items: center;
  width: min(760px, 94vw);
  max-height: min(760px, 92svh);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  color: var(--bg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    var(--accent);
  box-shadow: var(--shadow);
}

.modal.active {
  display: grid;
}

.modal-wide {
  grid-template-columns: 1fr;
  width: min(940px, 94vw);
}

.modal-text {
  grid-template-columns: 1fr;
  width: min(790px, 94vw);
}

.modal-close {
  position: sticky;
  z-index: 3;
  top: 0;
  justify-self: end;
  grid-column: 1 / -1;
  width: 42px;
  height: 42px;
  margin: -0.7rem -0.7rem -0.25rem auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: white;
  background: rgba(42, 16, 65, 0.72);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.modal h2 {
  margin: 0 0 0.65rem;
  color: var(--bg);
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  line-height: 1;
}

.modal p,
.modal li {
  color: var(--bg);
  font-size: clamp(0.96rem, 2.2vw, 1.08rem);
  line-height: 1.4;
}

.modal ol {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.modal ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.lead {
  margin-top: 0;
  font-weight: 850;
}

.address {
  margin-bottom: 0.5rem;
  font-weight: 750;
}

.hours-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 620px);
  min-height: 78px;
  margin: 0.45rem 0 0.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(42, 16, 65, 0.22);
  border-radius: 0;
  color: var(--bg);
  background: rgba(255, 255, 255, 0.42);
  font-weight: 950;
  text-align: center;
}

.price-list {
  columns: 2;
}

.action-link,
.file-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 0.6rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(42, 16, 65, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(42, 16, 65, 0.82);
  font-weight: 850;
  text-decoration: none;
}

.file-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.modal-figure {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.28));
}

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

.gallery-grid picture,
.gallery-grid img {
  width: 100%;
}

.gallery-grid picture {
  display: block;
}

.gallery-grid img {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

@media (max-width: 760px) {
  body {
    overflow: hidden;
  }

  .hero {
    align-items: center;
    padding: 5.7rem 1rem 2rem;
  }

  .logo-wrap {
    width: min(56vw, 230px);
  }

  .main-logo {
    width: min(56vw, 230px);
    max-width: min(56vw, 230px);
    transform: none;
  }

  .tagline {
    top: calc(50% + 148px);
    width: min(330px, 84vw);
    font-size: 0.95rem;
  }

  .orbit-nav {
    position: fixed;
    z-index: 5;
    top: 0.7rem;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    padding-inline: 0.7rem;
    pointer-events: auto;
  }

  .orbit-button {
    position: static;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    font-size: 0;
  }

  .button-label {
    display: none;
  }

  .button-icon {
    font-size: 1.55rem;
  }

  .button-icon svg {
    width: 48%;
    height: 48%;
  }

  .language-dock {
    top: auto;
    bottom: 1rem;
    left: 1rem;
    grid-auto-flow: column;
    transform: none;
  }

  .lang-bubble {
    width: 44px;
    height: 44px;
    font-size: 0.76rem;
  }

  .modal {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: min(340px, 92vw);
    padding: 1rem;
  }

  .modal p,
  .modal li {
    font-size: 0.94rem;
  }

  .hours-highlight {
    min-height: 64px;
  }

  .price-list {
    columns: 1;
  }

  .modal-figure {
    order: -1;
    max-height: 160px;
  }

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

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble {
    animation: none;
    opacity: 0.22;
  }

  .orbit-button,
  .lang-bubble {
    transition: none;
  }
}
