:root {
  --ink: #272323;
  --aubergine: #35252d;
  --quiet: #f7f5f2;
  --rose: #ead9d6;
  --clay: #bd6544;
  --clay-dark: #9e4f33;
  --display: "Prata", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}
* { box-sizing: border-box; }
html { min-height: 100%; }
body { min-height: 100vh; margin: 0; color: var(--ink); background: var(--clay-dark); font: 15px/1.55 var(--body); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid white; outline-offset: 4px; }
.links-skip { position: fixed; z-index: 10; top: 12px; left: 12px; padding: 10px 16px; color: var(--ink); background: white; transform: translateY(-160%); }
.links-skip:focus { transform: none; }
.links-page { display: grid; grid-template-columns: minmax(340px,.86fr) minmax(480px,1.14fr); min-height: 100vh; }
.links-profile { position: relative; display: flex; flex-direction: column; min-height: 100vh; padding: clamp(28px,4vw,62px); overflow: hidden; color: white; background: var(--aubergine); }
.links-brand { position: relative; z-index: 2; width: fit-content; text-decoration: none; font-size: 15px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.links-profile__portrait { position: absolute; inset: 0; background: url("../images/release-20260904-1/pollyana-klass.jpg") 73% center/cover no-repeat; animation: portrait-in .9s var(--ease) both; }
.links-profile__portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(53,37,45,.18) 0%,rgba(53,37,45,.06) 38%,rgba(53,37,45,.92) 88%); }
.links-profile__copy { position: relative; z-index: 2; max-width: 620px; margin-top: auto; animation: copy-in .72s .12s var(--ease) both; }
.links-profile__copy > p:first-child { margin-bottom: 20px; color: #efb6a4; font-size: 12px; text-transform: uppercase; }
.links-profile h1 { max-width: 700px; margin: 0 0 22px; font: 400 clamp(44px,5vw,76px)/1.04 var(--display); letter-spacing: -.04em; text-wrap: balance; }
.links-profile__copy > p:last-child { max-width: 48ch; margin: 0; color: #eee4e7; font-size: 16px; }
.links-actions { display: flex; flex-direction: column; min-height: 100vh; padding: clamp(30px,5vw,72px) clamp(24px,7vw,110px); background: var(--rose); }
.links-actions > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: clamp(35px,6vh,70px); }
.links-actions > header p { margin: 0; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.share-button { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; color: var(--ink); background: transparent; border: 1px solid rgba(39,35,35,.4); border-radius: 50%; transition: color .25s var(--ease),background-color .25s var(--ease),transform .12s var(--ease); }
.share-button:hover { color: white; background: var(--clay-dark); }
.share-button:active { transform: scale(.94); }
.share-button svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.link-list { border-top: 1px solid rgba(39,35,35,.26); }
.link-item { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2px 24px; padding: 21px 2px; border-bottom: 1px solid rgba(39,35,35,.26); text-decoration: none; transition: color .25s var(--ease),padding .3s var(--ease),background-color .25s var(--ease); animation: link-in .62s var(--ease) both; animation-delay: calc(var(--i,0) * 60ms + 180ms); }
.link-item:nth-child(1) { --i: 0; }.link-item:nth-child(2) { --i: 1; }.link-item:nth-child(3) { --i: 2; }.link-item:nth-child(4) { --i: 3; }.link-item:nth-child(5) { --i: 4; }.link-item:nth-child(6) { --i: 5; }
.link-item span { min-width: 0; font: 400 clamp(19px,2vw,26px)/1.3 var(--display); }
.link-item small { color: #695c5a; font-size: 11px; }
.link-arrow { grid-column: 2; grid-row: 1/3; align-self: center; width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.link-item:hover { padding-inline: 12px; color: var(--clay-dark); background: rgba(255,255,255,.24); }
.link-item--primary { margin-bottom: 15px; padding-inline: 18px; color: white; background: var(--clay-dark); border-bottom: 0; }
.link-item--primary small { color: #f4d9d1; }
.link-item--primary:hover { padding-inline: 24px; color: white; background: var(--aubergine); }
.links-actions > footer { display: flex; justify-content: space-between; gap: 24px; margin-top: auto; padding-top: 42px; color: #5e5251; font-size: 12px; }
.links-actions > footer a { color: var(--clay-dark); font-weight: 600; text-underline-offset: 5px; }
.share-status { min-height: 20px; margin: 12px 0 0; color: var(--clay-dark); font-size: 12px; text-align: right; }
@keyframes portrait-in { from { opacity: .55; transform: scale(1.04); } }
@keyframes copy-in { from { opacity: 0; transform: translateY(20px); } }
@keyframes link-in { from { opacity: 0; transform: translateX(20px); } }
@media (max-width: 820px) {
  .links-page { grid-template-columns: 1fr; }
  .links-profile { min-height: 58vh; padding: 24px; }
  .links-profile__portrait { background-position: 70% 30%; }
  .links-profile__copy { padding-top: 200px; }
  .links-actions { min-height: 0; padding: 34px 22px 28px; }
  .links-actions > footer { display: grid; }
}
@media (max-width: 430px) {
  .links-profile { min-height: 520px; }
  .links-profile h1 { font-size: 43px; }
  .link-item { padding-block: 19px; }
  .link-item span { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
}
