:root {
  --bg: #060606;
  --bg-soft: #111111;
  --text: #f7f7f7;
  --muted: #c8c8c8;
  --gold: #c59a52;
  --line: #2a2a2a;
  --glass: rgba(255, 255, 255, 0.03);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 10% -10%, rgba(197, 154, 82, 0.12), transparent 30%);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  background: radial-gradient(circle at top right, #1f1f1f, #070707 60%);
  border-bottom: 1px solid var(--line);
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.2), rgba(197, 154, 82, 0));
  filter: blur(8px);
  animation: floatGlow 7s ease-in-out infinite;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -2;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(95deg, #fff, #d9b176);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-wrap:hover .logo {
  transform: rotate(-8deg) scale(1.05);
}

.hero-content {
  padding: 3rem 0 4rem;
  max-width: 760px;
  animation: fadeUp 0.9s ease;
}

.badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0.8rem 0;
  line-height: 1.18;
  letter-spacing: 0.3px;
}

h2 {
  font-size: 1.6rem;
  margin: 0 0 1rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 55%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

p {
  color: var(--muted);
}

.section {
  padding: 3.2rem 0;
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  background: linear-gradient(165deg, var(--glass), rgba(255, 255, 255, 0));
  backdrop-filter: blur(3px);
  transform: translateY(0) scale(1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 154, 82, 0.6);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(197, 154, 82, 0.12);
}

.card h3 {
  margin-top: 0;
  color: var(--gold);
}

.cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.35s ease;
}

.gallery img:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(197, 154, 82, 0.6);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  padding: 1rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

.map-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.map-head h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1rem, 2.3vw, 1.25rem);
}

.map-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.map-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: contrast(1.03) saturate(1.05);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid rgba(9, 9, 9, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(197, 154, 82, 0.22);
}

.map-pin span {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(197, 154, 82, 0.55);
  animation: mapPulse 1.8s ease-out infinite;
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
}

.promo-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
}

.promo-content h3 {
  margin: 0.7rem 0 0.55rem;
  font-size: clamp(1.1rem, 2.6vw, 1.65rem);
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.25s ease;
}

.hours li:hover {
  background: #1b1b1b;
}

.hours li:last-child {
  border-bottom: none;
}

.btn {
  display: inline-block;
  background: linear-gradient(130deg, #d2ad72, var(--gold));
  color: #111;
  text-decoration: none;
  padding: 0.7rem 1.02rem;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 154, 82, 0.2);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 1px solid #3a3a3a;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

a {
  color: var(--gold);
}

.small {
  font-size: 0.92rem;
}

.ticket-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.ticket-form-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  padding: 1.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.ticket-form-large label {
  margin: 0;
}

.ticket-full {
  grid-column: 1 / -1;
}

.ticket-check {
  display: flex !important;
  align-items: center;
  gap: 0.65rem !important;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.ticket-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.ticket-check .check-ui {
  width: 20px;
  height: 20px;
  border: 1px solid #525252;
  border-radius: 6px;
  background: #0f0f0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.ticket-check .check-ui::after {
  content: "";
  width: 9px;
  height: 5px;
  border: 2px solid transparent;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) scale(0.75);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ticket-check:hover {
  border-color: rgba(197, 154, 82, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.ticket-check input:focus-visible + .check-ui {
  box-shadow: 0 0 0 3px rgba(197, 154, 82, 0.25);
}

.ticket-check input:checked + .check-ui {
  background: linear-gradient(145deg, #d2ad72, var(--gold));
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}

.ticket-check input:checked + .check-ui::after {
  border-color: #141414;
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.ticket-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--text);
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101010;
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 154, 82, 0.15);
}

.feedback-success {
  color: #8ee5a1;
}

.feedback-error {
  color: #ff9f9f;
}

footer {
  padding: 1rem 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

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

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

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(197, 154, 82, 0.8);
  backdrop-filter: blur(1px);
}

body.cursor-active,
body.cursor-active a,
body.cursor-active button {
  cursor: none;
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 50px;
  height: 50px;
  border-color: rgba(245, 245, 245, 0.9);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes mapPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.95;
  }
  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav {
    gap: 0.8rem;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .ticket-form-large {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 900px) {
  .promo-card {
    grid-template-columns: 1fr;
  }
}

/* Modals (zoom galerie + details services) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.is-open {
  display: flex;
  animation: modalFadeIn 0.18s ease both;
}

.modal-content {
  width: min(980px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
}

.modal-overlay.is-open .modal-content {
  animation: modalPop 0.22s ease both;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.modal-close:hover {
  border-color: rgba(197, 154, 82, 0.65);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.modal-image img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #0a0a0a;
  display: block;
}

.modal-caption {
  padding: 0.9rem 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-service {
  padding: 1.2rem 1.2rem 1.1rem;
}

.modal-service-body {
  color: var(--muted);
  line-height: 1.6;
}

.modal-service-body p {
  margin: 0.55rem 0;
}

.modal-service-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalPop {
  from {
    transform: scale(0.98) translateY(8px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay.is-open,
  .modal-overlay.is-open .modal-content {
    animation: none !important;
  }
}

@media (max-width: 560px) {
  .modal-content {
    border-radius: 14px;
  }
}
