:root {
  --paper: #fff6e4;
  --paper-deep: #f3e2c4;
  --ink: #16120c;
  --ink-soft: #3c3428;
  --panel: #fffdf8;
  --line: #16120c;
  --red: #e4231a;
  --blue: #2457d6;
  --yellow: #ffd22e;
  --teal: #0f9b8a;
  --shadow: 6px 6px 0 var(--ink);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Outfit, "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, #ffe27a 0 42px, transparent 43px),
    radial-gradient(circle at 88% 8%, #ff8a7a 0 28px, transparent 29px),
    radial-gradient(circle at 78% 86%, #7ad7ff 0 36px, transparent 37px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  line-height: 1.55;
}

a {
  color: var(--blue);
}

img {
  max-width: 100%;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, white);
  border-bottom: 4px solid var(--ink);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 58%, #ffd9b0 0 46%, transparent 47%),
    radial-gradient(circle at 22% 18%, #16120c 0 18%, transparent 19%),
    radial-gradient(circle at 78% 18%, #16120c 0 18%, transparent 19%),
    var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}

.brand-name {
  font-family: Bangers, Impact, "Arial Black", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  padding: 8px 14px;
  border: 3px solid transparent;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--yellow);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 56px 0 28px;
}

.kicker {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: var(--red);
  color: #fff;
  padding: 6px 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
}

h1,
h2,
h3 {
  font-family: Bangers, Impact, "Arial Black", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin-top: 14px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  color: var(--ink);
  background: var(--yellow);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.btn.secondary {
  background: #fff;
}

.hero-card {
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: 10px 10px 0 var(--ink);
  padding: 22px;
  display: grid;
  gap: 14px;
}

.burst {
  justify-self: center;
  width: 210px;
  height: 210px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, var(--yellow) 0 12deg, #fff 12deg 24deg);
  display: grid;
  place-items: center;
  box-shadow: 5px 5px 0 var(--ink);
}

.burst span {
  font-family: Bangers, Impact, sans-serif;
  font-size: 2.4rem;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 0.95;
}

.section {
  padding: 28px 0 64px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head p {
  margin: 0;
  max-width: 28rem;
  color: var(--ink-soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.card-body {
  padding: 14px 16px 18px;
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 4px;
}

.meta {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.stage {
  height: 210px;
  display: grid;
  place-items: center;
  border-bottom: 4px solid var(--ink);
}

.stage.red { background: #ffd4cf; }
.stage.blue { background: #cfe0ff; }
.stage.yellow { background: #ffe9a3; }
.stage.teal { background: #c8f3ec; }
.stage.cream { background: #ffe8c8; }
.stage.lilac { background: #e7d7ff; }
.stage.mint { background: #d5f5c8; }
.stage.sky { background: #c9f0ff; }

.profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 40px;
}

.profile-art {
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-art .stage {
  height: 320px;
  border-bottom: 0;
}

.profile-copy {
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.chip {
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--yellow);
}

.chip.alt { background: #cfe0ff; }
.chip.warm { background: #ffd4cf; }

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.related a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.site-footer {
  border-top: 4px solid var(--ink);
  padding: 22px 0 36px;
  background: var(--ink);
  color: #fff8e8;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--yellow);
}

/* Original CSS portraits — geometric tributes, not official art */
.face {
  position: relative;
  width: 148px;
  height: 148px;
}

.face.lg {
  width: 210px;
  height: 210px;
}

.mickey {
  width: 120px;
  height: 120px;
  background: #f3c39a;
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.mickey::before,
.mickey::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  background: #16120c;
  border-radius: 50%;
  top: -28px;
}

.mickey::before { left: -22px; }
.mickey::after { right: -22px; }

.mickey .eyes {
  position: absolute;
  inset: 38px 0 auto;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.mickey .eyes i,
.bugs .eyes i,
.sponge .eyes i,
.homer .eyes i,
.scooby .eyes i,
.popeye .eyes i,
.felix .eyes i,
.dora .eyes i {
  display: block;
  width: 16px;
  height: 22px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
  position: relative;
}

.mickey .eyes i::after,
.bugs .eyes i::after,
.sponge .eyes i::after,
.homer .eyes i::after,
.scooby .eyes i::after,
.popeye .eyes i::after,
.felix .eyes i::after,
.dora .eyes i::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  left: 4px;
  top: 7px;
}

.mickey .smile,
.bugs .smile,
.sponge .smile,
.homer .smile,
.scooby .smile,
.popeye .smile,
.felix .smile,
.dora .smile {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  width: 42px;
  height: 18px;
  border: 3px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: transparent;
}

.bugs {
  width: 92px;
  height: 118px;
  background: #d8d3c4;
  border: 4px solid var(--ink);
  border-radius: 46px 46px 40px 40px;
}

.bugs::before,
.bugs::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 78px;
  background: #d8d3c4;
  border: 4px solid var(--ink);
  border-radius: 20px;
  top: -70px;
}

.bugs::before { left: 12px; transform: rotate(-12deg); }
.bugs::after { right: 12px; transform: rotate(12deg); }

.bugs .eyes { position: absolute; top: 36px; left: 0; right: 0; display: flex; justify-content: center; gap: 12px; }
.bugs .smile { bottom: 22px; width: 36px; }

.sponge {
  width: 118px;
  height: 118px;
  background: #ffe14a;
  border: 4px solid var(--ink);
  border-radius: 16px;
}

.sponge::before,
.sponge::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #e6c12a;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.sponge::before { top: 10px; left: 12px; }
.sponge::after { top: 18px; right: 16px; }

.sponge .eyes { position: absolute; top: 28px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; }
.sponge .eyes i { width: 28px; height: 28px; border-radius: 50%; }
.sponge .smile { bottom: 22px; width: 50px; height: 22px; background: #fff; }

.homer {
  width: 120px;
  height: 128px;
  background: #ffe07a;
  border: 4px solid var(--ink);
  border-radius: 60px 60px 42px 42px;
}

.homer::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 28px;
  background: var(--ink);
  border-radius: 8px;
  top: -18px;
  left: 54px;
  box-shadow: 10px 4px 0 var(--ink);
}

.homer .eyes { position: absolute; top: 42px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.homer .eyes i { width: 28px; height: 28px; border-radius: 50%; background: #fff; }
.homer .smile { bottom: 28px; width: 46px; }

.scooby {
  width: 132px;
  height: 110px;
  background: #c9843a;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 42% 42%;
}

.scooby::before,
.scooby::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 54px;
  background: #c9843a;
  border: 4px solid var(--ink);
  border-radius: 40px 40px 16px 16px;
  top: -28px;
}

.scooby::before { left: 10px; transform: rotate(-18deg); }
.scooby::after { right: 10px; transform: rotate(18deg); }

.scooby .collar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 16px;
  background: #2457d6;
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.scooby .eyes { position: absolute; top: 34px; left: 0; right: 0; display: flex; justify-content: center; gap: 16px; }
.scooby .smile { bottom: 34px; }

.popeye {
  width: 110px;
  height: 120px;
  background: #f0c29a;
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.popeye::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -8px;
  height: 28px;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 8px 8px 0 0;
}

.popeye::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 8px;
  background: #c9843a;
  border: 3px solid var(--ink);
  border-radius: 8px;
  right: -18px;
  top: 72px;
  transform: rotate(18deg);
}

.popeye .eyes { position: absolute; top: 44px; left: 0; right: 0; display: flex; justify-content: center; gap: 14px; }
.popeye .eyes i:first-child { height: 8px; width: 20px; border-radius: 8px; }
.popeye .smile { bottom: 24px; width: 28px; }

.felix {
  width: 118px;
  height: 118px;
  background: #16120c;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff inset;
}

.felix::before,
.felix::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 34px solid #16120c;
  top: -20px;
}

.felix::before { left: 8px; transform: rotate(-16deg); }
.felix::after { right: 8px; transform: rotate(16deg); }

.felix .eyes { position: absolute; top: 40px; left: 0; right: 0; display: flex; justify-content: center; gap: 16px; }
.felix .eyes i { width: 22px; height: 28px; background: #fff; }
.felix .smile { bottom: 26px; width: 48px; height: 22px; border-color: #fff; }

.dora {
  width: 124px;
  height: 124px;
  background: #3aa4e0;
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.dora::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 8px;
  height: 58px;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 0 0 50px 50px;
}

.dora::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 78px;
  height: 16px;
  background: #e4231a;
  border: 3px solid var(--ink);
  z-index: 2;
}

.dora .bell {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 3;
}

.dora .eyes { position: absolute; top: 34px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 2; }
.dora .eyes i { width: 24px; height: 28px; background: #fff; }
.dora .smile { bottom: 46px; z-index: 2; width: 28px; }

@media (max-width: 960px) {
  .hero,
  .profile,
  .about-grid,
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .profile,
  .about-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
