    :root {
      --bg: #080808;
      --bg-deep: #030303;
      --fg: #ffffff;
      --fg-soft: rgba(255,255,255,0.82);
      --line: rgba(255,255,255,0.9);
      --line-soft: rgba(255,255,255,0.34);
      --line-faint: rgba(255,255,255,0.14);
      --surface: rgba(255,255,255,0.022);
      --surface-strong: rgba(255,255,255,0.055);
      --muted: rgba(255,255,255,0.62);
      --muted-faint: rgba(255,255,255,0.42);
      --glow: 0 0 34px rgba(255,255,255,0.08), inset 0 0 42px rgba(255,255,255,0.025);
      --focus-ring: 0 0 0 2px rgba(255,255,255,0.85), 0 0 0 5px rgba(255,255,255,0.15);
      /* Hero background integration */
      --hero-overlay-top: rgba(8, 8, 8, 0.62);
      --hero-overlay-mid: rgba(8, 8, 8, 0.34);
      --hero-overlay-bot: rgba(8, 8, 8, 0.70);
      --hero-bg-position: center 35%;
      --hero-bg-position-mobile: 55% center;
      --hero-starfield-opacity: 0.22;
    }

    html { scroll-behavior: smooth; }

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

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

    :focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }

    body {
      background-color: var(--bg);
      background-image:
        radial-gradient(circle at 50% -10%, rgba(255,255,255,0.08), transparent 32rem),
        radial-gradient(circle at 8% 24%, rgba(255,255,255,0.035), transparent 22rem),
        radial-gradient(circle at 92% 72%, rgba(255,255,255,0.03), transparent 24rem),
        linear-gradient(180deg, var(--bg-deep), var(--bg) 18%, #050505 100%);
      color: var(--fg);
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      line-height: 1.4;
      letter-spacing: 1px;
      font-size: 12px;
      overflow-x: hidden;
      min-height: 100vh;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0; width: 100vw; height: 100vh;
      background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.04"/%3E%3C/svg%3E');
      pointer-events: none;
      z-index: -2;
    }

    a {
      color: var(--fg);
      text-decoration: none;
      transition: opacity 0.3s ease;
    }
    a:hover { opacity: 0.7; }

    button, input, textarea {
      background: transparent;
      color: var(--fg);
      border: 1px solid var(--fg);
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 11px;
      outline: none;
      cursor: pointer;
    }

    .carousel-btn {
      background: transparent;
      border: none;
      color: var(--fg);
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
      padding: 8px;
      user-select: none;
      z-index: 5;
      transition: opacity 0.2s ease;
    }
    .carousel-btn:hover { opacity: 0.6; }
    .carousel-btn:focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }

    h1, h2, h3 {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      text-align: center;
    }
    h1 {
      font-size: 52px;
      text-transform: uppercase;
      letter-spacing: 6px;
      margin-bottom: 5px;
    }
    h2 {
      font-size: 22px;
      letter-spacing: 4px;
      margin-bottom: 25px;
    }
    .subtitle {
      text-align: center;
      font-size: 11px;
      letter-spacing: 4px;
      color: var(--muted);
      margin-bottom: 30px;
    }
    .hero-support {
      max-width: 680px;
      margin: -10px auto 30px;
      color: var(--fg-soft);
      font-size: 11px;
      letter-spacing: 2px;
      line-height: 1.8;
      text-align: center;
      text-transform: uppercase;
    }

    header {
      border-top: 1px solid var(--fg);
      border-bottom: 1px solid var(--fg);
      padding: 0;
      margin: 0;
      position: relative;
    }
    .nav-inner {
      border-top: 1px dotted var(--fg);
      border-bottom: 1px dotted var(--fg);
      margin: 4px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px 60px 15px 20px;
      gap: 30px;
    }
    .nav-inner a {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 2px;
    }
    .nav-inner a.active {
      font-weight: 700;
    }
    .search-icon {
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
    }

    .section-divider {
      margin: 0;
    }
    .section-divider hr {
      border: 0;
      border-top: 1px solid rgba(255,255,255,0.2);
      margin: 0;
    }
    .divider-diamond-wrap {
      display: flex;
      justify-content: center;
      padding: 7px 0;
    }
    .diamond-icon {
      width: 6px;
      height: 6px;
      border: 1px solid var(--fg);
      transform: rotate(45deg);
    }

    /* All page-level containers sit above the fixed bg-panels (z-index: 0) */
    header, footer, .section-divider,
    .featured-frame-wrap, .plain-section, .product-detail { position: relative; z-index: 1; }

    .deco-section {
      border: 1px solid var(--fg);
      padding: 6px;
      margin: 0;
      position: relative;
      z-index: 1;
    }
    .deco-inner {
      border: 1px dotted var(--fg);
      padding: 50px 30px;
      position: relative;
    }
    main > .section-divider + .featured-frame-wrap,
    main > .section-divider + .deco-section,
    main > .section-divider + .plain-section,
    main > .section-divider + .product-detail {
      margin-top: 30px;
    }
    .featured-frame-wrap,
    .plain-section {
      position: relative;
      margin: 0;
    }
    .featured-frame-wrap .deco-section { margin: 0; }

    .corner {
      position: absolute;
      width: 40px;
      height: 40px;
      z-index: 2;
    }
    .corner svg { width: 100%; height: 100%; overflow: visible; }
    .corner.tl { top: -2px; left: -2px; }
    .corner.tr { top: -2px; right: -2px; transform: scaleX(-1); }
    .corner.bl { bottom: -2px; left: -2px; transform: scaleY(-1); }
    .corner.br { bottom: -2px; right: -2px; transform: scale(-1,-1); }

    .btn-wrap {
      display: inline-block;
      border: 1px solid var(--fg);
      padding: 3px;
      cursor: pointer;
      transition: background 0.3s ease;
      background: transparent;
      text-decoration: none;
    }
    .btn-wrap:hover { background: rgba(255,255,255,0.08); }
    .btn-wrap:focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }
    .btn-inner {
      border: 1px dotted var(--fg);
      padding: 14px 40px;
      font-size: 11px;
      letter-spacing: 2px;
    }

    /* ─── BACKGROUND CROSSFADE PANELS ───────────────────────────── */
    .bg-panel {
      position: fixed;
      inset: 0;
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
      opacity: 0;
      transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: opacity;
      pointer-events: none;
      z-index: 0;
    }
    .bg-panel--visible { opacity: 1; }

    .hero.deco-section {
      min-height: 88vh;
      display: flex;
      flex-direction: column;
      isolation: isolate;
    }
    .hero-starfield {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: var(--hero-starfield-opacity);
    }
    .hero .deco-inner {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }
    .hero .logo-placeholder {
      width: 200px;
      height: 200px;
      margin: 0 auto 30px;
      position: relative;
      display: grid;
      place-items: center;
    }
    .hero-logo-mark {
      width: min(68%, 138px);
      height: auto;
      display: block;
      filter: drop-shadow(0 0 14px rgba(255,255,255,0.16));
      opacity: 0.94;
    }

    .section-header {
      position: relative;
      text-align: center;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-header h2 { margin-bottom: 0; }
    .header-nav-group {
      position: absolute;
      right: 0;
      display: flex;
      gap: 4px;
      align-items: center;
    }
    .header-nav-btn {
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
      border: 1px solid var(--line-soft);
      color: var(--fg);
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.22s ease;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }
    .header-nav-btn:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--fg);
      box-shadow: 0 0 14px rgba(255,255,255,0.1);
    }
    .header-nav-btn:focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .card {
      border: 1px solid var(--fg);
      padding: 4px;
      transition: transform 0.3s ease, background 0.3s ease;
    }
    .card:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,0.02);
    }
    .card-inner {
      border: 1px dotted var(--fg);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card-art {
      aspect-ratio: 1;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid var(--fg);
    }
    .card-art svg { width: 100%; height: 100%; }
    .card-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .card-art:has(img) { padding: 0; }
    .card-info { padding: 12px; }
    .card-title { font-size: 11px; font-weight: bold; margin-bottom: 4px; }
    .card-sub { font-size: 9px; color: var(--muted); text-transform: none; }
    .card-footer {
      display: flex;
      border-top: 1px solid var(--fg);
      font-size: 10px;
      margin-top: auto;
    }
    .card-footer span { padding: 8px 12px; }
    .card-footer span:first-child { flex-grow: 1; border-right: 1px solid var(--fg); }

    .carousel-viewport { overflow: hidden; width: 100%; }
    .carousel-track {
      display: flex;
      gap: 20px;
      transition: transform 0.3s ease;
      will-change: transform;
    }
    .carousel-track .card {
      flex-shrink: 0;
    }

    .product-detail {
      display: grid;
      grid-template-columns: 9fr 11fr;
      gap: 50px;
      align-items: start;
      margin: 0;
    }
    .detail-art { border: 1px solid var(--fg); padding: 5px; }
    .detail-art-inner {
      border: 1px dotted var(--fg);
      padding: 20px;
      text-align: center;
    }
    .detail-caption {
      margin-top: 15px;
      font-size: 9px;
      letter-spacing: 2px;
    }
    .detail-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .detail-info h2 {
      text-align: left;
      font-size: 20px;
      margin-bottom: 0;
      line-height: 1.2;
    }
    .detail-price { font-size: 14px; }
    .detail-hr { border: 0; border-top: 1px solid var(--fg); margin: 0; }
    .detail-meta {
      list-style: none;
      font-size: 11px;
      color: var(--muted);
      line-height: 1.8;
      text-transform: none;
    }
    .detail-select-static {
      border: 1px solid var(--fg);
      padding: 10px 20px;
      font-size: 11px;
      letter-spacing: 2px;
      width: 100%;
    }
    .detail-buy-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .detail-buy-row .btn-wrap { margin: 0; }

    .artist-carousel-wrap {
      position: relative;
    }
    .artist-carousel-wrap .carousel-viewport { width: 100%; }
    .artist-carousel-wrap .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 8px;
    }
    .artist-carousel-wrap #artistPrev { left: -38px; }
    .artist-carousel-wrap #artistNext { right: -38px; }
    .artist-card .card-art {
      aspect-ratio: auto;
      padding: 30px 0 15px;
      border-bottom: none;
    }
    .artist-icon-circle {
      width: 90px;
      height: 90px;
      border: 1px solid var(--fg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }
    .artist-icon-circle svg { width: 60px; height: 60px; }
    .artist-card .card-info {
      text-align: center;
      padding: 0 20px 30px;
    }
    .artist-card .card-inner { border-bottom: none; }
    .artist-desc {
      font-size: 9px;
      text-transform: none;
      color: var(--muted);
      margin-top: 10px;
      line-height: 1.5;
    }

    .precision-intro {
      text-align: center;
      max-width: 500px;
      margin: 0 auto 40px;
      font-size: 11px;
      text-transform: none;
      color: var(--muted);
    }
    .icon-card {
      border: none;
      padding: 0;
    }
    .icon-card .card-inner { border: 1px dotted var(--fg); }
    .icon-card .card-art {
      border-bottom: none;
      padding: 14px;
    }
    .icon-card .card-art svg { width: 56%; height: 56%; }
    .icon-card .card-info { text-align: center; padding-bottom: 20px; }
    .icon-card .card-title { font-size: 13px; margin-bottom: 8px; }
    .icon-card .artist-desc { max-width: 200px; margin: 0 auto; font-size: 10px; text-transform: none; }
    .cta-row {
      text-align: center;
      margin-top: 35px;
    }

    .grid-4 .card-title {
      text-transform: none;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    .grid-4 .card-sub {
      font-size: 9px;
    }
    .grid-4 .card-info {
      padding: 10px 12px 14px;
    }


    .filter-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 30px;
    }
    .filter-pill {
      border: 1px solid var(--fg);
      border-radius: 20px;
      padding: 5px 18px;
      font-size: 10px;
      transition: all 0.2s ease;
    }
    .filter-pill.active,
    .filter-pill:hover {
      background-color: var(--fg);
      color: var(--bg);
      font-weight: bold;
    }
    .filter-icon {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      border: none;
      padding-left: 10px;
    }
    .filter-icon:hover { background: transparent; color: var(--fg); opacity: 0.7; font-weight: normal; }
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }

    .contact-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
    .contact-intro {
      font-size: 11px;
      text-transform: none;
      margin-bottom: 30px;
      color: var(--muted);
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-bottom: 15px;
    }
    .form-grid > div { display: flex; flex-direction: column; }
    input, textarea {
      padding: 12px;
      width: 100%;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      transition: border-color 0.2s ease;
    }
    input:focus, textarea:focus, .select-wrap select:focus {
      outline: none;
      border-color: rgba(255,255,255,0.9);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
    }
    textarea {
      height: 120px;
      resize: vertical;
      margin-bottom: 20px;
    }
    .select-wrap { position: relative; }
    .select-wrap select {
      background: transparent;
      color: var(--fg);
      border: 1px solid var(--fg);
      padding: 12px;
      width: 100%;
      appearance: none;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 11px;
      outline: none;
      cursor: pointer;
    }
    .select-wrap::after {
      content: '▾';
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      font-size: 12px;
      color: var(--fg);
    }
    .contact-submit-wrap {
      display: flex;
      justify-content: center;
    }
    .contact-submit-wrap .btn-wrap { min-width: 250px; text-align: center; }
    footer {
      text-align: center;
      padding: 40px 20px;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--muted);
    }
    footer a { color: var(--muted); margin: 0 10px; }

    .svg-ph { stroke: var(--fg); fill: none; stroke-width: 1; }
    .svg-ph-dot { fill: var(--fg); stroke: none; }
    .svg-muted { stroke: rgba(255,255,255,0.25); fill: none; }

    .arrow-wrap { text-align: center; margin: 20px 0; position: relative; }
    .arrow-wrap::before {
      content: '';
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 25px;
      background: var(--fg);
      opacity: 0.5;
    }
    .arrow-down {
      display: inline-block;
      width: 20px;
      height: 20px;
      border-bottom: 1px solid var(--fg);
      border-right: 1px solid var(--fg);
      transform: rotate(45deg);
    }

    .hero-hint {
      display: none;
      margin-top: 18px;
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--muted);
      text-transform: uppercase;
    }

    .mobile-top-bar {
      display: none;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      height: 52px;
      border-top: 1px dotted var(--fg);
      border-bottom: 1px dotted var(--fg);
      margin: 4px 0;
    }
    .mobile-top-bar .site-label {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
    }
    .mobile-top-bar .bar-actions {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .mobile-icon-btn {
      background: none;
      border: none;
      color: var(--fg);
      padding: 0;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .hamburger-lines {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .hamburger-lines span {
      display: block;
      width: 18px;
      height: 1px;
      background: var(--fg);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .menu-open .hamburger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-open .hamburger-lines span:nth-child(2) { opacity: 0; }
    .menu-open .hamburger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--bg);
      z-index: 100;
      flex-direction: column;
      padding: 80px 40px 40px;
      border: 1px solid var(--fg);
    }
    .mobile-nav-overlay.open { display: flex; }
    .mobile-nav-overlay a {
      font-family: 'Cinzel', serif;
      font-size: 18px;
      letter-spacing: 4px;
      padding: 20px 0;
      border-bottom: 1px dotted rgba(255,255,255,0.25);
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    .mobile-nav-overlay a.active { font-weight: 700; }
    .mobile-nav-close {
      position: absolute;
      top: 14px;
      right: 16px;
      background: none;
      border: none;
      color: var(--fg);
      font-size: 24px;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .form-label-visible {
      display: none;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--muted);
      margin-bottom: 5px;
    }
    .field-error {
      display: none;
      font-size: 10px;
      color: rgba(255,120,120,0.9);
      letter-spacing: 1px;
      margin-top: 4px;
    }
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,0.75), transparent 68%);
    }

    header {
      background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(255,255,255,0.18), 0 10px 34px rgba(0,0,0,0.45);
    }
    header::before,
    header::after {
      content: '';
      position: absolute;
      left: 10px;
      right: 10px;
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--line-soft) 0 2px, transparent 2px 6px);
      pointer-events: none;
    }
    header::before { top: 4px; }
    header::after { bottom: 4px; }
    .nav-inner a {
      position: relative;
      padding: 3px 0;
      color: var(--fg-soft);
    }
    .nav-inner a::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -8px;
      width: 0;
      height: 1px;
      background: var(--fg);
      transform: translateX(-50%);
      transition: width 0.24s ease;
    }
    .nav-inner a:hover::after,
    .nav-inner a.active::after { width: 100%; }

    .container {
      position: relative;
      padding-top: 18px;
      padding-bottom: 18px;
    }

    .deco-section {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.055), transparent 38rem);
      box-shadow: var(--glow), 0 24px 70px rgba(0,0,0,0.5);
    }
    .deco-section::before,
    .deco-section::after {
      content: '';
      position: absolute;
      pointer-events: none;
      inset: 12px;
      border-top: 1px solid var(--line-faint);
      border-bottom: 1px solid var(--line-faint);
      opacity: 0.85;
    }
    .deco-section::after {
      inset: 18px;
      border-top-style: dotted;
      border-bottom-style: dotted;
      opacity: 0.55;
    }
    .deco-inner {
      background:
        radial-gradient(circle at center, rgba(255,255,255,0.035), transparent 56%),
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.004));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.055), inset 0 0 34px rgba(255,255,255,0.02);
    }

    .section-header,
    .deco-inner > h2,
    .contact-inner > h2 {
      position: relative;
      text-shadow: 0 0 22px rgba(255,255,255,0.18);
    }
    .section-header::before,
    .section-header::after,
    .deco-inner > h2::before,
    .deco-inner > h2::after,
    .contact-inner > h2::before,
    .contact-inner > h2::after {
      content: '';
      position: absolute;
      top: 50%;
      width: min(24%, 160px);
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--line-soft) 0 3px, transparent 3px 7px);
    }
    .section-header::before,
    .deco-inner > h2::before,
    .contact-inner > h2::before { right: calc(50% + 180px); }
    .section-header::after,
    .deco-inner > h2::after,
    .contact-inner > h2::after { left: calc(50% + 180px); }

    .section-divider {
      position: relative;
      padding: 4px 0;
    }
    .section-divider hr { border-top-color: var(--line-soft); }
    .section-divider::before,
    .section-divider::after {
      content: '';
      position: absolute;
      left: 4%;
      right: 4%;
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--line-soft) 0 2px, transparent 2px 7px);
      opacity: 0.55;
    }
    .section-divider::before { top: 0; }
    .section-divider::after { bottom: 0; }
    .diamond-icon {
      background: var(--bg);
      box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line-soft), 0 0 18px rgba(255,255,255,0.28);
    }

    .btn-wrap,
    .detail-select-static,
    input,
    textarea,
    .select-wrap select {
      background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.055);
    }
    .btn-wrap {
      position: relative;
      overflow: hidden;
    }
    .btn-wrap::before {
      content: '';
      position: absolute;
      inset: 5px;
      border-top: 1px solid var(--line-faint);
      border-bottom: 1px solid var(--line-faint);
      opacity: 0.8;
      pointer-events: none;
    }
    .btn-wrap:hover,
    .btn-wrap:focus-visible {
      background: rgba(255,255,255,0.12);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.24), 0 0 24px rgba(255,255,255,0.1);
      opacity: 1;
    }
    .btn-inner { position: relative; }

    .hero.deco-section {
      overflow: hidden;
      isolation: isolate;
    }
    .hero.deco-section::before {
      background:
        radial-gradient(circle at 50% 45%, transparent 0 190px, rgba(255,255,255,0.08) 191px 192px, transparent 193px),
        radial-gradient(circle at 50% 45%, transparent 0 250px, rgba(255,255,255,0.055) 251px 252px, transparent 253px);
      border: 0;
      inset: 0;
      opacity: 0.55;
    }
    .hero .logo-placeholder {
      padding: 14px;
      border: 1px solid rgba(255,255,255,0.36);
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.085) 0 1px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.07), rgba(255,255,255,0.018) 42%, transparent 68%);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08),
        inset 0 0 24px rgba(255,255,255,0.055),
        0 0 42px rgba(255,255,255,0.11),
        0 0 96px rgba(255,255,255,0.055);
    }
    .hero .logo-placeholder::before,
    .hero .logo-placeholder::after {
      content: '';
      position: absolute;
      inset: 7px;
      border-radius: 50%;
      pointer-events: none;
    }
    .hero .logo-placeholder::before {
      border: 1px dotted rgba(255,255,255,0.32);
      box-shadow: 0 0 0 18px rgba(255,255,255,0.018), inset 0 0 30px rgba(255,255,255,0.035);
    }
    .hero .logo-placeholder::after {
      inset: 23px;
      border: 1px solid rgba(255,255,255,0.16);
      background:
        linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.12) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.12) 50%, transparent 50.5%);
      opacity: 0.52;
      mix-blend-mode: screen;
    }
    .hero .logo-placeholder .hero-logo-mark {
      position: relative;
      z-index: 1;
    }
    .hero h1 { text-shadow: 0 0 30px rgba(255,255,255,0.18); }

    .card {
      position: relative;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.006)),
        var(--surface);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.065), 0 18px 34px rgba(0,0,0,0.32);
      will-change: transform;
    }
    .card::before,
    .card::after {
      content: '';
      position: absolute;
      pointer-events: none;
      opacity: 0.85;
    }
    .card::before {
      inset: 8px;
      border-top: 1px solid var(--line-faint);
      border-bottom: 1px solid var(--line-faint);
    }
    .card::after {
      top: 11px;
      left: 11px;
      right: 11px;
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--line-soft) 0 2px, transparent 2px 6px);
    }
    .card:hover {
      transform: translateY(-7px);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.072), rgba(255,255,255,0.014)),
        var(--surface-strong);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.18),
        0 1px 0 rgba(255,255,255,0.14),
        0 26px 60px rgba(0,0,0,0.58),
        0 0 44px rgba(255,255,255,0.07);
    }
    .card-art {
      position: relative;
      background:
        linear-gradient(rgba(255,255,255,0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.065) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(255,255,255,0.11), transparent 52%);
      background-size: 22px 22px, 22px 22px, auto;
    }
    .card-art::before {
      content: '';
      position: absolute;
      inset: 9px;
      border: 1px dotted var(--line-soft);
      pointer-events: none;
    }
    .card-title {
      letter-spacing: 1.5px;
      color: var(--fg);
    }
    .card-sub::before {
      content: '◇ ';
      color: var(--muted-faint);
    }
    .card-footer {
      background: rgba(0,0,0,0.18);
    }
    .card-footer span:last-child {
      min-width: 68px;
      text-align: right;
      color: var(--fg-soft);
    }

    .product-detail {
      position: relative;
      border: 1px solid var(--line);
      padding: 30px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.004)),
        radial-gradient(circle at 24% 38%, rgba(255,255,255,0.055), transparent 24rem);
      box-shadow: var(--glow), 0 20px 58px rgba(0,0,0,0.45);
    }
    .product-detail::before {
      content: '';
      position: absolute;
      inset: 8px;
      border: 1px dotted var(--line-soft);
      pointer-events: none;
    }
    .detail-art {
      background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
      box-shadow: inset 0 0 24px rgba(255,255,255,0.03);
    }
    .detail-art-inner {
      background:
        linear-gradient(rgba(255,255,255,0.058) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.058) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 55%);
      background-size: 26px 26px, 26px 26px, auto;
    }
    .detail-price {
      font-family: 'Cinzel', serif;
      font-size: 18px;
      color: var(--fg-soft);
    }
    .detail-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4px 18px;
    }
    .detail-meta li {
      border-bottom: 1px dotted var(--line-faint);
      padding-bottom: 3px;
    }
    .detail-select-static {
      position: relative;
      padding-right: 42px;
    }
    .detail-select-static::after {
      content: '◇';
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
    }

    .artist-icon-circle {
      background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 62%);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 0 24px rgba(255,255,255,0.06);
    }
    .artist-card .card-art::before,
    .icon-card .card-art::before { border-radius: 999px; inset: 18px; }
    .icon-card .card-inner {
      background: radial-gradient(circle at 50% 22%, rgba(255,255,255,0.05), transparent 58%);
    }

    .filter-row {
      padding: 8px;
      border-top: 1px solid var(--line-faint);
      border-bottom: 1px solid var(--line-faint);
      background: rgba(0,0,0,0.18);
    }
    .filter-pill {
      background: rgba(255,255,255,0.025);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.055);
    }
    .filter-pill:focus-visible,
    .filter-pill:hover {
      opacity: 1;
      box-shadow: var(--focus-ring);
    }
    .filter-pill.active {
      box-shadow: 0 0 18px rgba(255,255,255,0.16);
    }

    input, textarea, .select-wrap select {
      border-color: var(--line-soft);
    }
    input::placeholder,
    textarea::placeholder { color: rgba(255,255,255,0.46); }
    input:hover, textarea:hover, .select-wrap select:hover { border-color: var(--fg-soft); }
    textarea { line-height: 1.55; }

    .mobile-nav-overlay {
      background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 26rem),
        var(--bg);
      box-shadow: inset 0 0 0 6px var(--bg), inset 0 0 0 7px var(--line), inset 0 0 0 13px var(--bg), inset 0 0 0 14px var(--line-soft);
    }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0);    }
    }
    @keyframes logo-glow-pulse {
      0%, 100% { box-shadow: inset 0 0 18px rgba(255,255,255,0.04), 0 0 28px rgba(255,255,255,0.06); }
      50%       { box-shadow: inset 0 0 32px rgba(255,255,255,0.1),  0 0 56px rgba(255,255,255,0.13); }
    }
    @keyframes btn-shimmer {
      0%   { transform: translateX(-140%) skewX(-16deg); opacity: 0; }
      20%  { opacity: 1; }
      100% { transform: translateX(320%)  skewX(-16deg); opacity: 0; }
    }
    @keyframes diamond-pulse {
      0%, 100% { box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line-soft), 0 0 18px rgba(255,255,255,0.28); }
      50%       { box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--fg),        0 0 32px rgba(255,255,255,0.55); }
    }
    @keyframes scan-line {
      0%   { transform: translateY(-100%); opacity: 0; }
      8%   { opacity: 0.5; }
      92%  { opacity: 0.5; }
      100% { transform: translateY(100vh); opacity: 0; }
    }

    .hero .deco-inner > * { opacity: 0; }
    .hero .logo-placeholder {
      animation: fade-up 1s ease 0.1s forwards, logo-glow-pulse 5s ease-in-out 2.5s infinite;
    }
    .hero h1      { animation: fade-up 1s ease 0.35s forwards; }
    .hero .subtitle { animation: fade-up 1s ease 0.52s forwards; }
    .hero .btn-wrap { animation: fade-up 1s ease 0.68s forwards; }
    .hero .hero-hint { animation: fade-up 1s ease 0.82s forwards; }

    .hero .deco-inner::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06), transparent);
      animation: scan-line 14s linear 1.5s infinite;
      pointer-events: none;
      z-index: 2;
    }

    .btn-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: 0;
      width: 30%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
      transform: translateX(-140%) skewX(-16deg);
      pointer-events: none;
    }
    .btn-wrap:hover::after {
      animation: btn-shimmer 0.6s ease forwards;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    .diamond-icon {
      animation: diamond-pulse 4s ease-in-out infinite;
    }

    footer {
      border-top: 1px solid var(--line-soft);
      position: relative;
      padding-top: 28px;
    }
    footer::before {
      content: '';
      position: absolute;
      top: 5px;
      left: 8%;
      right: 8%;
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--line-faint) 0 2px, transparent 2px 6px);
    }

    .card:hover .card-art::before {
      border-color: var(--line-soft);
    }

    .artist-card:hover .artist-icon-circle {
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), 0 0 36px rgba(255,255,255,0.1);
    }

    .icon-card .card-inner {
      transition: background 0.3s ease;
    }
    .icon-card:hover .card-inner {
      background: radial-gradient(circle at 50% 25%, rgba(255,255,255,0.07), transparent 60%);
    }

    .detail-meta li {
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }
    .detail-meta li::before {
      content: '◇';
      font-size: 7px;
      opacity: 0.4;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .detail-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
    }
    .detail-price::before {
      content: '— ';
      color: var(--line-soft);
      font-size: 11px;
    }

    .grid-4 .card:hover .card-art svg {
      transform: scale(1.04);
      transition: transform 0.4s ease;
    }
    .grid-4 .card .card-art svg {
      transition: transform 0.4s ease;
    }

    .carousel-track .card-title {
      text-transform: none;
      font-weight: 600;
      letter-spacing: 0.5px;
      font-size: 11px;
    }

    .section-divider {
      position: relative;
      padding: 6px 0;
    }
    .section-divider::before,
    .section-divider::after {
      left: 3%;
      right: 3%;
      background: repeating-linear-gradient(90deg, var(--line-soft) 0 2px, transparent 2px 8px);
      opacity: 0.4;
    }
    .section-divider::before { top: 0; }
    .section-divider::after  { bottom: 0; }

    /* ─── COMING SOON COVER ──────────────────────────────── */
    .coming-soon-wrap { position: relative; }
    .coming-soon-cover {
      position: absolute;
      inset: 0;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      text-align: center;
      background: rgba(3,3,3,0.88);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .coming-soon-frame {
      border: 1px dotted var(--line-soft);
      padding: 22px 36px;
    }
    .coming-soon-label {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 16px;
      letter-spacing: 6px;
      color: var(--fg);
    }
    .coming-soon-note {
      display: block;
      margin-top: 10px;
      font-size: 10px;
      letter-spacing: 2px;
      line-height: 1.7;
      color: var(--muted);
      max-width: 320px;
    }
    @media (max-width: 500px) {
      .coming-soon-frame { padding: 18px 20px; }
      .coming-soon-label { font-size: 14px; letter-spacing: 4px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
      .hero .deco-inner > *,
      .hero h1, .hero .subtitle, .hero .btn-wrap, .hero .hero-hint { animation: none; opacity: 1; }
      .hero .deco-inner::after { display: none; }
      .diamond-icon { animation: none; }
      .carousel-track { transition: none; }
      .card:hover, .grid-4 .card:hover .card-art svg { transform: none; }
    }




    .global-starfield-fixed {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }
    .svg-defs { display: none; }
    .hero-cta { margin-top: 10px; }
    .divider-mark {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .divider-line {
      display: block;
      width: 18px;
      height: 1px;
      background: var(--line-soft);
      opacity: 0.6;
    }
    .product-art-svg {
      width: 100%;
      max-width: 300px;
    }
    .artist-icon-svg {
      width: 60px;
      height: 60px;
    }
    .message-label-mobile {
      display: none;
      text-align: left;
      margin-bottom: 5px;
    }
    .section-kicker {
      display: block;
      margin-bottom: 10px;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: 2.4px;
      text-align: center;
    }
    .detail-eyebrow {
      color: var(--muted);
      font-size: 10px;
      letter-spacing: 2.4px;
    }
    .detail-summary {
      color: var(--fg-soft);
      text-transform: none;
      letter-spacing: 0.3px;
      line-height: 1.65;
      max-width: 48ch;
    }
    .price-stack {
      display: flex;
      align-items: baseline;
      gap: 10px;
      flex-wrap: wrap;
    }
    .price-note {
      color: var(--muted);
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: none;
    }
    .cta-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }
    .btn-wrap.secondary {
      border-color: var(--line-soft);
      color: var(--fg-soft);
    }
    .btn-wrap.secondary .btn-inner {
      border-color: var(--line-faint);
    }
    .card-link {
      display: flex;
      flex-direction: column;
      height: 100%;
      color: inherit;
    }
    .card-link:hover { opacity: 1; }
    .card-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: 10px;
      padding: 8px 10px;
      border: 1px dotted var(--line-soft);
      color: var(--fg-soft);
      font-size: 9px;
      letter-spacing: 1.4px;
    }
    .card-action:hover,
    .card-action:focus-visible {
      opacity: 1;
      color: var(--fg);
      border-color: var(--fg-soft);
      background: rgba(255,255,255,0.04);
    }
    .archive-copy {
      max-width: 560px;
      margin: -10px auto 24px;
      text-align: center;
      color: var(--muted);
      text-transform: none;
      letter-spacing: 0.3px;
      line-height: 1.6;
    }
    .edition-status-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      max-width: 900px;
      margin: 0 auto 14px;
    }
    .edition-status-item {
      position: relative;
      min-height: 78px;
      padding: 14px 12px 12px;
      border: 1px solid var(--line-soft);
      background:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        rgba(0,0,0,0.18);
      background-size: 18px 18px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035);
    }
    .edition-status-item::before {
      content: '';
      position: absolute;
      left: 10px;
      right: 10px;
      top: 7px;
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--line-soft) 0 2px, transparent 2px 6px);
      opacity: 0.55;
    }
    .edition-status-item span,
    .edition-study-detail .detail-meta span {
      display: block;
      color: var(--muted-faint);
      font-size: 9px;
      letter-spacing: 1.7px;
      text-transform: uppercase;
    }
    .edition-status-item strong,
    .edition-study-detail .detail-meta strong {
      display: block;
      margin-top: 8px;
      color: var(--fg-soft);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 1.1px;
      text-transform: uppercase;
    }
    .edition-status-note {
      max-width: 720px;
      margin: 0 auto 26px;
      padding-top: 12px;
      border-top: 1px dotted var(--line-faint);
      color: var(--muted);
      font-size: 10px;
      line-height: 1.8;
      letter-spacing: 0.8px;
      text-align: center;
      text-transform: none;
    }
    .current-edition-card {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.006)),
        rgba(0,0,0,0.1);
    }
    .current-edition-card .card-inner {
      position: relative;
      overflow: hidden;
    }
    .current-edition-card .card-inner::before {
      content: '';
      position: absolute;
      inset: 8px;
      border-top: 1px solid var(--line-faint);
      border-bottom: 1px solid var(--line-faint);
      pointer-events: none;
      z-index: 1;
    }
    .current-edition-card .card-art {
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.055), transparent 55%),
        linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
      background-size: auto, 22px 22px, 22px 22px;
    }
    .current-edition-card .card-action {
      justify-content: space-between;
      pointer-events: none;
      background: rgba(0,0,0,0.18);
    }
    .current-edition-card .card-action::before {
      content: 'Record state';
      color: var(--muted-faint);
      font-size: 8px;
      letter-spacing: 1.2px;
      margin-right: 10px;
    }
    .edition-study-detail .detail-meta li {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
      gap: 10px;
      align-items: start;
      padding: 8px 0;
    }
    .edition-study-detail .detail-meta li::before {
      content: none;
    }
    .edition-study-detail .detail-meta strong {
      margin-top: 0;
      text-align: right;
    }
    .archive-status {
      min-height: 18px;
      margin: -16px 0 20px;
      color: var(--muted);
      text-align: center;
      font-size: 10px;
      letter-spacing: 1.5px;
    }
    .archive-card[hidden] { display: none; }
    .archive-cta {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
    }
    .contact-microcopy {
      margin-top: 12px;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: 1.2px;
      text-transform: none;
      line-height: 1.5;
    }
    .support-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }
    .support-card {
      border: 1px dotted var(--line-soft);
      padding: 18px 16px;
      background: rgba(255,255,255,0.015);
      scroll-margin-top: 80px;
    }
    .support-card h3 {
      margin-bottom: 10px;
      font-size: 11px;
      letter-spacing: 1.8px;
    }
    .support-card p {
      color: var(--muted);
      text-transform: none;
      letter-spacing: 0.3px;
      line-height: 1.6;
      font-size: 11px;
    }
    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 760px;
      margin: 0 auto;
    }
    .faq-item {
      border: 1px dotted var(--line-soft);
      padding: 16px 18px;
      background: rgba(255,255,255,0.015);
    }
    .faq-item summary {
      cursor: pointer;
      color: var(--fg);
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: 1.8px;
      list-style-position: outside;
    }
    .faq-item p {
      margin-top: 10px;
      color: var(--muted);
      text-transform: none;
      letter-spacing: 0.3px;
      line-height: 1.65;
      font-size: 11px;
    }
    .skip-link {
      position: fixed;
      top: 8px;
      left: 8px;
      z-index: 200;
      transform: translateY(-140%);
      border: 1px solid var(--fg);
      background: var(--bg);
      padding: 10px 14px;
      font-size: 11px;
      letter-spacing: 1.5px;
      transition: transform 0.2s ease;
    }
    .skip-link:focus-visible { transform: translateY(0); }
    .noscript-notice {
      border: 1px dotted var(--line-soft);
      margin: 14px auto;
      max-width: 1000px;
      padding: 12px 16px;
      color: var(--fg-soft);
      text-align: center;
      text-transform: none;
      letter-spacing: 0.3px;
    }
    [hidden] { display: none !important; }
    .card-action,
    .footer-note a {
      text-decoration-thickness: 1px;
      text-underline-offset: 4px;
    }
    .footer-note {
      margin-top: 16px;
      color: var(--muted);
      text-transform: none;
      letter-spacing: 0.5px;
      line-height: 1.6;
    }
    .footer-secondary {
      margin-top: 8px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 9px;
    }
    .nav-inner a[aria-current="page"],
    .mobile-nav-overlay a[aria-current="page"] {
      color: var(--fg);
    }
    .filter-pill[aria-pressed="true"] {
      background-color: var(--fg);
      color: var(--bg);
      font-weight: 700;
    }
    .is-inert {
      pointer-events: none;
      opacity: 0.5;
    }
    @media print {
      body {
        background: #fff;
        color: #000;
        text-transform: none;
      }
      header, .mobile-nav-overlay, .search-modal, .section-divider, .corner, .carousel-btn, footer {
        display: none !important;
      }
      main, .container, .deco-section, .product-detail {
        max-width: none;
        padding: 0;
        border: 0;
        box-shadow: none;
      }
      .reveal { opacity: 1; transform: none; }
      a { color: #000; text-decoration: underline; }
    }

    .search-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 120;
      background: rgba(0,0,0,0.78);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .search-modal.open { display: flex; }
    .search-dialog {
      width: min(620px, 100%);
      border: 1px solid var(--fg);
      padding: 6px;
      background: var(--bg);
      box-shadow: var(--glow), 0 24px 80px rgba(0,0,0,0.7);
    }
    .search-dialog-inner {
      border: 1px dotted var(--line-soft);
      padding: 22px;
    }
    .search-dialog-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }
    .search-dialog h2 {
      margin: 0;
      text-align: left;
      font-size: 18px;
    }
    .search-close {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      font-size: 22px;
    }
    .search-form {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
    }
    .search-form input { min-height: 44px; }
    .search-results {
      display: grid;
      gap: 8px;
      text-align: left;
      text-transform: none;
      letter-spacing: 0.3px;
      color: var(--fg-soft);
    }
    .search-result-link {
      display: block;
      border: 1px solid var(--line-faint);
      padding: 10px 12px;
    }
    .search-result-link:hover,
    .search-result-link:focus-visible {
      opacity: 1;
      border-color: var(--fg-soft);
      background: rgba(255,255,255,0.04);
    }
    .carousel-status,
    .form-status {
      margin-top: 12px;
      min-height: 16px;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: 1.5px;
      text-align: center;
    }
    .form-status a {
      color: var(--fg);
      text-decoration: underline;
      text-underline-offset: 4px;
    }
    .form-status.error { color: rgba(255,120,120,0.95); }
    .is-loading { opacity: 0.7; pointer-events: none; }
    .carousel-btn:disabled {
      opacity: 0.28;
      cursor: not-allowed;
    }

    /* ─── HERO BOTTOM VIGNETTE ───────────────────────────────────
     * CSS-layer fade at the base of the hero ensures an atmospheric
     * dark band at the hero/content boundary regardless of JS timing.
     * Overrides the decorative-border rule from .deco-section::after.
     */
    .hero.deco-section::after {
      top: auto;
      right: 0;
      bottom: 0;
      left: 0;
      height: 180px;
      border: none;
      background: linear-gradient(to bottom, transparent, var(--bg) 92%);
      opacity: 1;
      z-index: 2;
    }

    /* ─── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 768px) {


      .section-header::before,
      .section-header::after,
      .deco-inner > h2::before,
      .deco-inner > h2::after,
      .contact-inner > h2::before,
      .contact-inner > h2::after { display: none; }
      .edition-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .edition-status-note {
        font-size: 11px;
      }
      .edition-study-detail .detail-meta li {
        grid-template-columns: 1fr;
        gap: 4px;
      }
      .edition-study-detail .detail-meta strong {
        text-align: left;
      }
      .product-detail { padding: 18px; }
      .detail-meta { grid-template-columns: 1fr; }
      .deco-section::before,
      .deco-section::after { inset: 8px; }

      .nav-inner { display: none; }
      .search-icon { display: none; }
      .mobile-top-bar { display: flex; }

      .filter-pill { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; }
      footer a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 10px; }

      .artist-carousel-wrap #artistPrev { left: 4px; }
      .artist-carousel-wrap #artistNext { right: 4px; }
      .carousel-btn { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

      body { font-size: 14px; letter-spacing: 0.5px; }
      .card-title { font-size: 13px; }
      .card-sub { font-size: 11px; }
      .card-footer { font-size: 12px; }
      .artist-desc { font-size: 11px; }
      .detail-meta { font-size: 13px; }
      .detail-caption { font-size: 11px; }
      .precision-intro { font-size: 13px; }
      .contact-intro { font-size: 13px; }
      .subtitle { font-size: 12px; }

      .hero.deco-section { min-height: 70vh; }
      .hero .logo-placeholder { width: 140px; height: 140px; margin-bottom: 20px; }
      .hero-logo-mark { width: min(66%, 94px); }
      h1 { font-size: 30px; letter-spacing: 4px; }

      .product-detail { grid-template-columns: 1fr; gap: 30px; }
      .detail-info { order: 2; }
      .detail-art { order: 1; }
      .detail-buy-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }
      .detail-buy-row .btn-wrap { width: 100%; text-align: center; }
      .detail-buy-row .btn-inner { padding: 16px 20px; }
      .cta-group, .archive-cta { flex-direction: column; align-items: stretch; }
      .cta-group .btn-wrap, .archive-cta .btn-wrap { width: 100%; text-align: center; }

      .filter-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 10px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .filter-row::-webkit-scrollbar { display: none; }
      .filter-pill { white-space: nowrap; flex-shrink: 0; }

      .form-label-visible { display: block; }
      #msg-label-visible { display: block !important; }
      .hero-hint { display: block; }
      input, textarea, .select-wrap select { min-height: 44px; font-size: 14px; padding: 12px 14px; }
      textarea { min-height: 44px; }
      .contact-submit-wrap { display: block; }
      .contact-submit-wrap .btn-wrap { width: 100%; display: block; min-width: unset; }
      .contact-submit-wrap .btn-inner { display: block; padding: 16px 20px; text-align: center; }

      .section-divider { margin: 0; }
      .corner { width: 28px; height: 28px; }
      .deco-inner { padding: 35px 16px; }

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

      /* Mobile panel length: icon-card art no longer scales to the full card
       * width (aspect-ratio: 1 made the circle graphic huge in narrow columns).
       * The icon is capped to a small fixed badge size instead. */
      .icon-card .card-art { aspect-ratio: unset; padding: 22px; }
      .icon-circle { max-width: 120px; }

      /* Mobile panel length: the coming-soon sections still laid out their
       * full hidden carousel/grid underneath the cover. Cap them to a
       * compact fixed height since nothing under the cover is visible. */
      #current-editions .deco-inner,
      #archive .deco-inner,
      #featured-edition {
        max-height: 460px;
        overflow: hidden;
      }

      /* Mobile readability: form field contrast */
      input, textarea, .select-wrap select { background: rgba(0,0,0,0.52); }
      input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.58); }
      .form-label-visible { color: var(--fg-soft); }

      /* Mobile readability: support card contrast */
      .support-card { background: rgba(0,0,0,0.45); }

      /* Mobile readability: edition status and current-edition card contrast */
      .edition-status-item {
        background:
          linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
          rgba(0,0,0,0.42);
        background-size: 18px 18px;
      }
      .current-edition-card {
        background:
          linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.006)),
          rgba(0,0,0,0.32);
      }

      /* Mobile readability: body copy contrast */
      .contact-intro { color: var(--fg-soft); }
      .precision-intro { color: var(--fg-soft); }

      /* Mobile panel legibility: add a semi-opaque dark backing to all deco
       * sections and the product-detail panel so interactive content reads
       * clearly over background imagery. backdrop-filter provides the
       * frosted-glass effect while still letting the background bleed through. */
      .deco-section,
      .product-detail {
        background:
          linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0.008)),
          rgba(8, 8, 8, 0.62);
        border-color: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
      }
    }

    @media (max-width: 500px) {
      h1 { font-size: 22px; letter-spacing: 3px; }
      /* Collapse support to single column for text legibility. Icon-card grids
       * (grid-3, grid-4) and the archive stay at 2 columns to keep vertical
       * length in check now that icon-card art is capped in size (below). */
      .support-grid { grid-template-columns: 1fr; }
      #archiveGrid { grid-template-columns: 1fr 1fr; }
      .edition-status-grid {
        grid-template-columns: 1fr;
      }
      .edition-status-item {
        min-height: auto;
      }
      .current-edition-card .card-footer {
        display: grid;
        grid-template-columns: 1fr;
      }
      .current-edition-card .card-footer span:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--line-faint);
      }
      .current-edition-card .card-footer span:last-child {
        min-width: 0;
        text-align: left;
      }
      .form-grid { grid-template-columns: 1fr; }
      .corner { width: 24px; height: 24px; }
      .deco-inner { padding: 28px 12px; }
      .hero.deco-section { min-height: 65vh; }
      .hero .logo-placeholder { width: 120px; height: 120px; }
      .hero .logo-placeholder::after { inset: 18px; }
      .hero-logo-mark { width: min(66%, 78px); }
    }

    /* ─── WIDE DESKTOP (≥1100px) ─────────────────────────────── */
    @media (min-width: 1100px) {

      .container { max-width: 1140px; }

      .deco-inner { padding: 60px 50px; }

      .corner { width: 50px; height: 50px; }

      /* Hero */
      .hero.deco-section { min-height: 92vh; }
      .hero .logo-placeholder { width: 260px; height: 260px; margin-bottom: 38px; }
      .hero-logo-mark { width: min(68%, 176px); }
      h1 {
        font-size: clamp(52px, 4.5vw, 80px);
        letter-spacing: clamp(6px, 0.55vw, 12px);
      }
      .hero-support { max-width: 800px; font-size: 12px; }

      /* Navigation */
      .nav-inner { gap: 50px; }
      .nav-inner a { font-size: 12px; letter-spacing: 3px; }
      .search-icon { right: 50px; }

      /* Edition study detail */
      .product-detail { gap: 70px; }
      .detail-art-inner { padding: 30px; }
      .detail-info h2 { font-size: 24px; }
      .detail-price { font-size: 16px; }
      .detail-meta { font-size: 12px; }

      /* Artist section */
      .artist-icon-circle { width: 110px; height: 110px; }
      .artist-icon-circle svg { width: 75px; height: 75px; }
      .artist-card .card-info { padding: 0 30px 40px; }
      .artist-desc { font-size: 11px; }

      /* Services / Precision grid */
      .grid-3 { gap: 30px; }
      .icon-card .card-art { padding: 18px; }
      .icon-card .card-art svg { width: 56%; height: 56%; }
      .icon-card .card-title { font-size: 15px; }
      .precision-intro { max-width: 620px; font-size: 12px; }

      /* Archive grid — 5 columns */
      .grid-4 { grid-template-columns: repeat(5, 1fr); gap: 18px; }

      /* Contact form */
      .contact-inner { max-width: 720px; }
      .contact-intro { font-size: 13px; }
      textarea { height: 150px; }

      /* Card hover — more lift on large screens */
      .card:hover {
        transform: translateY(-7px);
        box-shadow: 0 14px 44px rgba(0,0,0,0.38), 0 0 28px rgba(255,255,255,0.05), inset 0 0 0 1px rgba(255,255,255,0.07);
      }

      /* Section-header decorative lines — extended reach */
      .section-header::before,
      .deco-inner > h2::before,
      .contact-inner > h2::before { right: calc(50% + 200px); }
      .section-header::after,
      .deco-inner > h2::after,
      .contact-inner > h2::after  { left:  calc(50% + 200px); }
      .section-header::before,
      .section-header::after,
      .deco-inner > h2::before,
      .deco-inner > h2::after,
      .contact-inner > h2::before,
      .contact-inner > h2::after  { width: min(26%, 200px); }
    }

    /* ─── LARGE DISPLAY (≥1500px) ────────────────────────────── */
    @media (min-width: 1500px) {

      .container { max-width: 1360px; }

      .deco-inner { padding: 80px 70px; }

      .corner { width: 60px; height: 60px; }

      /* Hero */
      .hero.deco-section { min-height: 96vh; }
      .hero .logo-placeholder { width: 320px; height: 320px; margin-bottom: 46px; }
      .hero-logo-mark { width: min(68%, 216px); }

      /* Navigation */
      .nav-inner { gap: 70px; }

      /* Edition study detail — equal columns, maximum breathing room */
      .product-detail { grid-template-columns: 1fr 1fr; gap: 100px; }
      .detail-info h2 { font-size: 28px; }

      /* Artist section */
      .artist-icon-circle { width: 130px; height: 130px; }
      .artist-icon-circle svg { width: 90px; height: 90px; }

      /* Services grid */
      .icon-card .card-art svg { width: 56%; height: 56%; }
      .icon-card .card-title { font-size: 17px; }

      /* Archive grid — 6 columns */
      .grid-4 { grid-template-columns: repeat(6, 1fr); gap: 20px; }

      /* Contact form */
      .contact-inner { max-width: 840px; }

      /* Section-header decorative lines — maximum reach */
      .section-header::before,
      .deco-inner > h2::before,
      .contact-inner > h2::before { right: calc(50% + 240px); }
      .section-header::after,
      .deco-inner > h2::after,
      .contact-inner > h2::after  { left:  calc(50% + 240px); }
      .section-header::before,
      .section-header::after,
      .deco-inner > h2::before,
      .deco-inner > h2::after,
      .contact-inner > h2::before,
      .contact-inner > h2::after  { width: min(28%, 240px); }
    }

    /* ─── ICON CIRCLE ──────────────────────────────────────────── */
    /*
     * Explicit circular container that replaces the old pseudo-element ring
     * inside .icon-card .card-art. The circle fills the card-art content area
     * (capped at 220px) and carries the border, glow, and inner dotted ring
     * so future raster assets can drop straight in via <img>.
     */
    .icon-circle {
      width: 100%;
      max-width: 220px;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.28);
      background:
        radial-gradient(circle at 42% 36%, rgba(255,255,255,0.095) 0%, rgba(255,255,255,0.022) 52%, transparent 80%);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.07),
        inset 0 0 30px rgba(255,255,255,0.04),
        0 0 28px rgba(255,255,255,0.055);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.35s ease, border-color 0.35s ease;
    }
    /* Inner dotted ring — purely decorative */
    .icon-circle::before {
      content: '';
      position: absolute;
      inset: 7px;
      border-radius: 50%;
      border: 1px dotted rgba(255,255,255,0.16);
      pointer-events: none;
      z-index: 0;
    }
    /* Size SVG and future <img> assets relative to the circle */
    .icon-card .card-art .icon-circle svg,
    .icon-card .card-art .icon-circle img {
      width: 58%;
      height: 58%;
      object-fit: contain;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }
    /* Suppress the old pseudo-element circle — now handled by .icon-circle */
    .icon-card .card-art::before { display: none; }

    .icon-card:hover .icon-circle {
      border-color: rgba(255,255,255,0.50);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.12),
        inset 0 0 36px rgba(255,255,255,0.08),
        0 0 44px rgba(255,255,255,0.13);
    }

    /* ─── GRID LOCK — Artists + Process stay at 4 columns ──────── */
    @media (min-width: 1100px) {
      .grid-4-lock { grid-template-columns: repeat(4, 1fr); }
    }
    @media (min-width: 1500px) {
      .grid-4-lock { grid-template-columns: repeat(4, 1fr); }
    }

    /* ─── HEADING SCALE ─────────────────────────────────────────── */
    @media (min-width: 1100px) {
      h2 { font-size: 26px; }
    }
    @media (min-width: 1500px) {
      h2 { font-size: 30px; letter-spacing: 5px; }
    }
