.page-contact {
  background: var(--space-deep);
  color: var(--star-white);
  overflow-x: hidden;
}

.page-contact .contact-hero {
  position: relative;
  padding: 32px 0 56px;
}

.page-contact .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(192, 208, 224, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 208, 224, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-contact .contact-hero .container {
  position: relative;
  z-index: 1;
}

.page-contact .contact-hero .breadcrumb {
  margin-bottom: 40px;
}

.page-contact .contact-hero-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-contact .contact-hero-copy {
  position: relative;
  padding: 8px 0 8px 24px;
}

.page-contact .contact-hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--star-gold), var(--arena-red));
}

.page-contact .contact-hero-copy .eyebrow {
  margin-bottom: 16px;
}

.page-contact .contact-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  color: var(--star-white);
  max-width: 720px;
}

.page-contact .contact-lead {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--orbit-silver);
  max-width: 560px;
  margin: 0 0 28px;
}

.page-contact .contact-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-contact .hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--dim-star);
  border: 1px solid rgba(192, 208, 224, 0.28);
  border-left: 2px solid var(--star-gold);
  padding: 8px 14px;
}

.page-contact .contact-hero-figure {
  position: relative;
}

.page-contact .contact-hero-figure img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(192, 208, 224, 0.2);
}

.page-contact .contact-channels,
.page-contact .contact-hours,
.page-contact .contact-needs,
.page-contact .contact-more {
  position: relative;
  padding: 56px 0;
}

.page-contact .contact-channels {
  background: var(--space-blue);
  border-top: 1px solid rgba(192, 208, 224, 0.14);
  border-bottom: 1px solid rgba(192, 208, 224, 0.14);
}

.page-contact .contact-section-head {
  margin-bottom: 40px;
  max-width: 680px;
}

.page-contact .contact-section-head h2,
.page-contact .contact-hours h2,
.page-contact .contact-needs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 8px 0 12px;
  color: var(--star-white);
}

.page-contact .contact-section-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dim-star);
}

.page-contact .contact-orbit {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-contact .orbit-line {
  display: none;
}

.page-contact .channel-card {
  position: relative;
  background: var(--deep-fog);
  border: 1px solid rgba(192, 208, 224, 0.18);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-contact .channel-card:hover {
  border-color: var(--star-gold);
  transform: translateY(-2px);
}

.page-contact .channel-symbol {
  width: 44px;
  height: 44px;
  position: relative;
  margin-bottom: 20px;
}

.page-contact .symbol-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--star-gold);
  transform: rotate(45deg);
}

.page-contact .symbol-core {
  position: absolute;
  inset: 10px;
  background: var(--star-gold);
  opacity: 0.85;
  transform: rotate(45deg);
}

.page-contact .symbol-ring {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
}

.page-contact .channel-index {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--star-gold);
  margin-bottom: 8px;
}

.page-contact .channel-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--star-white);
  margin: 0 0 12px;
}

.page-contact .channel-value {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 3.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--star-gold);
  margin: 0 0 8px;
  word-break: break-all;
}

.page-contact .channel-addr {
  font-family: "Courier New", "Menlo", monospace;
  letter-spacing: 0.04em;
  color: var(--star-white);
  font-size: 0.95rem;
}

.page-contact .channel-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dim-star);
  margin: 0;
}

.page-contact .contact-hours {
  background: var(--space-deep);
}

.page-contact .contact-hours-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-contact .contact-hours-figure img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto;
  border: 1px solid rgba(255, 215, 0, 0.28);
}

.page-contact .contact-hours-copy h2 {
  margin-top: 8px;
}

.page-contact .hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.page-contact .hours-list li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--orbit-silver);
  margin-bottom: 10px;
}

.page-contact .hours-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--signal-orange);
  border-radius: 50%;
}

.page-contact .contact-needs {
  background: var(--space-blue);
  border-top: 1px solid rgba(192, 208, 224, 0.14);
}

.page-contact .needs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-contact .need-card {
  background: var(--deep-fog);
  border: 1px solid rgba(192, 208, 224, 0.18);
  border-top: 3px solid var(--arena-red);
  padding: 24px;
}

.page-contact .need-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--star-gold);
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 3px 8px;
  margin-bottom: 14px;
}

.page-contact .need-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--star-white);
  margin: 0 0 10px;
}

.page-contact .need-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--dim-star);
  margin: 0 0 18px;
}

.page-contact .need-route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(192, 208, 224, 0.22);
  padding-top: 14px;
}

.page-contact .route-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--dim-star);
}

.page-contact .route-value {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--star-gold);
}

.page-contact .contact-more {
  background: var(--space-deep);
  padding: 40px 0;
}

.page-contact .contact-trust {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dim-star);
  max-width: 720px;
  margin: 0 0 28px;
  border-left: 2px solid rgba(255, 215, 0, 0.5);
  padding-left: 16px;
}

.page-contact .contact-more-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  border-top: 1px solid rgba(192, 208, 224, 0.14);
  padding-top: 24px;
}

.page-contact .more-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--star-gold);
}

.page-contact .contact-more-strip a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--orbit-silver);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.page-contact .contact-more-strip a:hover {
  color: var(--star-gold);
  border-bottom-color: var(--star-gold);
}

@media (min-width: 600px) and (max-width: 859px) {
  .page-contact .needs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-contact .needs-grid .need-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  .page-contact .contact-hero {
    padding: 48px 0 80px;
  }

  .page-contact .contact-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-contact .contact-hero-figure img {
    max-width: 100%;
  }

  .page-contact .contact-channels,
  .page-contact .contact-hours,
  .page-contact .contact-needs {
    padding: 80px 0;
  }

  .page-contact .contact-orbit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 48px;
    padding: 48px 0;
  }

  .page-contact .orbit-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.6) 16%, rgba(192, 208, 224, 0.5) 84%, transparent);
  }

  .page-contact .orbit-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--star-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.55);
  }

  .page-contact .orbit-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--star-gold);
    transform: translateX(-50%);
  }

  .page-contact .channel-card-phone,
  .page-contact .channel-card-address {
    grid-column: 1;
    text-align: right;
  }

  .page-contact .channel-card-email {
    grid-column: 2;
  }

  .page-contact .channel-card-phone .channel-symbol,
  .page-contact .channel-card-address .channel-symbol {
    margin-left: auto;
  }

  .page-contact .contact-hours-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }

  .page-contact .contact-hours-figure img {
    max-width: 400px;
  }

  .page-contact .needs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-contact .channel-card,
  .page-contact .need-card,
  .page-contact .contact-more-strip a {
    transition: none;
  }
}
