@font-face {
  font-family: "Bellarina";
  src: url("../fonts/Bellarina.otf") format("opentype");
  font-display: swap;
}

:root {
  --ink: #f8f2e8;
  --charcoal: #d8cfbf;
  --paper: #080807;
  --surface: #12100d;
  --surface-2: #1a1510;
  --gold: #d8aa38;
  --brown: #9a5831;
  --terracotta: #b95632;
  --indigo: #243a73;
  --muted: #a99e8f;
  --line: rgba(248, 242, 232, 0.14);
  --success: #42b36d;
  --danger: #f97066;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --soft-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(216, 170, 56, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(185, 86, 50, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 46px 46px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  align-items: center;
  background: rgba(8, 8, 7, 0.96);
  border-bottom: 1px solid rgba(248, 242, 232, 0.14);
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  gap: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0;
}

.brand span {
  color: var(--gold);
}

.brand-script {
  font-family: "Bellarina", "Playfair Display", Georgia, serif;
  font-size: 1.55em;
  font-weight: 400;
  line-height: 0.72;
}

.brand-plain {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72em;
  font-weight: 800;
  line-height: 1;
  margin-left: -4px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.nav-socials,
.footer-socials,
.contact-socials {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.social-icon {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.currency-selector {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  margin: 0;
}

.currency-selector label {
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.currency-selector select {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  min-height: 34px;
  padding: 6px 26px 6px 10px;
  width: auto;
}

.currency-selector option {
  color: #10100e;
}

.currency-admin-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.currency-admin-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.currency-admin-card strong {
  display: block;
  font-size: 22px;
}

.currency-admin-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 3px;
}

.checkbox-line {
  align-items: center;
  display: flex;
  gap: 9px;
}

.checkbox-line input {
  flex: 0 0 auto;
  min-height: auto;
  width: auto;
}

.payment-methods {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.payment-method-option {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding: 12px;
}

.payment-method-option input {
  align-self: center;
  flex: 0 0 auto;
  height: 16px;
  margin: 0;
  min-height: auto;
  width: 16px;
}

.payment-method-option span {
  display: block;
  min-width: 0;
}

.payment-method-option strong,
.payment-method-option small {
  display: block;
}

.payment-method-option small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.payment-method-option.disabled {
  opacity: 0.58;
}

.site-nav .social-icon {
  font-size: 15px;
}

.site-nav .social-icon::after,
.footer-socials .social-icon::after,
.contact-socials .social-icon::after {
  display: none;
}

.site-nav a:not(.nav-button)::after {
  background: var(--gold);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.site-nav a,
.admin-sidebar a {
  color: #f2eadc;
}

.site-nav a.active,
.site-nav a:hover,
.admin-sidebar a:hover {
  color: var(--gold);
}

.nav-button,
.button,
button,
input[type="submit"] {
  align-items: center;
  background: #f8f2e8;
  border: 0;
  border-radius: 7px;
  color: #100f0d;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  padding: 12px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  box-shadow: 0 12px 24px rgba(16, 15, 13, 0.16);
  transform: translateY(-2px);
}

.site-nav .nav-button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  min-width: 116px;
}

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(216, 170, 56, 0.65);
  border-radius: 999px;
  color: var(--gold);
  height: 38px;
  padding: 0;
  width: 38px;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 18px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.button.secondary {
  background: transparent;
  border: 1px solid rgba(248, 242, 232, 0.5);
  color: var(--ink);
}

.button.gold {
  background: var(--gold);
  color: #100f0d;
}

.hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98), rgba(14, 13, 11, 0.97)),
    repeating-linear-gradient(45deg, rgba(216, 170, 56, 0.08) 0 1px, transparent 1px 18px);
  color: var(--paper);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  min-height: 720px;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) 76px;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle at 86% 46%, rgba(216, 170, 56, 0.16), transparent 28%);
  content: "";
  inset: 0;
  opacity: 0.8;
  position: absolute;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(248, 242, 232, 0.08) 0 8px, transparent 8px 26px),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(216, 170, 56, 0.12) 18px 22px, transparent 22px 42px);
  bottom: 0;
  content: "";
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  top: 0;
  width: 58px;
  z-index: 0;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.hero h1,
.section-title,
.auth-card h1,
.detail-title,
.admin-topbar h1 {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(54px, 7vw, 88px);
  letter-spacing: 0;
  margin: 0 0 20px;
  max-width: 720px;
}

.hero p {
  color: #ded4c5;
  font-size: clamp(17px, 2vw, 20px);
  margin: 0 0 28px;
  max-width: 530px;
}

.hero-actions,
.card-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-showcase {
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.hero-showcase > p {
  color: #a99e8f;
  font-size: 13px;
  margin: 12px 0 0;
}

.hero-showcase::after {
  background:
    linear-gradient(rgba(216, 170, 56, 0.06), rgba(216, 170, 56, 0.06)),
    repeating-linear-gradient(45deg, #1d130b 0 8px, #090807 8px 18px);
  content: "";
  height: 100%;
  position: absolute;
  right: -42px;
  top: -34px;
  width: 120px;
  z-index: -1;
}

.hero-art {
  background: #070605;
  border: 12px solid #a8732c;
  border-radius: 0;
  box-shadow: inset 0 0 0 4px #2d1a0d, 0 34px 80px rgba(0, 0, 0, 0.45);
  min-height: 470px;
  overflow: hidden;
  position: relative;
  transform: none;
}

.hero-art img {
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  width: 100%;
}

.hero-art::before,
.detail-image::before,
.art-thumb::before {
  background: linear-gradient(135deg, rgba(216, 170, 56, 0.22), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.culture-mark,
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.culture-mark::before {
  background: var(--gold);
  content: "";
  display: inline-block;
  height: 2px;
  margin-right: 14px;
  vertical-align: middle;
  width: 34px;
}

.hero-proof {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.hero-proof span {
  align-items: flex-start;
  background: rgba(248, 242, 232, 0.06);
  border: 1px solid rgba(248, 242, 232, 0.14);
  border-radius: 0;
  color: #efe5d5;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 6px 12px;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 132px;
  padding: 18px;
}

.hero-proof i {
  align-items: center;
  border: 1px solid currentColor;
  color: var(--gold);
  display: inline-flex;
  font-size: 18px;
  grid-row: span 2;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.hero-proof strong,
.hero-proof em {
  display: block;
}

.hero-proof em {
  color: #a99e8f;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.textile-strip {
  background:
    radial-gradient(circle, rgba(248, 242, 232, 0.72) 1px, transparent 2px) 0 0 / 24px 18px,
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(248, 242, 232, 0.35) 18px 20px, transparent 20px 38px),
    #0b0a09;
  border-bottom: 1px solid rgba(16, 15, 13, 0.18);
  height: 64px;
}

.home-gallery-preview {
  background: linear-gradient(180deg, #faf6ed, #f7efe2);
  padding: 26px clamp(20px, 5vw, 72px) 66px;
}

.section {
  padding: clamp(58px, 7vw, 92px) clamp(20px, 5vw, 72px);
  position: relative;
}

.section.dark {
  background:
    linear-gradient(180deg, #100f0d, #18130f),
    repeating-linear-gradient(45deg, rgba(216, 170, 56, 0.08) 0 2px, transparent 2px 16px);
  color: var(--paper);
}

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

.section-title {
  font-size: clamp(34px, 4vw, 56px);
  margin: 0;
}

.section-title.compact {
  font-size: clamp(26px, 3vw, 34px);
}

.plain-link {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 28px;
}

.category-select-wrap,
.filter-select-wrap {
  display: none;
}

.category-select-wrap,
.filter-select-wrap {
  margin: 8px 0 28px;
}

.category-select-wrap label,
.filter-select-wrap label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-select-wrap select,
.filter-select-wrap select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) right 13px center / 7px 7px no-repeat,
    var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  min-height: 48px;
  padding-right: 44px;
}

.category-pills a {
  align-items: center;
  background: transparent;
  border: 1px solid #d7c7ad;
  border-radius: 5px;
  display: inline-flex;
  font-size: 14px;
  gap: 9px;
  min-height: 42px;
  padding: 10px 20px;
}

.category-pills a.active,
.category-pills a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

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

.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.featured-concept-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.art-card,
.category-tile,
.auth-card,
.panel,
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.art-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.art-card:hover,
.category-tile:hover,
.mini-art-card:hover {
  border-color: rgba(216, 170, 56, 0.9);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.art-thumb {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  display: block;
  height: 190px;
  overflow: hidden;
  position: relative;
}

.art-label,
.heart-icon {
  position: absolute;
  z-index: 3;
}

.art-label {
  background: var(--gold);
  border-radius: 5px;
  color: #100f0d;
  font-size: 12px;
  font-weight: 800;
  left: 14px;
  padding: 5px 10px;
  top: 14px;
}

.heart-icon {
  align-items: center;
  color: var(--paper);
  display: inline-flex;
  font-size: 22px;
  justify-content: center;
  right: 14px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
  top: 14px;
}

.art-thumb img {
  height: 100%;
  object-fit: cover;
  position: relative;
  transition: transform 520ms ease, filter 520ms ease;
  width: 100%;
  z-index: 0;
}

.art-card:hover .art-thumb img,
.art-card:focus-within .art-thumb img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.14);
}

.art-quick-preview {
  align-content: center;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.16), rgba(8, 8, 7, 0.6)),
    radial-gradient(circle at 15% 10%, rgba(216, 170, 56, 0.28), transparent 34%);
  color: #f8f2e8;
  display: grid;
  gap: 14px;
  justify-items: center;
  inset: 0;
  opacity: 0;
  padding: 16px;
  pointer-events: none;
  position: absolute;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 4;
}

.art-card:hover .art-quick-preview,
.art-card:focus-within .art-quick-preview {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.art-quick-preview p,
.art-quick-preview strong,
.art-quick-preview span {
  display: block;
  margin: 0;
}

.art-quick-preview p {
  color: #d8aa38;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.art-quick-preview strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.05;
}

.art-quick-preview span {
  color: #f2cf72;
  font-size: 14px;
  font-weight: 800;
  margin-top: 4px;
}

.quick-actions {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr;
  max-width: 180px;
  position: relative;
  width: 100%;
  z-index: 6;
}

.quick-actions a {
  align-items: center;
  background: rgba(248, 242, 232, 0.94);
  border: 1px solid rgba(248, 242, 232, 0.2);
  border-radius: 7px;
  color: #100f0d;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 6px;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
}

.quick-actions a:hover {
  background: var(--gold);
  color: #100f0d;
}

.art-quick-preview .quick-actions a {
  background: #f8f2e8;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  color: #100f0d;
  opacity: 1;
  visibility: visible;
}

.lightbox-open {
  overflow: hidden;
}

.art-lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(18px, 4vw, 48px);
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 100;
}

.art-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.art-lightbox-panel {
  background: #f8f8f8;
  border-radius: 7px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(320px, 0.95fr);
  max-height: 90vh;
  max-width: min(1240px, 94vw);
  overflow: hidden;
  position: relative;
  transform: scale(0.96);
  transition: transform 180ms ease;
  width: 100%;
}

.art-lightbox.active .art-lightbox-panel {
  transform: scale(1);
}

.art-lightbox-image-wrap {
  align-items: center;
  background: #0a0908;
  display: flex;
  justify-content: center;
  min-height: min(90vh, 720px);
  overflow: hidden;
}

.art-lightbox-image-wrap img {
  height: 100%;
  max-height: 90vh;
  object-fit: contain;
  width: 100%;
}

.art-lightbox-info {
  background: #fbfbfb;
  color: #2d3545;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: min(90vh, 720px);
  position: relative;
}

.art-lightbox-close {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #050505;
  display: inline-flex;
  font-size: 34px;
  height: 46px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 46px;
  z-index: 2;
}

.art-lightbox-heading {
  border-bottom: 1px solid #e6e9ef;
  padding: 48px 72px 22px 34px;
}

.art-lightbox-heading span {
  color: #8b5e3c;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.art-lightbox-heading strong {
  color: #2d3545;
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.1;
}

.art-lightbox-description {
  color: #323b4f;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.48;
  margin: 0;
  padding: 28px 34px;
}

.art-lightbox-meta {
  color: #737b8c;
  font-size: 14px;
  font-weight: 800;
  padding: 0 34px 24px;
}

.art-lightbox-footer {
  align-items: center;
  border-top: 1px solid #e6e9ef;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px 34px;
}

.art-lightbox-price {
  color: #050505;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.art-lightbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.art-lightbox-actions .button {
  min-height: 48px;
  padding-inline: 20px;
}

.art-lightbox-actions .button.secondary {
  border-color: #c8ced8;
  color: #2d3545;
}

.art-lightbox-actions .button:not(.gold) {
  background: #eef1f5;
  color: #2d3545;
}

.art-lightbox-actions .button.gold {
  background: #12abc3;
  color: #fff;
}

.art-card-body {
  padding: 16px;
}

.featured-concept-grid .art-thumb {
  aspect-ratio: 4 / 3;
  height: 210px;
}

.featured-concept-grid .art-card-body {
  background: var(--surface);
  min-height: 160px;
}

.art-card h3,
.category-tile h3 {
  margin: 0 0 8px;
}

.art-card h3 {
  font-size: 18px;
  line-height: 1.2;
}

.art-card-body p {
  font-size: 13px;
  margin: 0 0 8px;
}

.price {
  color: var(--brown);
  font-size: 16px;
  font-weight: 800;
}

.category-tile {
  min-height: 190px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-tile::after {
  background:
    linear-gradient(90deg, var(--gold) 0 18px, transparent 18px 28px, var(--terracotta) 28px 42px, transparent 42px 54px, var(--indigo) 54px 70px);
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  width: 100%;
}

.category-section::before,
.story-section::before {
  background:
    repeating-linear-gradient(90deg, rgba(36, 58, 115, 0.08) 0 14px, transparent 14px 28px),
    repeating-linear-gradient(0deg, rgba(216, 170, 56, 0.09) 0 8px, transparent 8px 24px);
  content: "";
  height: 120px;
  opacity: 0.8;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  top: 0;
  width: min(360px, 40vw);
  z-index: -1;
}

.auth-wrap {
  display: grid;
  min-height: 72vh;
  padding: 48px 20px;
  place-items: center;
}

.auth-card {
  max-width: 460px;
  padding: 32px;
  width: 100%;
}

.auth-card h1 {
  font-size: 42px;
  margin: 0 0 16px;
}

.captcha-field {
  margin: 18px 0;
  min-height: 78px;
  overflow-x: auto;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 7px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

textarea.large-editor {
  min-height: 420px;
}

.html-editor {
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.html-editor-toolbar {
  align-items: center;
  background: #0b0a09;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
}

.html-editor-toolbar button {
  min-height: 34px;
  padding: 7px 10px;
}

.html-editor-surface {
  background: #0b0a09;
  color: var(--ink);
  min-height: 420px;
  outline: 0;
  padding: 16px;
}

.html-editor-surface h2,
.html-editor-surface h3,
.html-editor-surface p,
.html-editor-surface ul,
.html-editor-surface ol {
  margin-top: 0;
}

.html-editor-source {
  border: 0;
  border-radius: 0;
  display: none;
  min-height: 420px;
}

.html-editor.show-source .html-editor-surface {
  display: none;
}

.html-editor.show-source .html-editor-source {
  display: block;
}

.field {
  margin-bottom: 16px;
}

.content-editor {
  display: grid;
  gap: 20px;
}

.content-editor-section {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.content-editor-section-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.content-editor-section-head h2 {
  font-size: 22px;
  margin: 0;
}

.content-editor-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-editor-grid .field {
  margin-bottom: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.content-editor-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-filter .field {
  flex: 1 1 180px;
  margin-bottom: 0;
}

.dashboard-filter-actions {
  flex: 1 1 260px;
}

.alert {
  border-radius: 7px;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.alert.error {
  background: #fff1f0;
  color: var(--danger);
}

.alert.success {
  background: #ecfdf3;
  color: var(--success);
}

.gallery-layout,
.detail-layout,
.dashboard-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: 280px minmax(0, 1fr);
  padding: 54px clamp(20px, 5vw, 72px);
}

.filters,
.panel {
  padding: 22px;
}

.filters {
  align-self: start;
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 96px;
}

.filters a {
  border-bottom: 1px solid rgba(248, 242, 232, 0.12);
  color: #e9decf;
  display: block;
  padding: 9px 0;
}

.filters a:hover {
  color: var(--gold);
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.art-detail-shell {
  background:
    linear-gradient(180deg, #0d0c0a 0, #0d0c0a 48%, transparent 48%),
    var(--paper);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.75fr);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(56px, 7vw, 96px);
}

.art-detail-media {
  align-self: start;
}

.detail-image {
  align-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(216, 170, 56, 0.14), transparent 42%),
    #070605;
  border-radius: 8px;
  display: flex;
  box-shadow: var(--shadow);
  min-height: min(72vh, 760px);
  overflow: hidden;
  padding: clamp(12px, 2vw, 22px);
  position: relative;
}

.detail-image img {
  border: 1px solid rgba(216, 170, 56, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  height: auto;
  max-height: min(68vh, 720px);
  object-fit: contain;
  width: 100%;
}

.purchase-box {
  align-self: start;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.detail-title {
  color: var(--gold);
  font-size: clamp(42px, 6vw, 82px);
  margin: 0 0 16px;
}

.art-detail-copy {
  align-self: start;
  color: var(--paper);
  padding-top: clamp(12px, 3vw, 34px);
}

.art-detail-copy .section-kicker {
  margin-bottom: 14px;
}

.detail-description {
  color: #e5dac9;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.detail-buy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 18px;
  margin: 28px 0 20px;
  padding: 22px;
}

.detail-buy-card .price {
  font-size: clamp(26px, 3vw, 36px);
  margin: 4px 0 0;
}

.detail-meta-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-meta-grid span {
  background: #fbf5ea;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--charcoal);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  padding: 12px;
}

.detail-meta-grid strong {
  color: var(--ink);
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.license-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px;
}

.license-note strong {
  color: var(--ink);
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.license-note p {
  color: var(--charcoal);
  line-height: 1.55;
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

pre {
  background: #171717;
  border-radius: 8px;
  color: var(--paper);
  overflow-x: auto;
  padding: 18px;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

th {
  font-size: 12px;
  text-transform: uppercase;
}

.badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.badge.success,
.badge.active {
  background: #dcfae6;
  color: var(--success);
}

.badge.pending {
  background: #fff7d6;
  color: #8a6200;
}

.button.danger {
  background: var(--danger);
  color: #fff;
}

.button.danger:hover {
  opacity: 0.88;
}

.badge.failed {
  background: #fff1f0;
  color: var(--danger);
}

.badge.cancelled,
.badge.unsubscribed {
  background: #f5f0ff;
  color: #5a2ea6;
}

.site-footer {
  align-items: center;
  background:
    linear-gradient(180deg, #100f0d, #070605),
    repeating-linear-gradient(90deg, rgba(216, 170, 56, 0.12) 0 10px, transparent 10px 24px);
  color: var(--paper);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 36px clamp(20px, 5vw, 72px);
}

.story-panel {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  position: relative;
}

.story-panel::after {
  background: linear-gradient(180deg, var(--gold), var(--terracotta), var(--indigo));
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-art,
.section-head,
.art-card,
.category-tile,
.panel {
  animation: riseIn 620ms ease both;
}

.art-card:nth-child(2),
.category-tile:nth-child(2) {
  animation-delay: 80ms;
}

.art-card:nth-child(3),
.category-tile:nth-child(3) {
  animation-delay: 140ms;
}

.art-card:nth-child(4),
.category-tile:nth-child(4) {
  animation-delay: 200ms;
}

.site-footer p {
  color: #c8c0b2;
  margin: 6px 0 0;
}

.site-footer strong {
  color: var(--gold);
  font-family: "Bellarina", "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-socials {
  justify-content: flex-end;
}

.footer-links a {
  color: #f8f2e8;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold);
}

.policy-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.policy-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.04;
  margin: 0 0 14px;
}

.policy-hero p {
  color: #d8d1c6;
  margin: 0;
}

.policy-page {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 42px auto 64px;
  max-width: 920px;
  padding: clamp(24px, 5vw, 54px);
}

.policy-page h2,
.policy-page h3 {
  color: var(--ink);
  margin-top: 28px;
}

.policy-page h2:first-child,
.policy-page h3:first-child {
  margin-top: 0;
}

.policy-page p,
.policy-page li {
  color: var(--charcoal);
  font-size: 17px;
}

.contact-hero {
  background:
    linear-gradient(135deg, rgba(16, 15, 13, 0.98), rgba(30, 25, 18, 0.96)),
    repeating-linear-gradient(45deg, rgba(216, 170, 56, 0.08) 0 1px, transparent 1px 20px);
  color: #f8f2e8;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.contact-hero .section-title,
.contact-hero .section-kicker {
  color: inherit;
}

.contact-intro {
  color: #d8d1c6;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  max-width: 760px;
}

.contact-card {
  background: #f8f2e8;
  border: 1px solid rgba(248, 242, 232, 0.8);
  color: #100f0d;
  display: grid;
  gap: 12px;
  padding: clamp(18px, 4vw, 30px);
}

.contact-row {
  border: 1px solid #deded8;
  color: inherit;
  display: grid;
  gap: 5px 14px;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 14px;
}

.contact-row i {
  align-items: center;
  background: #100f0d;
  color: #f8f2e8;
  display: inline-flex;
  grid-row: span 2;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.contact-row span {
  color: #71717a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row strong {
  color: #100f0d;
  overflow-wrap: anywhere;
}

.contact-socials {
  flex-wrap: wrap;
  margin-top: 8px;
}

.admin-body {
  background:
    linear-gradient(90deg, rgba(216, 170, 56, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(185, 86, 50, 0.025) 1px, transparent 1px),
    #080807;
  color: #f8f2e8;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  background:
    linear-gradient(180deg, #080807 0%, #0f0d0a 52%, #080807 100%);
  border-right: 1px solid rgba(248, 242, 232, 0.12);
  color: #f8f2e8;
  padding: 24px;
}

.admin-brand {
  color: #f8f2e8;
  display: inline-flex;
  margin-bottom: 28px;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar a {
  border-radius: 7px;
  color: #e7ddce;
  font-weight: 800;
  padding: 11px 12px;
}

.admin-sidebar a:hover {
  background: rgba(216, 170, 56, 0.12);
  color: var(--gold);
}

.admin-main {
  padding: 28px;
}

.admin-topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  font-size: 40px;
  margin: 0;
}

.stats-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-bottom: 24px;
}

.stat-card {
  padding: 20px;
}

.stat-card strong {
  display: block;
  font-size: 30px;
  margin-top: 8px;
}

.collector-shell {
  padding: 34px clamp(20px, 5vw, 72px) 64px;
}

.collector-hero {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(18, 16, 13, 0.98), rgba(8, 8, 7, 0.98)),
    repeating-linear-gradient(45deg, rgba(216, 170, 56, 0.08) 0 2px, transparent 2px 18px);
  border-radius: 8px;
  color: #f8f2e8;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  margin-bottom: 24px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  position: relative;
}

.collector-hero::before {
  background:
    linear-gradient(135deg, rgba(216, 170, 56, 0.16), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(185, 86, 50, 0.24), transparent 30%);
  content: "";
  inset: 0;
  position: absolute;
}

.collector-hero > * {
  position: relative;
}

.collector-note {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.collector-hero h1 {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  margin: 0 0 18px;
}

.collector-hero p {
  color: #f1e7d7;
  font-size: 18px;
  margin: 0 0 24px;
  max-width: 720px;
}

.button.secondary.light {
  border-color: rgba(248, 245, 239, 0.8);
  color: var(--paper);
}

.collector-hero-card {
  align-self: end;
  background: rgba(8, 8, 7, 0.72);
  border: 1px solid rgba(216, 170, 56, 0.35);
  border-radius: 8px;
  padding: 24px;
}

.collector-hero-card span,
.collector-stat span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.collector-hero-card span {
  color: #d2c6b5;
}

.collector-hero-card strong {
  color: var(--gold);
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin: 12px 0;
}

.collector-hero-card p {
  color: #d8cfbf;
  font-size: 14px;
  margin: 0;
}

.collector-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.collector-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 150px;
  padding: 20px;
}

.collector-stat i {
  align-items: center;
  background: #f2eadb;
  border-radius: 8px;
  color: var(--brown);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin-bottom: 18px;
  width: 38px;
}

.collector-stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  margin-top: 8px;
}

.collector-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin-bottom: 24px;
}

.collector-side {
  display: grid;
  gap: 24px;
}

.collector-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.collector-panel h2 {
  font-size: 22px;
  margin: 0 0 8px;
}

.panel-title-row {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-title-row p {
  margin: 0;
}

.collection-list {
  display: grid;
  gap: 14px;
}

.collection-row {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  padding: 12px;
}

.collection-thumb {
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}

.collection-thumb img,
.mini-art-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.collection-row h3 {
  margin: 0 0 6px;
}

.collection-row p {
  margin: 0 0 6px;
}

.collection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.activity-list {
  display: grid;
  gap: 14px;
}

.activity-item {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.activity-item i {
  color: var(--brown);
  font-size: 20px;
}

.activity-item strong,
.activity-item span {
  display: block;
}

.activity-item span {
  color: var(--muted);
  font-size: 13px;
}

.empty-collection {
  background: #faf7f1;
  border: 1px dashed #d8c7a8;
  border-radius: 8px;
  padding: 28px;
}

.empty-collection h3 {
  font-size: 26px;
  margin: 0 0 8px;
}

.mini-art-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-art-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 12px;
}

.mini-art-image {
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 7px;
  display: block;
  overflow: hidden;
  position: relative;
}

.mini-art-card strong,
.mini-art-card em {
  display: block;
}

.mini-art-card em {
  color: var(--brown);
  font-style: normal;
  font-weight: 800;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .hero,
  .gallery-layout,
  .detail-layout,
  .contact-hero,
  .art-detail-shell,
  .dashboard-layout,
  .admin-body,
  .collector-hero,
  .cart-layout,
  .collector-grid,
  .story-panel {
    grid-template-columns: 1fr;
  }

  .content-editor-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 44px 20px 46px;
  }

  .hero-showcase::after {
    display: none;
  }

  .collector-stats,
  .mini-art-grid,
  .featured-concept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header,
  .site-footer,
  .section-head,
  .panel-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-sidebar {
    position: static;
  }

  .purchase-box {
    position: static;
  }

  .art-detail-shell {
    background: linear-gradient(180deg, #0d0c0a 0, #0d0c0a 62%, var(--paper) 62%);
    padding-top: 26px;
  }

  .detail-image {
    min-height: auto;
  }

  .detail-image img {
    max-height: 560px;
  }

  .art-detail-copy {
    padding-top: 0;
  }

  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .hero-art {
    transform: none;
  }

  .site-header {
    gap: 14px;
    padding: 14px 20px;
    position: relative;
  }

  .site-nav {
    gap: 10px 14px;
    width: 100%;
  }

  .site-nav a {
    font-size: 13px;
  }

  .site-nav .nav-button {
    min-width: auto;
    padding: 9px 14px;
  }

  .brand {
    font-size: 24px;
  }

  .brand-script {
    font-size: 1.35em;
  }

  .hero-showcase {
    order: -1;
  }

  .hero-art {
    border-width: 7px;
    min-height: 260px;
  }

  .home-gallery-preview,
  .section,
  .gallery-layout,
  .detail-layout,
  .collector-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .category-pills {
    flex-wrap: nowrap;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scrollbar-width: none;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .category-pills a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .art-thumb {
    height: 170px;
  }

  .featured-concept-grid .art-thumb {
    height: 185px;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    background: var(--surface);
    border: 1px solid var(--line);
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    gap: 0;
    grid-column: 1 / -1;
    max-height: calc(100vh - 82px);
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

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

  .site-nav a,
  .site-nav .nav-button,
  .site-nav .theme-toggle {
    box-sizing: border-box;
    justify-content: flex-start;
    min-height: 44px;
    max-width: 100%;
    width: 100%;
  }

  .site-nav .theme-toggle {
    justify-content: center;
    width: 44px;
  }

  .collector-stats,
  .mini-art-grid,
  .featured-concept-grid,
  .collection-row,
  .mini-art-card {
    grid-template-columns: 1fr;
  }

  .collection-thumb,
  .mini-art-image {
    aspect-ratio: 4 / 3;
  }

  .collection-actions {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 52px);
    line-height: 1.02;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-proof {
    gap: 18px;
  }

  .hero-proof span {
    grid-template-columns: 28px minmax(0, 1fr);
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-title {
    font-size: 34px;
  }

  .detail-title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .detail-description {
    font-size: 15px;
  }

  .section-title.compact {
    font-size: 27px;
  }

  .art-thumb,
  .featured-concept-grid .art-thumb {
    height: 170px;
  }

  .art-quick-preview {
    opacity: 1;
    padding: 12px;
    pointer-events: auto;
    transform: none;
  }

  .art-quick-preview strong {
    font-size: 18px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .art-lightbox-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .art-lightbox-image-wrap {
    min-height: auto;
  }

  .art-lightbox-image-wrap img {
    max-height: 58vh;
  }

  .art-lightbox-info {
    min-height: auto;
  }

  .art-lightbox-heading,
  .art-lightbox-description,
  .art-lightbox-meta,
  .art-lightbox-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .art-lightbox-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .art-lightbox-actions {
    justify-content: flex-start;
  }

  .cart-item {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .cart-item form {
    grid-column: 1 / -1;
  }

  .cart-item img {
    height: 90px;
    width: 90px;
  }

  .art-card-body {
    padding: 14px;
  }

.site-footer {
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Global dark gallery theme overrides */
.home-gallery-preview,
.section,
.gallery-layout,
.detail-layout,
.dashboard-layout,
.collector-shell,
.policy-page,
.auth-wrap {
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.98), rgba(14, 11, 8, 0.98)),
    var(--paper);
  color: var(--ink);
}

.art-card,
.category-tile,
.auth-card,
.panel,
.stat-card,
.collector-panel,
.collector-stat,
.detail-buy-card,
.policy-page,
.mini-art-card,
.collection-row {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.art-card-body,
.featured-concept-grid .art-card-body {
  background: var(--surface);
}

.category-pills a {
  border-color: rgba(248, 242, 232, 0.18);
  color: var(--ink);
}

.category-pills a.active,
.category-pills a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #100f0d;
}

input,
select,
textarea {
  background: #0b0a09;
  border-color: var(--line);
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: #83796b;
}

.button.secondary {
  border-color: rgba(248, 242, 232, 0.45);
  color: var(--ink);
}

.muted,
.policy-page p,
.policy-page li,
.art-card-body p,
.detail-description {
  color: var(--charcoal);
}

.price,
.policy-page h2,
.policy-page h3,
.detail-meta-grid strong {
  color: var(--gold);
}

.detail-meta-grid span,
.empty-collection {
  background: #0d0b09;
  border-color: var(--line);
  color: var(--charcoal);
}

.filters {
  background: #0c0b0a;
  border-color: var(--line);
}

.table-wrap,
table {
  color: var(--ink);
}

th,
td {
  border-bottom-color: var(--line);
}

.collector-stat i {
  background: rgba(216, 170, 56, 0.13);
  color: var(--gold);
}

.alert.success {
  background: rgba(22, 122, 66, 0.16);
  border: 1px solid rgba(66, 179, 109, 0.35);
  color: #8ef0b4;
}

.alert.error {
  background: rgba(180, 35, 24, 0.16);
  border: 1px solid rgba(249, 112, 102, 0.35);
  color: #ffb4ad;
}

.badge.success,
.badge.active,
.badge.pending,
.badge.failed,
.badge.cancelled,
.badge.unsubscribed {
  border: 1px solid currentColor;
}

.badge.success,
.badge.active {
  background: rgba(66, 179, 109, 0.14);
}

.badge.pending {
  background: rgba(216, 170, 56, 0.14);
  color: var(--gold);
}

.badge.failed {
  background: rgba(249, 112, 102, 0.14);
}

.badge.cancelled,
.badge.unsubscribed {
  background: rgba(120, 92, 200, 0.18);
  color: #c8b6ff;
}

.story-panel,
.policy-page,
.auth-card,
.purchase-box {
  box-shadow: var(--shadow);
}

.hero .button.secondary.light {
  border-color: rgba(248, 242, 232, 0.82);
  color: #f8f2e8;
}

.hero .button.secondary.light:hover {
  background: #f8f2e8;
  color: #100f0d;
}

.collector-hero .button.secondary.light {
  border-color: rgba(248, 242, 232, 0.82);
  color: #f8f2e8;
}

.collector-hero .button.secondary.light:hover {
  background: #f8f2e8;
  color: #100f0d;
}

.cart-shell {
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.98), rgba(14, 11, 8, 0.98));
  color: var(--ink);
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.cart-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  padding: 14px;
}

.cart-item img {
  aspect-ratio: 1;
  border-radius: 7px;
  height: 120px;
  object-fit: cover;
  width: 120px;
}

.cart-item h3 {
  margin: 0 0 6px;
}

.cart-total {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  margin: 8px 0 20px;
}

.reviews-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-card p {
  color: var(--charcoal);
}

.review-form {
  margin-bottom: 22px;
}

html.light-mode {
  --ink: #100f0d;
  --charcoal: #3a332b;
  --paper: #f8f2e8;
  --surface: #fffaf2;
  --muted: #706858;
  --line: #e3d3b9;
  --shadow: 0 24px 70px rgba(45, 31, 18, 0.12);
  --soft-shadow: 0 14px 40px rgba(45, 31, 18, 0.08);
}

html.light-mode body,
html.light-mode .home-gallery-preview,
html.light-mode .section,
html.light-mode .gallery-layout,
html.light-mode .detail-layout,
html.light-mode .dashboard-layout,
html.light-mode .collector-shell,
html.light-mode .policy-page,
html.light-mode .auth-wrap,
html.light-mode .cart-shell {
  background: linear-gradient(180deg, rgba(248, 242, 232, 0.98), rgba(245, 236, 221, 0.98));
  color: var(--ink);
}

html.light-mode .art-card,
html.light-mode .category-tile,
html.light-mode .auth-card,
html.light-mode .panel,
html.light-mode .content-editor-section,
html.light-mode .stat-card,
html.light-mode .collector-panel,
html.light-mode .collector-stat,
html.light-mode .detail-buy-card,
html.light-mode .license-note,
html.light-mode .policy-page,
html.light-mode .mini-art-card,
html.light-mode .collection-row,
html.light-mode .cart-item {
  background: var(--surface);
  color: var(--ink);
}

html.light-mode input,
html.light-mode select,
html.light-mode textarea,
html.light-mode .html-editor-toolbar,
html.light-mode .html-editor-surface,
html.light-mode .detail-meta-grid span,
html.light-mode .empty-collection {
  background: #fff;
  color: var(--ink);
}

html.light-mode .button.secondary {
  border-color: var(--ink);
  color: var(--ink);
}

html.light-mode .site-header {
  background: rgba(8, 8, 7, 0.96);
}

html.light-mode .admin-sidebar {
  background:
    linear-gradient(180deg, #080807 0%, #0f0d0a 52%, #080807 100%);
  border-right-color: rgba(248, 242, 232, 0.12);
  color: #f8f2e8;
}

html.light-mode .admin-sidebar a,
html.light-mode .admin-brand {
  color: #e7ddce;
}

html.light-mode .admin-sidebar a:hover {
  background: rgba(216, 170, 56, 0.12);
  color: var(--gold);
}

html.light-mode .hero,
html.light-mode .collector-hero,
html.light-mode .art-detail-shell {
  color: #f8f2e8;
}

/* ArtCollection-inspired editorial redesign */
.brand-vector {
  color: currentColor;
  flex: 0 0 auto;
  height: 34px;
  width: 34px;
}

html.light-mode {
  --ink: #171717;
  --charcoal: #4b5563;
  --paper: #f7f7f4;
  --surface: #ffffff;
  --surface-2: #f1f1ed;
  --gold: #171717;
  --brown: #6b5a44;
  --terracotta: #8b5e3c;
  --indigo: #1f2937;
  --muted: #71717a;
  --line: #deded8;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --soft-shadow: none;
}

html.light-mode body {
  background: #f7f7f4;
  background-size: auto;
  color: #171717;
  position: relative;
}

html.light-mode body::before,
html.light-mode body::after {
  background-color: #171717;
  content: "";
  opacity: 0.035;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

html.light-mode body::before {
  height: 520px;
  left: -130px;
  top: 18vh;
  transform: rotate(-12deg);
  width: 520px;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M40 118c-11-13-16-28-14-46 4-32 32-53 64-47 24 4 43 25 44 49 0 10-7 17-17 17h-8c-6 0-11 5-11 11 0 4 2 7 5 10 6 6 2 16-7 18-22 5-42 1-56-12Z' fill='black'/%3E%3Ccircle cx='58' cy='63' r='9' fill='white'/%3E%3Ccircle cx='82' cy='50' r='8' fill='white'/%3E%3Ccircle cx='105' cy='65' r='8' fill='white'/%3E%3Ccircle cx='73' cy='91' r='9' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M40 118c-11-13-16-28-14-46 4-32 32-53 64-47 24 4 43 25 44 49 0 10-7 17-17 17h-8c-6 0-11 5-11 11 0 4 2 7 5 10 6 6 2 16-7 18-22 5-42 1-56-12Z' fill='black'/%3E%3Ccircle cx='58' cy='63' r='9' fill='white'/%3E%3Ccircle cx='82' cy='50' r='8' fill='white'/%3E%3Ccircle cx='105' cy='65' r='8' fill='white'/%3E%3Ccircle cx='73' cy='91' r='9' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

html.light-mode body::after {
  height: 460px;
  right: -120px;
  top: 56vh;
  transform: rotate(10deg);
  width: 460px;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M33 62h22l9-14h32l9 14h22c10 0 18 8 18 18v34c0 10-8 18-18 18H33c-10 0-18-8-18-18V80c0-10 8-18 18-18Z' fill='black'/%3E%3Ccircle cx='80' cy='98' r='29' fill='white'/%3E%3Ccircle cx='80' cy='98' r='19' fill='black'/%3E%3Ccircle cx='121' cy='80' r='7' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M33 62h22l9-14h32l9 14h22c10 0 18 8 18 18v34c0 10-8 18-18 18H33c-10 0-18-8-18-18V80c0-10 8-18 18-18Z' fill='black'/%3E%3Ccircle cx='80' cy='98' r='29' fill='white'/%3E%3Ccircle cx='80' cy='98' r='19' fill='black'/%3E%3Ccircle cx='121' cy='80' r='7' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

html.light-mode main,
html.light-mode .site-header,
html.light-mode .site-footer,
html.light-mode .admin-sidebar,
html.light-mode .admin-main,
html.light-mode .auth-wrap {
  position: relative;
  z-index: 1;
}

html.light-mode .site-header {
  background: rgba(247, 247, 244, 0.94);
  border-bottom: 1px solid #deded8;
  color: #171717;
  padding-block: 16px;
}

html.light-mode .brand {
  color: #171717;
  font-size: clamp(22px, 2vw, 30px);
  gap: 10px;
}

html.light-mode .brand span {
  color: #171717;
}

html.light-mode .brand-script,
html.light-mode .site-footer strong {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
}

html.light-mode .brand-plain {
  border-left: 1px solid #c9c9c1;
  color: #52525b;
  font-size: 0.78em;
  font-weight: 700;
  margin-left: 2px;
  padding-left: 10px;
}

html.light-mode .site-nav {
  color: #27272a;
  font-size: 13px;
  gap: 22px;
  text-transform: uppercase;
}

html.light-mode .site-nav a,
html.light-mode .admin-sidebar a {
  color: #27272a;
}

html.light-mode .site-nav a:not(.nav-button)::after {
  background: #171717;
  bottom: -6px;
}

html.light-mode .site-nav a:hover,
html.light-mode .site-nav a.active {
  color: #171717;
}

html.light-mode .nav-button,
html.light-mode .button,
html.light-mode button,
html.light-mode input[type="submit"] {
  background: #171717;
  border: 1px solid #171717;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  min-height: 44px;
  padding: 12px 18px;
  text-transform: uppercase;
}

html.light-mode .site-nav .nav-button,
html.light-mode .button.secondary {
  background: transparent;
  border-color: #171717;
  color: #171717;
}

html.light-mode .button.gold {
  background: #171717;
  color: #fff;
}

html.light-mode .theme-toggle {
  background: transparent;
  border-color: #c9c9c1;
  border-radius: 999px;
  color: #171717;
}

html.light-mode .hero {
  background: #f7f7f4;
  color: #171717;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1fr);
  min-height: min(760px, calc(100vh - 78px));
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px) 64px;
}

html.light-mode .hero::before {
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(23, 23, 23, 0.08) calc(100% - 1px)),
    linear-gradient(180deg, transparent calc(100% - 1px), rgba(23, 23, 23, 0.08) calc(100% - 1px));
  background-size: 96px 96px;
  opacity: 1;
}

html.light-mode .hero::after {
  background: #171717;
  bottom: 50px;
  height: 280px;
  left: clamp(20px, 5vw, 72px);
  opacity: 0.045;
  right: auto;
  top: auto;
  transform: rotate(-24deg);
  width: 280px;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M109 12c8 0 15 7 15 15 0 5-2 9-5 12L64 94 38 104l10-26 55-55c2-3 4-6 6-11Z' fill='black'/%3E%3Cpath d='M34 113c28 4 51 2 72-7 9-4 18 4 13 13-8 17-31 26-58 25-19-1-36-7-49-18-7-6-1-17 8-15 5 1 9 2 14 2Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M109 12c8 0 15 7 15 15 0 5-2 9-5 12L64 94 38 104l10-26 55-55c2-3 4-6 6-11Z' fill='black'/%3E%3Cpath d='M34 113c28 4 51 2 72-7 9-4 18 4 13 13-8 17-31 26-58 25-19-1-36-7-49-18-7-6-1-17 8-15 5 1 9 2 14 2Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

html.light-mode .hero h1,
html.light-mode .section-title,
html.light-mode .auth-card h1,
html.light-mode .detail-title,
html.light-mode .admin-topbar h1 {
  color: #171717;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
}

html.light-mode .hero h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
  max-width: 820px;
}

html.light-mode .hero p {
  color: #52525b;
}

html.light-mode .culture-mark,
html.light-mode .section-kicker {
  color: #52525b;
  letter-spacing: 0.16em;
}

html.light-mode .culture-mark::before {
  background: #171717;
}

html.light-mode .hero-proof {
  border-top: 0;
  gap: 14px;
  margin-top: 40px;
}

html.light-mode .hero-proof span {
  background: #fff;
  border: 1px solid #deded8;
  box-shadow: 6px 6px 0 #e9e9e3;
  color: #171717;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 18px;
}

html.light-mode .hero-proof i {
  color: #171717;
}

html.light-mode .hero-proof strong {
  color: #171717;
}

html.light-mode .hero-proof em {
  color: #71717a;
}

html.light-mode .hero-showcase::after,
html.light-mode .textile-strip,
html.light-mode .category-section::before,
html.light-mode .story-section::before {
  display: none;
}

html.light-mode .hero-art,
html.light-mode .detail-image {
  background: #fff;
  border: 1px solid #171717;
  box-shadow: 16px 16px 0 #deded8;
  min-height: 520px;
}

html.light-mode .hero-art::before,
html.light-mode .detail-image::before,
html.light-mode .art-thumb::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%);
}

html.light-mode .hero-showcase > p {
  color: #71717a;
  margin-top: 18px;
}

html.light-mode .home-gallery-preview,
html.light-mode .section,
html.light-mode .gallery-layout,
html.light-mode .detail-layout,
html.light-mode .dashboard-layout,
html.light-mode .collector-shell,
html.light-mode .policy-page,
html.light-mode .auth-wrap,
html.light-mode .cart-shell {
  background: #f7f7f4;
  color: #171717;
}

html.light-mode .section,
html.light-mode .home-gallery-preview {
  border-top: 1px solid #deded8;
}

html.light-mode .section-head {
  align-items: flex-end;
  border-bottom: 1px solid #deded8;
  padding-bottom: 22px;
}

html.light-mode .plain-link {
  color: #171717;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html.light-mode .category-pills a {
  background: transparent;
  border-color: #c9c9c1;
  border-radius: 0;
  color: #27272a;
}

html.light-mode .category-pills a.active,
html.light-mode .category-pills a:hover {
  background: #171717;
  border-color: #171717;
  color: #fff;
}

html.light-mode .art-card,
html.light-mode .category-tile,
html.light-mode .auth-card,
html.light-mode .panel,
html.light-mode .content-editor-section,
html.light-mode .stat-card,
html.light-mode .collector-panel,
html.light-mode .collector-stat,
html.light-mode .detail-buy-card,
html.light-mode .policy-page,
html.light-mode .mini-art-card,
html.light-mode .collection-row,
html.light-mode .cart-item {
  background: #fff;
  border: 1px solid #deded8;
  border-radius: 0;
  box-shadow: none;
  color: #171717;
}

html.light-mode .art-card:hover,
html.light-mode .category-tile:hover,
html.light-mode .mini-art-card:hover {
  border-color: #171717;
  box-shadow: 8px 8px 0 #deded8;
  transform: translateY(-4px);
}

html.light-mode .art-card-body,
html.light-mode .featured-concept-grid .art-card-body {
  background: #fff;
  border-top: 1px solid #deded8;
}

html.light-mode .art-card h3,
html.light-mode .category-tile h3 {
  color: #171717;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

html.light-mode .art-card-body p,
html.light-mode .muted,
html.light-mode .policy-page p,
html.light-mode .policy-page li,
html.light-mode .license-note p,
html.light-mode .detail-description {
  color: #71717a;
}

html.light-mode .art-label {
  background: #fff;
  border: 1px solid #171717;
  border-radius: 0;
  color: #171717;
}

html.light-mode .price {
  color: #171717;
}

html.light-mode .story-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

html.light-mode .site-footer {
  background: #171717;
  border-top: 1px solid #171717;
  color: #f7f7f4;
}

html.light-mode .site-footer strong {
  color: #f7f7f4;
}

html.light-mode .site-footer p,
html.light-mode .footer-links a {
  color: #d4d4d0;
}

html.light-mode .footer-links a:hover {
  color: #fff;
}

html.light-mode .admin-body {
  background: #f7f7f4;
  color: #171717;
}

html.light-mode .admin-sidebar {
  background: #fff;
  border-right: 1px solid #deded8;
  color: #171717;
}

html.light-mode .admin-sidebar a,
html.light-mode .admin-brand {
  color: #27272a;
}

html.light-mode .admin-sidebar a {
  border-radius: 0;
  border: 1px solid transparent;
}

html.light-mode .admin-sidebar a:hover {
  background: #f7f7f4;
  border-color: #deded8;
  color: #171717;
}

html.light-mode .admin-main {
  background: #f7f7f4;
}

html.light-mode .admin-topbar {
  border-bottom: 1px solid #deded8;
  padding-bottom: 22px;
}

html.light-mode table {
  border-collapse: collapse;
}

html.light-mode th,
html.light-mode td {
  border-bottom: 1px solid #deded8;
}

html.light-mode input,
html.light-mode select,
html.light-mode textarea,
html.light-mode .html-editor-toolbar,
html.light-mode .html-editor-surface,
html.light-mode .detail-meta-grid span,
html.light-mode .empty-collection {
  background: #fff;
  border-color: #deded8;
  border-radius: 0;
  color: #171717;
}

html.light-mode .collector-hero {
  background: #171717;
  color: #f7f7f4;
}

html.light-mode .collector-hero h1,
html.light-mode .collector-hero p,
html.light-mode .collector-note {
  color: #f7f7f4;
}

html.light-mode .collector-hero-card {
  background: #f7f7f4;
  border: 1px solid #f7f7f4;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.16);
  color: #171717;
}

html.light-mode .collector-hero-card span {
  color: #52525b;
}

html.light-mode .collector-hero-card strong {
  color: #171717;
}

html.light-mode .collector-hero-card p {
  color: #52525b;
}

html.light-mode .art-detail-shell {
  background: #f7f7f4;
  color: #171717;
}

html.light-mode .art-lightbox-panel {
  border-radius: 0;
}

html.light-mode .auth-brand {
  margin-bottom: 26px;
}

@media (max-width: 900px) {
  html.light-mode .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  html.light-mode .hero-art,
  html.light-mode .detail-image {
    min-height: 360px;
  }

  html.light-mode .admin-body {
    grid-template-columns: 1fr;
  }

  html.light-mode .admin-sidebar {
    border-bottom: 1px solid #deded8;
    border-right: 0;
  }

  html.light-mode .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  html.light-mode .site-header {
    align-items: center;
  }

  html.light-mode .brand-vector {
    height: 30px;
    width: 30px;
  }

  html.light-mode .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  html.light-mode .hero-proof span {
    border-right: 0;
    width: 100%;
  }

  html.light-mode .hero-proof {
    grid-template-columns: 1fr;
  }

  html.light-mode .section-head {
    align-items: flex-start;
  }

  html.light-mode .story-panel {
    grid-template-columns: 1fr;
  }

  html.light-mode .admin-sidebar nav {
    grid-template-columns: 1fr;
  }
}

/* Dark editorial mode matching the new ArtCollection-inspired system */
html:not(.light-mode) {
  --ink: #f4f4f1;
  --charcoal: #b8b8b2;
  --paper: #10100e;
  --surface: #171714;
  --surface-2: #20201c;
  --gold: #f4f4f1;
  --brown: #c4b8a4;
  --terracotta: #b8a58d;
  --indigo: #d8d8d2;
  --muted: #9b9b93;
  --line: rgba(244, 244, 241, 0.16);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  --soft-shadow: none;
}

html:not(.light-mode) body {
  background: #10100e;
  background-size: auto;
  color: #f4f4f1;
  position: relative;
}

html:not(.light-mode) body::before,
html:not(.light-mode) body::after {
  background-color: #f4f4f1;
  content: "";
  opacity: 0.025;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

html:not(.light-mode) body::before {
  height: 520px;
  left: -130px;
  top: 18vh;
  transform: rotate(-12deg);
  width: 520px;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M40 118c-11-13-16-28-14-46 4-32 32-53 64-47 24 4 43 25 44 49 0 10-7 17-17 17h-8c-6 0-11 5-11 11 0 4 2 7 5 10 6 6 2 16-7 18-22 5-42 1-56-12Z' fill='black'/%3E%3Ccircle cx='58' cy='63' r='9' fill='white'/%3E%3Ccircle cx='82' cy='50' r='8' fill='white'/%3E%3Ccircle cx='105' cy='65' r='8' fill='white'/%3E%3Ccircle cx='73' cy='91' r='9' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M40 118c-11-13-16-28-14-46 4-32 32-53 64-47 24 4 43 25 44 49 0 10-7 17-17 17h-8c-6 0-11 5-11 11 0 4 2 7 5 10 6 6 2 16-7 18-22 5-42 1-56-12Z' fill='black'/%3E%3Ccircle cx='58' cy='63' r='9' fill='white'/%3E%3Ccircle cx='82' cy='50' r='8' fill='white'/%3E%3Ccircle cx='105' cy='65' r='8' fill='white'/%3E%3Ccircle cx='73' cy='91' r='9' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

html:not(.light-mode) body::after {
  height: 460px;
  right: -120px;
  top: 56vh;
  transform: rotate(10deg);
  width: 460px;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M33 62h22l9-14h32l9 14h22c10 0 18 8 18 18v34c0 10-8 18-18 18H33c-10 0-18-8-18-18V80c0-10 8-18 18-18Z' fill='black'/%3E%3Ccircle cx='80' cy='98' r='29' fill='white'/%3E%3Ccircle cx='80' cy='98' r='19' fill='black'/%3E%3Ccircle cx='121' cy='80' r='7' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M33 62h22l9-14h32l9 14h22c10 0 18 8 18 18v34c0 10-8 18-18 18H33c-10 0-18-8-18-18V80c0-10 8-18 18-18Z' fill='black'/%3E%3Ccircle cx='80' cy='98' r='29' fill='white'/%3E%3Ccircle cx='80' cy='98' r='19' fill='black'/%3E%3Ccircle cx='121' cy='80' r='7' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

html:not(.light-mode) main,
html:not(.light-mode) .site-header,
html:not(.light-mode) .site-footer,
html:not(.light-mode) .admin-sidebar,
html:not(.light-mode) .admin-main,
html:not(.light-mode) .auth-wrap {
  position: relative;
  z-index: 1;
}

html:not(.light-mode) .site-header {
  background: rgba(16, 16, 14, 0.94);
  border-bottom: 1px solid rgba(244, 244, 241, 0.16);
  color: #f4f4f1;
  padding-block: 16px;
}

.site-header,
html.light-mode .site-header,
html:not(.light-mode) .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

html:not(.light-mode) .brand,
html:not(.light-mode) .brand span {
  color: #f4f4f1;
}

html:not(.light-mode) .brand {
  font-size: clamp(22px, 2vw, 30px);
  gap: 10px;
}

html:not(.light-mode) .brand-script,
html:not(.light-mode) .site-footer strong {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
}

html:not(.light-mode) .brand-plain {
  border-left: 1px solid rgba(244, 244, 241, 0.2);
  color: #b8b8b2;
  font-size: 0.78em;
  font-weight: 700;
  margin-left: 2px;
  padding-left: 10px;
}

html:not(.light-mode) .site-nav {
  color: #d8d8d2;
  font-size: 13px;
  gap: 22px;
  text-transform: uppercase;
}

html:not(.light-mode) .site-nav a,
html:not(.light-mode) .admin-sidebar a {
  color: #d8d8d2;
}

html:not(.light-mode) .site-nav a:not(.nav-button)::after {
  background: #f4f4f1;
  bottom: -6px;
}

html:not(.light-mode) .site-nav a:hover,
html:not(.light-mode) .site-nav a.active {
  color: #fff;
}

html:not(.light-mode) .nav-button,
html:not(.light-mode) .button,
html:not(.light-mode) button,
html:not(.light-mode) input[type="submit"] {
  background: #f4f4f1;
  border: 1px solid #f4f4f1;
  border-radius: 0;
  box-shadow: none;
  color: #10100e;
  font-size: 12px;
  letter-spacing: 0.08em;
  min-height: 44px;
  padding: 12px 18px;
  text-transform: uppercase;
}

html:not(.light-mode) .site-nav .nav-button,
html:not(.light-mode) .button.secondary,
html:not(.light-mode) .hero .button.secondary.light,
html:not(.light-mode) .collector-hero .button.secondary.light {
  background: transparent;
  border-color: #f4f4f1;
  color: #f4f4f1;
}

html:not(.light-mode) .button.gold {
  background: #f4f4f1;
  color: #10100e;
}

html:not(.light-mode) .theme-toggle {
  background: transparent;
  border-color: rgba(244, 244, 241, 0.28);
  border-radius: 999px;
  color: #f4f4f1;
}

html:not(.light-mode) .hero {
  background: #10100e;
  color: #f4f4f1;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1fr);
  min-height: min(760px, calc(100vh - 78px));
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px) 64px;
}

html:not(.light-mode) .hero::before {
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(244, 244, 241, 0.06) calc(100% - 1px)),
    linear-gradient(180deg, transparent calc(100% - 1px), rgba(244, 244, 241, 0.06) calc(100% - 1px));
  background-size: 96px 96px;
  opacity: 1;
}

html:not(.light-mode) .hero::after {
  background: #f4f4f1;
  bottom: 50px;
  height: 280px;
  left: clamp(20px, 5vw, 72px);
  opacity: 0.045;
  right: auto;
  top: auto;
  transform: rotate(-24deg);
  width: 280px;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M109 12c8 0 15 7 15 15 0 5-2 9-5 12L64 94 38 104l10-26 55-55c2-3 4-6 6-11Z' fill='black'/%3E%3Cpath d='M34 113c28 4 51 2 72-7 9-4 18 4 13 13-8 17-31 26-58 25-19-1-36-7-49-18-7-6-1-17 8-15 5 1 9 2 14 2Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath d='M109 12c8 0 15 7 15 15 0 5-2 9-5 12L64 94 38 104l10-26 55-55c2-3 4-6 6-11Z' fill='black'/%3E%3Cpath d='M34 113c28 4 51 2 72-7 9-4 18 4 13 13-8 17-31 26-58 25-19-1-36-7-49-18-7-6-1-17 8-15 5 1 9 2 14 2Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

html:not(.light-mode) .hero h1,
html:not(.light-mode) .section-title,
html:not(.light-mode) .auth-card h1,
html:not(.light-mode) .detail-title,
html:not(.light-mode) .admin-topbar h1 {
  color: #f4f4f1;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
}

html:not(.light-mode) .hero h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
  max-width: 820px;
}

html:not(.light-mode) .hero p,
html:not(.light-mode) .muted,
html:not(.light-mode) .art-card-body p,
html:not(.light-mode) .detail-description,
html:not(.light-mode) .license-note p,
html:not(.light-mode) .policy-page p,
html:not(.light-mode) .policy-page li {
  color: #b8b8b2;
}

html:not(.light-mode) .culture-mark,
html:not(.light-mode) .section-kicker {
  color: #b8b8b2;
  letter-spacing: 0.16em;
}

html:not(.light-mode) .culture-mark::before {
  background: #f4f4f1;
}

html:not(.light-mode) .hero-proof {
  border-top: 0;
  gap: 14px;
  margin-top: 40px;
}

html:not(.light-mode) .hero-proof span {
  background: #171714;
  border: 1px solid rgba(244, 244, 241, 0.16);
  box-shadow: 6px 6px 0 rgba(244, 244, 241, 0.06);
  color: #f4f4f1;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 18px;
}

html:not(.light-mode) .hero-proof i {
  color: #f4f4f1;
}

html:not(.light-mode) .hero-proof strong {
  color: #f4f4f1;
}

html:not(.light-mode) .hero-proof em,
html:not(.light-mode) .hero-showcase > p {
  color: #9b9b93;
}

html:not(.light-mode) .hero-showcase::after,
html:not(.light-mode) .textile-strip,
html:not(.light-mode) .category-section::before,
html:not(.light-mode) .story-section::before {
  display: none;
}

html:not(.light-mode) .hero-art,
html:not(.light-mode) .detail-image {
  background: #171714;
  border: 1px solid rgba(244, 244, 241, 0.74);
  box-shadow: 16px 16px 0 rgba(244, 244, 241, 0.08);
  min-height: 520px;
}

html:not(.light-mode) .home-gallery-preview,
html:not(.light-mode) .section,
html:not(.light-mode) .gallery-layout,
html:not(.light-mode) .detail-layout,
html:not(.light-mode) .dashboard-layout,
html:not(.light-mode) .collector-shell,
html:not(.light-mode) .policy-page,
html:not(.light-mode) .auth-wrap,
html:not(.light-mode) .cart-shell {
  background: #10100e;
  color: #f4f4f1;
}

html:not(.light-mode) .section,
html:not(.light-mode) .home-gallery-preview {
  border-top: 1px solid rgba(244, 244, 241, 0.16);
}

html:not(.light-mode) .section-head {
  align-items: flex-end;
  border-bottom: 1px solid rgba(244, 244, 241, 0.16);
  padding-bottom: 22px;
}

html:not(.light-mode) .plain-link {
  color: #f4f4f1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html:not(.light-mode) .category-pills a {
  background: transparent;
  border-color: rgba(244, 244, 241, 0.24);
  border-radius: 0;
  color: #d8d8d2;
}

html:not(.light-mode) .category-pills a.active,
html:not(.light-mode) .category-pills a:hover {
  background: #f4f4f1;
  border-color: #f4f4f1;
  color: #10100e;
}

html:not(.light-mode) .art-card,
html:not(.light-mode) .category-tile,
html:not(.light-mode) .auth-card,
html:not(.light-mode) .panel,
html:not(.light-mode) .content-editor-section,
html:not(.light-mode) .stat-card,
html:not(.light-mode) .collector-panel,
html:not(.light-mode) .collector-stat,
html:not(.light-mode) .detail-buy-card,
html:not(.light-mode) .license-note,
html:not(.light-mode) .policy-page,
html:not(.light-mode) .mini-art-card,
html:not(.light-mode) .collection-row,
html:not(.light-mode) .cart-item,
html:not(.light-mode) .review-card {
  background: #171714;
  border: 1px solid rgba(244, 244, 241, 0.16);
  border-radius: 0;
  box-shadow: none;
  color: #f4f4f1;
}

html:not(.light-mode) .art-card:hover,
html:not(.light-mode) .category-tile:hover,
html:not(.light-mode) .mini-art-card:hover {
  border-color: rgba(244, 244, 241, 0.7);
  box-shadow: 8px 8px 0 rgba(244, 244, 241, 0.08);
  transform: translateY(-4px);
}

html:not(.light-mode) .art-card-body,
html:not(.light-mode) .featured-concept-grid .art-card-body {
  background: #171714;
  border-top: 1px solid rgba(244, 244, 241, 0.16);
}

html:not(.light-mode) .art-card h3,
html:not(.light-mode) .category-tile h3 {
  color: #f4f4f1;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

html:not(.light-mode) .art-label {
  background: #10100e;
  border: 1px solid #f4f4f1;
  border-radius: 0;
  color: #f4f4f1;
}

html:not(.light-mode) .price,
html:not(.light-mode) .cart-total,
html:not(.light-mode) .stars,
html:not(.light-mode) .policy-page h2,
html:not(.light-mode) .policy-page h3,
html:not(.light-mode) .detail-meta-grid strong {
  color: #f4f4f1;
}

html:not(.light-mode) .site-footer {
  background: #0b0b09;
  border-top: 1px solid rgba(244, 244, 241, 0.16);
  color: #f4f4f1;
}

html:not(.light-mode) .site-footer strong {
  color: #f4f4f1;
}

html:not(.light-mode) .site-footer p,
html:not(.light-mode) .footer-links a {
  color: #b8b8b2;
}

html:not(.light-mode) .footer-links a:hover {
  color: #fff;
}

html:not(.light-mode) .admin-body {
  background: #10100e;
  color: #f4f4f1;
}

html:not(.light-mode) .admin-sidebar {
  background: #171714;
  border-right: 1px solid rgba(244, 244, 241, 0.16);
  color: #f4f4f1;
}

html:not(.light-mode) .admin-sidebar a,
html:not(.light-mode) .admin-brand {
  color: #d8d8d2;
}

html:not(.light-mode) .admin-sidebar a {
  border-radius: 0;
  border: 1px solid transparent;
}

html:not(.light-mode) .admin-sidebar a:hover {
  background: #10100e;
  border-color: rgba(244, 244, 241, 0.16);
  color: #fff;
}

html:not(.light-mode) .admin-main {
  background: #10100e;
}

html:not(.light-mode) .admin-topbar {
  border-bottom: 1px solid rgba(244, 244, 241, 0.16);
  padding-bottom: 22px;
}

html:not(.light-mode) th,
html:not(.light-mode) td {
  border-bottom: 1px solid rgba(244, 244, 241, 0.16);
}

html:not(.light-mode) input,
html:not(.light-mode) select,
html:not(.light-mode) textarea,
html:not(.light-mode) .html-editor-toolbar,
html:not(.light-mode) .html-editor-surface,
html:not(.light-mode) .detail-meta-grid span,
html:not(.light-mode) .empty-collection {
  background: #171714;
  border-color: rgba(244, 244, 241, 0.16);
  border-radius: 0;
  color: #f4f4f1;
}

html:not(.light-mode) input::placeholder,
html:not(.light-mode) textarea::placeholder {
  color: #85857d;
}

html:not(.light-mode) .collector-hero {
  background: #0b0b09;
  color: #f4f4f1;
}

html:not(.light-mode) .collector-hero h1,
html:not(.light-mode) .collector-hero p,
html:not(.light-mode) .collector-note {
  color: #f4f4f1;
}

html:not(.light-mode) .collector-hero-card {
  background: #f4f4f1;
  border: 1px solid #f4f4f1;
  box-shadow: 8px 8px 0 rgba(244, 244, 241, 0.08);
  color: #10100e;
}

html:not(.light-mode) .collector-hero-card span {
  color: #52525b;
}

html:not(.light-mode) .collector-hero-card strong {
  color: #10100e;
}

html:not(.light-mode) .collector-hero-card p {
  color: #52525b;
}

html:not(.light-mode) .art-detail-shell {
  background: #10100e;
  color: #f4f4f1;
}

html:not(.light-mode) .art-lightbox-panel {
  border-radius: 0;
}

@media (max-width: 900px) {
  html:not(.light-mode) .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  html:not(.light-mode) .hero-art,
  html:not(.light-mode) .detail-image {
    min-height: 360px;
  }

  html:not(.light-mode) .admin-body {
    grid-template-columns: 1fr;
  }

  html:not(.light-mode) .admin-sidebar {
    border-bottom: 1px solid rgba(244, 244, 241, 0.16);
    border-right: 0;
  }

  html:not(.light-mode) .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  html:not(.light-mode) .site-header {
    align-items: center;
  }

  html:not(.light-mode) .brand-vector {
    height: 30px;
    width: 30px;
  }

  html:not(.light-mode) .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  html:not(.light-mode) .hero-proof span {
    border-right: 0;
    width: 100%;
  }

  html:not(.light-mode) .hero-proof {
    grid-template-columns: 1fr;
  }

  html:not(.light-mode) .section-head {
    align-items: flex-start;
  }

  html:not(.light-mode) .story-panel {
    grid-template-columns: 1fr;
  }

  html:not(.light-mode) .admin-sidebar nav {
    grid-template-columns: 1fr;
  }
}

/* Final mobile polish for public header, hero media, and artwork cards */
@media (max-width: 900px) {
  .site-header {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-plain {
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    background: var(--surface);
    border: 1px solid var(--line);
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    gap: 0;
    grid-column: 1 / -1;
    max-height: calc(100vh - 82px);
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

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

  .site-nav a,
  .site-nav .nav-button {
    border-bottom: 1px solid var(--line);
    box-sizing: border-box;
    justify-content: flex-start;
    min-height: 46px;
    max-width: 100%;
    padding: 12px;
    width: 100%;
  }

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

  .site-nav .theme-toggle {
    margin: 10px 0 2px;
  }

  .nav-socials {
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    padding: 12px;
    width: 100%;
  }

  .site-nav .nav-socials .social-icon {
    border-bottom: 1px solid currentColor;
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
    min-height: 38px;
    padding: 0;
    width: 38px;
  }

  .nav-currency {
    border-bottom: 1px solid var(--line);
    box-sizing: border-box;
    justify-content: space-between;
    max-width: 100%;
    overflow: hidden;
    padding: 12px;
    width: 100%;
  }

  .nav-currency select {
    max-width: 120px;
  }
}

@media (max-width: 620px) {
  .category-pills {
    display: none;
  }

  .category-select-wrap,
  .filter-select-wrap {
    display: block;
  }

  .filters {
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 16px;
  }

  .filters h2 {
    margin-bottom: 12px;
  }

  .filters p {
    display: none;
  }

  .filter-select-wrap {
    margin-bottom: 0;
  }

  .hero {
    gap: 28px;
    padding: 34px 18px 42px;
  }

  .hero-showcase {
    align-self: auto;
    min-width: 0;
    order: -1;
    width: 100%;
  }

  .hero-art,
  html.light-mode .hero-art,
  html:not(.light-mode) .hero-art {
    aspect-ratio: 4 / 5;
    box-shadow: 8px 8px 0 rgba(23, 23, 23, 0.12);
    min-height: 0;
    width: 100%;
  }

  html:not(.light-mode) .hero-art {
    box-shadow: 8px 8px 0 rgba(244, 244, 241, 0.08);
  }

  .hero-art img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .grid,
  .featured-concept-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .art-card {
    max-width: 100%;
    width: 100%;
  }

  .art-thumb,
  .featured-concept-grid .art-thumb {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .art-thumb img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .art-card-body {
    padding: 16px;
  }

  .art-card h3 {
    font-size: 17px;
    line-height: 1.25;
  }

  .art-quick-preview {
    align-content: center;
    min-height: 100%;
    padding: 12px;
  }

  .quick-actions a {
    min-height: 42px;
  }

  .site-footer {
    align-items: flex-start;
    gap: 14px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    white-space: nowrap;
  }

  .footer-links a {
    font-size: 11px;
    line-height: 1;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-currency {
    width: 100%;
  }

  .contact-hero {
    padding: 42px 18px;
  }

  .contact-card {
    padding: 16px;
  }
}

@media (min-width: 621px) {
  html.light-mode .category-pills a.active,
  html.light-mode .category-pills a:hover {
    background: #171717;
    border-color: #171717;
    color: #ffffff;
  }

  html:not(.light-mode) .category-pills a.active,
  html:not(.light-mode) .category-pills a:hover {
    background: #f4f4f1;
    border-color: #f4f4f1;
    color: #10100e;
  }

  .category-pills a:hover i,
  .category-pills a.active i {
    color: inherit;
  }

  .filters a,
  html.light-mode .filters a,
  html:not(.light-mode) .filters a {
    color: #e9decf;
  }

  .filters a:hover,
  html.light-mode .filters a:hover,
  html:not(.light-mode) .filters a:hover {
    color: #ffffff;
  }
}

.contact-hero .section-title,
html.light-mode .contact-hero .section-title,
html:not(.light-mode) .contact-hero .section-title {
  color: #f8f2e8 !important;
}

.contact-title,
html.light-mode .contact-title,
html:not(.light-mode) .contact-title {
  color: #f8f2e8 !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.contact-hero .section-kicker,
html.light-mode .contact-hero .section-kicker,
html:not(.light-mode) .contact-hero .section-kicker {
  color: #d8aa38;
}

.hero .button.secondary.light,
html.light-mode .hero .button.secondary.light,
html:not(.light-mode) .hero .button.secondary.light {
  background: #f8f2e8 !important;
  border-color: #f8f2e8 !important;
  color: #100f0d !important;
  opacity: 1;
}

.hero .button.secondary.light:hover,
html.light-mode .hero .button.secondary.light:hover,
html:not(.light-mode) .hero .button.secondary.light:hover {
  background: #d8aa38 !important;
  border-color: #d8aa38 !important;
  color: #100f0d !important;
}

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