:root {
  --bg: #fbf8f6;
  --bg-accent-1: rgba(243, 214, 228, 0.35);
  --bg-accent-2: rgba(230, 236, 255, 0.35);
  --text: rgba(17, 24, 39, 0.92);
  --muted: rgba(17, 24, 39, 0.64);
  --shadow-tint: rgba(107, 79, 69, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(760px 360px at 18% 12%, var(--bg-accent-2), transparent 62%),
    radial-gradient(760px 360px at 82% 14%, var(--bg-accent-1), transparent 62%),
    var(--bg);
  color: var(--text);
  display: grid;
  place-items: center;
  padding: 34px 18px;
}

.wrap {
  width: min(980px, 100%);
}

.content {
  padding: clamp(8px, 2vw, 18px);
  text-align: center;
}

.logo {
  width: min(560px, 94%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  padding-left: 96px;
}

@media (max-width: 480px) {
  .logo {
    padding-left: 54px;
  }
}

h1 {
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 10px 0 10px;
  color: var(--muted);
  font-weight: 700;
  margin-top: 24px
}

p {
  margin: 0 auto;
  max-width: 62ch;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  color: var(--text);
}

.nowrap-desktop {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .nowrap-desktop {
    white-space: normal;
  }
}

.location {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.location .pin {
  opacity: 0.9;
}

.links {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 20px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  min-width: min(320px, 100%);
  justify-content: center;
  transition: transform 160ms ease, background 160ms ease,
    border-color 160ms ease, box-shadow 160ms ease;
}

.link:hover {
  transform: translateY(-0.5px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 24, 39, 0.18);
  box-shadow: 0 10px 24px rgba(107, 79, 69, 0.12);
}

.link:focus-visible {
  outline: 3px solid rgba(214, 152, 196, 0.55);
  outline-offset: 3px;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
}

.link strong {
  font-weight: 700;
}

.hint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
