.contact-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  margin-top: 132px;
}

.contact-actions .contact-call {
  margin-top: 0;
}

.contact-actions .contact-call > .ui-icon {
  width: 30px;
  height: 30px;
  transition: transform 200ms var(--ease);
}

.contact-actions .contact-call:hover > .ui-icon {
  transform: translate(4px, -4px);
}

.contact-phone-button {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  min-height: 132px;
  padding: 22px;
  align-content: end;
  border: 1px solid rgba(245, 244, 239, 0.32);
  background: var(--light);
  color: var(--ink);
  transition: background-color 220ms ease;
}

.contact-phone-button:hover {
  background: #d88d59;
}

.contact-phone-button .ui-icon {
  grid-row: 1 / 3;
  align-self: end;
}

.contact-phone-button span {
  color: #5f5e58;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-phone-button strong {
  font-size: 22px;
  font-weight: 500;
}

.contact-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.copy-action,
.phone-button-inline,
.footer-phone {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.copy-action {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}

.copy-action .ui-icon,
.phone-button-inline .ui-icon,
.footer-phone .ui-icon {
  width: 14px;
  height: 14px;
}

.copy-action[data-copied="true"] .ui-icon {
  stroke: #5e9560;
}

.copy-action-dark,
.phone-button-dark {
  margin-top: 10px;
  color: rgba(245, 244, 239, 0.76);
}

.phone-button-inline {
  padding: 7px 10px;
  border: 1px solid var(--line);
  font-weight: 600;
}

.phone-button-dark {
  border-color: rgba(245, 244, 239, 0.28);
}

.location-copy {
  margin-top: 24px;
  padding: 9px 12px;
  border: 1px solid var(--line);
}

.subpage-contact .shell > div {
  flex-wrap: wrap;
  gap: 12px;
}

.subpage-contact a {
  gap: 11px;
  min-height: 48px;
  padding: 0 16px;
  align-items: center;
  border: 1px solid rgba(245, 244, 239, 0.42);
  background: rgba(245, 244, 239, 0.04);
}

.subpage-contact a.is-call {
  background: var(--light);
  color: var(--ink);
}

.subpage-contact a:hover {
  background: #d88d59;
  color: var(--ink);
}

.subpage-contact a .ui-icon {
  width: 16px;
  height: 16px;
}

.footer-contact-row {
  display: flex;
  gap: 14px 18px;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
}

.footer-contact-row .copy-action {
  margin-top: 0;
}

.footer-phone {
  color: rgba(245, 244, 239, 0.78);
  font-weight: 600;
}

.subpage .footer-meta {
  grid-template-columns: minmax(0, 1fr) auto;
}

.subpage .footer-meta p:last-child {
  grid-column: 2;
}

.copy-status {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 140;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 16px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  background: #171714;
  color: #f5f4ef;
  font-size: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-status.is-visible {
  transform: none;
  opacity: 1;
}

.mobile-action-dock {
  display: none;
}
