:root {
  --bg-top: #f5efe5;
  --bg-bottom: #ebe0d1;
  --panel: rgba(255, 250, 244, 0.74);
  --card: rgba(255, 253, 250, 0.92);
  --featured-top: #2a3342;
  --featured-bottom: #1f2632;
  --ink: #261b18;
  --muted: #725f58;
  --line: rgba(38, 27, 24, 0.1);
  --accent: #a44a3f;
  --accent-soft: #d8ab6c;
  --shadow: rgba(74, 47, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(216, 171, 108, 0.22), transparent 24%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
}

.link-hub {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 28px 18px 36px;
}

.profile-card {
  margin-bottom: 18px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 48px var(--shadow);
  text-align: center;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-height: 132px;
  margin-bottom: 10px;
}

.brand-logo {
  display: block;
  width: min(176px, 54vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.badge {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 8vw, 3.4rem);
  line-height: 0.96;
}

.summary,
.mini-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.featured,
.links {
  display: grid;
  gap: 12px;
}

.featured {
  margin-bottom: 12px;
}

.featured-button,
.link-button {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.featured-button {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--featured-top), var(--featured-bottom));
  color: #fff8ef;
  box-shadow: 0 16px 34px rgba(31, 38, 50, 0.24);
}

.link-button {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(74, 47, 36, 0.08);
}

.featured-button:hover,
.featured-button:focus-visible,
.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.featured-button:hover,
.featured-button:focus-visible {
  box-shadow: 0 22px 40px rgba(31, 38, 50, 0.28);
}

.link-button:hover,
.link-button:focus-visible {
  border-color: rgba(164, 74, 63, 0.34);
  box-shadow: 0 18px 34px rgba(74, 47, 36, 0.12);
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.featured-button .icon-wrap {
  background: rgba(255, 255, 255, 0.14);
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  line-height: 1;
}

.featured-copy,
.link-copy-wrap {
  display: block;
  min-width: 0;
}

.featured-label,
.featured-title,
.featured-text,
.link-title,
.link-copy {
  display: block;
}

.featured-label {
  margin-bottom: 4px;
  color: #f2c983;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-title,
.link-title {
  margin-bottom: 3px;
  font-size: 1.04rem;
  font-weight: 800;
}

.featured-text {
  color: rgba(255, 248, 239, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.link-copy {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mini-note {
  padding-top: 18px;
  text-align: center;
}

@media (max-width: 480px) {
  .link-hub {
    padding-left: 14px;
    padding-right: 14px;
  }

  .profile-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-mark {
    min-height: 118px;
  }

  .brand-logo {
    width: min(164px, 58vw);
  }

  .featured-button,
  .link-button {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}
