:root {
  color-scheme: dark;
  --ink: #070709;
  --ink-soft: #0b0a0d;
  --surface: #111015;
  --surface-raised: #17151b;
  --surface-glass: rgba(16, 14, 19, 0.82);
  --text: #f6f0ee;
  --text-soft: #d0c5c3;
  --muted: #998f91;
  --faint: #6f6669;
  --line: rgba(255, 244, 244, 0.1);
  --line-strong: rgba(255, 244, 244, 0.19);
  --blood: #d7195d;
  --blood-deep: #7f0d35;
  --blood-dark: #2a0b17;
  --blush: #f19ab9;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 14px 38px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.56);
  --content: 1200px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(118deg, rgba(68, 34, 92, 0.045) 0%, transparent 34%, rgba(45, 37, 82, 0.035) 66%, transparent 100%),
    linear-gradient(202deg, rgba(90, 29, 62, 0.032) 0%, transparent 38%, rgba(51, 29, 72, 0.028) 72%, transparent 100%),
    linear-gradient(180deg, #06070a 0%, #08070c 48%, #050508 100%);
  background-attachment: fixed;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: -4vh -4vw;
  z-index: -1;
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(112deg, transparent 8%, rgba(108,58,137,.035) 38%, transparent 68%),
    linear-gradient(226deg, rgba(62,43,105,.028) 4%, transparent 36%, rgba(94,39,73,.020) 74%, transparent 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1100' height='1100' viewBox='0 0 1100 1100'%3E%3Cfilter id='n' x='-15%25' y='-15%25' width='130%25' height='130%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.007 .011' numOctaves='3' seed='23' stitchTiles='stitch'/%3E%3CfeGaussianBlur stdDeviation='2.4'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  background-size: cover, cover, 1100px 1100px;
  background-repeat: no-repeat, no-repeat, repeat;
  mix-blend-mode: soft-light;
  filter: contrast(101%) brightness(94%);
  box-shadow: inset 0 0 190px 60px rgba(0,0,0,.18);
}
::selection { color: #fff; background: rgba(215, 25, 93, 0.72); }
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button, summary { font: inherit; }
img, video { max-width: 100%; }

.shell { width: min(var(--content), calc(100% - 64px)); margin-inline: auto; }
section { scroll-margin-top: 92px; }

header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.075);
  background: rgba(7, 7, 9, 0.78);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  backdrop-filter: blur(22px) saturate(130%);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  position: relative;
  padding-left: 15px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .42em;
  line-height: 1;
}
.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 21px;
  transform: translateY(-50%);
  background: var(--blood);
  box-shadow: 0 0 18px rgba(215,25,93,.68);
}
.nav-links { display: flex; align-items: center; gap: clamp(15px, 2.4vw, 30px); color: var(--muted); font-size: .78rem; letter-spacing: .08em; }
.nav-links a { position: relative; padding: 26px 0 24px; transition: color .2s ease; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 17px;
  height: 1px;
  background: var(--blood);
  transition: right .25s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after { right: 0; }

:focus-visible { outline: 2px solid var(--blush); outline-offset: 4px; }
.brand:focus-visible, .nav-links a:focus-visible { border-radius: 2px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #d9ced0;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--blood); box-shadow: 0 0 18px rgba(215,25,93,.8); }

h1, .section-head h2, .about-main h3, .card h3, .bio-section h3,
.album-title strong, .group-title, .link-card strong {
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-block: clamp(52px, 5.5vw, 74px) clamp(44px, 5vw, 66px);
}
.hero::after {
  content: "01 / MIA";
  position: absolute;
  right: 0;
  bottom: 8px;
  color: var(--faint);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .23em;
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 960px; }
.hero h1 {
  margin: 0 0 0 -0.07em;
  font-size: clamp(6rem, 13.5vw, 12rem);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.075em;
  text-shadow: 0 14px 50px rgba(0,0,0,.5);
}
.hero-signature {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 38px);
  margin-top: 28px;
}
.hero-copy {
  position: relative;
  max-width: 650px;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(215,25,93,.75);
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.75vw, 1.28rem);
  line-height: 1.72;
}
.hero-copy span { display: block; margin-top: 17px; color: var(--muted); font-family: var(--sans); font-size: .66rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--text-soft);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .09em;
  transition: transform .25s var(--ease), border-color .25s, color .25s, background .25s, box-shadow .25s;
}
.btn::after { content: "→"; margin-left: 12px; font-size: 1rem; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.06); color: #fff; }
.btn:hover::after { transform: translateX(3px); }
.btn.primary { border-color: transparent; background: linear-gradient(135deg, #e21d67 0%, #a10f42 100%); color: #fff; box-shadow: 0 16px 42px rgba(215,25,93,.22); }
.btn.primary:hover { box-shadow: 0 20px 54px rgba(215,25,93,.34); }

.hero-art { position: relative; width: 250px; min-height: 0; display: block; isolation: isolate; }
.hero-art img {
  width: 250px;
  max-width: none;
  height: auto;
  display: block;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  filter: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
}

.section { padding-block: clamp(72px, 8vw, 104px); }
#about.section { padding-top: clamp(42px, 4.5vw, 62px); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 { margin: 0; font-size: clamp(3rem, 6.7vw, 5.7rem); line-height: .9; letter-spacing: -.055em; }
.section-head p { max-width: 340px; margin: 0; color: var(--muted); font-size: .8rem; letter-spacing: .045em; text-align: right; }

.about-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.about-main, .card, .album, .album-group, .video-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(24,21,28,.675), rgba(11,10,13,.72));
  box-shadow: var(--shadow-sm);
}
.about-main, .card { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.about-main::before, .card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; opacity: 0; background: var(--blood); transition: opacity .25s ease; }
.about-main:hover::before, .card:hover::before { opacity: 1; }
.about-main { padding: clamp(30px, 4.5vw, 54px); }
.about-main .kicker, .card .kicker { color: #cdbfc1; font-size: .65rem; font-weight: 850; letter-spacing: .21em; text-transform: uppercase; }
.about-main h3 { max-width: 600px; margin: 16px 0 21px; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .94; letter-spacing: -.045em; }
.about-main p, .card p { margin: 0; color: #bfb5b5; line-height: 1.82; }
.about-stack { display: grid; gap: 18px; }
.card { padding: clamp(26px, 3vw, 35px); transition: transform .28s var(--ease), border-color .28s; }
.card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.card h3 { margin: 12px 0 13px; font-size: clamp(1.65rem, 2.5vw, 2.05rem); line-height: 1.06; letter-spacing: -.025em; }
.quote-strip { margin-top: 32px; padding: 24px 27px; border-left: 2px solid var(--blood); background: linear-gradient(90deg, rgba(215,25,93,.13), transparent); color: #e0d4d3; font-family: var(--serif); font-size: 1.15rem; font-style: italic; line-height: 1.7; }
.about-quote-stack { margin-top: 32px; display: grid; gap: 14px; }
.about-quote-stack .quote-strip { margin-top: 0; }

.bio-details { margin-top: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(22,19,25,.72), rgba(9,8,11,.735)); box-shadow: var(--shadow-sm); }
.bio-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.bio-panel-grid > .bio-details,
.bio-panel-grid > .bio-nav-card {
  margin-top: 0;
}
.bio-panel-grid > .bio-details[open] {
  grid-column: 1 / -1;
}
.bio-panel-grid > .bio-details-compact[open] {
  grid-column: auto;
}
.bio-panel-grid > .bio-nav-card {
  min-width: 0;
}

.bio-details summary, .album > summary, .group-head, .info-tab summary { list-style: none; cursor: pointer; }
.bio-details summary::-webkit-details-marker, .album > summary::-webkit-details-marker, .group-head::-webkit-details-marker, .info-tab summary::-webkit-details-marker { display: none; }
.bio-details > summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 32px;
  background: linear-gradient(90deg, rgba(215,25,93,.0975), transparent 68%);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  transition: background .25s ease;
}
.bio-details > summary:hover { background: linear-gradient(90deg, rgba(215,25,93,.15), transparent 72%); }
.bio-summary-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
}
.bio-summary-title {
  line-height: 1.15;
}
.bio-summary-copy small {
  color: var(--faint);
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.bio-details summary::after, .album > summary::after, .group-head::after, .info-tab summary::after { content: "+"; color: #b6a8ab; font-family: var(--sans); font-weight: 300; transition: transform .25s var(--ease), color .25s; }
.bio-details[open] > summary::after, .album[open] > summary::after, .album-group[open] > .group-head::after, .info-tab[open] summary::after { content: "×"; color: var(--blush); transform: rotate(90deg); }
.bio-details[open] > summary {
  position: relative;
  padding-bottom: 39px;
  border-bottom: 1px solid var(--line);
}
.bio-details[open] > summary::before {
  content: "To close this section, click the title again or double-click anywhere within the panel.";
  position: absolute;
  left: 32px;
  right: 76px;
  bottom: 9px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: .48rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: .055em;
  opacity: .78;
}
.full-bio { max-width: 930px; padding: 12px 38px 42px; }
.bio-section { padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.bio-section:last-child { border-bottom: 0; }
.bio-section h3 { margin: 0 0 18px; font-size: clamp(1.7rem, 3vw, 2.45rem); letter-spacing: -.025em; }
.bio-section p { margin: 0 0 16px; color: #c8bebe; line-height: 1.85; }
.bio-section p:last-child { margin-bottom: 0; }

.little-things-section { padding-top: 28px; }
.little-things-group {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255,255,255,.075);
}
.little-things-section > .little-things-group:first-child {
  padding-top: 8px;
  border-top: 0;
}
.little-things-group + .little-things-group {
  margin-top: 24px;
}
.little-things-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 26px;
}
.little-things-heading span {
  color: var(--blush);
  font-size: .56rem;
  font-weight: 850;
  letter-spacing: .18em;
}
.little-things-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}
.little-things-list {
  display: grid;
  gap: 16px;
}
.little-things-item {
  padding: 22px 22px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
}
.little-things-item strong {
  display: block;
  margin-bottom: 5px;
  color: #f0e8e7;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
}
.little-things-item p {
  margin: 0;
  color: #bdb3b3;
  line-height: 1.7;
}

.little-person-item {
  padding: 0;
  overflow: hidden;
}
.little-person-details {
  width: 100%;
}
.little-person-details summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.little-person-details summary::-webkit-details-marker { display: none; }
.little-person-details summary::marker { content: ""; }
.little-person-details summary strong {
  margin: 0;
}
.little-person-details summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blush);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  opacity: .78;
  transition: transform .22s var(--ease), opacity .22s ease;
}
.little-person-details summary:hover::after {
  opacity: 1;
}
.little-person-details[open] summary {
  border-bottom: 1px solid rgba(255,255,255,.065);
}
.little-person-details[open] summary::after {
  opacity: 1;
  transform: rotate(45deg);
}
.little-person-copy {
  max-width: 860px;
  padding: 22px 22px 26px;
}
.little-person-copy p {
  margin: 0 0 15px;
  color: #c8bebe;
  line-height: 1.78;
}
.little-person-copy p:last-child { margin-bottom: 0; }
.little-things-song {
  display: grid;
  grid-template-columns: minmax(110px,.42fr) 1fr;
  align-items: baseline;
  gap: 14px;
}
.little-things-song strong { margin-bottom: 0; }
.little-things-song p { color: #d0c5c5; }

.little-things-notable p {
  margin-bottom: 15px;
}
.little-things-mentions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.little-things-mentions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(241,154,185,.18);
  border-radius: 999px;
  background: rgba(215,25,93,.055);
  color: #d9ced0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .025em;
}
@media (max-width: 640px) {
  .little-things-song { grid-template-columns: 1fr; gap: 3px; }
}

.bio-link, .info-body a { color: var(--blush); text-decoration: underline; text-decoration-color: rgba(241,154,185,.45); text-underline-offset: 4px; transition: color .2s, text-decoration-color .2s; }
.bio-link:hover, .info-body a:hover { color: #ffd4e3; text-decoration-color: currentColor; }

.bio-nav-card {
  min-height: 86px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(215,25,93,.0975), transparent 68%), linear-gradient(145deg, rgba(22,19,25,.72), rgba(9,8,11,.735));
  box-shadow: var(--shadow-sm);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.bio-nav-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(90deg, rgba(215,25,93,.15), transparent 72%), linear-gradient(145deg, rgba(22,19,25,.72), rgba(9,8,11,.735));
  transform: translateY(-2px);
}
.bio-nav-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
}
.bio-nav-title { line-height: 1.15; }
.bio-nav-copy small {
  color: var(--faint);
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.bio-nav-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  text-align: right;
}
.bio-nav-arrow {
  color: var(--blush);
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1;
}
.bio-nav-meta small {
  color: var(--faint);
  font-family: var(--sans);
  font-size: .48rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: .075em;
  text-transform: uppercase;
  white-space: nowrap;
}


.passions-page {
  min-height: calc(100svh - 76px);
  padding-block: clamp(72px, 8vw, 112px);
}
.passions-page-head {
  max-width: 980px;
}
.passions-page .eyebrow {
  margin-bottom: 24px;
}
.passions-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 11vw, 9rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.065em;
}
.passions-intro {
  max-width: 860px;
  margin-top: 42px;
  padding: 30px 0 34px 28px;
  border-left: 1px solid rgba(215,25,93,.75);
}
.passions-intro p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  line-height: 1.75;
}
.passions-intro p:last-child { margin-bottom: 0; }

.passions-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(44px, 6vw, 72px);
}
.passion-panel-sample {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(22,19,25,.72), rgba(9,8,11,.735));
  box-shadow: var(--shadow-sm);
}
.passion-panel-sample[open] {
  grid-column: 1 / -1;
}

.passion-panel-sample summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 32px;
  list-style: none;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(215,25,93,.0975), transparent 68%);
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  transition: background .25s ease;
}
.passion-panel-sample summary:hover {
  background: linear-gradient(90deg, rgba(215,25,93,.15), transparent 72%);
}
.passion-panel-sample summary::-webkit-details-marker { display: none; }
.passion-panel-sample summary::after {
  content: "+";
  color: #b6a8ab;
  font-family: var(--sans);
  font-weight: 300;
  transition: transform .25s var(--ease), color .25s;
}
.passion-panel-sample[open] summary {
  position: relative;
  padding-bottom: 39px;
  border-bottom: 1px solid var(--line);
}
.passion-panel-sample[open] summary::before {
  content: "To close this section, click the title again or double-click anywhere within the panel.";
  position: absolute;
  left: 32px;
  right: 76px;
  bottom: 9px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: .48rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: .055em;
  opacity: .78;
}
.passion-panel-sample[open] summary::after {
  content: "×";
  color: var(--blush);
  transform: rotate(90deg);
}
.passion-panel-content {
  padding: 12px 32px 32px;
}
.passion-panel-content p {
  margin: 0;
  color: #c8bebe;
  line-height: 1.85;
}

.passions-empty-space { min-height: 24vh; }

.links-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.link-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(17,16,21,.63);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s;
}
.link-card::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--blood); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.link-card::after { content: "↗"; position: absolute; right: 22px; top: 18px; color: #776c70; font-size: 1.15rem; transition: color .25s, transform .25s var(--ease); }
.link-card:hover { transform: translateY(-6px); border-color: var(--line-strong); background: rgba(23,21,27,.75); box-shadow: var(--shadow-lg); }
.link-card:hover::before { transform: scaleX(1); }
.link-card:hover::after { color: var(--blush); transform: translate(2px,-2px); }
.link-card .external-note {
  position: absolute;
  top: 43px;
  right: 22px;
  color: var(--faint);
  font-size: .43rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .72;
  pointer-events: none;
}
.link-card small { color: var(--muted); font-size: .63rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.link-card strong { font-size: clamp(1.65rem, 2.5vw, 2.05rem); letter-spacing: -.025em; }
.link-card.beside { background: radial-gradient(circle at 84% 16%, rgba(215,25,93,.1575), transparent 48%), rgba(17,16,21,.69); }
.link-card.exclusive-media {
  border-color: rgba(215,25,93,.48);
  background:
    linear-gradient(145deg, rgba(58,10,30,.64), rgba(15,10,17,.68) 72%);
  box-shadow: 0 18px 48px rgba(89,5,34,.13);
}
.link-card.exclusive-media::after {
  content: "▾";
  color: #efa2bd;
  text-shadow: 0 0 16px rgba(215,25,93,.46);
}
.link-card.exclusive-media:hover {
  border-color: rgba(241,90,145,.80);
  background:
    linear-gradient(145deg, rgba(72,12,37,.70), rgba(18,11,20,.73) 72%);
  box-shadow: 0 24px 64px rgba(121,7,48,.23);
}
.link-card.exclusive-media small { color: #efa2bd; }


.gallery-callout { position: relative; margin-top: 18px; overflow: hidden; border: 1px solid rgba(215,25,93,.5); border-radius: var(--radius-md); background: linear-gradient(120deg, rgba(53,10,27,.705), rgba(13,10,14,.735) 64%); box-shadow: 0 22px 58px rgba(89,5,34,.18); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.gallery-callout::before { content: ""; position: absolute; width: 280px; height: 280px; left: -80px; top: -130px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.gallery-callout:hover { transform: translateY(-4px); border-color: rgba(241,90,145,.86); box-shadow: 0 28px 72px rgba(121,7,48,.3); }
.gallery-callout a { position: relative; min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 45px 32px 25px; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); }
.gallery-callout a::before { content: "EXCLUSIVE · ONLY HERE"; position: absolute; left: 32px; top: 19px; color: #efa2bd; font-family: var(--sans); font-size: .61rem; font-weight: 900; letter-spacing: .22em; }
.gallery-callout a::after { content: "→"; color: #ffd8e6; font-family: var(--sans); font-size: 1.7rem; text-shadow: 0 0 20px rgba(215,25,93,.75); transition: transform .25s var(--ease); }
.gallery-callout:hover a::after { transform: translateX(5px); }
/* Archive pages */
.intro { position: relative; padding: clamp(72px, 10vw, 124px) 0 clamp(48px, 6vw, 72px); }
.intro::after { content: "ARCHIVE / MIA"; position: absolute; right: 0; bottom: 60px; color: var(--faint); font-size: .61rem; font-weight: 800; letter-spacing: .22em; writing-mode: vertical-rl; }
.intro h1 { margin: 0 0 0 -.055em; font-family: var(--serif); font-size: clamp(5.2rem, 13vw, 10.5rem); font-weight: 400; line-height: .74; letter-spacing: -.075em; }
.intro p { max-width: 760px; margin: 34px 0 0; color: var(--text-soft); font-family: var(--serif); font-size: clamp(1.05rem,2vw,1.3rem); line-height: 1.7; }
.albums { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; padding: 10px 0 clamp(90px, 11vw, 136px); }
.album, .album-group { overflow: hidden; border-radius: var(--radius-md); transition: border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.album:hover, .album-group:hover { border-color: var(--line-strong); }
.album[open], .album-group[open] { border-color: rgba(215,25,93,.26); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.album > summary { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 26px 28px; background: linear-gradient(90deg, rgba(215,25,93,.04125), transparent); transition: background .25s; }
.album > summary:hover { background: linear-gradient(90deg, rgba(215,25,93,.09), transparent 72%); }
.album[open] > summary { border-bottom: 1px solid var(--line); }

.album-external {
  display: block;
  min-height: 100px;
}
.album-external-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px;
  background: linear-gradient(90deg, rgba(215,25,93,.04125), transparent);
  transition: background .25s;
}
.album-external:hover .album-external-inner {
  background: linear-gradient(90deg, rgba(215,25,93,.09), transparent 72%);
}
.album-external-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex: 0 0 auto;
}
.album-external-arrow {
  color: var(--blush);
  font-size: 1rem;
  line-height: 1;
}
.album-external-meta small {
  color: var(--faint);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.album-title { display: grid; gap: 5px; }
.album-title strong, .group-title { font-size: 1.85rem; line-height: 1.1; letter-spacing: -.025em; }
.album-title small, .group-kicker { color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.album-body { min-height: 90px; padding: 22px 24px 26px; }
.empty, .loading, .error, .status { margin: 0; color: var(--muted); line-height: 1.7; }
.loading::after { content: ""; display: inline-block; width: 4px; height: 4px; margin-left: 8px; border-radius: 50%; background: var(--blood); box-shadow: 8px 0 #73213e, 16px 0 #48162a; animation: loading 1.15s infinite alternate; }
.error { color: #e2a5ba; }
@keyframes loading { to { transform: translateX(8px); opacity: .5; } }
.album-group { grid-column: 1/-1; padding: 0; }
.group-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 30px; }
.album-group[open] > .group-head { border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(215,25,93,.06), transparent); }
.group-kicker { display: block; margin-bottom: 7px; }
.group-note { margin-left: auto; color: var(--muted); font-size: .75rem; letter-spacing: .05em; }
.group-body { padding: 20px 26px 28px; }
.subalbums { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.subalbums .album { background: rgba(255,255,255,.0135); box-shadow: none; }
.info-tab { margin-bottom: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.0162); }
.info-tab summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 18px; color: #d6cacc; font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.info-tab[open] summary { border-bottom: 1px solid var(--line); background: rgba(215,25,93,.04125); }
.info-body { padding: 20px 22px 22px; color: #c5babc; line-height: 1.8; }
.info-body p { margin: 0; }
.image-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.image-button { position: relative; aspect-ratio: 1; overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-sm); background: #09090b; color: inherit; cursor: zoom-in; }
.image-button::after { content: "VIEW"; position: absolute; inset: auto 12px 11px auto; padding: 5px 8px; border-radius: 999px; background: rgba(6,6,8,.78); color: #fff; font-size: .54rem; font-weight: 900; letter-spacing: .18em; opacity: 0; transform: translateY(5px); transition: opacity .25s, transform .25s var(--ease); backdrop-filter: blur(8px); }
.image-button img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.84) contrast(1.03); transition: transform .45s var(--ease), filter .45s; }
.image-button:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.04); }
.image-button:hover::after { opacity: 1; transform: none; }
.pending { padding: 24px 28px 28px; border-top: 1px solid var(--line); color: var(--muted); line-height: 1.7; }
.find-section { padding: 0 0 clamp(90px, 11vw, 136px); }
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 34px; background: rgba(3,3,5,.95); backdrop-filter: blur(20px); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(94vw,1500px); max-height: 88vh; object-fit: contain; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: 0 34px 130px rgba(0,0,0,.8); }
.close { position: fixed; top: 22px; right: 22px; width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(18,16,21,.86); color: var(--text); font-size: 1.45rem; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.close:hover { transform: rotate(90deg); border-color: rgba(241,154,185,.6); background: var(--blood-dark); }

.video-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; padding: 10px 0 clamp(90px, 11vw, 136px); }
.video-card { overflow: hidden; border-radius: var(--radius-md); transition: transform .28s var(--ease), border-color .28s, box-shadow .28s; }
.video-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
.video-card video { display: block; width: 100%; aspect-ratio: 16/9; background: #000; }
.video-title { padding: 18px 20px 21px; color: #ddd3d1; font-size: .83rem; font-weight: 650; letter-spacing: .025em; overflow-wrap: anywhere; }
.status { padding: 18px 0 clamp(90px, 11vw, 136px); }

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 30px;
  color: #766d70;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-shell {
  display: grid;
  gap: 26px;
}
.footer-credit {
  min-width: 0;
}
.footer-quiet-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-quiet-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 18px;
  color: #8c8285;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}
.footer-quiet-link::before,
.footer-quiet-link::after {
  content: "";
  width: 7px;
  height: 19px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid rgba(241,154,185,.28);
  border-bottom: 1px solid rgba(241,154,185,.28);
}
.footer-quiet-link::before {
  left: 0;
  border-left: 1px solid rgba(241,154,185,.28);
}
.footer-quiet-link::after {
  right: 0;
  border-right: 1px solid rgba(241,154,185,.28);
}

@media (max-width: 1100px) {
  .links-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero-content { max-width: 760px; }
  .hero-signature { grid-template-columns: 250px minmax(0, 1fr); gap: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 800px) {
  .bio-panel-grid { grid-template-columns: 1fr; gap: 14px; }
  .bio-panel-grid > .bio-details[open], .bio-panel-grid > .bio-details-compact[open] { grid-column: 1; }
  .albums, .subalbums { grid-template-columns: 1fr; }
  .album-group { grid-column: auto; }
  .image-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .shell { width: min(var(--content), calc(100% - 32px)); }
  .nav { min-height: 66px; gap: 14px; }
  .brand { font-size: .73rem; letter-spacing: .33em; }
  .nav-links { gap: 13px; font-size: .68rem; letter-spacing: .025em; }
  .nav-links a { padding-block: 22px 20px; }
  .nav-links a::after { bottom: 14px; }
  .hero { min-height: auto; padding-block: 48px 56px; }
  .hero::after { bottom: 8px; }
  .hero h1 { font-size: clamp(5.5rem, 28vw, 8rem); }
  .hero-signature { grid-template-columns: 1fr; gap: 22px; margin-top: 26px; }
  .hero-art { width: 250px; max-width: 100%; }
  .hero-art img { width: 250px; max-width: 100%; }
  .hero-copy { margin-top: 0; padding-left: 17px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .btn { padding-inline: 15px; }
  .section { padding-block: 64px; }
  #about.section { padding-top: 38px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .section-head p { text-align: left; }
  .about-main { padding: 29px 24px; }
  .card { padding: 25px 23px; }
  .bio-details > summary { min-height: 76px; padding: 21px 22px; font-size: 1.12rem; }
  .bio-details[open] > summary { padding-bottom: 38px; }
  .bio-details[open] > summary::before { left: 22px; right: 56px; bottom: 8px; font-size: .44rem; }
  .bio-nav-card { min-height: 76px; padding: 21px 22px; font-size: 1.12rem; }
  .passions-page { padding-block: 58px 78px; }
  .passions-intro { margin-top: 30px; padding: 22px 0 24px 18px; }
  .passions-panel-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .passion-panel-sample summary { min-height: 76px; padding: 21px 22px; font-size: 1.12rem; }
  .passion-panel-sample[open] summary { padding-bottom: 38px; }
  .passion-panel-sample[open] summary::before { left: 22px; right: 56px; bottom: 8px; font-size: .44rem; }
  .passion-panel-content { padding: 8px 22px 24px; }
  .full-bio { padding: 8px 22px 30px; }
  .bio-section { padding-block: 28px; }
  .links-grid { grid-template-columns: 1fr; }
  .link-card { min-height: 150px; }
  .gallery-callout a { min-height: 106px; padding: 43px 22px 21px; font-size: 1.3rem; }
  .gallery-callout a::before { left: 22px; }
  .intro { padding: 64px 0 48px; }
  .intro::after { display: none; }
  .intro h1 { font-size: clamp(5rem, 26vw, 7.5rem); }
  .album > summary, .group-head { padding: 22px; }
  .group-head { align-items: center; }
  .group-note { display: none; }
  .group-body, .album-body { padding-left: 18px; padding-right: 18px; }
  .image-grid { gap: 8px; }
  .image-button { border-radius: 9px; }
  .image-button::after { display: none; }
  .lightbox { padding: 18px; }
  .close { top: 14px; right: 14px; }
}

@media (max-width: 410px) {
  .nav-links { gap: 10px; font-size: .64rem; }
  .nav-links a[href="/#about"] { display: none; }
  .hero-actions { grid-template-columns: 1fr; }
  .album-title strong, .group-title { font-size: 1.6rem; }
}

@media (hover: none) {
  .link-card:hover, .card:hover, .album:hover, .album-group:hover, .video-card:hover, .gallery-callout:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
}

/* September 9, 2026: faint purple orb ambience + slightly glassier information panels. */
body {
  position: relative;
  isolation: isolate;
}

body::after {
  content: "";
  position: fixed;
  inset: -3vh -3vw;
  z-index: -1;
  pointer-events: none;
  opacity: .54;
  background-image:
    radial-gradient(circle at center, rgba(195,125,255,.42) 0 1px, rgba(159,83,232,.13) 2px 8px, transparent 20px),
    radial-gradient(circle at center, rgba(176,105,255,.34) 0 1.5px, rgba(142,77,220,.11) 3px 10px, transparent 23px),
    radial-gradient(circle at center, rgba(207,145,255,.29) 0 1px, rgba(157,92,230,.10) 2px 7px, transparent 18px),
    radial-gradient(circle at center, rgba(168,92,246,.37) 0 1px, rgba(135,67,214,.12) 2px 9px, transparent 22px),
    radial-gradient(circle at center, rgba(190,119,255,.35) 0 1.5px, rgba(151,81,226,.11) 3px 11px, transparent 25px),
    radial-gradient(circle at center, rgba(209,146,255,.27) 0 1px, rgba(165,96,236,.09) 2px 7px, transparent 18px),
    radial-gradient(circle at center, rgba(176,103,255,.36) 0 1px, rgba(139,72,215,.12) 2px 9px, transparent 21px),
    radial-gradient(circle at center, rgba(198,129,255,.32) 0 1.5px, rgba(157,85,229,.10) 3px 10px, transparent 24px),
    radial-gradient(circle at center, rgba(183,111,255,.39) 0 1px, rgba(148,76,222,.12) 2px 9px, transparent 22px),
    radial-gradient(circle at center, rgba(210,152,255,.25) 0 1px, rgba(167,99,237,.08) 2px 7px, transparent 18px),
    radial-gradient(circle at center, rgba(163,88,241,.30) 0 1px, rgba(132,65,207,.09) 2px 8px, transparent 20px),
    radial-gradient(circle at center, rgba(195,128,255,.29) 0 1px, rgba(154,84,228,.09) 2px 8px, transparent 19px),
    radial-gradient(circle at center, rgba(181,106,255,.32) 0 1px, rgba(143,74,218,.10) 2px 9px, transparent 22px),
    radial-gradient(circle at center, rgba(205,142,255,.27) 0 1px, rgba(161,92,232,.08) 2px 7px, transparent 17px);
  background-repeat: no-repeat;
  background-size:
    44px 44px, 52px 52px, 40px 40px, 48px 48px, 56px 56px, 40px 40px, 46px 46px,
    54px 54px, 48px 48px, 40px 40px, 44px 44px, 42px 42px, 50px 50px, 38px 38px;
  background-position:
    7% 16%, 18% 74%, 29% 37%, 42% 86%, 53% 22%, 61% 61%, 72% 12%,
    81% 79%, 91% 43%, 96% 91%, 12% 48%, 36% 8%, 67% 94%, 86% 28%;
  filter: drop-shadow(0 0 7px rgba(153,82,238,.14));
  animation: orb-wander 46s ease-in-out infinite alternate;
  will-change: background-position, opacity, filter;
}

@keyframes orb-wander {
  0% {
    background-position:
      7% 16%, 18% 74%, 29% 37%, 42% 86%, 53% 22%, 61% 61%, 72% 12%,
      81% 79%, 91% 43%, 96% 91%, 12% 48%, 36% 8%, 67% 94%, 86% 28%;
    opacity: .48;
  }
  24% {
    background-position:
      10% 12%, 15% 79%, 33% 34%, 39% 82%, 57% 26%, 58% 65%, 76% 16%,
      78% 75%, 94% 39%, 92% 87%, 16% 52%, 32% 12%, 70% 89%, 83% 33%;
    opacity: .58;
  }
  49% {
    background-position:
      5% 21%, 22% 70%, 26% 42%, 46% 90%, 50% 17%, 65% 56%, 69% 8%,
      85% 84%, 88% 48%, 97% 95%, 9% 43%, 40% 5%, 63% 97%, 90% 24%;
    opacity: .51;
  }
  73% {
    background-position:
      12% 18%, 20% 80%, 35% 39%, 43% 79%, 59% 20%, 55% 68%, 79% 11%,
      75% 88%, 95% 46%, 90% 83%, 18% 46%, 34% 15%, 72% 92%, 82% 21%;
    opacity: .60;
  }
  100% {
    background-position:
      8% 10%, 14% 69%, 31% 32%, 48% 92%, 55% 29%, 68% 63%, 74% 19%,
      87% 73%, 89% 35%, 94% 89%, 6% 55%, 43% 10%, 61% 87%, 93% 31%;
    opacity: .50;
  }
}



/* A Quiet Hello */
.hello-page {
  min-height: calc(100svh - 76px);
  padding-block: clamp(62px, 7vw, 96px) clamp(88px, 10vw, 126px);
}
.hello-head {
  max-width: 760px;
}
.hello-head h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.06em;
}
.hello-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}
.hello-card {
  max-width: 860px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(22,19,25,.72), rgba(9,8,11,.735));
  box-shadow: var(--shadow-sm);
}
.hello-disclaimer {
  border-bottom: 1px solid var(--line);
}
.hello-disclaimer > summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 26px;
  list-style: none;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(215,25,93,.09), transparent 70%);
  color: #e8dddf;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: background .22s ease;
}
.hello-disclaimer > summary:hover {
  background: linear-gradient(90deg, rgba(215,25,93,.14), transparent 72%);
}
.hello-disclaimer > summary::-webkit-details-marker { display: none; }
.hello-disclaimer-open { display: none; }
.hello-disclaimer[open] .hello-disclaimer-closed { display: none; }
.hello-disclaimer[open] .hello-disclaimer-open { display: inline; }
.hello-disclaimer > summary::after {
  content: "+";
  color: var(--blush);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0;
  transition: transform .22s var(--ease);
}
.hello-disclaimer[open] > summary::after {
  transform: rotate(45deg);
}
.hello-disclaimer-body {
  max-width: 760px;
  padding: 24px 26px 30px;
}
.hello-disclaimer-body p {
  margin: 0 0 16px;
  color: #c5babc;
  line-height: 1.78;
}
.hello-disclaimer-body p:last-child { margin-bottom: 0; }

.hello-form {
  display: grid;
  gap: 21px;
  padding: 30px 26px 32px;
}
.hello-field {
  display: grid;
  gap: 8px;
}
.hello-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.hello-field label {
  color: #ded3d5;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hello-optional {
  color: var(--faint);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hello-field input,
.hello-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  color: var(--text);
  font: inherit;
  font-size: .9rem;
  line-height: 1.55;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.hello-field input {
  min-height: 46px;
  padding: 0 14px;
}
.hello-field textarea {
  min-height: 190px;
  padding: 13px 14px;
  resize: vertical;
}
.hello-field input::placeholder,
.hello-field textarea::placeholder {
  color: #675f62;
}
.hello-field input:focus,
.hello-field textarea:focus {
  border-color: rgba(241,154,185,.42);
  background: rgba(255,255,255,.035);
  box-shadow: 0 0 0 3px rgba(215,25,93,.07);
}
.hello-help {
  margin: 0;
  color: #756c6f;
  font-size: .66rem;
  line-height: 1.55;
}
.hello-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #a99fa1;
  font-size: .72rem;
  line-height: 1.6;
}
.hello-consent input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--blood);
}
.hello-disclaimer {
  scroll-margin-top: 94px;
}
.hello-disclaimer-jump {
  color: #cbbfc1;
  text-decoration: underline;
  text-decoration-color: rgba(241,154,185,.5);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.hello-disclaimer-jump:hover,
.hello-disclaimer-jump:focus-visible {
  color: #f0e6e8;
  text-decoration-color: var(--blush);
}
.hello-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 3px;
}
.hello-submit {
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid rgba(241,154,185,.24);
  border-radius: 999px;
  background: rgba(215,25,93,.075);
  color: #cbbfc1;
  font: inherit;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hello-submit:disabled {
  cursor: not-allowed;
  opacity: .48;
}
.hello-setup-note {
  margin: 0;
  color: #6f6669;
  font-size: .62rem;
  line-height: 1.5;
  text-align: right;
}
@media (max-width: 640px) {
  .hello-page { padding-block: 50px 82px; }
  .hello-card { margin-top: 34px; border-radius: 20px; }
  .hello-disclaimer > summary,
  .hello-disclaimer-body,
  .hello-form { padding-left: 20px; padding-right: 20px; }
  .hello-actions { align-items: flex-start; flex-direction: column; }
  .hello-setup-note { text-align: left; }
}


.hello-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.hello-submit:not(:disabled) {
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s var(--ease);
}
.hello-submit:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: rgba(241,154,185,.46);
  background: rgba(215,25,93,.13);
  color: #eee4e6;
}
.hello-status {
  min-height: 1.1em;
  margin: 0;
  color: #8d8386;
  font-size: .68rem;
  line-height: 1.5;
  text-align: right;
}
.hello-status[data-state="success"] { color: #b9cbbd; }
.hello-status[data-state="error"] { color: #d8a5b7; }
@media (max-width: 640px) {
  .hello-status { text-align: left; }
}


/* Whole Story link + page */
.bio-panel-grid > .bio-story-stack {
  min-width: 0;
}
.bio-story-stack > .bio-details {
  margin-top: 0;
}
.bio-panel-grid > .bio-story-stack:has(.bio-details[open]) {
  grid-column: 1 / -1;
}
.bio-story-deep-link {
  min-height: 58px;
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px 13px 20px;
  border: 1px solid rgba(241,154,185,.13);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(215,25,93,.045), rgba(255,255,255,.012));
  color: inherit;
  text-decoration: none;
  transition: border-color .22s ease, background .22s ease, transform .22s var(--ease);
}
.bio-story-deep-link:hover {
  transform: translateY(-1px);
  border-color: rgba(241,154,185,.28);
  background: linear-gradient(90deg, rgba(215,25,93,.075), rgba(255,255,255,.018));
}
.bio-story-deep-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.bio-story-deep-copy strong {
  color: #d8cccf;
  font-family: var(--serif);
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.2;
}
.bio-story-deep-copy small,
.bio-story-deep-meta small {
  color: var(--faint);
  font-size: .48rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.bio-story-deep-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.bio-story-deep-arrow {
  color: var(--blush);
  font-size: 1rem;
  line-height: 1;
}

.story-page {
  min-height: calc(100svh - 76px);
  padding-block: clamp(62px, 7vw, 96px) clamp(90px, 10vw, 132px);
}
.story-head {
  max-width: 900px;
  margin-bottom: clamp(42px, 6vw, 70px);
}
.story-head h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 7.6rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.06em;
}
.story-kicker {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}
.story-prose {
  max-width: 850px;
}
.story-prose p {
  margin: 0 0 27px;
  color: #c9bfc1;
  font-size: clamp(.98rem, 1.2vw, 1.05rem);
  line-height: 1.92;
}
.story-prose p:last-child {
  margin-bottom: 0;
}
.story-prose p:first-child {
  color: #e2d8da;
  font-size: clamp(1.04rem, 1.35vw, 1.13rem);
}
@media (max-width: 760px) {
  .bio-story-deep-link {
    align-items: flex-start;
  }
  .bio-story-deep-meta {
    max-width: 92px;
  }
  .story-page {
    padding-block: 50px 82px;
  }
  .story-prose p {
    margin-bottom: 23px;
    line-height: 1.82;
  }
}
