:root {
  --brand: #f7941d;
  --brand-dark: #d57405;
  --brand-soft: rgba(247, 148, 29, 0.1);
  --ink: #1b120c;
  --ink-2: #362820;
  --muted: #756b62;
  --muted-2: #a79b90;
  --line: #e9e0d6;
  --line-soft: #f1ebe4;
  --paper: #fbfaf7;
  --paper-warm: #f6f0e8;
  --white: #ffffff;
  --success-bg: #ecfdf3;
  --success: #157f3b;
  --serif: "Noto Serif CJK SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 72px;
  --space-4xl: 104px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --shadow-soft: 0 14px 40px rgba(52, 32, 16, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.main-content {
  flex: 1;
}

.wrap {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 48px, 820px);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-tight {
  padding-top: 0;
}

.section-muted {
  background: var(--white);
  border-block: 1px solid var(--line-soft);
}

.overline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.caption {
  font-size: 0.78rem;
  color: var(--muted-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(52, 32, 16, 0.04);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.site-logo-img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.logo-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

.header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 13px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.18s ease, background 0.18s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--ink);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 3px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  transform: scaleX(1);
}

.header-search {
  position: relative;
  flex: 0 0 auto;
}

.header-search input {
  width: 190px;
  height: 38px;
  padding: 0 40px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: width 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.header-search input:focus {
  width: 230px;
  border-color: var(--brand);
  background: var(--white);
}

.header-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
}

.header-search button:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.header-menu-btn {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--ink);
  background: transparent;
  padding: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  background: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251,250,247,0.98), rgba(251,250,247,0.86) 48%, rgba(251,250,247,0.55)),
    radial-gradient(circle at 78% 24%, rgba(247,148,29,0.14), transparent 34%),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.hero-body {
  position: relative;
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
  padding: var(--space-3xl) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.8fr);
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.hero-eyebrow-line {
  width: 38px;
  height: 2px;
  background: var(--brand);
}

.hero-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand-dark);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.7rem, 8vw, 7.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: var(--space-lg);
}

.hero p {
  max-width: 500px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: var(--space-xl);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-visual {
  justify-self: end;
  width: min(100%, 470px);
}

.hero-artwork {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-artwork::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.hero-artwork:hover img {
  transform: scale(1.035);
}

.hero-artwork span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 14px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(27,18,12,0.86), rgba(27,18,12,0.36));
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--line);
}

.sec-head-group {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
}

.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.more-link,
.back-link {
  font-size: 0.86rem;
  color: var(--muted);
  transition: color 0.18s ease;
}

.more-link::after {
  content: " →";
}

.more-link:hover,
.back-link:hover {
  color: var(--brand-dark);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0;
  padding: 8px 18px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.share-btn::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cline x1='8.59' y1='13.51' x2='15.42' y2='17.49'/%3E%3Cline x1='15.41' y1='6.51' x2='8.59' y2='10.49'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cline x1='8.59' y1='13.51' x2='15.42' y2='17.49'/%3E%3Cline x1='15.41' y1='6.51' x2='8.59' y2='10.49'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}
.share-btn:hover,
.share-btn.active {
  color: var(--brand-dark);
  border-color: var(--brand-dark);
  background: var(--white);
}

.share-popover {
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: all 0.2s ease;
  min-width: 160px;
}
.share-popover.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.share-popover-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}
.share-popover-item:hover {
  background: var(--bg);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.home-editorial,
.content-with-sidebar,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: var(--space-2xl);
  align-items: start;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: var(--space-lg);
}

.featured {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.featured:hover {
  border-color: rgba(247, 148, 29, 0.45);
  box-shadow: var(--shadow-soft);
}

.featured-large {
  grid-template-columns: 1fr;
}

.featured-media,
.card-media {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
  aspect-ratio: 4/3;
}

.featured-media::after,
.card-media::after,
.home-lead-media::after,
.lead-news-card > div::after,
.artwork-news-grid a::after,
.artwork-marquee-media::after,
.artist-news-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(247, 148, 29, 0), rgba(247, 148, 29, 0.16)),
    linear-gradient(180deg, rgba(27, 18, 12, 0), rgba(27, 18, 12, 0.14));
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}

.featured-media {
  min-height: 290px;
}

.featured-media img,
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.featured:hover .featured-media img,
.card:hover .card-media img,
.article-row:hover .card-media img {
  transform: scale(1.035);
}

.featured:hover .featured-media::after,
.card:hover .card-media::after,
.article-row:hover .card-media::after {
  opacity: 1;
}

.featured-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.32;
  margin: 12px 0 10px;
}

.featured-content p,
.card-body .summary {
  color: var(--muted);
}

.featured-content p {
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted-2);
  font-size: 0.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.tag-brand,
.tag-red {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.headline-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.headline-item {
  display: block;
  padding: var(--space-lg);
  background: var(--white);
  transition: background 0.18s ease;
}

.headline-item:hover {
  background: #fffaf2;
}

.headline-item span {
  font-size: 0.72rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.headline-item h3 {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.45;
}

.headline-item p {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.card {
  display: block;
  background: var(--white);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.card-bordered {
  overflow: hidden;
  border: 1px solid var(--line);
}

.card:hover {
  transform: translateY(-6px);
}

.card-bordered:hover {
  border-color: rgba(247, 148, 29, 0.58);
  box-shadow: 0 16px 38px rgba(53, 31, 14, 0.13);
}

.card-body {
  padding: var(--space-lg);
}

.card-body h3 {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 6px;
  transition: color 0.18s ease;
}

.card:hover .card-body h3 {
  color: var(--brand-dark);
}

.card-body .tag {
  margin-bottom: 10px;
}

.card-body .summary {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artwork-card {
  background: transparent;
}

.artwork-card .card-media {
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.artwork-card:hover .card-media {
  border-color: rgba(247, 148, 29, 0.56);
  box-shadow: 0 14px 34px rgba(53, 31, 14, 0.12);
}

.artwork-card .card-body {
  padding: 14px 2px 0;
}

.article-list {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.article-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 170px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.article-row:hover {
  border-color: rgba(247, 148, 29, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(53, 31, 14, 0.13);
}

.article-row .card-media img {
  position: absolute;
  inset: 0;
}

.article-row .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-row {
  transition: transform 0.24s var(--ease), border-color 0.24s ease, box-shadow 0.24s ease;
}

.sidebar {
  display: grid;
  gap: var(--space-lg);
  align-self: stretch;
}

.sticky-side {
  position: sticky;
  top: 96px;
}

.sidebar-block {
  background: var(--white);
  border: 1px solid var(--line);
}

.sidebar-label {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-weight: 800;
}

.sidebar-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 18px;
  border-top: 1px solid var(--line-soft);
  transition: background 0.18s ease;
}

.sidebar-row:first-of-type {
  border-top: 0;
}

.sidebar-row:hover {
  background: #fffaf2;
}

.sidebar-avatar {
  width: 42px;
  height: 42px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper-warm);
}

.sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-copy {
  min-width: 0;
}

.sidebar-row .title {
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.sidebar-row:hover .title {
  color: var(--brand-dark);
}

.sidebar-row .date,
.sidebar-note {
  color: var(--muted-2);
  font-size: 0.76rem;
}

.sidebar-note {
  padding: var(--space-lg);
  line-height: 1.8;
}

.rank {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
  background: var(--paper-warm);
}

.rank-1,
.rank-2,
.rank-3 {
  color: var(--white);
  background: var(--brand);
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
}

.quick-item {
  display: grid;
  place-items: center;
  min-height: 54px;
  font-size: 0.86rem;
  color: var(--muted);
  background: var(--white);
}

.quick-item:hover {
  color: var(--brand-dark);
  background: #fffaf2;
}

.page-hd,
.search-hd {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.page-hd h1,
.search-hd h1 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.15;
}

.page-hd p:not(.overline) {
  margin-top: 10px;
  color: var(--muted);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-bottom: var(--space-xl);
}

.tab {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.86rem;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.tab:hover,
.tab.active {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
}

.article-hd {
  padding: var(--space-3xl) 0 var(--space-xl);
  text-align: center;
}

.article-hd h1 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.3;
}

.article-hd .meta {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
}

.article-cover {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.article-cover img {
  width: 100%;
}

.article-dropcap {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--brand);
  background: var(--white);
  color: var(--muted);
  line-height: 1.9;
}

.article-content {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 2.05;
  color: var(--ink-2);
}

.article-content p {
  margin-bottom: 1.2em;
}

.article-content img {
  width: auto;
  max-width: 100%;
  margin: var(--space-xl) auto;
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--line);
}

.post-nav-item {
  display: block;
  padding: var(--space-lg);
  border: 1px solid var(--line);
  background: var(--white);
}

.post-nav-item:hover {
  border-color: var(--brand);
}

.post-nav-label {
  color: var(--muted-2);
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.post-nav-title {
  line-height: 1.45;
  font-weight: 650;
}

.post-nav-next {
  text-align: right;
}

.artist-banner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--line);
}

.artist-avatar {
  width: 220px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper-warm);
}

.artist-avatar img,
.artist-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-detail h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--space-md) 0;
}

.artist-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--paper-warm);
}

.artist-tag.accent {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.artist-bio {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.9;
}

.artist-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  color: var(--muted-2);
  font-size: 0.86rem;
}

.artist-card {
  text-align: center;
  border: 1px solid var(--line);
}

.artist-card-avatar {
  width: 116px;
  height: 116px;
  overflow: hidden;
  margin: var(--space-xl) auto 0;
  border-radius: 50%;
  background: var(--paper-warm);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.artist-card-avatar img {
  transition: transform 0.42s var(--ease), filter 0.42s ease;
}

.artist-card:hover .artist-card-avatar {
  transform: translateY(-2px);
  box-shadow: 0 0 0 5px var(--brand-soft);
}

.artist-card:hover .artist-card-avatar img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.artist-card .name {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 800;
}

.artist-card .role,
.artist-card .views {
  color: var(--muted-2);
  font-size: 0.84rem;
}

.artist-card:hover .name {
  color: var(--brand-dark);
}

.artwork-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: var(--space-2xl);
  align-items: start;
}

.artwork-image {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-md);
}

.artwork-image img {
  width: 100%;
  display: block;
}

.artwork-info {
  position: sticky;
  top: 100px;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--line);
}

.artwork-info h1 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.22;
}

.artwork-artist {
  display: inline-flex;
  margin: 12px 0 var(--space-xl);
  color: var(--brand-dark);
  font-weight: 700;
}

.artwork-meta {
  display: grid;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.artwork-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: var(--space-md);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.artwork-row dt {
  color: var(--muted-2);
  font-size: 0.82rem;
}

.artwork-row dd {
  color: var(--ink-2);
}

.artwork-desc h3 {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--ink);
}

.artwork-desc p {
  color: var(--muted);
  line-height: 1.85;
}

.artwork-views {
  display: block;
  margin-top: var(--space-lg);
}

/* ===== 作品图片放大镜 ===== */
.magnifier-container {
  cursor: none;
}

.magnifier-lens {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  opacity: 0;
  background-repeat: no-repeat;
  z-index: 5;
  transition: opacity 0.15s ease;
}

.magnifier-lens.is-active {
  opacity: 1;
}

.magnifier-stage {
  overflow: hidden;
  transition: transform 0.4s var(--ease);
  transform-origin: center center;
}

.magnifier-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.artwork-image:hover .magnifier-controls {
  opacity: 1;
}

.magnifier-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s ease;
}

.magnifier-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.magnifier-degrees {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  min-width: 32px;
  text-align: center;
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 940px;
  margin-inline: auto;
}

.contact-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-card h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin-bottom: var(--space-lg);
}

.contact-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-card svg {
  width: 16px;
  height: 16px;
  display: inline;
  vertical-align: -3px;
  margin-right: 6px;
  color: var(--brand-dark);
}

.contact-note {
  margin-top: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.search-form input {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.form-group input,
.form-group textarea {
  padding: 11px 13px;
}

.form-group input:focus,
.form-group textarea:focus,
.search-form input:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.form-success {
  margin-bottom: var(--space-md);
  padding: 10px 12px;
  color: var(--success);
  background: var(--success-bg);
}

.search-form {
  position: relative;
  max-width: 560px;
  margin: var(--space-xl) auto 0;
}

.search-form input {
  height: 50px;
  padding: 0 56px 0 18px;
  border-radius: 999px;
}

.search-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--brand);
}

.result-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: var(--space-md);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 800;
}

.result-heading span {
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 0.88rem;
}

.result-list {
  border: 1px solid var(--line);
  background: var(--white);
}

.result-item {
  display: block;
  padding: var(--space-lg);
  border-top: 1px solid var(--line-soft);
}

.result-item:first-child {
  border-top: 0;
}

.result-item:hover h3 {
  color: var(--brand-dark);
}

.result-item h3 {
  margin-bottom: 6px;
  transition: color 0.18s ease;
}

.result-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.result-type {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand-dark);
  font-size: 0.76rem;
}

.empty {
  padding: var(--space-3xl) 0;
  color: var(--muted-2);
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--line);
}

.page-btn {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.86rem;
}

.page-btn:hover,
.page-btn.active {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
}

.page-btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 24px;
  text-align: center;
}

.not-found h1 {
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 0.9;
  color: rgba(247, 148, 29, 0.17);
}

.not-found h2 {
  margin-top: -12px;
  font-size: 1.35rem;
}

.not-found p {
  margin-top: 8px;
  color: var(--muted);
}

.not-found a {
  margin-top: var(--space-xl);
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 24px;
  color: var(--white);
  background: var(--brand);
  border-radius: 999px;
}

.center-action {
  margin-top: var(--space-lg);
  text-align: center;
}

.news-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}

.news-hero-shell {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--space-lg);
  align-items: stretch;
}

.banner-carousel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--ink);
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease;
  isolation: isolate;
}

.banner-carousel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(53, 31, 14, 0.18);
}

.banner-track {
  height: 100%;
  display: flex;
  transition: transform 0.9s cubic-bezier(0.72, 0, 0.18, 1);
  will-change: transform;
}

.banner-ambient {
  position: absolute;
  inset: -30%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(circle at 18% 26%, rgba(247, 148, 29, 0.28), transparent 18%),
    radial-gradient(circle at 76% 62%, rgba(255, 211, 122, 0.16), transparent 22%);
  transform: translate3d(0, 0, 0);
  animation: bannerAmbient 16s ease-in-out infinite alternate;
}

.banner-slide {
  position: relative;
  min-width: 100%;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #1d120c, #4b2a0e);
  transform: scale(0.985);
  opacity: 0.74;
  backface-visibility: hidden;
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.72, 0, 0.18, 1);
}

.banner-slide.is-active {
  transform: scale(1);
  opacity: 1;
}

.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 18, 12, 0.84) 0%, rgba(27, 18, 12, 0.48) 45%, rgba(27, 18, 12, 0.12) 100%),
    linear-gradient(180deg, transparent 45%, rgba(27, 18, 12, 0.72) 100%);
}

.banner-slide::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(247, 148, 29, 0);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease), border-color 0.34s ease;
  pointer-events: none;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.055) translate3d(0, 0, 0);
  transition: transform 4.2s ease, filter 0.7s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.banner-slide.is-active img {
  transform: scale(1.11) translate3d(-1.2%, -0.8%, 0);
}

.banner-slide:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04) brightness(0.96);
}

.banner-slide:hover::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(247, 148, 29, 0.72);
}

.banner-fallback {
  display: block;
}

.banner-label {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 44px;
  padding-left: 42px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s var(--ease);
}

.banner-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--brand);
}

.banner-copy {
  position: absolute;
  z-index: 2;
  left: 44px;
  right: 44px;
  bottom: 56px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.64s ease 0.12s, transform 0.64s var(--ease) 0.12s;
}

.banner-slide.is-active .banner-label,
.banner-slide.is-active .banner-copy {
  opacity: 1;
  transform: translateY(0);
}

.banner-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.banner-copy p {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.banner-copy em {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: var(--space-xl);
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 0 0 rgba(247, 148, 29, 0.0);
  transition: transform 0.24s var(--ease), box-shadow 0.24s ease, background 0.24s ease;
}

.banner-slide:hover .banner-copy em {
  transform: translateY(-2px);
  background: #ff9f24;
  box-shadow: 0 12px 34px rgba(247, 148, 29, 0.34);
}

.banner-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(27, 18, 12, 0.32);
  backdrop-filter: blur(8px);
}

.banner-nav svg {
  width: 22px;
  height: 22px;
}

.banner-prev {
  left: 22px;
}

.banner-next {
  right: 22px;
}

.banner-dots {
  position: absolute;
  z-index: 4;
  left: 44px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.banner-dots button {
  width: 26px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  transition: width 0.26s var(--ease), background 0.26s ease, transform 0.26s ease;
}

.banner-dots button.active {
  width: 42px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(247, 148, 29, 0.52);
}

.banner-progress {
  position: absolute;
  z-index: 5;
  left: 44px;
  right: 44px;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.16);
}

.banner-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #ffd37a);
  box-shadow: 0 0 22px rgba(247, 148, 29, 0.6);
  transform-origin: left center;
}

.banner-progress span.is-running {
  animation: bannerProgress var(--banner-interval, 4200ms) linear forwards;
}

.banner-progress span.is-paused {
  animation-play-state: paused;
}

@keyframes bannerProgress {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes bannerAmbient {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(3%, 2%, 0) rotate(2deg);
  }
}

.hero-brief {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.94)),
    var(--white);
  transition: transform 0.24s var(--ease), border-color 0.24s ease, box-shadow 0.24s ease;
}

.hero-brief:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 148, 29, 0.5);
  box-shadow: 0 16px 36px rgba(53, 31, 14, 0.12);
}

.hero-brief img {
  width: 230px;
  max-width: 100%;
}

.hero-brief p {
  margin-top: var(--space-xl);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.45;
}

.brief-links {
  display: grid;
  gap: 1px;
  margin-top: var(--space-xl);
  border-top: 1px solid var(--line);
}

.brief-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.brief-links a::after {
  content: "→";
  color: var(--brand-dark);
  transition: transform 0.2s var(--ease);
}

.brief-links a:hover {
  padding-left: 8px;
  color: var(--brand-dark);
}

.brief-links a:hover::after {
  transform: translateX(4px);
}

.headline-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.headline-strip-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

.headline-strip strong {
  color: var(--brand-dark);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.headline-strip-inner div {
  display: flex;
  gap: var(--space-xl);
  overflow: hidden;
  white-space: nowrap;
}

.headline-strip a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.18s ease, transform 0.18s var(--ease);
}

.headline-strip a:hover {
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.featured-section {
  background: var(--white);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.featured-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.featured-card:hover {
  border-color: rgba(247, 148, 29, 0.45);
  box-shadow: var(--shadow-soft);
  color: inherit;
}

.featured-card-cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper-warm);
}

.featured-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.featured-card:hover .featured-card-cover img {
  transform: scale(1.035);
}

.featured-card-body {
  padding: var(--space-lg);
}

.featured-card-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 10px 0 6px;
  color: var(--ink);
}

.featured-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.featured-card-body em {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-style: normal;
}

.news-layout-section {
  background: var(--paper);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--space-2xl);
  align-items: start;
}

.portal-section-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--ink);
}

.portal-section-title span {
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.portal-section-title h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1;
}

.portal-section-title a {
  color: var(--muted);
  font-size: 0.86rem;
}

.portal-section-title a:hover {
  color: var(--brand-dark);
}

.portal-section-title.compact {
  grid-template-columns: 1fr;
  gap: 6px;
}

.lead-news-grid {
  display: grid;
  gap: var(--space-lg);
}

.lead-news-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.24s var(--ease), border-color 0.24s ease, box-shadow 0.24s ease;
}

.lead-news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 148, 29, 0.62);
  box-shadow: 0 18px 46px rgba(53, 31, 14, 0.14);
}

.lead-news-card:hover h3 {
  color: var(--brand-dark);
}

.lead-news-card > div {
  min-height: 360px;
  overflow: hidden;
  background: var(--paper-warm);
  position: relative;
}

.lead-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.42s ease;
}

.lead-news-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.lead-news-card:hover > div::after {
  opacity: 1;
}

.lead-news-card section {
  align-self: center;
  padding: var(--space-xl);
}

.lead-news-card h3 {
  margin: 14px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.65rem);
  line-height: 1.22;
}

.lead-news-card p {
  color: var(--muted);
  line-height: 1.85;
}

.lead-news-card em {
  display: block;
  margin-top: var(--space-md);
  color: var(--muted-2);
  font-style: normal;
  font-size: 0.82rem;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.news-list a {
  min-height: 132px;
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.news-list a:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(247, 148, 29, 0.5);
  background: #fffaf2;
  box-shadow: 0 16px 34px rgba(53, 31, 14, 0.14);
}

.news-list span {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.news-list h3 {
  margin: 8px 0;
  line-height: 1.45;
}

.news-list p {
  color: var(--muted-2);
  font-size: 0.82rem;
}

.news-list a:hover h3 {
  color: var(--brand-dark);
}

.portal-sidebar {
  position: sticky;
  top: 100px;
}

.rank-panel {
  padding: var(--space-lg);
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.rank-panel:hover {
  border-color: rgba(247, 148, 29, 0.5);
  box-shadow: 0 16px 36px rgba(53, 31, 14, 0.12);
}

.rank-panel a {
  display: grid;
  position: relative;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 14px;
  padding: 14px 10px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  transition: background 0.2s ease;
}

.rank-panel a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--brand);
  opacity: 0;
  transform: scaleY(0.2);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.24s var(--ease);
}

.rank-panel a:last-child {
  border-bottom: 0;
}

.rank-panel strong {
  grid-row: span 2;
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.rank-panel span {
  line-height: 1.45;
  font-weight: 700;
}

.rank-panel em {
  color: var(--muted-2);
  font-style: normal;
  font-size: 0.78rem;
}

.rank-panel a:hover span {
  color: var(--brand-dark);
}

.rank-panel a:hover {
  background: #fffaf2;
}

.rank-panel a:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.artist-news-section {
  background: var(--white);
  border-block: 1px solid var(--line-soft);
}

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

.artist-news-grid a {
  min-width: 0;
  transition: transform 0.24s var(--ease);
}

.artist-news-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--paper-warm);
  transition: transform 0.44s var(--ease), filter 0.38s ease, box-shadow 0.28s ease;
}

.artist-news-grid a {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid transparent;
  background: transparent;
  transition: transform 0.24s var(--ease), border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.artist-news-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 148, 29, 0.5);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(53, 31, 14, 0.12);
}

.artist-news-grid a:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 12px 30px rgba(53, 31, 14, 0.12);
}

.artist-news-grid a:hover::after {
  opacity: 1;
}

.artist-news-grid a:hover strong {
  color: var(--brand-dark);
}

.artist-news-grid strong,
.artist-news-grid span {
  display: block;
}

.artist-news-grid strong {
  margin-top: 10px;
  font-family: var(--serif);
  line-height: 1.25;
}

.artist-news-grid span {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.artwork-news-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.artwork-news-section::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  top: 34%;
  width: min(100% - 48px, 1200px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 148, 29, 0.42), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.artwork-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 16px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.artwork-marquee:hover .artwork-marquee-track {
  animation-play-state: paused;
}

.artwork-marquee-track {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  min-width: max-content;
  animation: artworkMarquee 34s linear infinite;
  will-change: transform;
}

.artwork-marquee-group {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  gap: var(--space-lg);
  padding-right: var(--space-lg);
}

.artwork-marquee-card {
  position: relative;
  display: block;
  flex: 0 0 clamp(230px, 23vw, 340px);
  min-width: 0;
  padding: 10px;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    var(--paper);
  border: 1px solid rgba(247, 148, 29, 0.18);
  box-shadow: 0 14px 34px rgba(53, 31, 14, 0.06);
  transform: translateZ(0);
  transition: transform 0.32s var(--ease), border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.artwork-marquee-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease, inset 0.28s var(--ease);
  z-index: 2;
}

.artwork-marquee-card:hover,
.artwork-marquee-card:focus-visible {
  transform: translateY(-10px) rotate(-0.45deg);
  border-color: rgba(247, 148, 29, 0.58);
  background: var(--white);
  box-shadow: 0 24px 52px rgba(53, 31, 14, 0.16);
}

.artwork-marquee-card:hover::before,
.artwork-marquee-card:focus-visible::before {
  inset: 14px;
  opacity: 1;
}

.artwork-marquee-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.artwork-marquee-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.72s var(--ease), filter 0.42s ease;
}

.artwork-marquee-card:hover .artwork-marquee-media img,
.artwork-marquee-card:focus-visible .artwork-marquee-media img {
  transform: scale(1.11);
  filter: saturate(1.12) contrast(1.06);
}

.artwork-marquee-card:hover .artwork-marquee-media::after,
.artwork-marquee-card:focus-visible .artwork-marquee-media::after {
  opacity: 1;
}

.artwork-marquee-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: block;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(27, 18, 12, 0.1), rgba(27, 18, 12, 0.74));
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.32s var(--ease), opacity 0.32s ease;
}

.artwork-marquee-card:hover .artwork-marquee-copy,
.artwork-marquee-card:focus-visible .artwork-marquee-copy {
  transform: translateY(0);
  opacity: 1;
}

.artwork-marquee-copy strong,
.artwork-marquee-copy em {
  display: block;
  min-width: 0;
}

.artwork-marquee-copy strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artwork-marquee-copy em {
  margin-top: 4px;
  font-style: normal;
  font-size: 0.82rem;
  opacity: 0.88;
}

@keyframes artworkMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.artwork-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
}

.artwork-news-grid a {
  display: block;
  position: relative;
  padding: 10px;
  border: 1px solid transparent;
  transition: transform 0.24s var(--ease), border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.artwork-news-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.48s var(--ease), filter 0.38s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.artwork-news-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 148, 29, 0.5);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(53, 31, 14, 0.12);
}

.artwork-news-grid a:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
  border-color: rgba(247, 148, 29, 0.58);
  box-shadow: 0 14px 34px rgba(53, 31, 14, 0.12);
}

.artwork-news-grid a:hover::after {
  opacity: 1;
}

.artwork-news-grid a:hover strong {
  color: var(--brand-dark);
}

.artwork-news-grid strong,
.artwork-news-grid span {
  display: block;
}

.artwork-news-grid strong {
  margin-top: 12px;
  line-height: 1.35;
}

.artwork-news-grid span {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  padding: clamp(48px, 7vw, 92px) 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.92) 42%, rgba(251, 250, 247, 0.48) 100%),
    radial-gradient(circle at 82% 18%, rgba(247, 148, 29, 0.22), transparent 34%),
    var(--paper);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 18, 12, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 18, 12, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.92fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.home-kicker {
  margin-bottom: var(--space-md);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.home-brand-logo {
  width: min(100%, 430px);
  height: auto;
  margin-bottom: var(--space-xl);
}

.home-identity h1 {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.4vw, 5.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-lede {
  max-width: 560px;
  margin-top: var(--space-lg);
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.9;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-metrics a {
  padding: 16px 18px 16px 0;
  border-right: 1px solid var(--line);
}

.home-metrics a:last-child {
  border-right: 0;
}

.home-metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.home-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 0.8rem;
}

.home-feature {
  justify-self: stretch;
}

.home-feature-card {
  position: relative;
  display: block;
  min-height: min(68svh, 640px);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 22px 70px rgba(53, 31, 14, 0.16);
}

.home-feature-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.home-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 18, 12, 0.02), rgba(27, 18, 12, 0.78));
}

.home-feature-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.home-feature-card:hover img {
  transform: scale(1.035);
}

.home-feature-label {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.home-feature-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  color: var(--white);
}

.home-feature-copy h2 {
  max-width: 560px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  line-height: 1.12;
}

.home-feature-copy p {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.home-news-rail {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.home-news-rail-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

.home-news-rail-inner > span {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.home-news-rail-list {
  display: flex;
  gap: var(--space-lg);
  overflow: hidden;
  white-space: nowrap;
}

.home-news-rail-list a {
  color: var(--muted);
  font-size: 0.92rem;
}

.home-news-rail-list a:hover {
  color: var(--brand-dark);
}

.home-curation {
  background: var(--paper);
}

.home-curation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--space-2xl);
  align-items: start;
}

.home-section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-md);
  align-items: end;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--line);
}

.home-section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.home-section-head a {
  color: var(--muted);
  font-size: 0.86rem;
}

.home-section-head a:hover {
  color: var(--brand-dark);
}

.home-section-head.compact {
  grid-template-columns: 1fr auto;
}

.home-section-head.compact .overline {
  grid-column: 1 / -1;
}

.home-lead-article {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.home-lead-media {
  min-height: 360px;
  overflow: hidden;
  background: var(--paper-warm);
}

.home-lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.home-lead-article:hover .home-lead-media img {
  transform: scale(1.035);
}

.home-lead-copy {
  padding: var(--space-xl);
  align-self: center;
}

.home-lead-copy h3 {
  margin: 14px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  line-height: 1.28;
}

.home-lead-copy p {
  margin-bottom: var(--space-md);
  color: var(--muted);
  line-height: 1.8;
}

.home-article-index {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--line);
}

.home-article-index a,
.home-hot-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: var(--space-md);
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.home-article-index span,
.home-hot-list span {
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 800;
}

.home-article-index h3,
.home-hot-list h3 {
  font-size: 1rem;
  line-height: 1.45;
  transition: color 0.18s ease;
}

.home-article-index p,
.home-hot-list p {
  color: var(--muted-2);
  font-size: 0.8rem;
  white-space: nowrap;
}

.home-article-index a:hover h3,
.home-hot-list a:hover h3 {
  color: var(--brand-dark);
}

.home-artist-panel {
  position: sticky;
  top: 100px;
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--line);
}

.home-artist-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-artist-list a {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.home-artist-list img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--paper-warm);
}

.home-artist-list strong,
.home-artist-list em {
  display: block;
  font-style: normal;
}

.home-artist-list strong {
  font-family: var(--serif);
  line-height: 1.25;
}

.home-artist-list em {
  color: var(--muted-2);
  font-size: 0.76rem;
}

.home-gallery {
  background: var(--white);
  border-block: 1px solid var(--line-soft);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: var(--space-lg);
}

.home-work {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
}

.home-work.is-large {
  grid-row: span 2;
}

.home-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.home-work:hover img {
  transform: scale(1.035);
}

.home-work span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-md);
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(27, 18, 12, 0.82));
}

.home-work strong,
.home-work em {
  display: block;
  font-style: normal;
}

.home-work em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.home-hot {
  background: var(--paper);
}

.home-hot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--space-2xl);
}

.site-footer {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.74);
  background: radial-gradient(circle at 22% 0%, rgba(255, 167, 38, 0.08), transparent 30%), #1d120c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(140px, 0.8fr));
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  margin: -8px 0 4px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 246, 225, 0.96), rgba(255, 230, 178, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 185, 80, 0.28), 0 16px 40px rgba(0, 0, 0, 0.18);
}

.footer-logo-img {
  width: 210px;
  height: auto;
  display: block;
  filter: saturate(1.08) contrast(1.08);
}

.footer-about p {
  max-width: 420px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col h4 {
  margin-bottom: var(--space-md);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-qrcode {
  width: 120px;
  height: auto;
  margin-top: 8px;
  border-radius: 8px;
  display: block;
}

.footer-col svg {
  width: 14px;
  height: 14px;
  display: inline;
  vertical-align: -2px;
  margin-right: 4px;
}

.footer-bottom {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  font-size: 0.78rem;
}

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

  .artwork-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .artwork-marquee-track {
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .header-search {
    display: none;
  }

  .hero-body,
  .home-editorial,
  .content-with-sidebar,
  .article-layout,
  .artwork-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
    width: min(100%, 420px);
  }

  .artwork-info {
    position: static;
  }

  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .home-hero-inner,
  .home-curation-grid,
  .home-lead-article {
    grid-template-columns: 1fr;
  }

  .home-feature-card {
    min-height: 520px;
  }

  .home-artist-panel {
    position: static;
  }

  .news-hero-shell,
  .news-layout,
  .lead-news-card {
    grid-template-columns: 1fr;
  }

  .banner-carousel,
  .banner-slide,
  .hero-brief {
    min-height: 500px;
  }

  .portal-sidebar {
    position: static;
  }

  .artist-news-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .wrap,
  .wrap-narrow,
  .hero-body {
    width: min(100% - 32px, 1200px);
  }

  .header-inner {
    height: 64px;
  }

  .site-logo-img {
    height: 38px;
    max-width: 210px;
  }

  .header-logo {
    min-width: 0;
  }

  .header-menu-btn {
    display: block;
  }

  .header-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    height: 44px;
    padding: 0 12px;
  }

  .header-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-body {
    padding: var(--space-2xl) 0;
    gap: var(--space-2xl);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .editorial-grid,
  .featured,
  .article-row,
  .artist-banner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .article-row .card-media {
    min-height: 210px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .artist-banner {
    text-align: center;
  }

  .artist-avatar {
    justify-self: center;
  }

  .artist-tags,
  .artist-stats {
    justify-content: center;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav-next {
    text-align: left;
  }

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

  .footer-logo-img {
    width: min(210px, calc(100vw - 80px));
  }

  .home-hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }

  .home-hero-inner {
    width: min(100% - 32px, 1280px);
  }

  .home-brand-logo {
    width: min(100%, 320px);
  }

  .home-metrics {
    grid-template-columns: 1fr;
  }

  .home-metrics a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-metrics a:last-child {
    border-bottom: 0;
  }

  .home-feature-card {
    min-height: 430px;
  }

  .home-news-rail-inner,
  .home-section-head,
  .home-section-head.compact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-news-rail-list {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .home-artist-list,
  .home-hot-list {
    grid-template-columns: 1fr;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .news-hero-shell {
    width: min(100% - 32px, 1320px);
  }

  .banner-carousel,
  .banner-slide {
    min-height: 430px;
  }

  .hero-brief {
    min-height: auto;
  }

  .banner-copy {
    left: 24px;
    right: 24px;
    bottom: 42px;
  }

  .banner-label {
    top: 28px;
    left: 24px;
  }

  .banner-dots {
    left: 24px;
  }

  .banner-nav {
    display: none;
  }

  .headline-strip-inner,
  .portal-section-title {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .headline-strip-inner div {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .news-list,
  .artwork-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 540px) {
  :root {
    --space-2xl: 36px;
    --space-3xl: 52px;
    --space-4xl: 72px;
  }

  .site-logo-img {
    height: 34px;
    max-width: 186px;
  }

  .hero-visual {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .sec-head-group {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .page-hd,
  .search-hd {
    padding-top: var(--space-2xl);
  }

  .contact-card,
  .artwork-info,
  .artist-banner {
    padding: var(--space-lg);
  }

  .artist-avatar {
    width: 170px;
  }

  .home-identity h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .home-feature-card {
    min-height: 360px;
  }

  .home-feature-card::before {
    inset: 12px;
  }

  .home-feature-label,
  .home-feature-copy {
    left: 22px;
    right: 22px;
  }

  .home-feature-label {
    top: 22px;
  }

  .home-feature-copy {
    bottom: 22px;
  }

  .home-article-index a,
  .home-hot-list a {
    grid-template-columns: 42px 1fr;
  }

  .home-article-index p,
  .home-hot-list p {
    grid-column: 2;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .home-work.is-large {
    grid-row: span 1;
  }

  .banner-carousel,
  .banner-slide {
    min-height: 390px;
  }

  .banner-copy h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .banner-copy p {
    font-size: 0.95rem;
  }

  .lead-news-card > div {
    min-height: 240px;
  }

  .news-list,
  .artist-news-grid,
  .artwork-news-grid {
    grid-template-columns: 1fr;
  }
}

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