:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.55);
  --rule: rgba(255, 255, 255, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
}

body {
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  padding: 80px 24px;
}

.container {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

/* ——— Logo ——— */
.biz-name,
.biz-address,
.contact {
  margin: 0;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--fg);
}

.biz-name {
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 28px);
  text-transform: uppercase;
}

.biz-address {
  margin-top: 0.6em;
  font-weight: 400;
  font-size: clamp(15px, 2.4vw, 19px);
  text-transform: uppercase;
}

.contact {
  margin-top: 1.6em;
  font-weight: 400;
  font-size: clamp(13px, 2vw, 16px);
}

.contact a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact a:hover { border-bottom-color: var(--fg); }

/* Visually hidden but accessible to assistive tech / SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Divider ——— */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px auto;
  max-width: 360px;
  color: var(--muted);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.divider-ornament {
  font-size: 10px;
  line-height: 1;
  transform: translateY(-1px);
}

/* ——— Apps ——— */
.apps {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.app:hover { opacity: 0.7; }

.app img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: #111;
}

.app-name {
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ——— Mobile ——— */
@media (max-width: 480px) {
  body { padding: 56px 20px; }
  .apps { gap: 32px; }
  .app img { width: 60px; height: 60px; }
}