.page-contact {
  --contact-gap: 28px;
  position: relative;
}

.page-contact .contact-shell {
  padding-top: 48px;
  padding-bottom: 88px;
}

.page-contact .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--slate);
  margin: 0 0 28px;
}

.page-contact .breadcrumb a {
  color: var(--slate);
  text-decoration: none;
  transition: color .2s var(--ease);
}

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

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

.page-contact .contact-hero {
  position: relative;
  margin-bottom: 34px;
}

.page-contact .contact-hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.page-contact h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: .01em;
  margin: 0 0 14px;
  color: var(--white);
}

.page-contact .contact-hero-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  max-width: 60ch;
  margin: 0;
}

.page-contact .score-tape {
  width: 180px;
  height: 4px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--orange), var(--gold-light));
  border-radius: var(--radius-pill);
}

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

.page-contact .contact-ladder-column,
.page-contact .contact-visual-column {
  min-width: 0;
}

.page-contact .contact-ladder {
  display: grid;
  gap: var(--contact-gap);
}

.page-contact .panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 110, .18);
  background: linear-gradient(150deg, var(--navy-panel), var(--navy-deep) 78%);
}

.page-contact .contact-card {
  padding: 26px 20px;
}

.page-contact .contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--orange);
  opacity: .9;
}

.page-contact .card-step {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gold);
}

.page-contact .contact-card h2 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--white);
}

.page-contact .card-role {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--gold-light);
  margin: 0 0 18px;
}

.page-contact .card-note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0 0 22px;
}

.page-contact .mail-card {
  text-align: center;
}

.page-contact .contact-mail-figure {
  width: 148px;
  height: 148px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(10, 31, 68, .45), inset 0 0 0 1px rgba(201, 169, 110, .25);
}

.page-contact .contact-mail-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-contact .contact-email {
  display: inline-block;
  font-family: var(--font-data);
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  margin: 6px 0 16px;
  word-break: break-all;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.page-contact .contact-email:hover {
  color: var(--orange-light);
  border-color: var(--gold-light);
}

.page-contact .contact-mail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.page-contact .phone-svg-wrap {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 107, 0, .14);
  border: 1px solid rgba(255, 107, 0, .3);
  margin-bottom: 18px;
}

.page-contact .phone-svg-wrap svg {
  width: 30px;
  height: 30px;
  color: var(--orange-light);
}

.page-contact .contact-phone {
  display: inline-block;
  font-family: var(--font-data);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .02em;
  margin: 6px 0 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.page-contact .contact-phone:hover {
  color: var(--orange-light);
  border-color: var(--orange);
}

.page-contact .phone-hover-tip {
  position: absolute;
  z-index: 20;
  bottom: calc(100% + 10px);
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  pointer-events: none;
}

.page-contact .phone-card:hover .phone-hover-tip,
.page-contact .phone-card:focus-within .phone-hover-tip {
  opacity: 1;
  transform: translateY(0);
}

.page-contact .hours-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.page-contact .hours-head svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  flex: 0 0 auto;
}

.page-contact .hours-head h2 {
  margin: 0;
}

.page-contact .hours-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 12px 0 8px;
}

.page-contact .status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  animation: page-contact-pulse 2s infinite;
}

.page-contact .hours-note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0;
}

.page-contact .map-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, .2);
  box-shadow: 0 24px 60px rgba(10, 31, 68, .6);
}

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

.page-contact .map-pin {
  position: absolute;
  top: 34%;
  left: 58%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 0, .2);
}

.page-contact .map-pin::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}

.page-contact .map-pin::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 0, .6);
  animation: page-contact-pin-wave 2s ease-out infinite;
}

.page-contact .map-grid-label {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--white);
  background: rgba(10, 31, 68, .72);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.page-contact .address-card {
  margin-top: 24px;
  padding: 26px 20px;
}

.page-contact .address-card h2 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 8px;
}

.page-contact .address-line {
  font-family: var(--font-data);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--white);
  margin: 10px 0 8px;
}

.page-contact .address-note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0;
}

.page-contact .help-rail {
  margin-top: 24px;
  padding: 26px 20px;
}

.page-contact .help-rail h2 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 10px;
}

.page-contact .help-note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0 0 16px;
}

.page-contact .help-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-contact .help-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  text-decoration: none;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  background: rgba(10, 31, 68, .5);
  transition: background .2s var(--ease), color .2s var(--ease);
}

.page-contact .help-links a:hover {
  background: rgba(255, 107, 0, .15);
  color: var(--white);
}

.page-contact .help-links a::before {
  content: "→";
  font-family: var(--font-data);
  color: var(--orange);
}

@keyframes page-contact-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, .45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

@keyframes page-contact-pin-wave {
  0% {
    transform: scale(.6);
    opacity: .8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (min-width: 960px) {
  .page-contact .contact-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 48px;
    align-items: start;
  }

  .page-contact .contact-card {
    padding: 34px 32px;
  }

  .page-contact .mail-card {
    margin-left: 0;
  }

  .page-contact .phone-card {
    margin-left: 36px;
  }

  .page-contact .hours-card {
    margin-left: 72px;
  }

  .page-contact .address-card,
  .page-contact .help-rail {
    padding: 30px 28px;
  }

  .page-contact .phone-hover-tip {
    left: 32px;
  }
}
