/* Contact phone — light #kontakt */
.ax-contact-phone {
  padding: var(--ax-sec-pad-m) 0;
  color: var(--ax-navy);
}

/* Section owns its exceptional eyebrow — hide preceding standalone divider. */
.ax-divider:has(+ .ax-contact-phone) {
  display: none;
}

.ax-contact-phone__inner {
  max-width: var(--ax-maxw);
  margin: 0 auto;
  padding: 0 var(--ax-gutter);
}

/* Divider-style eyebrow: mark + label · office · hours */
.ax-contact-phone__band {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 22px);
  margin-bottom: clamp(28px, 3.4vw, 52px);
  row-gap: 12px;
}

.ax-contact-phone__band-rule {
  flex: 0 0 clamp(40px, 6vw, 120px);
  height: 1px;
  background: rgba(53, 59, 102, 0.22);
}

.ax-contact-phone__band-rule--grow {
  flex: 1 1 40px;
  min-width: 24px;
}

.ax-contact-phone__band-mark {
  flex: 0 0 auto;
  display: block;
  fill: var(--ax-steel);
}

.ax-contact-phone__band-mark--muted {
  fill: rgba(53, 59, 102, 0.32);
}

.ax-contact-phone__band-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(53, 59, 102, 0.45);
  white-space: nowrap;
}

.ax-contact-phone__band-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(53, 59, 102, 0.45);
  max-width: min(100%, 52ch);
}

.ax-contact-phone__band-meta-sep {
  opacity: 0.55;
}

.ax-contact-phone__tel {
  display: block;
  font-weight: 300;
  font-size: clamp(46px, 10vw, 178px);
  line-height: 0.84;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  color: var(--ax-navy);
  text-decoration: none;
  margin-bottom: clamp(24px, 3vw, 44px);
  transition: color 620ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .ax-contact-phone__tel:hover {
    color: var(--ax-steel);
    outline: none;
  }
}

.ax-contact-phone__tel:focus-visible {
  color: var(--ax-steel);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.ax-contact-phone__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(16px, 2vw, 36px);
  align-items: start;
  border-top: 1px solid rgba(53, 59, 102, 0.2);
  padding-top: clamp(20px, 2.4vw, 34px);
}

.ax-contact-phone__lead {
  margin: 0;
  color: rgba(53, 59, 102, 0.62);
  font-size: 15.5px;
  line-height: 1.62;
  max-width: 32ch;
  text-wrap: pretty;
}

.ax-contact-phone__email {
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 24px);
  letter-spacing: -0.022em;
  color: var(--ax-navy);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .ax-contact-phone__email:hover {
    color: var(--ax-steel);
    outline: none;
  }
}

.ax-contact-phone__email:focus-visible {
  color: var(--ax-steel);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.ax-contact-phone__address {
  font-size: 15px;
  color: rgba(53, 59, 102, 0.62);
}

.ax-contact-phone__cta {
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ax-navy);
  color: var(--ax-paper);
  border-radius: 999px;
  padding: 17px 26px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: background 340ms ease, gap 340ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .ax-contact-phone__cta:hover {
    background: var(--ax-ink);
    gap: 19px;
    color: var(--ax-paper);
  }
}

@media (max-width: 900px) {
  .ax-contact-phone {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .ax-contact-phone__band {
    margin-bottom: clamp(22px, 4vw, 36px);
  }

  .ax-contact-phone__band-label,
  .ax-contact-phone__band-meta {
    white-space: normal;
  }

  .ax-contact-phone__band-rule:not(.ax-contact-phone__band-rule--grow) {
    flex-basis: 28px;
  }

  .ax-contact-phone__grid {
    grid-template-columns: 1fr;
  }

  .ax-contact-phone__cta {
    justify-self: start;
  }
}
