:root {
  --paper: #f3eadc;
  --paper-2: #fff8ee;
  --ink: #1c140c;
  --muted: #6d6054;
  --line: #e3d5c2;
  --gold: #b8893a;
  --gold-deep: #8c6424;
  --moss: #2c4a38;
  --shadow: 0 18px 50px rgba(40, 24, 8, 0.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--paper); color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  min-height: 100%;
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-deep); }
.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: #fff; padding: 8px 12px; }
.top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 18px; position: sticky; top: 0; z-index: 20;
  background: rgba(243, 234, 220, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand b { font-size: 15px; letter-spacing: -0.03em; }
.brand small { color: var(--muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.top nav { display: flex; gap: 8px; flex-wrap: wrap; }
.top nav a {
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 700;
  padding: 8px 10px; min-height: 44px; display: inline-flex; align-items: center;
}
.hero {
  position: relative; min-height: 78vh; display: grid; align-items: end;
  overflow: hidden; color: #fff8ee;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}
.hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,6,0.15) 0%, rgba(20,12,6,0.72) 72%);
}
.hero .copy { position: relative; z-index: 1; padding: 28px 20px 36px; max-width: 720px; }
.eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800;
  color: var(--gold);
}
h1, h2, h3 { font-family: "Iowan Old Style", Palatino, Georgia, serif; letter-spacing: -0.03em; margin: 8px 0; }
h1 { font-size: clamp(34px, 8vw, 64px); line-height: 1.05; font-weight: 700; }
.hero p { font-size: 17px; max-width: 34em; color: #f0e6d6; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 12px 18px; border-radius: 999px;
  font-weight: 800; text-decoration: none; border: 0; cursor: pointer; font: inherit;
}
.btn-gold { background: var(--gold); color: #1c140c; }
.btn-gold:hover { background: #c99a4a; }
.btn-ghost { background: transparent; color: inherit; border: 1px solid rgba(255,248,238,0.45); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 28px 18px 72px; }
.search {
  width: 100%; min-height: 52px; border-radius: 16px; border: 1px solid var(--line);
  background: var(--paper-2); padding: 12px 16px; font: inherit; color: inherit;
}
.section-kicker {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800;
  color: var(--gold-deep); margin-bottom: 6px;
}
.grid {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 18px;
}
@media (min-width: 720px) {
  .grid { grid-template-columns: 1fr 1fr; }
}
.card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.card .art { aspect-ratio: 16/10; background: #d9cbb8; overflow: hidden; }
.card .art img { width: 100%; height: 100%; object-fit: cover; }
.card .pad { padding: 16px 16px 18px; }
.card h3 { font-size: 26px; margin: 0 0 4px; }
.card .handle { color: var(--muted); font-weight: 700; font-size: 13px; }
.card .line { margin: 10px 0 14px; color: var(--ink); }
.meet { font-weight: 800; color: var(--gold-deep); }
.profile-hero { position: relative; min-height: 72vh; display: grid; align-items: end; color: #fff8ee; overflow: hidden; }
.profile-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.profile-hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,12,6,0.2), rgba(20,12,6,0.78)); }
.profile-hero .copy { position: relative; z-index: 1; padding: 28px 20px 36px; max-width: 720px; }
.portrait {
  width: 92px; height: 92px; border-radius: 28px; object-fit: cover;
  border: 3px solid rgba(255,248,238,0.8); box-shadow: var(--shadow);
}
.profile-hero.split {
  min-height: 0;
  grid-template-columns: minmax(280px, 42%) 1fr;
  align-items: stretch;
  background: var(--paper);
  color: var(--ink);
}
.profile-hero.split .photo {
  min-height: 560px;
  background: #1a140e;
  overflow: hidden;
}
.profile-hero.split .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.profile-hero.split .copy {
  padding: 48px 40px 56px;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile-hero.split h1 { font-size: clamp(36px, 5vw, 58px); color: var(--ink); }
.profile-hero.split .lede { font-size: 20px; max-width: 28em; }
.profile-hero.split .handleline { color: var(--muted); font-weight: 700; }
.profile-hero.split .btn-ghost { color: var(--ink); border-color: var(--line); }
@media (max-width: 719px) {
  .profile-hero.split { grid-template-columns: 1fr; }
  .profile-hero.split .photo { min-height: 0; aspect-ratio: 4 / 5; }
  .profile-hero.split .copy { padding: 28px 18px 36px; }
}
.story { font-size: 18px; max-width: 36em; }
.trio { display: grid; gap: 12px; margin: 28px 0; }
.trio article {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px;
}
.trio h3 { font-size: 22px; }
.vanity {
  background: #fff; border: 1px dashed var(--gold); border-radius: 16px; padding: 14px 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px;
  display: flex; justify-content: space-between; gap: 10px; align-items: center; flex-wrap: wrap;
}
.links {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.chip-link {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 8px 14px; border-radius: 999px; text-decoration: none;
  background: rgba(255,248,238,0.16); color: #fff8ee;
  border: 1px solid rgba(255,248,238,0.35); font-weight: 700; font-size: 13px;
}
.chip-link.ink {
  background: var(--paper-2); color: var(--ink); border-color: var(--line);
}
.where { color: var(--muted); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
.panda-door {
  display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: center;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px;
  padding: 14px; margin: 22px 0;
}
.panda-door img { width: 92px; height: 92px; border-radius: 18px; object-fit: cover; }
.work-grid, .book-grid { display: grid; gap: 10px; margin: 12px 0 22px; }
@media (min-width: 720px) {
  .work-grid, .book-grid { grid-template-columns: 1fr 1fr; }
}
.work-grid a, .book-grid a {
  display: block; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 16px; text-decoration: none; color: inherit;
}
.work-grid h3, .book-grid h3 { font-size: 18px; margin: 0 0 6px; }
.watch-block { margin: 28px 0; }
.stage {
  position: relative; padding-top: 56.25%; border-radius: 20px;
  overflow: hidden; background: #140e08; box-shadow: var(--shadow);
}
.stage-play, .stage-frame {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.stage-play {
  padding: 0; cursor: pointer; background: #140e08; display: block;
}
.stage-play img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.78); }
.gold-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 999px;
  background: var(--gold); color: #1c140c;
  display: grid; place-items: center; font-size: 28px; padding-left: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.stage-play:hover .gold-play, .stage-play:focus-visible .gold-play { background: #c99a4a; }
.stage-frame iframe { width: 100%; height: 100%; border: 0; }
.playlist {
  display: grid; gap: 8px; margin-top: 14px;
}
@media (min-width: 720px) { .playlist { grid-template-columns: 1fr 1fr; } }
.vid-card {
  display: grid; grid-template-columns: 120px 1fr; gap: 10px; align-items: center;
  text-align: left; font: inherit; color: inherit; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  min-height: 72px; cursor: pointer; padding: 0;
}
.vid-card img { width: 120px; height: 68px; object-fit: cover; }
.vid-card span { font-weight: 700; font-size: 14px; padding-right: 10px; }
.vid-card.is-on { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(184,137,58,0.35); }
.creds { color: var(--muted); font-size: 14px; padding-left: 18px; }
.quiet {
  margin-top: 48px; color: var(--muted); font-size: 13px;
}
.quiet a { color: var(--muted); }
.claim {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 22px; padding: 22px;
  display: grid; gap: 12px;
}
.claim button, .claim a.btn { width: 100%; }
.msg { min-height: 1.4em; color: var(--moss); font-weight: 700; }
.foot { padding: 24px 18px 40px; color: var(--muted); font-size: 13px; }
.hidden { display: none !important; }
