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

.page-contact .contact-hero {
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
}

.page-contact .contact-hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 30px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.85), rgba(10, 31, 68, 0));
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.18;
  pointer-events: none;
}

.page-contact .contact-hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-contact .contact-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin: 0 0 6px;
}

.page-contact .contact-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0.3rem 0 1.2rem;
}

.page-contact .contact-hero-lead {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--c-slate);
  max-width: 36em;
  margin: 0;
}

.page-contact .contact-quickbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.page-contact .contact-quick-item {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--c-white);
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.page-contact .contact-quick-item:hover,
.page-contact .contact-quick-item:focus-visible {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
  transform: translateY(-2px);
}

.page-contact .contact-quick-item:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
}

.page-contact .contact-hero-visual {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-contact .contact-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 0, 0.36);
}

.page-contact .contact-hero-ring--one {
  width: 92px;
  height: 92px;
}

.page-contact .contact-hero-ring--two {
  width: 160px;
  height: 160px;
}

.page-contact .contact-hero-ring--three {
  width: 228px;
  height: 228px;
  border-color: rgba(228, 0, 43, 0.4);
}

.page-contact .contact-hero-cross {
  position: absolute;
  background: rgba(228, 0, 43, 0.26);
}

.page-contact .contact-hero-cross--h {
  width: 240px;
  height: 1px;
}

.page-contact .contact-hero-cross--v {
  width: 1px;
  height: 240px;
}

.page-contact .contact-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(228, 0, 43, 0.08) 0 2px, transparent 2px 14px);
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 72%);
  mask-image: radial-gradient(circle, #000 30%, transparent 72%);
  pointer-events: none;
}

.page-contact .contact-hero-word {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--c-white);
}

.page-contact .contact-hero-live {
  position: absolute;
  right: 2%;
  top: 6%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-navy);
  border: 1px solid var(--c-gold);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--c-gold);
  font-family: var(--font-number);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.page-contact .contact-hero-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-red);
  display: inline-block;
  animation: contact-pulse 1.6s ease-in-out infinite;
}

@keyframes contact-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  .page-contact .contact-hero-live i {
    animation: none;
  }
}

.page-contact .contact-channels,
.page-contact .contact-mail,
.page-contact .contact-address {
  background: linear-gradient(145deg, rgba(16, 42, 92, 0.72), rgba(10, 31, 68, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 36px 24px;
  margin-bottom: 32px;
}

.page-contact .contact-channels .section-head,
.page-contact .contact-address .section-head {
  margin-bottom: 28px;
}

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

.page-contact .contact-channel-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: rgba(10, 31, 68, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.page-contact .contact-channel-card--gold {
  border-top: 4px solid var(--c-gold);
}

.page-contact .contact-channel-card--red {
  border-top: 4px solid var(--c-red);
}

.page-contact .contact-channel-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  transform: rotate(12deg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.page-contact .contact-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-contact .contact-channel-card--gold .contact-channel-icon,
.page-contact .contact-address-card .contact-channel-icon {
  background: rgba(255, 196, 0, 0.14);
  color: var(--c-gold);
}

.page-contact .contact-channel-card--red .contact-channel-icon {
  background: rgba(228, 0, 43, 0.16);
  color: var(--c-red);
}

.page-contact .contact-channel-card h3,
.page-contact .contact-address-card h3,
.page-contact .timeline-step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 16px 0 6px;
  color: var(--c-white);
}

.page-contact .contact-channel-value {
  font-family: var(--font-number);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--c-white);
  word-break: break-all;
  margin: 4px 0 10px;
}

.page-contact .contact-channel-note,
.page-contact .contact-address-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
  position: relative;
  z-index: 1;
}

.page-contact .contact-channels-media {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--c-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-contact .contact-channels-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.page-contact .contact-split-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.page-contact .contact-split-copy .label,
.page-contact .contact-notice-panel .label {
  color: var(--c-gold);
}

.page-contact .contact-split-copy h2,
.page-contact .contact-phone-copy h2,
.page-contact .contact-notice-panel h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--c-white);
  margin: 6px 0 14px;
}

.page-contact .contact-split-copy p {
  color: var(--c-slate);
  line-height: 1.8;
  margin: 0 0 14px;
}

.page-contact .contact-split-copy .btn {
  margin-top: 8px;
}

.page-contact .contact-email {
  color: var(--c-gold);
  font-family: var(--font-number);
  font-weight: 700;
  word-break: break-all;
}

.page-contact .contact-response-timeline {
  position: relative;
  padding: 6px 0 6px 8px;
}

.page-contact .contact-response-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-red), var(--c-gold));
}

.page-contact .timeline-step {
  position: relative;
  padding: 18px 0 18px 54px;
}

.page-contact .timeline-step::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 25px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-gold);
  border: 3px solid var(--c-deep);
  box-shadow: 0 0 0 2px var(--c-red);
}

.page-contact .timeline-index {
  display: block;
  font-family: var(--font-number);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--c-red);
  margin-bottom: 4px;
}

.page-contact .timeline-step h3 {
  margin: 0 0 6px;
}

.page-contact .timeline-step p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
}

.page-contact .contact-phone {
  margin-bottom: 32px;
}

.page-contact .contact-phone-strip {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 36px 28px;
  background: linear-gradient(110deg, var(--c-red), var(--c-dark-red));
  border-radius: 18px;
  overflow: hidden;
}

.page-contact .contact-phone-strip::before,
.page-contact .contact-phone-strip::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.page-contact .contact-phone-strip::before {
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  transform: rotate(45deg);
}

.page-contact .contact-phone-strip::after {
  left: -50px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  transform: rotate(20deg);
}

.page-contact .contact-phone-copy {
  position: relative;
  z-index: 1;
}

.page-contact .contact-phone-copy .label {
  color: var(--c-light-gold);
  opacity: 0.9;
}

.page-contact .contact-phone-copy p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

.page-contact .contact-phone-copy strong {
  color: var(--c-gold);
  font-family: var(--font-number);
  font-weight: 700;
  white-space: nowrap;
}

.page-contact .contact-phone-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 7vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--c-gold);
  white-space: nowrap;
  margin: 0;
  align-self: start;
}

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

.page-contact .contact-address-map {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--c-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-contact .contact-address-map img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.page-contact .contact-map-pin {
  position: absolute;
  left: 64%;
  top: 44%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-red);
  border: 4px solid var(--c-gold);
  box-shadow: 0 0 0 9px rgba(228, 0, 43, 0.22);
  z-index: 2;
}

.page-contact .contact-address-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--c-gold);
  border-radius: 14px;
  padding: 28px;
}

.page-contact .contact-address-card h3 {
  margin: 16px 0 4px;
}

.page-contact .contact-address-card address {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.4;
  color: var(--c-light-gold);
  margin: 8px 0 14px;
}

.page-contact .contact-service-notice {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.page-contact .contact-notice-panel {
  position: relative;
  overflow: hidden;
  padding: 36px 26px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.12), rgba(16, 42, 92, 0.6)), var(--c-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 6px solid var(--c-gold);
  border-radius: 18px;
}

.page-contact .contact-notice-panel::after {
  content: "24h";
  position: absolute;
  right: -12px;
  bottom: -24px;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.page-contact .contact-notice-panel p:not(.label):not(.contact-notice-quote) {
  color: var(--c-slate);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.page-contact .contact-notice-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  line-height: 1.4;
  color: var(--c-white);
  border-left: 4px solid var(--c-red);
  padding-left: 16px;
  margin: 18px 0 22px;
}

.page-contact .contact-notice-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-contact .contact-channels,
  .page-contact .contact-mail,
  .page-contact .contact-address {
    padding: 44px 36px;
  }

  .page-contact .contact-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-contact .contact-channels-media {
    grid-column: 1 / -1;
  }

  .page-contact .contact-channels-media img {
    height: 300px;
  }

  .page-contact .contact-phone-strip {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .page-contact .contact-phone-number {
    align-self: center;
  }

  .page-contact .contact-address-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-contact .contact-address-map img {
    height: 340px;
  }

  .page-contact .contact-hero-ring--one {
    width: 120px;
    height: 120px;
  }

  .page-contact .contact-hero-ring--two {
    width: 200px;
    height: 200px;
  }

  .page-contact .contact-hero-ring--three {
    width: 280px;
    height: 280px;
  }

  .page-contact .contact-hero-cross--h {
    width: 300px;
  }

  .page-contact .contact-hero-cross--v {
    height: 300px;
  }

  .page-contact .contact-hero-word {
    font-size: 2.6rem;
  }
}

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

  .page-contact .contact-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 60px;
  }

  .page-contact .contact-hero-visual {
    min-height: 320px;
  }

  .page-contact .contact-channels-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.2fr);
  }

  .page-contact .contact-channels-media {
    grid-column: auto;
  }

  .page-contact .contact-channels-media img {
    height: 100%;
    min-height: 280px;
  }

  .page-contact .contact-split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 48px;
  }

  .page-contact .contact-address-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .page-contact .contact-address-map img {
    height: 400px;
  }

  .page-contact .contact-notice-panel {
    padding: 44px 40px;
  }

  .page-contact .contact-phone-strip {
    padding: 40px 44px;
  }
}
