/* Isolated holding page. The approved C3 material, geometry and clock are unchanged. */
.holding-page .hero__credential {
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.25;
}

.holding-page .hero__credential-name {
  font-size: clamp(22px, 1.9vw, 32px);
  letter-spacing: 0.025em;
}

/* Two caption lines need room beside the breathing cue on short phone screens. */
@media (max-width: 700px) and (max-height: 680px) {
  .holding-page .hero__exhale {
    top: 69%;
  }
}

.holding-contact {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(64px, 8vw, 120px) 24px;
  scroll-margin-top: 24px;
}

/* Anchor focus moves keyboard navigation here without outlining the whole section. */
.holding-contact:focus {
  outline: none;
}

.holding-contact__inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
}

.holding-contact__portrait {
  display: block;
  width: 300px;
  max-width: 100%;
  aspect-ratio: 1;
}

.holding-contact__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.holding-contact h2 {
  margin: 0 0 8px;
  font: 400 clamp(28px, 3vw, 38px)/1.25 var(--editorial);
}

.holding-contact p {
  margin: 0 0 24px;
  font: 400 18px/1.6 var(--sans);
}

.holding-contact .holding-contact__profession {
  margin-bottom: 28px;
  font-size: 16px;
}

.holding-contact address {
  font-style: normal;
}

.holding-contact__direct a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0, 60, 53, 0.3);
}

.holding-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Existing outline-button proportions, on the light brand background.
   Hover changes colour only: no opaque fill, no motion, no layout changes. */
.holding-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 180px;
  padding: 14px 26px;
  border: 1px solid rgba(0, 60, 53, 0.45);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font: 600 16px/1.4 var(--sans);
  text-align: center;
  text-decoration: none;
  transition: background-color 400ms cubic-bezier(0.37, 0, 0.63, 1), border-color 400ms;
}

.holding-button:hover,
.holding-button:focus-visible {
  background: rgba(0, 60, 53, 0.08);
  border-color: var(--forest);
}

.holding-contact a:focus-visible,
.holding-footer a:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

.holding-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 0 24px 32px;
  font: 400 14px/1.5 var(--sans);
}

.holding-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-underline-offset: 4px;
}

@media (max-width: 700px) {
  .holding-contact__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    max-width: 460px;
    text-align: center;
  }
  .holding-contact__portrait {
    width: 220px;
    margin-inline: auto;
  }
  .holding-contact__actions {
    justify-content: center;
  }
  .holding-button {
    flex: 1 1 180px;
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .holding-button { transition: none; }
}
