:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --text: #181818;
  --muted: #666666;
  --gold: #b58a3a;
  --gold-soft: #f4ede1;
  --border: #ddd7cb;
  --border-strong: #cdbb96;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfcfa 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 5px;
}

.card {
  width: min(100%, 520px);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.brand-mark img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.hero {
  text-align: center;
}

.brand-name {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.intro {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.link-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.link-tile:hover,
.link-tile:focus-visible {
  border-color: var(--border-strong);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  background-color: #fffcf7;
}

.link-tile:focus-visible {
  outline: 2px solid rgba(181, 138, 58, 0.25);
  outline-offset: 2px;
}

.link-copy {
  display: grid;
  gap: 4px;
}

.link-label {
  font-size: 0.98rem;
  font-weight: 600;
}

.link-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.link-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 7px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer {
  margin-top: 14px;
  text-align: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 5px;
  }

  .card {
    width: 100%;
    min-height: calc(100vh - 10px);
    padding: 16px;
    border-radius: 0;
    box-shadow: none;
  }

  .brand-mark {
    margin-bottom: 12px;
  }

  .brand-mark img {
    width: 92px;
    height: 92px;
  }

  .link-tile {
    padding: 13px 12px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .intro {
    font-size: 0.9rem;
    max-width: none;
  }

  .link-meta {
    font-size: 0.82rem;
  }

  .link-arrow {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}
