:root {
  --cream: #f7f4ee;
  --cream-deep: #f0ebe1;
  --paper: #ffffff;
  --ink: #2c2722;
  --ink-soft: #6b635b;
  --ink-faint: #9a9088;
  --line: #e9e2d7;
  --line-strong: #ddd4c6;
  --brown: #9c7757;
  --brown-deep: #7c5c40;
  --teal: #34b5ac;
  --teal-deep: #1e8c84;
  --coral: #f08a7b;
  --coral-deep: #d96a5a;
  --orange: #ee8c42;
  --yellow: #f2b53d;
  --green: #5fb86e;
  --accent: var(--teal);
  --accent-deep: var(--teal-deep);
  --accent-wash: #e4f4f2;
  --display: "Fredoka", "Baloo 2", "Quicksand", system-ui, sans-serif;
  --body: "Nunito", system-ui, sans-serif;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(44, 39, 34, .04), 0 2px 8px rgba(44, 39, 34, .05);
  --shadow: 0 2px 6px rgba(44, 39, 34, .05), 0 10px 30px rgba(44, 39, 34, .07);
  --shadow-lg: 0 6px 14px rgba(44, 39, 34, .06), 0 24px 60px rgba(44, 39, 34, .10);
  --wrap: 1180px;
  --gut: clamp(20px, 4vw, 40px);
  --card-min: 220px;
  --grid-gap: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 650;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

p {
  margin: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gut);
}

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.muted {
  color: var(--ink-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 238, .88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand .mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--paper);
  border: 1px solid var(--line);
}

.brand .word,
.foot-brand .word {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}

.brand .word {
  font-size: 1.42rem;
}

.brand .word b,
.foot-brand .word b {
  color: var(--accent-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.nav a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: .16s;
}

.nav a:hover {
  color: var(--ink);
  background: var(--cream-deep);
}

.nav a.active {
  color: var(--accent-deep);
  background: var(--accent-wash);
}

.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  min-width: min(340px, 30vw);
  padding: 0 16px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-faint);
  transition: .16s;
}

.search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-wash);
}

.search svg {
  flex-shrink: 0;
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
}

.search input::placeholder {
  color: var(--ink-faint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1rem;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: .16s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px -6px var(--accent);
}

.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--paper);
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.btn-sm {
  padding: 8px 14px;
  font-size: .92rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 46px;
  align-items: center;
  padding-block: 52px 26px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 19.5ch;
  margin-top: 14px;
}

.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 22px 0 26px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .panel {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.04;
  border-radius: var(--r-xl);
  background: radial-gradient(120% 120% at 30% 20%, #fff 0%, var(--cream-deep) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-art .panel img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 90%;
  object-fit: contain;
  object-position: center 44%;
}

.hero-art .badge {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 650;
  z-index: 2;
}

.hero-art .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .45;
}

.hero-art .blob-teal {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 8%;
  background: var(--teal);
}

.hero-art .blob-coral {
  width: 90px;
  height: 90px;
  right: 10%;
  bottom: 18%;
  background: var(--coral);
}

.scribble {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.scribble [data-scr] {
  position: absolute;
  left: -4%;
  right: -4%;
  width: 108%;
  bottom: 0;
  height: .5em;
  pointer-events: none;
}

.scribble svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.scribble svg path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  stroke-linecap: round;
  opacity: .9;
}

.hero-art .badge {
  font-weight: 800;
  font-size: .92rem;
}

.hero-art .badge .ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
}

.badge-bottom .ico {
  background: var(--coral);
}

.badge-top {
  top: 8%;
  left: -4%;
}

.badge-bottom {
  bottom: 14%;
  right: -6%;
}

.stats {
  display: flex;
  gap: 34px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stats .s b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.stats .s span {
  font-size: .86rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-soft);
  padding: 7px 9px;
  margin: 18px 0 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  width: max-content;
  max-width: 100%;
}

.crumbs a {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: .14s;
  white-space: nowrap;
}

.crumbs a:hover {
  color: var(--accent-deep);
  background: var(--accent-wash);
}

.crumbs .sep {
  color: var(--line-strong);
  display: inline-flex;
  align-items: center;
}

.crumbs .sep svg {
  width: 14px;
  height: 14px;
}

.crumbs .here {
  color: var(--ink);
  font-weight: 600;
  padding: 5px 11px;
  white-space: nowrap;
}

.page-head {
  padding: 18px 0 6px;
}

.page-head .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.page-head .kicker .pill {
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-wash);
  padding: 5px 12px;
  border-radius: 999px;
}

.page-title {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  max-width: 18ch;
}

.page-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 72ch;
  margin: 0;
  text-wrap: pretty;
}

.intro-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3vw, 32px);
  margin-top: 20px;
}

.eat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.eat .author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.eat .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--accent);
  background: var(--cream-deep);
}

.eat .by {
  font-size: .82rem;
  color: var(--ink-faint);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.eat .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 7px;
}

.eat .name .verify {
  color: var(--accent-deep);
  display: inline-flex;
}

.eat .role {
  font-size: .86rem;
  color: var(--ink-soft);
}

.eat .dates {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.eat .date .lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-faint);
  font-weight: 800;
}

.eat .date .val {
  font-size: .96rem;
  color: var(--ink);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.eat .date .val svg {
  color: var(--accent-deep);
  flex-shrink: 0;
}

.bio-disclosure {
  margin-top: 10px;
}

.bio-disclosure summary {
  list-style: none;
  cursor: pointer;
  color: var(--accent-deep);
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bio-disclosure summary::-webkit-details-marker {
  display: none;
}

.bio-disclosure summary svg {
  transition: transform .2s;
}

.bio-disclosure[open] summary svg {
  transform: rotate(90deg);
}

.bio {
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--cream);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bio .avatar {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.bio h2 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.bio p {
  font-size: .96rem;
  color: var(--ink-soft);
  max-width: 70ch;
}

.bio .links {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .86rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.sec {
  padding-block: 42px;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.sec-head h2,
.seo-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.sec-head .sub {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 4px;
  max-width: 68ch;
}

.page-intro a,
.sec-head .sub a,
.seo-copy a {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-color: color-mix(in srgb, var(--accent-deep) 38%, transparent);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.page-intro a:hover,
.sec-head .sub a:hover,
.seo-copy a:hover {
  color: var(--ink);
  text-decoration-color: var(--accent-deep);
}

.more {
  font-family: var(--display);
  font-weight: 700;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cat-grid,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card-min), 1fr));
  gap: var(--grid-gap);
}

.cat-card {
  --c: var(--accent);
  --cw: var(--accent-wash);
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: .18s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c);
}

.cat-card .thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--r-lg) - 1px) calc(var(--r-lg) - 1px) 0 0;
  background: var(--cw);
  overflow: hidden;
}

.category-tile {
  --tile-ink: #3a2820;
  --tile-card-bg: #fff;
  --tile-radius: 9.5%;
  --tile-wedge: 18deg;
  --tile-tilt: -1.2deg;
  container-type: size;
  isolation: isolate;
}

.category-tile .tile-rays {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-conic-gradient(from 6deg at 50% 46%,
    var(--tile-c1) 0deg var(--tile-wedge),
    var(--tile-c2) var(--tile-wedge) calc(var(--tile-wedge) * 2),
    var(--tile-c3) calc(var(--tile-wedge) * 2) calc(var(--tile-wedge) * 3),
    var(--tile-c4) calc(var(--tile-wedge) * 3) calc(var(--tile-wedge) * 4));
}

.category-tile .tile-card {
  position: absolute;
  inset: 7.5%;
  z-index: 1;
  background: var(--tile-card-bg);
  border-radius: var(--tile-radius);
  box-shadow: 0 1.5cqw 4cqw rgba(0, 0, 0, .18);
  transform: rotate(var(--tile-tilt));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7cqw 6cqw 5cqw;
}

.category-tile .tile-character {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: 0;
}

.category-tile .tile-character img {
  max-width: 82%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.category-tile .tile-label {
  max-width: 100%;
  margin: 3cqw 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15cqw;
  line-height: 1;
  color: var(--tile-ink);
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.category-tile.tile-empty .tile-card {
  padding: 6cqw;
}

.category-tile.tile-empty .tile-label {
  margin: 0;
  font-size: 16cqw;
  white-space: normal;
}

.cat-card h2,
.cat-card h3 {
  font-size: 1.18rem;
  margin: 0;
  padding: 16px 20px 0;
}

.cat-card .count {
  font-size: .86rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-weight: 700;
  padding: 12px 20px 20px;
}

.cat-card .count .dot {
  width: 8px;
  height: 8px;
  margin-top: .43em;
  border-radius: 50%;
  background: var(--c);
  flex-shrink: 0;
}

.cat-card .corner {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--c);
  background: var(--paper);
  border: 1px solid var(--cw);
  box-shadow: 0 6px 18px rgba(45, 40, 35, .08);
  padding: 4px 10px;
  border-radius: 999px;
}

.tone-0 {
  --c: var(--teal);
  --cw: #e4f4f2;
  --tile-c1: #3f9d9b;
  --tile-c2: #3a2820;
  --tile-c3: #c8b29a;
  --tile-c4: #2c7472;
}

.tone-1 {
  --c: var(--coral);
  --cw: #fce6e2;
  --tile-c1: #e0a24a;
  --tile-c2: #3a2820;
  --tile-c3: #e8d4b0;
  --tile-c4: #c47a2c;
}

.tone-2 {
  --c: var(--orange);
  --cw: #fcebdc;
  --tile-c1: #4aa7a3;
  --tile-c2: #3a2820;
  --tile-c3: #c6ae99;
  --tile-c4: #8a6c57;
}

.tone-3 {
  --c: var(--green);
  --cw: #e4f2e2;
  --tile-c1: #5fa05a;
  --tile-c2: #3a2820;
  --tile-c3: #d7c89a;
  --tile-c4: #3d7a4a;
}

.tone-4 {
  --c: var(--yellow);
  --cw: #fbf0d6;
  --tile-c1: #55b8b0;
  --tile-c2: #3a2820;
  --tile-c3: #ead8b5;
  --tile-c4: #6f4a35;
}

.asset {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: .18s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.asset:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.asset .sheet {
  position: relative;
  aspect-ratio: 1 / 1.16;
  margin: 12px 12px 0;
  border-radius: var(--r);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asset .sheet a,
.asset .sheet img {
  width: 100%;
  height: 100%;
}

.asset .sheet a {
  display: block;
}

.asset .sheet img {
  object-fit: cover;
  transform: scale(1.07);
}

.asset:hover .sheet {
  border-color: var(--accent);
}

.asset .fmt {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 8px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.asset .meta {
  padding: 14px 16px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.asset .meta h3 {
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.asset .meta h3 a:hover {
  color: var(--accent-deep);
}

.asset .meta .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.asset .meta .tag {
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.asset .actions {
  display: flex;
  gap: 9px;
  padding: 12px 16px 16px;
}

.asset .actions .btn {
  flex: 1;
  padding: 10px 10px;
  font-size: .92rem;
  min-width: 0;
}

.act-print {
  background: var(--cream-deep);
  color: var(--ink);
  border-color: transparent;
}

.act-print:hover {
  background: var(--line-strong);
}

.act-dl {
  background: var(--accent);
  color: #fff;
}

.act-dl:hover {
  background: var(--accent-deep);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 6px 0 26px;
}

.toolbar .count {
  font-weight: 800;
  color: var(--ink-soft);
  font-size: .95rem;
}

.toolbar .more {
  margin-left: auto;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

.filt {
  font-family: var(--display);
  font-weight: 650;
  font-size: .92rem;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink-soft);
  transition: .16s;
}

.filt:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.filt.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.section-note {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--accent-wash);
  border: 1px solid #d5ece9;
  border-radius: var(--r-lg);
  padding: 16px 20px;
  margin: 8px 0 30px;
  color: var(--ink);
}

.section-note .ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-note b {
  font-weight: 900;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 38px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 4vw, 34px);
}

.about-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  margin-top: 8px;
  max-width: 17ch;
}

.about-copy p {
  color: var(--ink-soft);
  max-width: 64ch;
  margin-top: 14px;
}

.about-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--cream-deep);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.about-photo img {
  width: 76%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.about-stats div {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  padding: 14px 15px;
}

.about-stats b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
}

.about-stats span {
  display: block;
  margin-top: 5px;
  font-size: .84rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.artist-card {
  --c: var(--accent);
  --cw: var(--accent-wash);
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.artist-card h3 {
  font-size: 1.15rem;
}

.artist-card p {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: .98rem;
}

.artist-avatar {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--cw);
  color: var(--c);
  border: 1px solid var(--cw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
}

.artist-role {
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 800;
}

.trust {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 18px;
}

.trust-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding-block: 50px;
}

.trust .photo {
  border-radius: var(--r-lg);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  aspect-ratio: 4 / 3;
}

.trust .photo img {
  width: 72%;
}

.trust h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

.trust .points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.trust .pt {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.trust .pt .tick {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-wash);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.trust .pt b {
  font-weight: 800;
}

.trust .pt p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: .98rem;
  text-wrap: pretty;
}

.content {
  padding: 10px 0 8px;
}

.content-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3.4vw, 40px);
}

.content-card + .content-card {
  margin-top: 18px;
}

.content-card .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-wash);
  padding: 6px 13px;
  border-radius: 999px;
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin: 0 0 12px;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 26px 0 8px;
}

.prose p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent);
  text-underline-offset: 3px;
  transition: .14s;
}

.prose a:hover {
  text-decoration-color: var(--accent);
  background: var(--accent-wash);
  border-radius: 4px;
}

.prose ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.prose ul li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.6;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: .6em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--accent);
  transform: rotate(12deg);
}

.content .return-line {
  margin: 22px 0 0;
  font-size: 1.04rem;
  color: var(--ink-soft);
}

.content .return-line a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent);
  text-underline-offset: 3px;
  transition: .14s;
}

.content .return-line a:hover {
  text-decoration-color: var(--accent);
  background: var(--accent-wash);
  border-radius: 4px;
}

.seo-block {
  padding-block: 10px 58px;
}

.seo-copy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding-block: 24px;
  padding-inline: clamp(22px, 4vw, 34px);
  color: var(--ink-soft);
  max-width: calc((var(--card-min) * 4) + (var(--grid-gap) * 3));
}

.seo-copy p {
  margin-top: 14px;
}

.seo-copy p:first-child {
  margin-top: 0;
}

.return-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 800;
  margin-top: 14px;
}

.empty-state {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
}

.empty-state p {
  color: var(--ink-soft);
  margin-top: 8px;
}

.site-footer {
  background: var(--ink);
  color: #d9d0c6;
  margin-top: 60px;
}

.site-footer .wrap {
  padding-block: 54px 30px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.foot-brand .word {
  font-size: 1.4rem;
  color: #fff;
}

.foot-brand .word b {
  color: var(--teal);
}

.foot-brand p {
  font-size: .96rem;
  color: #a89e94;
  max-width: 34ch;
  margin: 12px 0 0;
}

.foot-brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.foot-col h2 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 14px;
}

.foot-col a {
  display: block;
  font-size: .94rem;
  color: #b7ada3;
  padding: 5px 0;
}

.foot-col a:hover {
  color: var(--teal);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .86rem;
  color: #9a9086;
}

@media (max-width: 920px) {
  .nav,
  .search {
    display: none;
  }

  .hero-wrap,
  .trust-wrap,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .hero-wrap {
    padding-block: 36px 18px;
  }

  .hero-art {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header-row {
    min-height: 66px;
  }

  .brand .mark {
    width: 40px;
    height: 40px;
  }

  .brand .word {
    font-size: 1.2rem;
  }

  .header-tools {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-art .badge {
    display: none;
  }

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

  .eat .dates,
  .toolbar .more,
  .filters {
    margin-left: 0;
    width: 100%;
  }

  .filters {
    gap: 7px;
  }

  .asset .actions {
    flex-direction: column;
  }

  .foot-top {
    grid-template-columns: 1fr;
  }
}
