/* Lindsey Zhou — link page
   Palette drawn from the sunflower bouquet in the profile photo:
   sunflower gold, carnation pink, leaf green. */

:root {
  --gold:   #d59a55;
  --gold-2: #f0c68e;
  --pink:   #d78e9e;
  --pink-2: #f2c4ce;
  --green:  #7c8f6b;
  --green-2:#aac098;

  --bg:        #12100f;
  --bg-2:      #1d1815;
  --surface:   rgba(255, 255, 255, .055);
  --surface-h: rgba(255, 255, 255, .1);
  --stroke:    rgba(255, 255, 255, .11);
  --stroke-h:  rgba(255, 255, 255, .22);
  --text:      #f6f1ea;
  --muted:     #a79fb4;
  --shadow:    0 18px 45px -18px rgba(0, 0, 0, .85);
  --orb-op:    .5;
  --grain-op:  .035;
  --toast-bg:  #262019;
  --cta-bg:    #1d1815;

  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

[data-theme="light"] {
  --bg:        #fdf8f2;
  --bg-2:      #f7ebdd;
  --surface:   rgba(255, 255, 255, .72);
  --surface-h: rgba(255, 255, 255, .95);
  --stroke:    rgba(60, 40, 20, .1);
  --stroke-h:  rgba(60, 40, 20, .2);
  --text:      #2a2118;
  --muted:     #7d6c5c;
  --shadow:    0 18px 40px -20px rgba(120, 85, 25, .38);
  --orb-op:    .42;
  --grain-op:  .05;
  --toast-bg:  #fffcf7;
  --cta-bg:    #fffaf3;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100dvh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- background ---------- */

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--bg-2) 0%, var(--bg) 62%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: var(--orb-op);
  will-change: transform;
}

.orb--1 {
  width: 46vmax; height: 46vmax;
  top: -16vmax; left: -12vmax;
  background: radial-gradient(circle, var(--gold) 0%, transparent 68%);
  animation: drift-a 22s ease-in-out infinite alternate;
}

.orb--2 {
  width: 40vmax; height: 40vmax;
  top: 24vmax; right: -16vmax;
  background: radial-gradient(circle, var(--pink) 0%, transparent 68%);
  animation: drift-b 26s ease-in-out infinite alternate;
}

.orb--3 {
  width: 38vmax; height: 38vmax;
  bottom: -18vmax; left: 22vw;
  background: radial-gradient(circle, var(--green) 0%, transparent 68%);
  animation: drift-c 30s ease-in-out infinite alternate;
}

@keyframes drift-a { to { transform: translate3d(9vw, 7vh, 0) scale(1.14); } }
@keyframes drift-b { to { transform: translate3d(-11vw, -6vh, 0) scale(1.08); } }
@keyframes drift-c { to { transform: translate3d(6vw, -9vh, 0) scale(1.16); } }

.grain {
  position: absolute;
  inset: -50%;
  opacity: var(--grain-op);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */

.wrap {
  width: min(100% - 2.25rem, 34rem);
  margin-inline: auto;
  padding-block: clamp(2.5rem, 8vh, 4.5rem) 2.5rem;
}

/* staggered entrance */
.hero > *, .link, .actions, .foot {
  animation: rise .8s var(--ease) backwards;
  animation-delay: calc(var(--d, 0) * 65ms);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- hero ---------- */

.hero { text-align: center; }

.avatar {
  position: relative;
  width: clamp(8.5rem, 30vw, 10.5rem);
  aspect-ratio: 1;
  margin: 0 auto 1.35rem;
  display: grid;
  place-items: center;
}

.avatar__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--pink), var(--green-2), var(--gold-2), var(--gold));
  animation: spin 9s linear infinite;
  filter: blur(.5px);
}

.avatar::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--pink), var(--green-2), var(--gold));
  filter: blur(26px);
  opacity: .5;
  z-index: -1;
  animation: spin 9s linear infinite;
}

@keyframes spin { to { transform: rotate(1turn); } }

.avatar img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--bg);
  box-shadow: var(--shadow);
}

.name {
  font-family: Fraunces, ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 8.5vw, 2.9rem);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0;
  background: linear-gradient(105deg, var(--gold-2), var(--pink-2) 48%, var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="light"] .name {
  background: linear-gradient(105deg, #a8702a, #b95a72 48%, #5a6f49);
  -webkit-background-clip: text;
  background-clip: text;
}

.alt-name {
  margin: .45rem 0 0;
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ---------- links ---------- */

.links {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.link {
  position: relative;
  display: flex;
  align-items: center;
  gap: .9rem;
  width: 100%;
  padding: .85rem .95rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform .3s var(--ease),
    background-color .3s var(--ease),
    border-color .3s var(--ease),
    box-shadow .3s var(--ease);
}

/* brand tint bleeding in from the left on hover */
.link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, color-mix(in srgb, var(--brand) 26%, transparent), transparent 62%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}

.link[data-brand="linkedin"] { --brand: #0a66c2; }
.link[data-brand="x"]        { --brand: #8a8f98; }
.link[data-brand="facebook"] { --brand: #1877f2; }
.link[data-brand="instagram"] { --brand: #e1306c; }
.link[data-brand="wechat"]   { --brand: #09b83e; }

[data-theme="dark"] .link[data-brand="x"] { --brand: #d8dbe0; }

@media (hover: hover) {
  .link:hover {
    transform: translateY(-3px);
    background: var(--surface-h);
    border-color: var(--stroke-h);
    box-shadow: var(--shadow);
  }
  .link:hover::before { opacity: 1; }
  .link:hover .link__go { transform: translate(2px, -2px); opacity: 1; }
  .link:hover .link__icon { transform: scale(1.06) rotate(-4deg); }
}

.link:active { transform: translateY(-1px) scale(.99); }

.link:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

.link__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 13px;
  background: color-mix(in srgb, var(--brand) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 34%, transparent);
  transition: transform .3s var(--ease);
}

.link__icon svg {
  width: 1.32rem;
  height: 1.32rem;
  fill: var(--brand);
}

[data-theme="light"] .link[data-brand="x"] .link__icon svg { fill: #15181c; }

.link__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.link__title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.005em;
}

.link__title-dim { color: var(--muted); font-weight: 400; }

.link__sub {
  font-size: .82rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link__go {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  opacity: .45;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.link__go svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link__go--copy .i-check { display: none; }
.link.is-copied .link__go--copy .i-copy  { display: none; }
.link.is-copied .link__go--copy .i-check { display: block; stroke: var(--green-2); }
.link.is-copied { border-color: color-mix(in srgb, var(--green-2) 55%, transparent); }

/* ---------- actions / footer ---------- */

.actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .87rem;
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}

.ghost-btn svg {
  width: 1.05rem; height: 1.05rem;
  fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}

.ghost-btn:hover { color: var(--text); border-color: var(--stroke-h); background: var(--surface); }
.ghost-btn:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

.foot {
  margin-top: 2.25rem;
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
}

.foot p { margin: 0; }

.heart { color: var(--pink); }

/* ---------- theme toggle ---------- */

.theme-toggle {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 10;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}

.theme-toggle:hover { transform: rotate(-18deg) scale(1.06); border-color: var(--stroke-h); }
.theme-toggle:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

.theme-toggle svg {
  width: 1.15rem; height: 1.15rem;
  fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}

.theme-toggle .i-sun  { display: none; }
[data-theme="light"] .theme-toggle .i-moon { display: none; }
[data-theme="light"] .theme-toggle .i-sun  { display: block; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: max(1.4rem, env(safe-area-inset-bottom));
  z-index: 20;
  transform: translate(-50%, 140%);
  padding: .6rem 1.05rem;
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text);
  background: var(--toast-bg);
  border: 1px solid var(--stroke-h);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
  max-width: calc(100vw - 2.5rem);
  text-align: center;
}

.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ---------- motion / print ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero > *, .link, .actions, .foot { animation: none; opacity: 1; transform: none; }
}

@media print {
  .bg, .theme-toggle, .actions, .toast { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- contact section ---------- */

.section-label {
  margin: 2.1rem 0 .85rem;
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
}

.links--contact { margin-top: 0; }

.link[data-brand="mail"]  { --brand: #c87a3c; }
.link[data-brand="phone"] { --brand: #6f8a5e; }
.link[data-brand="photos"] { --brand: #b98ad0; }

/* ---------- gallery ---------- */

.gallery-wrap {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
  padding-block: clamp(1.75rem, 5vh, 3rem) 3rem;
}

.gallery-head { text-align: center; margin-bottom: 1.75rem; }

.back {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .85rem .4rem .55rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--muted);
  font-size: .82rem;
  text-decoration: none;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.back svg {
  width: 1rem; height: 1rem;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.back:hover { color: var(--text); border-color: var(--stroke-h); }
.back:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

.gallery-title {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  letter-spacing: -.02em;
  margin: 1rem 0 0;
  background: linear-gradient(105deg, var(--gold-2), var(--pink-2) 50%, var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="light"] .gallery-title {
  background: linear-gradient(105deg, #a8702a, #b95a72 50%, #5a6f49);
  -webkit-background-clip: text;
  background-clip: text;
}

.gallery-sub { margin: .4rem 0 0; color: var(--muted); font-size: .9rem; }

/* columns collapse naturally; each tile keeps its own aspect ratio */
.grid {
  columns: 4 15rem;
  column-gap: .7rem;
}

.tile {
  break-inside: avoid;
  margin-bottom: .7rem;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  width: 100%;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.tile img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--bg-2);
}

@media (hover: hover) {
  .tile:hover { transform: translateY(-3px); border-color: var(--stroke-h); box-shadow: var(--shadow); }
}

.tile:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

.tile__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.tile__play svg {
  width: 3rem; height: 3rem;
  fill: rgba(0, 0, 0, .55);
  stroke: #fff;
  stroke-width: 1.2;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 4rem 1rem;
  font-size: .95rem;
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(8, 6, 5, .93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox[hidden] { display: none; }

.lb-stage {
  margin: 0;
  max-width: min(92vw, 76rem);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.lb-media { display: flex; align-items: center; justify-content: center; }

.lb-media img,
.lb-media video {
  max-width: min(92vw, 76rem);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  display: block;
}

.lb-caption {
  color: #d8d0c6;
  font-size: .85rem;
  text-align: center;
  max-width: 44rem;
}

.lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(20, 16, 14, .6);
  color: #f4efe8;
  cursor: pointer;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}

.lb-btn svg {
  width: 1.25rem; height: 1.25rem;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.lb-btn:hover { background: rgba(40, 33, 28, .9); }
.lb-btn:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

.lb-close { top: max(1rem, env(safe-area-inset-top)); right: max(1rem, env(safe-area-inset-right)); }
.lb-prev  { left: max(.75rem, env(safe-area-inset-left)); }
.lb-next  { right: max(.75rem, env(safe-area-inset-right)); }

@media (max-width: 34rem) {
  .lb-prev { left: .4rem; }
  .lb-next { right: .4rem; }
  .lb-btn { width: 2.5rem; height: 2.5rem; }
}

/* ---------- photo album call to action ---------- */

.cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: .95rem;
  margin: 2rem 0 .35rem;
  padding: .8rem .95rem;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(var(--cta-bg), var(--cta-bg)) padding-box,
    linear-gradient(115deg, var(--gold), var(--pink) 45%, var(--green-2)) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

/* warm wash so the card reads as the primary action, not another row */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg,
    color-mix(in srgb, var(--gold) 13%, transparent),
    color-mix(in srgb, var(--pink) 9%, transparent) 55%,
    transparent);
}

/* light sweep on hover */
.cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease);
}

@media (hover: hover) {
  .cta:hover { transform: translateY(-3px); }
  .cta:hover::after { left: 115%; }
  .cta:hover .cta__go { transform: translateX(3px); }
  .cta:hover .cta__peek img:first-child { transform: rotate(-9deg) translateX(-2px); }
  .cta:hover .cta__peek img:last-child  { transform: rotate(9deg) translateX(2px); }
}

.cta:active { transform: translateY(-1px) scale(.995); }
.cta:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* fanned stack of preview frames */
.cta__peek {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-left: .5rem;
}

.cta__peek img {
  width: 2.5rem;
  height: 3.1rem;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--bg);
  margin-left: -1.05rem;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.6);
  transition: transform .35s var(--ease);
}

.cta__peek img:nth-child(1) { transform: rotate(-6deg); z-index: 1; }
.cta__peek img:nth-child(2) { transform: rotate(-2deg); z-index: 2; }
.cta__peek img:nth-child(3) { transform: rotate(2deg);  z-index: 3; }
.cta__peek img:nth-child(4) { transform: rotate(6deg);  z-index: 4; }

.cta__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .12rem;
}

.cta__kicker {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

[data-theme="light"] .cta__kicker { color: #a8702a; }

.cta__title {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.cta__sub {
  font-size: .8rem;
  color: color-mix(in srgb, var(--text) 68%, transparent);
}

.cta__go {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: #2a1c0c;
  transition: transform .3s var(--ease);
}

.cta__go svg {
  width: 1.05rem; height: 1.05rem;
  fill: none; stroke: currentColor;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 24rem) {
  .cta__peek img { width: 2.1rem; height: 2.6rem; }
  .cta__title { font-size: 1rem; }
}

.origin {
  margin: .3rem 0 0;
  font-size: .84rem;
  color: var(--muted);
}

/* ---------- language toggle ---------- */

.lang-toggle {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: calc(max(1rem, env(safe-area-inset-right)) + 3.1rem);
  z-index: 10;
  min-width: 2.6rem;
  height: 2.6rem;
  padding: 0 .6rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}

.lang-toggle:hover { transform: scale(1.06); border-color: var(--stroke-h); }
.lang-toggle:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* Chinese renders taller than Latin at the same size */
html[lang^="zh"] .name { letter-spacing: 0; }
html[lang^="zh"] .cta__kicker { letter-spacing: .08em; }

.about {
  list-style: none;
  margin: .55rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .18rem;
  font-size: .8rem;
  color: var(--muted);
}

.foot__by {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  transition: border-color .25s var(--ease);
}

.foot__by:hover { border-bottom-color: var(--gold); }
.foot__by:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }

.about__link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  transition: border-color .25s var(--ease);
}

.about__link:hover { border-bottom-color: var(--gold); }
.about__link:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }

.tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: .9rem 0 .2rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(115deg,
    color-mix(in srgb, var(--gold) 20%, transparent),
    color-mix(in srgb, var(--pink) 16%, transparent));
  border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
}

.tagline-pill__emoji {
  display: inline-block;
  animation: pepper 4s var(--ease) infinite;
  transform-origin: 60% 80%;
}

@keyframes pepper {
  0%, 70%, 100% { transform: none; }
  76% { transform: rotate(-12deg) scale(1.15); }
  84% { transform: rotate(10deg) scale(1.12); }
  92% { transform: rotate(-5deg) scale(1.05); }
}

.likes {
  list-style: none;
  margin: .8rem 0 .1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
}

.likes li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .78rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

@media (hover: hover) {
  .likes li:hover { transform: translateY(-2px); border-color: var(--stroke-h); }
}

.likes__emoji { font-size: .95rem; line-height: 1; }
