.page-contact {
  --contact-img-border: rgba(18, 92, 71, 0.14);
  background: var(--arena-green-dark);
  font-family: var(--font-body);
}

/* ---------- Hero ---------- */
.contact-hero {
  background: var(--arena-green-dark);
  padding: calc(var(--header-h) + 44px) 0 52px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -22%;
  width: 62%;
  height: 100%;
  background: linear-gradient(160deg, transparent 0%, transparent 32%, rgba(247, 200, 69, 0.08) 32%, rgba(247, 200, 69, 0.08) 35%, transparent 35%, transparent 68%, rgba(230, 57, 70, 0.1) 68%, rgba(230, 57, 70, 0.1) 72%, transparent 72%);
  transform: skewX(-14deg);
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright) 0%, var(--gold-dark) 45%, var(--signal-red) 100%);
}

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

.contact-hero-inner {
  display: grid;
  gap: 28px;
}

.contact-hero-side {
  display: none;
}

.contact-hero-copy .breadcrumb {
  margin-bottom: 22px;
}

/* ---------- Breadcrumb ---------- */
.page-contact .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-contact .breadcrumb li {
  font-size: 0.8rem;
  color: rgba(242, 239, 233, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-contact .breadcrumb li + li::before {
  content: "/";
  color: var(--gold-dark);
}

.page-contact .breadcrumb a {
  color: rgba(242, 239, 233, 0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.page-contact .breadcrumb a:hover {
  color: var(--gold-bright);
}

.page-contact .breadcrumb li[aria-current="page"] {
  color: var(--gold-bright);
}

/* ---------- Kicker ---------- */
.contact-kicker {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 8px;
}

/* ---------- Hero copy ---------- */
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 0 0 16px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.contact-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 42px;
  height: 4px;
  background: var(--gold-bright);
}

.contact-hero-lead {
  color: rgba(242, 239, 233, 0.82);
  font-size: 0.94rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

/* ---------- Channels ---------- */
.contact-channels {
  background: var(--arena-green-dark);
  padding: 52px 0 64px;
  position: relative;
}

.contact-section-head {
  margin-bottom: 32px;
}

.contact-section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0;
  line-height: 1.2;
}

.contact-channels-grid {
  display: grid;
  gap: 20px;
}

.contact-channel-card {
  background: var(--arena-green);
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid rgba(143, 219, 176, 0.14);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-dark));
  opacity: 0.7;
  transition: opacity 0.3s;
}

.contact-channel-card:hover {
  border-color: rgba(247, 200, 69, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-channel-card:hover::before {
  opacity: 1;
}

.contact-channel-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-dark);
  position: absolute;
  top: 18px;
  right: 20px;
}

.contact-channel-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

.contact-channel-card h3 {
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0 0 8px;
  line-height: 1.3;
}

.contact-channel-value {
  font-size: 0.9rem;
  color: var(--cream);
  margin: 0 0 10px;
  line-height: 1.5;
  word-break: break-all;
}

.contact-channel-value a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px dashed var(--gold-dark);
  transition: border-color 0.2s;
}

.contact-channel-value a:hover {
  border-bottom-color: var(--gold-bright);
}

.contact-channel-note {
  font-size: 0.78rem;
  color: rgba(242, 239, 233, 0.6);
  margin: 0;
  line-height: 1.5;
}

.contact-copy-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-bright);
  background: transparent;
  border: 1px dashed var(--gold-dark);
  padding: 4px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.contact-copy-btn:hover {
  background: var(--gold-bright);
  color: var(--arena-green-dark);
  border-style: solid;
  border-color: var(--gold-bright);
}

.contact-copy-btn.is-copied {
  border-style: solid;
  background: rgba(247, 200, 69, 0.2);
  color: var(--gold-bright);
}

/* ---------- Main contact area ---------- */
.contact-main {
  background: var(--off-white);
  padding: 64px 0;
  position: relative;
}

.contact-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-bright), var(--signal-red));
}

.contact-main .contact-kicker {
  color: var(--gold-dark);
}

.contact-main .contact-hours-card .contact-kicker {
  color: var(--gold-bright);
}

.contact-main-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.contact-left {
  display: grid;
  gap: 24px;
}

/* ---------- Hours card ---------- */
.contact-hours-card {
  background: var(--arena-green);
  color: var(--cream);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.contact-hours-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(247, 200, 69, 0.12) 0%, transparent 70%);
}

.contact-hours-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-live-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(230, 57, 70, 0.16);
  border: 1px solid rgba(230, 57, 70, 0.4);
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--signal-red);
  border-radius: 50%;
  display: inline-block;
  animation: contact-pulse 1.6s ease-in-out infinite;
}

.contact-hours-card h3 {
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin: 0 0 12px;
  line-height: 1.3;
}

.contact-hours-line {
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.contact-hours-line strong {
  font-family: var(--font-mono);
  color: var(--gold-bright);
  font-weight: 500;
}

.contact-hours-note {
  font-size: 0.82rem;
  color: rgba(242, 239, 233, 0.7);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 78%;
}

.contact-hours-badge {
  display: flex;
  align-items: baseline;
  gap: 6px;
  border: 1px solid rgba(247, 200, 69, 0.45);
  background: rgba(247, 200, 69, 0.06);
  padding: 12px 16px;
  width: fit-content;
}

.badge-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.badge-unit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}

.badge-caption {
  font-size: 0.72rem;
  color: rgba(242, 239, 233, 0.65);
  margin-left: 8px;
  border-left: 1px solid rgba(242, 239, 233, 0.2);
  padding-left: 8px;
}

/* ---------- Map card ---------- */
.contact-map-card {
  background: var(--off-white);
  border: 1px solid var(--contact-img-border);
  padding: 28px 24px;
  position: relative;
}

.contact-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-map-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--signal-red);
  letter-spacing: 0.08em;
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 4px 8px;
}

.contact-map-card h3 {
  color: var(--arena-green-dark);
  font-size: 1.15rem;
  margin: 0 0 18px;
  line-height: 1.3;
}

.contact-map-figure {
  margin: 0;
}

.contact-map-image {
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(18, 92, 71, 0.25);
  padding: 4px;
}

.contact-map-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.pin-dot {
  width: 18px;
  height: 18px;
  background: var(--signal-red);
  border: 3px solid var(--off-white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.25);
  animation: contact-pulse 1.8s ease-in-out infinite;
}

.pin-label {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--arena-green-dark);
  background: var(--gold-bright);
  padding: 3px 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.contact-map-image:hover .pin-label,
.contact-map-image:focus-within .pin-label {
  opacity: 1;
  transform: translateY(0);
}

.contact-map-figure figcaption {
  font-size: 0.78rem;
  color: var(--steel-gray);
  margin-top: 12px;
  line-height: 1.5;
}

/* ---------- Form card ---------- */
.contact-form-card {
  background: var(--off-white);
  border: 1px solid var(--contact-img-border);
  border-top: 3px solid var(--gold-bright);
  padding: 36px 24px;
  position: relative;
}

.contact-form-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-head-copy {
  flex: 1;
}

.contact-form-head h2 {
  color: var(--arena-green-dark);
  font-size: 1.6rem;
  margin: 0 0 8px;
  line-height: 1.2;
}

.contact-form-intro {
  font-size: 0.88rem;
  color: var(--steel-gray);
  line-height: 1.6;
  margin: 0;
}

.contact-form-art {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border: 1px solid rgba(18, 92, 71, 0.12);
  opacity: 0.9;
}

/* ---------- Form fields ---------- */
.contact-form {
  margin-top: 26px;
}

.contact-form-row {
  display: grid;
  gap: 18px;
}

.contact-form-row .contact-form-group {
  margin-top: 0;
}

.contact-form-group {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-group label {
  font-size: 0.85rem;
  color: var(--arena-green-dark);
  font-weight: 600;
}

.required-mark {
  color: var(--signal-red);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--arena-green-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--steel-gray);
  padding: 10px 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 0;
  width: 100%;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-dark);
  box-shadow: 0 2px 0 0 var(--gold-bright);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3e%3cpath d='M1 1l4 4 4-4' fill='none' stroke='%233A4A45' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 30px;
  cursor: pointer;
}

.contact-form-group input:invalid:not(:placeholder-shown),
.contact-form-group textarea:invalid:not(:placeholder-shown) {
  border-bottom-color: var(--signal-red);
}

.form-error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--signal-red);
}

.contact-form-group input:invalid:not(:placeholder-shown) ~ .form-error-msg {
  display: block;
}

/* ---------- Form notes ---------- */
.contact-form-mailto {
  font-size: 0.78rem;
  color: var(--steel-gray);
  background: var(--cream);
  border-left: 2px solid var(--gold-bright);
  padding: 10px 12px;
  margin-top: 20px;
  line-height: 1.6;
}

.contact-form-mailto a {
  color: var(--gold-dark);
}

.contact-form-secondary {
  font-size: 0.78rem;
  color: var(--steel-gray);
  margin: 10px 0 0;
}

.contact-form-secondary a {
  color: var(--gold-dark);
}

/* ---------- Form footer ---------- */
.contact-form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.contact-privacy-note {
  font-size: 0.72rem;
  color: var(--steel-gray);
  line-height: 1.6;
  flex: 1 1 100%;
  margin: 0;
}

.contact-privacy-note a {
  color: var(--gold-dark);
}

.contact-submit {
  flex: 1 1 100%;
  min-width: 0;
}

/* ---------- Bottom links ---------- */
.contact-links {
  background: var(--arena-green-dark);
  padding: 56px 0 64px;
  position: relative;
}

.contact-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--signal-red));
}

.contact-links-header {
  margin-bottom: 28px;
}

.contact-links-grid {
  display: grid;
  gap: 16px;
}

.contact-link-card {
  background: var(--arena-green);
  border: 1px solid rgba(143, 219, 176, 0.15);
  padding: 24px 56px 24px 24px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
}

.contact-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-link-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  transition: width 0.3s;
}

.contact-link-card:hover::after {
  width: 100%;
}

.contact-link-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.contact-link-desc {
  display: block;
  font-size: 0.8rem;
  color: rgba(242, 239, 233, 0.55);
}

.contact-link-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 1.4rem;
  transition: transform 0.25s, color 0.25s;
}

.contact-link-card:hover .contact-link-arrow {
  transform: translateY(-50%) translateX(4px);
  color: var(--gold-bright);
}

/* ---------- Animations ---------- */
@keyframes contact-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  .contact-hero {
    padding: calc(var(--header-h) + 56px) 0 64px;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
  }

  .contact-hero-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 140px;
    min-width: 220px;
  }

  .contact-hero-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(247, 200, 69, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(247, 200, 69, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: skewX(-8deg);
  }

  .contact-hero-bigtext {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 0.86;
    color: transparent;
    -webkit-text-stroke: 1px rgba(247, 200, 69, 0.6);
    text-align: right;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
    user-select: none;
  }

  .contact-channels {
    padding: 60px 0 72px;
  }

  .contact-channels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .contact-main {
    padding: 80px 0;
  }

  .contact-main-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 28px;
  }

  .contact-form-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .contact-form-art {
    flex: 0 0 200px;
    width: 200px;
  }

  .contact-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .contact-links {
    padding: 64px 0 72px;
  }

  .contact-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .contact-link-card {
    min-height: 110px;
  }
}

@media (min-width: 1024px) {
  .contact-form-card {
    padding: 44px 40px;
  }

  .contact-hours-card,
  .contact-map-card {
    padding: 36px 32px;
  }

  .contact-privacy-note {
    max-width: 55%;
    flex: 1;
  }

  .contact-submit {
    flex: 0 0 auto;
    min-width: 150px;
  }

  .contact-form-footer {
    flex-wrap: nowrap;
  }

  .contact-hero-inner {
    gap: 60px;
  }
}
