:root {
  font-family: Manrope, Arial, sans-serif;
  background: #f5f6f0;
  color: #18231d;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 8% 0%, rgba(228, 168, 83, .2), transparent 28rem), #f5f6f0;
}

.page-shell {
  width: min(100% - 2rem, 31rem);
  min-height: 100vh;
  margin: auto;
  padding: clamp(2.5rem, 9vh, 6rem) 0 1.5rem;
  display: flex;
  flex-direction: column;
}

.links-card {
  padding: clamp(2rem, 7vw, 3.25rem);
  border: 1px solid #dfe4dd;
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 0 1.25rem 3.75rem rgba(22, 43, 32, .1);
}

.profile-mark {
  width: 4.5rem;
  aspect-ratio: 1;
  display: block;
  margin-bottom: 1.8rem;
  border-radius: 1.15rem;
  box-shadow: 0 .7rem 1.6rem rgba(18, 55, 42, .18);
}

.eyebrow { margin: 0 0 .75rem; color: #68736c; font: 500 .72rem/1.2 "DM Mono", monospace; letter-spacing: .15em; }
h1 { margin: 0; font-size: clamp(3.1rem, 12vw, 4.5rem); line-height: .91; letter-spacing: -.075em; }
h1 span { color: #e4a853; }
.intro { max-width: 21rem; margin: 1.5rem 0 2.5rem; color: #68736c; font-size: 1rem; line-height: 1.65; }

nav { display: grid; gap: .8rem; }
.link-button {
  min-height: 4.25rem;
  padding: .8rem 1rem  .8rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #dfe4dd;
  border-radius: 1rem;
  color: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.link-button svg { width: 1.4rem; height: 1.4rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.link-button svg.fill-icon { fill: currentColor; }
.link-button svg.stroke-icon { fill: none; }
.link-button svg.stroke-icon .instagram-dot { fill: currentColor; stroke: none; }
.link-button svg.stroke-icon .youtube-play { fill: currentColor; stroke: none; }
.link-button b { margin-left: auto; font-size: 1.15rem; font-weight: 400; }
.link-button { background: #12372a; color: #fff; border-color: #12372a; }
.link-button:hover { transform: translateY(-3px); border-color: #e4a853; }
.link-button:focus-visible { outline: 3px solid #e4a853; outline-offset: 3px; }
.loading-links { margin: 0; padding: 1.25rem; border-radius: 1rem; color: #68736c; background: #ecf0e8; text-align: center; font-size: .9rem; }
footer { margin-top: auto; padding: 1.5rem 0 .25rem; color: #68736c; text-align: center; font: .72rem "DM Mono", monospace; letter-spacing: .08em; }

@media (max-width: 390px) { .page-shell { width: min(100% - 1.25rem, 31rem); padding-top: 1rem; } .links-card { border-radius: 1.35rem; } }
