.page-contact {
  --contact-accent: #8A2BE2;
  --contact-soft: #C8B6FF;
  --contact-gold: #FFD700;
  --contact-card: #121A3A;
  background:
    radial-gradient(900px 320px at 88% -2%, rgba(138, 43, 226, 0.16), transparent 62%),
    radial-gradient(720px 260px at 0% 18%, rgba(255, 215, 0, 0.05), transparent 55%),
    var(--c-bg);
  overflow-x: hidden;
  font-family: var(--font-serif);
}
.page-contact h1,
.page-contact h2,
.page-contact h3,
.page-contact address {
  font-family: var(--font-sans);
}

.contact-breadcrumb {
  padding-top: clamp(24px, 4vw, 44px);
}
.contact-breadcrumb .breadcrumb__list {
  margin: 0;
}

.contact-hero {
  padding-top: calc(var(--gutter) * 0.6);
}

.contact-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 182, 255, 0.18);
  background: linear-gradient(135deg, rgba(18, 26, 58, 0.97), rgba(10, 14, 39, 0.94)), var(--contact-card);
  box-shadow:
    0 0 0 1px rgba(138, 43, 226, 0.18),
    0 0 44px rgba(138, 43, 226, 0.14),
    0 30px 70px rgba(2, 6, 23, 0.5);
}
.contact-card__mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.28;
  pointer-events: none;
}
.contact-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: calc(var(--gutter) * 0.6);
  padding: clamp(28px, 4vw, 62px);
}
.contact-card__copy {
  min-width: 0;
}
.contact-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.contact-card__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
}
.contact-card__title {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 52px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--c-white);
}
.contact-card__lead {
  max-width: 56ch;
  margin: 16px 0 30px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-muted);
}

.contact-list {
  display: grid;
  gap: 14px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(10, 14, 39, 0.55);
  border: 1px solid rgba(200, 182, 255, 0.12);
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}
.contact-item:hover,
.contact-item:focus-within {
  background: rgba(18, 26, 58, 0.85);
  border-color: rgba(138, 43, 226, 0.5);
  transform: translateY(-2px);
}
.contact-item__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(138, 43, 226, 0.18);
  color: var(--c-purple-soft);
}
.contact-item__body {
  min-width: 0;
}
.contact-item__label {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-muted);
}
.contact-item__value {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-item__value--mail {
  color: var(--c-purple-soft);
  border-bottom: 2px solid rgba(138, 43, 226, 0.65);
}
.contact-item__value--mail:hover,
.contact-item__value--mail:focus {
  color: var(--c-white);
}
.contact-item__value--phone {
  color: var(--c-gold);
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.34);
}
.contact-item__value--phone:hover,
.contact-item__value--phone:focus {
  color: var(--c-white);
  text-shadow: 0 0 32px rgba(255, 215, 0, 0.5);
}
.contact-item__hint {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--c-muted);
}

.contact-card__visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 12px;
  border-radius: 210px 24px 24px 24px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 215, 0, 0.05)), rgba(6, 9, 24, 0.4);
  border: 1px solid rgba(200, 182, 255, 0.14);
}
.contact-diagram {
  display: block;
  width: min(100%, 420px);
  height: auto;
}
.contact-orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.8), transparent 70%);
  pointer-events: none;
}
.contact-orb--gold {
  width: 12px;
  height: 12px;
  top: 22%;
  left: 24%;
  background-color: var(--c-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: yzContactOrbFloat 7s ease-in-out infinite;
}
.contact-orb--purple {
  width: 8px;
  height: 8px;
  top: 38%;
  right: 20%;
  background-color: var(--c-purple);
  box-shadow: 0 0 16px rgba(138, 43, 226, 0.7);
  animation: yzContactOrbFloat 8s 1.2s ease-in-out infinite;
}
.contact-orb--green {
  width: 6px;
  height: 6px;
  bottom: 24%;
  left: 16%;
  background-color: var(--c-green);
  box-shadow: 0 0 14px rgba(0, 229, 160, 0.6);
  animation: yzContactOrbFloat 6s 0.6s ease-in-out infinite;
}

.contact-tickets,
.contact-phone,
.contact-location,
.contact-guide,
.contact-faq,
.contact-entry,
.contact-trust {
  padding: clamp(48px, 7vw, 90px) 0;
}
.contact-tickets {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.6), rgba(10, 14, 39, 0.2));
}
.contact-tickets .section-head,
.contact-location .section-head,
.contact-guide .section-head {
  max-width: 680px;
}
.tickets-grid {
  display: grid;
  gap: 26px;
  margin-top: 36px;
}
.tickets-steps {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ticketStep;
}
.tickets-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--c-card);
  border: 1px solid var(--c-line);
  transition: border-color var(--ease), transform var(--ease);
}
.tickets-steps li:hover {
  border-color: rgba(138, 43, 226, 0.45);
  transform: translateY(-2px);
}
.tickets-steps li span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(138, 43, 226, 0.24);
  color: var(--c-purple-soft);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 13px;
}
.tickets-steps li p {
  margin: 0;
  line-height: 1.7;
  color: var(--c-ink);
}
.tickets-mail {
  align-self: start;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(138, 43, 226, 0.16), rgba(18, 26, 58, 0.92));
  border: 1px solid rgba(138, 43, 226, 0.3);
}
.tickets-mail h3 {
  margin: 0 0 16px;
  font-size: 20px;
  color: var(--c-white);
}
.tickets-mail__link {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--c-purple-soft);
  text-decoration-color: rgba(138, 43, 226, 0.7);
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}
.tickets-mail__link:hover,
.tickets-mail__link:focus {
  color: var(--c-white);
}
.tickets-mail p {
  margin: 0 0 22px;
  color: var(--c-muted);
  line-height: 1.8;
  font-size: 14px;
}

.contact-phone {
  background: linear-gradient(180deg, rgba(18, 26, 58, 0.6), rgba(10, 14, 39, 0.5));
  border-top: 1px solid rgba(200, 182, 255, 0.1);
  border-bottom: 1px solid rgba(200, 182, 255, 0.1);
}
.phone-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}
.phone-center {
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.12), transparent 50%), var(--c-card);
  border: 1px solid rgba(255, 215, 0, 0.22);
}
.phone-number {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(34px, 5.6vw, 60px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--c-gold);
  text-shadow: 0 0 32px rgba(255, 215, 0, 0.26), 0 2px 0 rgba(6, 9, 24, 0.5);
  text-decoration: none;
  transition: transform var(--ease), text-shadow var(--ease);
}
.phone-number:hover,
.phone-number:focus {
  transform: scale(1.03);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}
.phone-note {
  margin: 16px 0 0;
  text-align: center;
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.8;
}
.phone-note a {
  color: var(--c-purple-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 43, 226, 0.5);
}

.contact-location {
  position: relative;
}
.contact-location::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.14), transparent 65%);
  pointer-events: none;
}
.location-grid {
  display: grid;
  gap: 32px;
  margin-top: 36px;
  align-items: stretch;
}
.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--c-card);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.location-card:hover,
.location-card:focus-within {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 0 36px rgba(138, 43, 226, 0.14), var(--shadow-card);
}
.location-card address {
  font-style: normal;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--c-white);
}
.location-card .text-muted {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.location-card__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(138, 43, 226, 0.14);
  border: 1px solid rgba(200, 182, 255, 0.18);
  color: var(--c-muted);
  font-size: 13px;
  line-height: 1.6;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.location-card:hover .location-card__hint,
.location-card:focus-within .location-card__hint {
  color: var(--c-purple-soft);
  border-color: rgba(138, 43, 226, 0.5);
  background: rgba(138, 43, 226, 0.22);
}
.location-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-card);
  border: 1px solid var(--c-line);
}
.location-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.location-frame figcaption {
  padding: 12px 18px;
  text-align: center;
  font-size: 13px;
  color: var(--c-muted);
}

.contact-guide {
  background:
    radial-gradient(900px 400px at 15% 80%, rgba(138, 43, 226, 0.12), transparent 60%),
    rgba(6, 9, 24, 0.55);
  border-top: 1px solid rgba(200, 182, 255, 0.08);
}
.guide-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.guide-card {
  min-height: 200px;
  padding: 26px;
  background: var(--c-card);
}
.guide-card__index {
  display: block;
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--c-gold), var(--c-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--c-gold);
}
.guide-card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
}
.guide-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-muted);
}
.guide-promise {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255, 215, 0, 0.12), rgba(138, 43, 226, 0.14));
  border: 1px solid rgba(255, 215, 0, 0.22);
}
.guide-promise__num {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--c-gold);
  color: #0A0E27;
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 900;
}
.guide-promise h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--c-white);
}
.guide-promise p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-muted);
}

.contact-faq {
  padding-top: 0;
}
.contact-faq__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--c-white);
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.faq-item {
  border-radius: var(--radius-md);
  background: var(--c-card);
  border: 1px solid var(--c-line);
  padding: 4px 20px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(138, 43, 226, 0.45);
  box-shadow: 0 0 28px rgba(138, 43, 226, 0.1);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-white);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  color: var(--c-purple-soft);
  transition: transform 200ms var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  max-width: 74ch;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-muted);
}

.contact-entry {
  padding-top: 0;
}
.entry-grid {
  display: grid;
  gap: 28px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--c-card);
  border: 1px solid var(--c-line);
}
.entry-grid h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--c-white);
}
.entry-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-muted);
}
.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-trust {
  padding-top: 0;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(18, 26, 58, 0.6);
  border: 1px dashed rgba(200, 182, 255, 0.2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}
.trust-line a {
  color: var(--c-purple-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 43, 226, 0.5);
}

@keyframes yzContactOrbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate3d(10px, -14px, 0);
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .guide-cards {
    grid-template-columns: 1fr 1fr;
  }
  .entry-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 960px) {
  .contact-card__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    min-height: 460px;
  }
  .tickets-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
  }
  .phone-grid {
    grid-template-columns: 1fr 1fr;
  }
  .location-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .guide-cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .entry-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .contact-trust {
    padding-top: 0;
  }
}
