:root {
  --brand-teal: rgb(0, 142, 189);
  --panel-bg: rgba(255, 255, 255, 0.96);
  --panel-shadow: rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }

html, body {
  min-height: 100%;
  margin: 0;
  background: var(--brand-teal);
}

body {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", Arial, Helvetica, sans-serif;
  color: #222;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3.2vh, 44px) clamp(10px, 2vw, 28px) clamp(14px, 2.2vh, 28px);
}

.main-card {
  width: min(82vw, 1390px);
}

.main-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.contact-panel {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(14px, 1.7vw, 24px);
  flex-wrap: wrap;
  width: min(82vw, 940px);
  margin: clamp(12px, 1.8vh, 22px) auto 0;
}

.contact-link {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 18px 7px;
  text-align: center;
  text-decoration: none;
  color: var(--brand-teal);
  background: var(--panel-bg);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 2px 6px var(--panel-shadow);
}

.contact-link:hover,
.contact-link:focus-visible {
  background: #fff;
  box-shadow: 0 3px 9px rgba(0,0,0,0.18);
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}

.label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.78;
  line-height: 1.1;
}

.value {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .site {
    justify-content: flex-start;
    padding: 10px 8px 18px;
  }

  .main-card {
    width: 100%;
  }

  .contact-panel {
    width: min(94vw, 420px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 10px;
  }

  .contact-link {
    width: 100%;
    min-height: 54px;
    padding: 9px 12px 8px;
    border-radius: 8px;
  }

  .label { font-size: 0.76rem; }
  .value { font-size: 1.08rem; }
}

@media (max-height: 760px) and (min-width: 761px) {
  .site {
    justify-content: flex-start;
    padding-top: 16px;
  }

  .main-card {
    width: min(76vw, 1160px);
  }

  .contact-panel {
    margin-top: 8px;
  }

  .contact-link {
    padding-top: 6px;
    padding-bottom: 5px;
  }
}
