:root {
  --ink: #eef3ed;
  --muted: #c2d1c2;
  --paper: #292929;
  --paper-strong: #344035;
  --line: rgba(194, 209, 194, 0.2);
  --accent: #94a193;
  --accent-dark: #252c27;
  --accent-mid: #4b554c;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(194, 209, 194, 0.06), transparent 22rem),
    linear-gradient(145deg, #292929 0%, #252c27 48%, #1d211e 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page-shell {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 38px 20px 28px;
}

.profile {
  text-align: center;
}

.brand-logo {
  display: block;
  width: 152px;
  height: 152px;
  margin: 0 auto 18px;
  border: 1px solid rgba(194, 209, 194, 0.22);
  border-radius: 50%;
  background: #eef3ed;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 12vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.description {
  max-width: 34rem;
  margin: 16px auto 0;
  color: rgba(238, 243, 237, 0.74);
  font-size: 1rem;
  line-height: 1.55;
}

.featured {
  margin-top: 30px;
}

.featured-link {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(194, 209, 194, 0.28);
  border-radius: 8px;
  color: #f7fbf6;
  background: linear-gradient(135deg, #344035, #697269);
  box-shadow: var(--shadow);
}

.featured-link small {
  display: block;
  margin-bottom: 5px;
  color: rgba(247, 251, 246, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-link strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.25;
}

.featured-note {
  display: block;
  margin-top: 5px;
  color: rgba(247, 251, 246, 0.7);
  font-size: 0.9rem;
  line-height: 1.35;
}

.arrow {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(247, 251, 246, 0.36);
  border-radius: 50%;
  font-size: 1.35rem;
}

.links-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.link-card {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(52, 64, 53, 0.82);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(194, 209, 194, 0.58);
  background: rgba(75, 85, 76, 0.95);
  outline: none;
  transform: translateY(-2px);
}

.link-text {
  min-width: 0;
}

.link-title {
  display: block;
  font-weight: 800;
  line-height: 1.25;
}

.link-note {
  display: block;
  margin-top: 4px;
  color: rgba(238, 243, 237, 0.68);
  font-size: 0.88rem;
  line-height: 1.35;
}

.link-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #252c27;
  background: #c2d1c2;
  font-weight: 900;
}

.footer {
  padding: 26px 0 0;
  color: rgba(194, 209, 194, 0.72);
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 380px) {
  .page-shell {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 128px;
    height: 128px;
  }

  .featured-link,
  .link-card {
    padding-inline: 14px;
  }
}
