:root {
  --ink: #17212b;
  --muted: #64727f;
  --line: #e4e9ed;
  --paper: #f6f8fa;
  --panel: #ffffff;
  --accent: #16a36f;
  --accent-dark: #0f8057;
  --sage: #eaf7f2;
  --blue: #2563eb;
  --soft: #edf2f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
  color: var(--accent-dark);
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

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

main {
  min-height: calc(100vh - 144px);
}

.hero,
.detail,
.page-head,
.content-page,
.band,
.pricing,
.gallery-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 42px 0 24px;
}

.search-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 58px max(16px, calc((100% - 1160px) / 2)) 48px;
  background: linear-gradient(180deg, #eaf7f2, #f6f8fa);
  text-align: center;
}

.search-hero .hero-copy {
  width: min(860px, 100%);
  margin: 0 auto;
}

.hero h1,
.page-head h1,
.content-page h1,
.detail h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p,
.page-head p,
.content-page p,
.detail p {
  color: var(--muted);
  font-size: 17px;
}

.search-hero p {
  width: min(720px, 100%);
  margin: 16px auto 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 10px;
  width: min(760px, 100%);
  margin: 28px auto 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(23, 33, 43, 0.08);
}

.hero-search input {
  border: 0;
  min-height: 48px;
}

.hero-search button {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quick-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
}

.button.primary:hover,
button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary:hover {
  background: #fff;
}

.copy-button {
  min-height: 30px;
  margin-left: 8px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
}

.copy-button:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: 10px;
  width: min(1160px, calc(100% - 32px));
  margin: -22px auto 14px;
}

.strip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.08);
}

.strip-preview,
.strip-preview img {
  aspect-ratio: 1 / 1;
}

.hero-card,
.art-card,
.price-box,
.contact-box,
.checkout {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.hero-card:first-child {
  grid-row: span 2;
}

.preview-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.preview-frame::after {
  content: attr(data-watermark);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 16px rgba(21, 35, 40, 0.45);
  transform: rotate(-18deg);
  pointer-events: none;
}

.preview-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 35, 40, 0.03), rgba(21, 35, 40, 0.14));
  pointer-events: none;
}

.preview-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-preview,
.hero-preview img {
  height: 100%;
  min-height: 190px;
}

.card-preview,
.card-preview img {
  aspect-ratio: 1 / 1;
}

.hero-card span {
  display: block;
  padding: 12px 14px;
  font-weight: 800;
}

.band {
  padding: 24px 0 38px;
}

.band h2 {
  font-size: clamp(22px, 3vw, 32px);
}

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

.section-title h2 {
  margin: 0;
}

.section-title a,
.section-title span {
  color: var(--muted);
  font-size: 14px;
}

.feature-row,
.category-links,
.metrics,
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-row div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.category-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.category-links a:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(23, 33, 43, 0.07);
}

.tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.report-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-links a,
.inline-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 6px 6px 0;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
}

.tag-links a:hover,
.inline-tag:hover {
  border-color: var(--accent);
}

.tag-links span {
  color: var(--muted);
}

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

.compact-band {
  padding-bottom: 16px;
}

.metrics {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 28px 0;
}

.metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}

.compact-metrics {
  margin: 12px 0;
}

.compact-metrics strong {
  font-size: 22px;
}

.ops-health-panel {
  margin: 20px 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.ops-health-panel.has-risk {
  border-color: var(--accent);
  background: #fff8f5;
}

.ops-production-panel {
  margin: 20px 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.ops-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.ops-status-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.ops-status-grid span,
.ops-status-grid small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.ops-status-grid strong {
  display: block;
  margin: 6px 0;
  font-size: 20px;
}

.ops-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.ops-callbacks {
  margin: 16px 0 8px;
}

.ops-callbacks code {
  overflow-wrap: anywhere;
}

.ops-risk-banner {
  margin: 18px 0 22px;
  padding: 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: #fff8f5;
}

.ops-risk-banner h2 {
  margin: 0 0 10px;
}

.ops-risk-banner ul {
  margin: 0;
  padding-left: 20px;
}

.ops-risk-banner li {
  margin: 4px 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.ops-risk-banner p {
  margin: 12px 0 0;
  color: var(--muted);
}

.ops-health-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.ops-health-head h2 {
  margin: 0;
}

.ops-health-head span {
  color: var(--muted);
  font-size: 13px;
}

.page-head,
.content-page {
  padding: 36px 0 20px;
}

.gallery-head {
  padding-top: 30px;
}

.search,
.lookup {
  display: grid;
  grid-template-columns: 1fr 180px 110px;
  gap: 10px;
  margin-top: 24px;
}

.search {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.search input,
.search select {
  background: var(--paper);
}

.lookup {
  grid-template-columns: minmax(0, 420px) 110px;
}

.ops-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 90px 90px;
  gap: 10px;
  margin: 18px 0 24px;
}

input,
select,
textarea {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.buyer-fields {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
}

.buyer-fields label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px 0 24px;
}

.compact-grid {
  width: 100%;
  padding-bottom: 0;
}

.related-section {
  padding-top: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 56px;
}

.pagination span {
  color: var(--muted);
  font-size: 14px;
}

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

.art-card span,
.note {
  color: var(--muted);
  font-size: 13px;
}

.art-card h2 {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.25;
  display: -webkit-box;
  min-height: 38px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.art-card p {
  min-height: 38px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.art-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.09);
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-foot small {
  color: var(--accent-dark);
  font-weight: 800;
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
  padding: 28px 0 48px;
}

.detail-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-media img {
  width: 100%;
}

.detail-showcase {
  display: grid;
  gap: 14px;
}

.main-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.06);
}

.detail-preview {
  border: 0;
  border-radius: 0;
}

.detail-preview,
.detail-preview img {
  max-height: 620px;
}

.detail-preview img {
  object-fit: contain;
  background: #f1f4f6;
}

.purchase-panel {
  position: sticky;
  top: 86px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.08);
}

.product-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-kicker span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.purchase-panel h1 {
  font-size: 24px;
  line-height: 1.25;
}

.detail-desc {
  margin: 12px 0 0;
  font-size: 14px;
}

.price-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  font-size: 30px;
  line-height: 1;
}

.price-line span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.set-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.set-stats div {
  padding: 11px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
}

.set-stats strong,
.set-stats span {
  display: block;
}

.set-stats strong {
  font-size: 18px;
}

.set-stats span {
  color: var(--muted);
  font-size: 12px;
}

.purchase-panel .actions {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.purchase-panel .button,
.purchase-panel button {
  width: 100%;
}

.purchase-panel dl {
  gap: 8px;
  margin: 18px 0 0;
  padding-top: 4px;
}

.purchase-panel dl div {
  grid-template-columns: 62px 1fr;
  font-size: 13px;
}

.set-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.set-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.set-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--soft);
}

.set-gallery figcaption {
  padding: 9px 10px;
  color: var(--muted);
  font-size: 12px;
}

.set-gallery .core-image {
  grid-column: 1 / -1;
}

.set-gallery .core-image img {
  aspect-ratio: 16 / 6;
  object-fit: contain;
  padding: 10px;
}

.more-images {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

dl {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

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

dd {
  margin: 0;
}

.pricing {
  padding-bottom: 56px;
}

.price-box,
.checkout {
  padding: 22px;
}

.price-box strong {
  display: block;
  margin: 16px 0;
  font-size: 34px;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  padding: 18px;
}

.contact-box img {
  width: 120px;
  height: 120px;
}

.checkout,
.order-result {
  margin-top: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

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

th {
  color: var(--muted);
  font-weight: 800;
}

.pill {
  display: inline-flex;
  margin: 0 8px 8px 0;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.order-result {
  max-width: 640px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.order-pay-box {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: center;
  margin: 14px 0;
  padding: 12px;
  border: 1px dashed var(--sage);
  border-radius: 8px;
  background: #eef2ed;
}

.order-pay-box img {
  width: 132px;
  height: 132px;
  border: 8px solid #fff;
  border-radius: 6px;
  background: #fff;
}

.order-pay-box p {
  margin: 0;
  color: var(--blue);
  font-size: 14px;
}

.receipt-card {
  max-width: 760px;
}

.receipt-card h2 {
  margin-top: 0;
}

.ops-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: start;
  margin: 20px 0 28px;
}

.ops-detail-grid .order-result {
  max-width: none;
  margin-top: 0;
}

.ops-preview {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e5e0d7;
}

.qr {
  margin: 12px 0;
  padding: 16px;
  border: 1px dashed var(--sage);
  border-radius: 6px;
  background: #eef2ed;
  color: var(--blue);
  overflow-wrap: anywhere;
}

.checkout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.checkout-loading,
.checkout-error {
  margin: 0;
  color: var(--muted);
}

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

.checkout-head h2 {
  margin: 2px 0 0;
  font-size: 24px;
}

.checkout-timer {
  min-width: 72px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  text-align: center;
  font-weight: 800;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: start;
}

.qr-box {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px dashed var(--sage);
  border-radius: 8px;
  background: #eef2ed;
}

.qr-image-wrap img {
  width: min(168px, 100%);
  height: auto;
  display: block;
}

.qr-code-text {
  width: 100%;
  max-height: 170px;
  overflow: auto;
  padding: 14px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.checkout-info dl {
  margin: 0 0 14px;
}

.checkout-info dl div {
  grid-template-columns: 68px 1fr;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 840px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .detail,
  .feature-row,
  .category-links,
  .metrics,
  .pricing,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .purchase-panel {
    position: static;
  }

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

  .home-strip {
    grid-template-columns: repeat(4, 1fr);
    margin-top: -14px;
  }

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

  .search,
  .lookup,
  .ops-filter,
  .checkout-grid,
  .ops-detail-grid,
  .order-pay-box {
    grid-template-columns: 1fr;
  }

  .qr-box {
    min-height: 160px;
  }

  .hero h1,
  .page-head h1,
  .content-page h1,
  .detail h1 {
    font-size: 36px;
  }
}

body {
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 107, 214, 0.22), transparent 34%),
    radial-gradient(circle at 16% 12%, rgba(112, 214, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #05060a 0%, #0b0c13 44%, #07080c 100%);
  color: #f8fafc;
}

:root {
  --ink: #f8fafc;
  --muted: #aab5c5;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #07080c;
  --panel: rgba(18, 20, 31, 0.84);
  --accent: #c7ff5b;
  --accent-dark: #8df04e;
  --sage: rgba(199, 255, 91, 0.12);
  --blue: #70d6ff;
  --soft: #11131d;
}

.site-header {
  background: rgba(7, 8, 12, 0.74);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.brand {
  color: #fff;
}

nav a:hover,
.lang {
  color: var(--accent);
}

.search-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 255, 91, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent);
}

.search-hero h1,
.detail h1 {
  text-wrap: balance;
}

.button,
button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.button.primary,
button.primary,
.hero-search button {
  border-color: var(--accent);
  background: var(--accent);
  color: #11131d;
  box-shadow: 0 0 30px rgba(199, 255, 91, 0.24);
}

.button.primary:hover,
button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary:hover,
.tag-links a:hover,
.inline-tag:hover {
  border-color: var(--accent);
  background: rgba(199, 255, 91, 0.08);
}

.hero-search,
.search {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

input,
select,
textarea,
.search input,
.search select {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 250, 252, 0.44);
}

.hero-search input {
  background: transparent;
}

.quick-links a,
.tag-links a,
.inline-tag,
.copy-button {
  background: rgba(255, 255, 255, 0.075);
  color: var(--muted);
}

.strip-card,
.hero-card,
.art-card,
.price-box,
.contact-box,
.checkout,
.category-links a,
.metrics div,
.ops-health-panel,
.ops-production-panel,
.table-wrap,
.order-result,
.pill {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(18, 20, 31, 0.84);
  border-color: rgba(255, 255, 255, 0.12);
}

.strip-card,
.main-preview,
.purchase-panel {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.category-links a:hover,
.art-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 34px rgba(199, 255, 91, 0.12);
}

.preview-frame,
.detail-preview img,
.set-gallery img {
  background: #10121c;
}

.preview-frame::before {
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.02), rgba(7, 8, 12, 0.24));
}

.detail {
  width: min(1280px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 30px;
  padding-top: 30px;
}

.main-preview {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0c0e16;
}

.detail-preview,
.detail-preview img {
  max-height: 700px;
}

.purchase-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(18, 20, 31, 0.9);
  backdrop-filter: blur(16px);
}

.product-kicker span {
  background: rgba(199, 255, 91, 0.12);
  color: var(--accent);
}

.price-line strong {
  color: #fff;
}

.set-stats div,
.set-gallery figure,
.more-images,
.ops-status-grid div {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.set-gallery figure:first-child {
  grid-column: 1 / -1;
}

.set-gallery figure:first-child img {
  aspect-ratio: 16 / 9;
}

.set-gallery .core-image img {
  background:
    linear-gradient(135deg, rgba(199, 255, 91, 0.09), rgba(112, 214, 255, 0.08)),
    #10121c;
}

.site-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.home-visual-hero {
  width: min(1780px, calc(100% - 24px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding: 28px 0 20px;
}

.home-hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(46px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
}

.home-hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.home-hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 193, 93, 0.1), rgba(229, 70, 70, 0.08)),
    #0d0808;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.56), 0 0 60px rgba(244, 193, 93, 0.1);
}

.motion-reel {
  position: relative;
  min-height: min(78vh, 960px);
  isolation: isolate;
}

.motion-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: cinematicSlide 25s infinite;
  animation-delay: calc(var(--slide-index) * 5s);
}

.motion-media,
.home-lead-preview,
.home-lead-preview img,
.home-lead-preview video {
  width: 100%;
  min-height: min(78vh, 960px);
  max-height: min(88vh, 1080px);
  height: min(78vh, 960px);
  object-fit: cover;
}

.motion-media {
  transform-origin: center;
  animation: cinematicDrift 25s infinite ease-in-out;
  animation-delay: calc(var(--slide-index) * 5s);
  filter: saturate(1.05) contrast(1.04);
}

.home-hero-media span,
.showcase-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: #fff8ea;
  font-weight: 800;
}

.motion-slide span {
  opacity: 0;
  transform: translateY(8px);
  animation: slideCaption 25s infinite;
  animation-delay: calc(var(--slide-index) * 5s);
}

.motion-play-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 217, 120, 0.24);
  border-radius: 999px;
  background: rgba(9, 5, 5, 0.58);
  color: #ffd978;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.motion-play-badge span {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: #e54646;
  box-shadow: 0 0 18px rgba(229, 70, 70, 0.8);
  animation: pulseDot 1.6s infinite;
}

.motion-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.motion-progress i {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.motion-progress i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #ffd978, #e54646);
  animation: motionProgress 25s infinite linear;
  animation-delay: calc(var(--bar-index) * 5s);
}

.home-showcase-grid {
  width: min(1780px, calc(100% - 24px));
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.showcase-tile {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 217, 120, 0.16);
  border-radius: 8px;
  background: rgba(20, 12, 10, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.showcase-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 217, 120, 0.34);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48), 0 0 34px rgba(244, 193, 93, 0.1);
}

.showcase-preview,
.showcase-preview img,
.showcase-preview video {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.showcase-preview img,
.showcase-preview video {
  object-fit: cover;
}

.home-section {
  width: min(1780px, calc(100% - 24px));
  margin: 0 auto;
  padding: 56px 0 16px;
}

.home-section .section-title {
  margin-bottom: 18px;
}

.scene-grid,
.value-grid,
.featured-row {
  display: grid;
  gap: 14px;
}

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

.scene-card,
.value-card,
.featured-set {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 217, 120, 0.075), rgba(229, 70, 70, 0.035)),
    rgba(20, 12, 10, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.scene-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 217, 120, 0.22), transparent 24%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  opacity: 0.85;
}

.scene-card span,
.scene-card p {
  position: relative;
}

.scene-card span {
  color: #fff8ea;
  font-size: 22px;
  font-weight: 900;
}

.scene-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.value-card {
  min-height: 220px;
  padding: 22px;
}

.value-card strong {
  color: rgba(255, 217, 120, 0.55);
  font-size: 13px;
}

.value-card h3 {
  margin: 28px 0 10px;
  color: #fff8ea;
  font-size: 22px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.home-material-details {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
  padding-top: 64px;
}

.material-copy {
  max-width: 620px;
}

.material-copy h2 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.08;
}

.material-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.material-detail-card {
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(255, 217, 120, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 217, 120, 0.075), rgba(229, 70, 70, 0.025)),
    rgba(20, 12, 10, 0.72);
}

.material-detail-card span {
  color: rgba(255, 217, 120, 0.58);
  font-size: 13px;
  font-weight: 900;
}

.material-detail-card h3 {
  margin: 46px 0 10px;
  color: #fff8ea;
  font-size: 22px;
}

.material-detail-card p {
  margin: 0;
  color: var(--muted);
}

.home-material-story {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 0;
  align-items: stretch;
}

.material-story-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 217, 120, 0.18);
  border-right: 0;
  background: #0d0808;
}

.material-story-preview,
.material-story-preview img,
.material-story-preview video {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.material-story-preview img,
.material-story-preview video {
  object-fit: cover;
}

.material-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 2, 2, 0.8));
  pointer-events: none;
}

.material-story-image > span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 217, 120, 0.22);
  border-radius: 999px;
  background: rgba(7, 4, 4, 0.62);
  color: #ffd978;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.home-material-story {
  min-height: 520px;
}

.home-material-story .material-story-image {
  min-height: 520px;
}

.material-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(255, 217, 120, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 217, 120, 0.045), rgba(229, 70, 70, 0.025)),
    rgba(10, 5, 5, 0.92);
}

.material-story-copy h2 {
  max-width: 680px;
  margin: 0;
  color: #fff8ea;
  font-size: clamp(42px, 4.2vw, 76px);
  line-height: 0.98;
}

.material-story-copy > p:not(.eyebrow) {
  display: none;
}

.material-story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 217, 120, 0.14);
  background: rgba(255, 217, 120, 0.14);
}

.material-story-points div {
  min-height: 96px;
  padding: 16px;
  background: rgba(8, 4, 4, 0.78);
}

.material-story-points strong {
  display: block;
  color: rgba(255, 217, 120, 0.5);
  font-size: 12px;
}

.material-story-points span {
  display: block;
  margin-top: 18px;
  color: #fff8ea;
  font-size: 16px;
  font-weight: 900;
}

.material-story-points p {
  display: none;
}

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

.featured-set {
  display: grid;
}

.featured-preview,
.featured-preview img,
.featured-preview video {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.featured-preview img,
.featured-preview video {
  object-fit: cover;
}

.featured-set div {
  padding: 14px;
}

.featured-set span {
  color: #ffd978;
  font-size: 12px;
  font-weight: 800;
}

.featured-set strong {
  display: block;
  margin-top: 6px;
  color: #fff8ea;
  line-height: 1.28;
}

.scene-card:hover,
.value-card:hover,
.featured-set:hover {
  border-color: rgba(255, 217, 120, 0.34);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42), 0 0 34px rgba(244, 193, 93, 0.1);
}

.home-tags {
  justify-content: flex-start;
}

.preview-frame video {
  display: block;
  width: 100%;
  object-fit: cover;
}

@keyframes cinematicSlide {
  0% { opacity: 0; }
  3% { opacity: 1; }
  18% { opacity: 1; }
  23% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes cinematicDrift {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1.1) translate3d(-1.8%, -1.2%, 0); }
  100% { transform: scale(1.04) translate3d(1.4%, 1%, 0); }
}

@keyframes slideCaption {
  0%, 4% { opacity: 0; transform: translateY(8px); }
  8%, 18% { opacity: 1; transform: translateY(0); }
  23%, 100% { opacity: 0; transform: translateY(8px); }
}

@keyframes motionProgress {
  0% { transform: scaleX(0); }
  20% { transform: scaleX(1); }
  20.1%, 100% { transform: scaleX(0); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.45); opacity: 1; }
}

:root {
  --ink: #fff8ea;
  --muted: #c6b8a6;
  --line: rgba(255, 214, 122, 0.18);
  --paper: #070404;
  --panel: rgba(20, 12, 10, 0.86);
  --accent: #f4c15d;
  --accent-dark: #d79a2c;
  --sage: rgba(244, 193, 93, 0.13);
  --blue: #e54646;
  --soft: #130b0b;
}

body {
  background:
    radial-gradient(circle at 52% -12%, rgba(229, 70, 70, 0.28), transparent 34%),
    radial-gradient(circle at 14% 10%, rgba(244, 193, 93, 0.18), transparent 28%),
    linear-gradient(180deg, #050202 0%, #120706 42%, #070404 100%);
  color: var(--ink);
}

.search-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 193, 93, 0.22), transparent 30%),
    radial-gradient(circle at 76% 16%, rgba(229, 70, 70, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 214, 122, 0.06), transparent);
}

.button.primary,
button.primary,
.hero-search button {
  background: linear-gradient(180deg, #ffd978, #d7982e);
  border-color: #ffd978;
  color: #130b0b;
  box-shadow: 0 0 34px rgba(244, 193, 93, 0.28);
}

.button.primary:hover,
button.primary:hover {
  background: linear-gradient(180deg, #ffe39a, #bf7f22);
}

.button.secondary:hover,
.tag-links a:hover,
.inline-tag:hover {
  border-color: #e54646;
  background: rgba(229, 70, 70, 0.12);
}

.product-kicker span {
  background: rgba(244, 193, 93, 0.13);
  color: #ffd978;
}

.card-foot small,
nav a:hover,
.lang {
  color: #ffd978;
}

.category-links a:hover,
.art-card:hover {
  border-color: #ffd978;
  box-shadow: 0 0 34px rgba(244, 193, 93, 0.16);
}

.detail {
  width: min(1800px, calc(100% - 16px));
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  padding-top: 18px;
}

.main-preview {
  border-color: rgba(255, 217, 120, 0.2);
  background:
    linear-gradient(135deg, rgba(244, 193, 93, 0.09), rgba(229, 70, 70, 0.08)),
    #0d0808;
}

.detail-preview,
.detail-preview img {
  max-height: min(112vh, 1280px);
}

.detail-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.purchase-panel {
  top: 70px;
  padding: 18px;
  border-color: rgba(255, 217, 120, 0.22);
  background:
    linear-gradient(180deg, rgba(244, 193, 93, 0.11), rgba(229, 70, 70, 0.045)),
    rgba(20, 12, 10, 0.92);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.48), 0 0 42px rgba(244, 193, 93, 0.1);
}

.set-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.set-gallery figure {
  border-color: rgba(255, 217, 120, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 214, 122, 0.055), rgba(229, 70, 70, 0.025)),
    rgba(20, 12, 10, 0.72);
  cursor: zoom-in;
}

.main-preview {
  cursor: zoom-in;
}

.set-gallery figure:first-child,
.set-gallery .core-image {
  grid-column: 1 / -1;
}

.set-gallery img,
.set-gallery figure:first-child img,
.set-gallery .core-image img {
  width: 100%;
  height: auto;
  max-height: min(106vh, 1180px);
  aspect-ratio: var(--image-ratio, auto);
  object-fit: contain;
  padding: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 193, 93, 0.08), transparent 34%),
    #0d0808;
}

.set-gallery figcaption {
  padding: 12px 14px;
  font-size: 13px;
}

.set-gallery .core-image figcaption {
  color: #ffd978;
}

.more-images {
  border-color: rgba(255, 217, 120, 0.2);
  background: rgba(20, 12, 10, 0.62);
}

.gallery-grid {
  width: min(1440px, calc(100% - 28px));
}

.card-preview img {
  object-fit: contain;
  background: #0d0808;
}

.preview-frame::after {
  color: rgba(255, 217, 120, 0.5);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.preview-frame::after {
  content: none;
}

.preview-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(4, 2, 2, 0.92);
  backdrop-filter: blur(18px);
  cursor: zoom-out;
}

.preview-lightbox figure {
  width: min(99vw, 2100px);
  max-height: 98vh;
  margin: 0;
  display: grid;
  gap: 12px;
}

.preview-lightbox img {
  width: 100%;
  max-height: calc(98vh - 38px);
  object-fit: contain;
  border: 1px solid rgba(255, 217, 120, 0.22);
  border-radius: 8px;
  background: #0d0808;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.72);
}

.preview-lightbox figcaption {
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.preview-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
  border-color: rgba(255, 217, 120, 0.24);
  background: rgba(20, 12, 10, 0.82);
  color: #ffd978;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.has-preview-lightbox {
  overflow: hidden;
  user-select: none;
}

@media (max-width: 840px) {
  .detail {
    width: min(100% - 20px, 720px);
    grid-template-columns: 1fr;
  }

  .home-visual-hero,
  .home-showcase-grid,
  .home-section {
    width: min(100% - 20px, 720px);
    grid-template-columns: 1fr;
  }

  .scene-grid,
  .value-grid,
  .home-material-details,
  .material-detail-grid,
  .home-material-story,
  .material-story-points,
  .featured-row {
    grid-template-columns: 1fr;
  }

  .material-story-image {
    border-right: 1px solid rgba(255, 217, 120, 0.18);
  }

  .home-visual-hero {
    min-height: auto;
    padding-top: 24px;
  }

  .home-hero-copy h1 {
    font-size: 46px;
  }

  .home-lead-preview,
  .home-lead-preview img,
  .home-lead-preview video {
    min-height: 360px;
    max-height: none;
  }

  .set-gallery {
    grid-template-columns: 1fr;
  }

  .detail-preview,
  .detail-preview img,
  .set-gallery img,
  .set-gallery figure:first-child img,
  .set-gallery .core-image img {
    max-height: none;
  }
}

.gallery-studio-hero,
.gallery-channel-band,
.gallery-trends,
.gallery-result-head {
  width: min(1720px, calc(100% - 36px));
  margin: 0 auto;
}

.gallery-studio-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  min-height: 600px;
  padding: clamp(34px, 5vw, 74px) 0 34px;
}

.gallery-studio-hero::before {
  content: "";
  position: absolute;
  inset: 18px -18px auto auto;
  width: min(58vw, 880px);
  height: min(46vw, 680px);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 217, 120, 0.26), transparent 22%),
    radial-gradient(circle at 72% 42%, rgba(229, 70, 70, 0.22), transparent 28%);
  filter: blur(30px);
  opacity: 0.7;
  pointer-events: none;
}

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

.gallery-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff8ea;
  font-size: clamp(46px, 5.8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.gallery-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #c6b8a6;
  font-size: clamp(16px, 1.15vw, 20px);
}

.gallery-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 118px;
  gap: 10px;
  width: min(820px, 100%);
  margin-top: 30px;
  padding: 8px;
  border: 1px solid rgba(255, 217, 120, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 214, 122, 0.1), rgba(229, 70, 70, 0.035)),
    rgba(20, 12, 10, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.gallery-search input,
.gallery-search select {
  min-height: 52px;
  border-color: rgba(255, 217, 120, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.gallery-search button {
  min-height: 52px;
  border-color: #ffd978;
  background: linear-gradient(180deg, #ffd978, #d7982e);
  color: #130b0b;
  box-shadow: 0 0 28px rgba(244, 193, 93, 0.22);
}

.gallery-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.gallery-hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 217, 120, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #c6b8a6;
  font-size: 13px;
}

.gallery-hero-stats strong {
  color: #ffd978;
  font-size: 18px;
}

.gallery-hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 14px;
  min-height: 560px;
}

.gallery-hero-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.18);
  border-radius: 8px;
  background: #0d0808;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-hero-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 217, 120, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58), 0 0 36px rgba(244, 193, 93, 0.12);
}

.gallery-hero-tile.tile-1 {
  grid-row: 1 / 3;
}

.gallery-hero-preview,
.gallery-hero-preview img,
.gallery-hero-preview video {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.gallery-hero-preview img,
.gallery-hero-preview video {
  object-fit: cover;
  transform: scale(1.015);
}

.gallery-hero-tile span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255, 217, 120, 0.2);
  border-radius: 999px;
  background: rgba(7, 4, 4, 0.64);
  color: #ffd978;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.gallery-channel-band {
  padding: 12px 0 22px;
}

.gallery-channel-band .section-title,
.gallery-trends .section-title,
.gallery-result-head {
  margin-bottom: 18px;
}

.gallery-category-showcase {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  grid-auto-rows: minmax(180px, 1fr);
  gap: 14px;
}

.gallery-category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(255, 217, 120, 0.16);
  border-radius: 8px;
  background: rgba(20, 12, 10, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-category-card.is-large {
  grid-row: span 2;
}

.gallery-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 217, 120, 0.42);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.52), 0 0 36px rgba(244, 193, 93, 0.1);
}

.category-cover,
.category-cover img,
.category-cover video {
  width: 100%;
  height: 100%;
  min-height: 190px;
}

.gallery-category-card.is-large .category-cover,
.gallery-category-card.is-large .category-cover img,
.gallery-category-card.is-large .category-cover video {
  min-height: 394px;
}

.category-cover img,
.category-cover video {
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.gallery-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
  pointer-events: none;
}

.gallery-category-card span,
.gallery-category-card strong {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
}

.gallery-category-card span {
  bottom: 42px;
  color: #fff8ea;
  font-size: 20px;
  font-weight: 950;
}

.gallery-category-card strong {
  bottom: 18px;
  color: #ffd978;
  font-size: 13px;
}

.gallery-trends {
  padding: 24px 0 18px;
}

.gallery-trends .tag-links {
  gap: 9px;
}

.gallery-trends .tag-links a {
  margin: 0;
  padding: 8px 12px;
  border-color: rgba(255, 217, 120, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.gallery-result-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 0;
}

.gallery-result-head h2 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.gallery-result-head span {
  color: #c6b8a6;
}

.gallery-grid-premium {
  width: min(1720px, calc(100% - 36px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
}

.gallery-grid-premium .art-card {
  border-color: rgba(255, 217, 120, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 214, 122, 0.06), rgba(229, 70, 70, 0.025)),
    rgba(20, 12, 10, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
}

.gallery-grid-premium .card-preview,
.gallery-grid-premium .card-preview img,
.gallery-grid-premium .card-preview video {
  aspect-ratio: 4 / 3;
}

.gallery-grid-premium .card-preview img,
.gallery-grid-premium .card-preview video {
  object-fit: cover;
}

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

.gallery-grid-premium .art-card-body > span {
  color: #ffd978;
  font-weight: 900;
}

.gallery-grid-premium .art-card h2 {
  min-height: 42px;
  color: #fff8ea;
  font-size: 16px;
}

@media (max-width: 1100px) {
  .gallery-studio-hero,
  .gallery-hero-visual {
    grid-template-columns: 1fr;
  }

  .gallery-hero-visual {
    min-height: auto;
  }

  .gallery-hero-tile.tile-1 {
    grid-row: auto;
  }

  .gallery-hero-tile,
  .gallery-hero-preview,
  .gallery-hero-preview img,
  .gallery-hero-preview video {
    min-height: 300px;
  }

  .gallery-category-showcase,
  .gallery-grid-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-category-card.is-large {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .gallery-studio-hero,
  .gallery-channel-band,
  .gallery-trends,
  .gallery-result-head,
  .gallery-grid-premium {
    width: min(100% - 20px, 720px);
  }

  .gallery-studio-hero {
    min-height: auto;
    padding-top: 28px;
  }

  .gallery-hero-copy h1 {
    font-size: 42px;
  }

  .gallery-search,
  .gallery-category-showcase,
  .gallery-grid-premium {
    grid-template-columns: 1fr;
  }

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

.gallery-luxury-hero {
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.28fr);
  min-height: 680px;
  width: min(1560px, calc(100% - 64px));
  padding: 64px 0 34px;
}

.gallery-luxury-hero::before {
  inset: 80px 0 auto auto;
  width: min(48vw, 740px);
  height: min(38vw, 560px);
  background:
    radial-gradient(circle at 72% 14%, rgba(185, 31, 38, 0.22), transparent 26%),
    radial-gradient(circle at 42% 46%, rgba(217, 164, 73, 0.18), transparent 32%);
  filter: blur(52px);
  opacity: 0.58;
}

.gallery-luxury-hero .gallery-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(46px, 5.2vw, 86px);
  line-height: 1;
  color: #fff5df;
}

.gallery-luxury-hero .gallery-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(236, 218, 190, 0.72);
}

.gallery-luxury-hero .eyebrow,
.gallery-result-head .eyebrow {
  color: #d8a449;
}

.gallery-search {
  width: min(680px, 100%);
  grid-template-columns: minmax(0, 1fr) 172px 108px;
  margin-top: 34px;
  border-color: rgba(217, 164, 73, 0.22);
  background: rgba(16, 10, 9, 0.72);
  box-shadow: none;
}

.gallery-search input,
.gallery-search select {
  background: rgba(255, 245, 223, 0.055);
}

.gallery-search button {
  background: #d8a449;
  border-color: #d8a449;
  box-shadow: none;
}

.gallery-hero-stats {
  gap: 16px;
  margin-top: 24px;
}

.gallery-hero-stats span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(236, 218, 190, 0.62);
}

.gallery-hero-stats strong {
  color: #fff5df;
}

.gallery-editorial-visual {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 1px solid rgba(217, 164, 73, 0.18);
  background:
    linear-gradient(135deg, rgba(217, 164, 73, 0.09), rgba(185, 31, 38, 0.045)),
    rgba(12, 7, 7, 0.78);
}

.gallery-editorial-visual a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 560px;
  background: #090606;
}

.gallery-editorial-preview,
.gallery-editorial-preview img,
.gallery-editorial-preview video {
  width: 100%;
  min-height: 560px;
  height: min(68vh, 760px);
}

.gallery-editorial-preview img,
.gallery-editorial-preview video {
  object-fit: cover;
}

.gallery-editorial-visual a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 2, 2, 0.82));
  pointer-events: none;
}

.gallery-editorial-visual span,
.gallery-editorial-visual strong {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
}

.gallery-editorial-visual span {
  bottom: 72px;
  color: #d8a449;
  font-size: 13px;
  font-weight: 900;
}

.gallery-editorial-visual strong {
  bottom: 26px;
  color: #fff5df;
  font-size: clamp(20px, 2vw, 34px);
  line-height: 1.08;
  max-width: 820px;
}

.gallery-channel-band,
.gallery-trends,
.gallery-result-head,
.gallery-grid-premium {
  width: min(1560px, calc(100% - 64px));
}

.gallery-channel-band {
  padding: 42px 0 10px;
  border-top: 1px solid rgba(217, 164, 73, 0.12);
}

.gallery-channel-band .section-title,
.gallery-trends .section-title {
  align-items: flex-end;
}

.gallery-channel-band .section-title h2,
.gallery-trends .section-title h2,
.gallery-result-head h2 {
  color: #fff5df;
  font-weight: 900;
}

.gallery-channel-band .section-title span,
.gallery-trends .section-title span,
.gallery-result-head > span {
  color: rgba(236, 218, 190, 0.56);
}

.gallery-collection-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(217, 164, 73, 0.14);
  background: rgba(217, 164, 73, 0.14);
}

.gallery-collection-row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  min-height: 118px;
  padding: 18px;
  background: rgba(12, 7, 7, 0.92);
  transition: background 180ms ease, color 180ms ease;
}

.gallery-collection-row:hover {
  background: rgba(42, 20, 17, 0.92);
}

.gallery-collection-row small {
  grid-row: 1 / 3;
  color: rgba(217, 164, 73, 0.52);
  font-size: 12px;
  font-weight: 900;
}

.gallery-collection-row span {
  color: #fff5df;
  font-size: 18px;
  font-weight: 900;
}

.gallery-collection-row strong {
  color: rgba(236, 218, 190, 0.56);
  font-size: 13px;
}

.gallery-trends {
  padding: 34px 0 12px;
}

.gallery-trends .tag-links {
  gap: 8px;
}

.gallery-trends .tag-links a {
  padding: 7px 11px;
  border-color: rgba(217, 164, 73, 0.18);
  background: rgba(255, 245, 223, 0.045);
  color: rgba(236, 218, 190, 0.78);
}

.gallery-trends .tag-links a:hover {
  border-color: #b91f26;
  background: rgba(185, 31, 38, 0.12);
  color: #fff5df;
}

.gallery-result-head {
  padding-top: 46px;
}

.gallery-grid-premium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 18px;
}

.gallery-grid-premium .art-card {
  border-color: rgba(217, 164, 73, 0.13);
  background: transparent;
  box-shadow: none;
}

.gallery-grid-premium .art-card:hover {
  border-color: rgba(217, 164, 73, 0.34);
  box-shadow: none;
  transform: translateY(-3px);
}

.gallery-grid-premium .card-preview,
.gallery-grid-premium .card-preview img,
.gallery-grid-premium .card-preview video {
  aspect-ratio: 16 / 10;
}

.gallery-grid-premium .art-card-body {
  padding: 14px 2px 2px;
}

.gallery-grid-premium .art-card-body > span {
  color: #d8a449;
}

.gallery-grid-premium .art-card h2 {
  color: #fff5df;
  font-size: 17px;
  line-height: 1.28;
}

.gallery-grid-premium .art-card p {
  color: rgba(236, 218, 190, 0.56);
}

@media (max-width: 1100px) {
  .gallery-luxury-hero {
    width: min(100% - 32px, 900px);
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gallery-collection-list,
  .gallery-grid-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gallery-luxury-hero,
  .gallery-channel-band,
  .gallery-trends,
  .gallery-result-head,
  .gallery-grid-premium {
    width: min(100% - 20px, 720px);
  }

  .gallery-search,
  .gallery-collection-list,
  .gallery-grid-premium {
    grid-template-columns: 1fr;
  }

  .gallery-editorial-visual a,
  .gallery-editorial-preview,
  .gallery-editorial-preview img,
  .gallery-editorial-preview video {
    min-height: 360px;
  }
}

.gallery-clean-hero,
.gallery-clean-head,
.gallery-clean-grid {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
}

.gallery-clean-hero {
  padding: 72px 0 34px;
  border-bottom: 1px solid rgba(217, 164, 73, 0.14);
  text-align: center;
}

.gallery-clean-hero .eyebrow {
  color: #d8a449;
}

.gallery-clean-hero h1 {
  max-width: 860px;
  margin: 0 auto;
  color: #fff5df;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.gallery-clean-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(236, 218, 190, 0.68);
  font-size: 17px;
}

.gallery-clean-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 110px;
  gap: 10px;
  width: min(760px, 100%);
  margin: 30px auto 0;
  padding: 8px;
  border: 1px solid rgba(217, 164, 73, 0.18);
  border-radius: 8px;
  background: rgba(14, 8, 8, 0.74);
}

.gallery-clean-search input,
.gallery-clean-search select {
  min-height: 50px;
  border-color: rgba(217, 164, 73, 0.16);
  background: rgba(255, 245, 223, 0.055);
}

.gallery-clean-search button {
  min-height: 50px;
  border-color: #d8a449;
  background: #d8a449;
  color: #120807;
  box-shadow: none;
}

.gallery-clean-cats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 980px;
  margin: 20px auto 0;
}

.gallery-clean-cats a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 164, 73, 0.16);
  border-radius: 999px;
  background: rgba(255, 245, 223, 0.04);
  color: rgba(236, 218, 190, 0.76);
  font-size: 13px;
}

.gallery-clean-cats a:hover,
.gallery-clean-cats a.is-active {
  border-color: #d8a449;
  background: rgba(217, 164, 73, 0.12);
  color: #fff5df;
}

.gallery-clean-cats span {
  color: rgba(236, 218, 190, 0.48);
}

.gallery-clean-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 42px 0 0;
}

.gallery-clean-head h2 {
  margin: 0;
  color: #fff5df;
  font-size: clamp(24px, 2.4vw, 36px);
}

.gallery-clean-head > span {
  color: rgba(236, 218, 190, 0.58);
  font-size: 14px;
}

.gallery-clean-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 18px;
}

.gallery-clean-grid .art-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-clean-grid .art-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-3px);
}

.gallery-clean-grid .card-preview {
  overflow: hidden;
  border: 1px solid rgba(217, 164, 73, 0.13);
  border-radius: 8px;
  background: #0d0808;
}

.gallery-clean-grid .card-preview,
.gallery-clean-grid .card-preview img,
.gallery-clean-grid .card-preview video {
  aspect-ratio: 4 / 3;
}

.gallery-clean-grid .card-preview img,
.gallery-clean-grid .card-preview video {
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-clean-grid .art-card:hover .card-preview img,
.gallery-clean-grid .art-card:hover .card-preview video {
  transform: scale(1.035);
}

.gallery-clean-grid .art-card-body {
  padding: 12px 0 0;
}

.gallery-clean-grid .art-card-body > span {
  color: #d8a449;
  font-size: 12px;
  font-weight: 800;
}

.gallery-clean-grid .art-card h2 {
  min-height: 40px;
  color: #fff5df;
  font-size: 15px;
  line-height: 1.32;
}

.gallery-clean-grid .art-card p {
  color: rgba(236, 218, 190, 0.55);
}

.gallery-clean-grid .card-foot small {
  color: #d8a449;
}

@media (max-width: 1100px) {
  .gallery-clean-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gallery-clean-hero,
  .gallery-clean-head,
  .gallery-clean-grid {
    width: min(100% - 20px, 720px);
  }

  .gallery-clean-search,
  .gallery-clean-grid {
    grid-template-columns: 1fr;
  }

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