:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #214777;
  color: #f7fafc;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: linear-gradient(145deg, #214777 15%, #285180 100%);
}

.business-card {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  grid-template-rows: 1fr auto;
  column-gap: clamp(40px, 6vw, 120px);
  padding: 48px clamp(32px, 5vw, 100px) max(32px, 5svh);
}

.brand {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  align-self: center;
  justify-self: center;
  width: calc(100% - 160px - clamp(40px, 6vw, 120px));
  max-width: 1250px;
  margin: 0;
  line-height: 0;
}

.brand img { display: block; width: 100%; height: auto; }

.contact {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .015em;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 30px;
  opacity: .8;
}
.contact img { display: block; height: auto; }
.contact-email { width: 101px; }
.contact-phone { width: 95px; }
@media (prefers-reduced-motion: no-preference) {
  .brand img { animation: appear 1200ms ease both; }
  .contact { animation: appear 1000ms 800ms ease both; }
}
@keyframes appear { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 760px) {
  .business-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 32px;
    padding: 8svh 16px max(24px, env(safe-area-inset-bottom));
  }
  .brand { grid-column: 1 / -1; grid-row: 1; width: 100%; }
  .contact { grid-column: 1; grid-row: 2; margin-right: 16px; }
  .contact-detail { min-height: 44px; min-width: 120px; }
}






