/* A small, tactile calling card. Deliberately still: the page already has motion. */
.contact-layout > .contact-station {
  min-width: 0;
  max-width: 490px;
  gap: 0;
  padding-inline: 6px;
  justify-self: center;
}

.contact-station .contact-card {
  --card-ink: var(--note-text, #302b24);
  --card-muted: var(--note-muted, #655b4e);
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid #ffffff70;
  border-radius: 30px 58px 34px 42px;
  background: linear-gradient(135deg, #ffffff46, transparent 70%), var(--note-bg, #eee7d9);
  color: var(--card-ink);
  box-shadow: 0 18px 36px -18px #00000065, inset 0 1px 0 #ffffffa0;
  transform: rotate(-2deg);
}

.contact-station .contact-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 25px;
}

.contact-station .contact-card-heading > div { min-width: 0; flex: 1; }

.contact-station .contact-card-heading p {
  color: var(--card-muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-station .contact-card-heading strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(34px, 3.5vw, 45px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.055em;
}

.contact-station .contact-card-portrait {
  display: block;
  flex: none;
  width: clamp(56px, 6vw, 76px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid #ffffffb0;
  border-radius: 42% 48% 40% 47%;
  box-shadow: 0 5px 12px -7px #302b2460;
  transform: rotate(6deg);
}

.contact-station .contact-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 11px 15px;
  border-radius: 17px;
  background: #ffffff38;
  color: var(--card-ink);
  text-decoration: none;
}

.contact-station .contact-card-link + .contact-card-link { margin-top: 9px; }
.contact-station .contact-card-link > span { min-width: 0; }
.contact-station .contact-card-link small {
  display: block;
  margin-bottom: 2px;
  color: var(--card-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-station .contact-card-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 550;
  line-height: 1.4;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}

.contact-station .contact-card-value > span { min-width: 0; }
.contact-station .contact-card-value > .contact-method-icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: #9a4928;
}

.contact-station .contact-card-link > .ui-icon {
  width: 21px;
  height: 21px;
  color: #9a4928;
}

.contact-station .contact-card-link:hover {
  background: #ffffff88;
  color: var(--card-ink);
}

.contact-station .contact-card-link:hover .contact-card-value {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-station .contact-card-link:focus-visible {
  outline: 2px solid #934528;
  outline-offset: 4px;
}

.contact-station .contact-margin-note {
  display: flex;
  align-items: flex-start;
  align-self: flex-end;
  gap: 9px;
  max-width: 100%;
  margin: 16px 4px 0 0;
  color: var(--orange-light);
  font-family: 'Segoe Print', 'Bradley Hand', 'Comic Sans MS', cursive;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.55;
  letter-spacing: -.035em;
  transform: rotate(2deg);
}

.contact-station .contact-margin-note > svg {
  width: 66px;
  height: 52px;
  flex: none;
  margin-top: -5px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 800px) and (min-width: 651px) {
  .contact-station .contact-card { padding: 23px 20px; }
  .contact-station .contact-card-link { padding-inline: 12px; gap: 8px; }
  .contact-station .contact-card-value { gap: 6px; }
  .contact-station .contact-card-value > .contact-method-icon { width: 18px; height: 18px; }
  .contact-station .contact-margin-note { font-size: 14px; gap: 4px; }
  .contact-station .contact-margin-note > svg { width: 43px; }
}

@media (max-width: 650px) {
  .contact-layout > .contact-station { max-width: 440px; padding-top: 6px; }
  .contact-station .contact-card { padding: 26px 23px; }
  .contact-station .contact-card-heading { margin-bottom: 23px; }
  .contact-station .contact-card-value { font-size: clamp(18px, 5.2vw, 23px); }
  .contact-station .contact-margin-note { margin-top: 19px; font-size: 15px; }
  .contact-station .contact-margin-note > svg { width: 48px; }
}

@media (max-width: 350px) {
  .contact-station .contact-card-value { gap: 6px; }
  .contact-station .contact-card-value > .contact-method-icon { width: 18px; height: 18px; }
  .contact-station .contact-card { padding: 24px 19px; }
  .contact-station .contact-card-link { padding-inline: 11px; gap: 9px; }
  .contact-station .contact-card-link > .ui-icon { width: 19px; height: 19px; }
  .contact-station .contact-margin-note { font-size: 14px; gap: 5px; }
}

/* No transitions or animations here: static tilt is preserved with motion paused. */
@media print {
  .contact-station .contact-card { box-shadow: none; transform: none; border-color: #bbb; }
  .contact-station .contact-margin-note { transform: none; color: #444; }
}
