@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,62..125,800;0,62..125,900&family=Instrument+Serif:ital@0;1&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&display=swap");

@font-face {
  font-family: 'Photograph Signature';
  src: url('../assets/fonts/Photograph Signature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/Archivo-VariableFont.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Warm-tinted neutral palette */
  --color-bg: #080808;
  --color-bg-alt: #11100f;
  --color-surface: #171615;
  --color-surface-hover: #22201e;
  --color-surface-light: #f2f0ec;
  --color-text: #f8f7f5;
  --color-text-muted: rgba(248, 247, 245, 0.65);
  --color-text-dim: rgba(248, 247, 245, 0.4);
  --color-accent: #a64b23;
  --color-accent-light: #c86134;
  --color-accent-subtle: rgba(166, 75, 35, 0.15);
  --color-focus: #c86134;

  /* Spacing system */
  --spacing-xs: 0.5rem;
  --spacing-base: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Typography */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --font-size-base: 14px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-medium: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.6s cubic-bezier(0.87, 0, 0.13, 1);
  --radius-sm: 4px;
  --radius-pill: 9999px;
}

/* Universal Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  font-size: 16px;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

body.zoom-mode {
  cursor: default;
}

/* Accessible focus rings */
*:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* Interactive elements default cursor */
button,
a,
[role="button"] {
  cursor: pointer;
  touch-action: manipulation;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
}

/* ==========================================================================
   ThreeUI PredictiveArcCanvas — Halftone Flow Background
   Canonical source: src/shaders/neuform-isolated/sources/nexus-unified-flow.html
   Props: variant="halftone-flow" hue={18} saturation={0.64} brightness={0.35}
   ========================================================================== */
.shader-frame,
.threeui-background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.threeui-halftone-flow,
.shader-frame > canvas,
.threeui-background > canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
  transform: translateZ(0);
}

/* ==========================================================================
   Preloader Overlay - Animated SVG Color Wave Effect (GPU Optimized)
   ========================================================================== */
.preloader-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  contain: strict;
  transform: translate3d(0, 0, 0);
  will-change: opacity;
}

.preloader-overlay svg {
  width: 100vw;
  height: 100vh;
  opacity: 0;
  display: block;
  contain: layout size paint;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.preloader-overlay defs path {
  stroke: #ffffff;
  stroke-width: 2px;
  fill: none;
}

/* ==========================================================================
   Header and Footer Navigation
   ========================================================================== */
.header,
.footer {
  position: fixed;
  left: 0;
  width: 100vw;
  padding: 1.5rem;
  z-index: 10000;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: var(--spacing-base);
  column-gap: var(--spacing-base);
  pointer-events: none;
  opacity: 0;
}

.header > *,
.footer > * {
  pointer-events: none;
}

.header a,
.header button,
.header .logo-container,
.footer a,
.footer button {
  pointer-events: auto;
}

.header,
.mobile-drawer,
.mobile-menu-toggle {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.footer {
  bottom: 0;
}

/* Grid Column Assignments (Desktop) */
.nav-section {
  grid-column: 1 / span 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.values-section {
  grid-column: 5 / span 2;
}

.location-section {
  grid-column: 7 / span 2;
}

.contact-section {
  grid-column: 9 / span 2;
}

.social-section {
  grid-column: 11 / span 2;
  text-align: right;
}


/* ===== LOGO COMPONENT ===== */
.logo-container {
  margin-bottom: var(--spacing-md);
  display: inline-block;
  width: 3.2rem;
  height: 2rem;
  position: relative;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
}

.logo-circles {
  position: relative;
  width: 100%;
  height: 100%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  transition: transform var(--transition-medium);
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--color-text);
  top: 50%;
}

.circle-1 {
  left: 0;
  transform: translate(0, -50%);
}

.circle-2 {
  left: 0.8rem;
  transform: translate(0, -50%);
  mix-blend-mode: exclusion;
}

.logo-container:hover .circle-1,
.logo-container:focus-visible .circle-1 {
  transform: translate(-0.4rem, -50%);
}

.logo-container:hover .circle-2,
.logo-container:focus-visible .circle-2 {
  transform: translate(0.4rem, -50%);
}

/* Mobile Menu Toggle Button (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
  background: rgba(23, 22, 21, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(35, 33, 31, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Global Link Styling */
a {
  position: relative;
  cursor: pointer;
  color: var(--color-text);
  padding: 0;
  display: inline-block;
  z-index: 1;
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--transition-medium);
}

/* Base inline text link underline animation (excludes hub buttons, dock, and card UI) */
a:not(.dock-item):not(.hub-commission-cta):not(.hub-pill-btn):not(.metallic-interactive-btn):not(.floating-hub-toggle)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

a:not(.dock-item):not(.hub-commission-cta):not(.hub-pill-btn):not(.metallic-interactive-btn):not(.floating-hub-toggle):hover::after,
a:not(.dock-item):not(.hub-commission-cta):not(.hub-pill-btn):not(.metallic-interactive-btn):not(.floating-hub-toggle):focus-visible::after {
  transform: scaleX(1);
}

a:not(.dock-item):not(.hub-commission-cta):not(.hub-pill-btn):not(.metallic-interactive-btn):not(.floating-hub-toggle):hover {
  color: #000;
  mix-blend-mode: difference;
}

p {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01rem;
  line-height: 1.45;
}

ul {
  list-style: none;
}

h3 {
  font-size: 13px;
  font-family: var(--font-mono);
  margin-bottom: var(--spacing-base);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Mobile Navigation Drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 20000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-drawer.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 90dvh;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 1.5rem 2.5rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open .mobile-drawer-content {
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-title {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-drawer-close {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-drawer-close span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background-color: var(--color-text);
  transition: transform 0.2s ease;
}

.mobile-drawer-close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-drawer-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-drawer-body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.drawer-section-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-link {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.2rem 0;
}

.drawer-links-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.drawer-links-horizontal .drawer-link {
  font-size: 1rem;
}

/* ==========================================================================
   Main Canvas Viewport
   ========================================================================== */
.viewport {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
}

.canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  will-change: transform;
  isolation: isolate;
  touch-action: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.grid-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.grid-item {
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--color-bg-alt);
  cursor: pointer;
  z-index: 1;
  opacity: 1;
  overflow: hidden;
}

.grid-item.selected {
  z-index: 2 !important;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   Split Screen Zoom Layout
   ========================================================================== */
.split-screen-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.4);
}

.split-screen-container.active {
  opacity: 1;
  pointer-events: all;
}

.split-left {
  position: relative;
  width: 50vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(8, 8, 8, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}

.split-right {
  position: relative;
  width: 50vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(8, 8, 8, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}

/* Image target - backdrop placeholder for FLIP */
.zoom-target {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.zoom-target::before {
  content: "IMAGE TARGET";
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-mono);
  font-size: 0.75em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.split-screen-container.active .zoom-target::before {
  display: none;
}

/* ==========================================================================
   Image Title & Description Overlay
   ========================================================================== */
.image-title-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  transform: none;
  color: white;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  max-width: calc(50vw - 80px);
}

body.sample-mode .image-title-overlay {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.image-title-overlay.active {
  opacity: 0; /* Animated in by GSAP */
}

.image-slide-number {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 20px;
  margin-bottom: 0.5em;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}

.image-slide-number span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  transform: translateY(0px);
  will-change: transform;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.image-slide-title {
  position: relative;
  width: 100%;
  max-width: 450px;
  min-height: 60px;
  margin-bottom: 0.75em;
  overflow: hidden;
}

.image-slide-title h1 {
  position: relative;
  top: 0;
  left: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transform: translateY(0px);
  will-change: transform;
  margin: 0;
  padding: 0;
}

.image-slide-description {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 80px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}

.description-line {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  transform: translateY(0px);
  will-change: transform;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* ==========================================================================
   Close Button
   ========================================================================== */
.close-button {
  position: fixed;
  top: 50%;
  right: 20px;
  width: 64px;
  height: 64px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15000;
  opacity: 0;
  pointer-events: none;
  transform: translate(40px, -50%);
  border-radius: 50%;
  transition: background-color var(--transition-fast), opacity var(--transition-fast);
}

body.sample-mode .header,
.header.hidden-header,
body.zoom-mode .header,
body.zoom-mode .footer,
body.zoom-mode .floating-hub-toggle {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.close-button.active {
  pointer-events: all;
}

.close-button:hover,
.close-button:focus-visible {
  opacity: 0.85;
  background-color: rgba(255, 255, 255, 0.08);
}

.close-button svg {
  width: 48px;
  height: 48px;
  transform: rotate(180deg);
  transition: transform var(--transition-fast);
}

.close-button:hover svg {
  transform: rotate(180deg) translateX(4px);
}


/* ==========================================================================
   Scaling Image Overlay (GSAP FLIP)
   ========================================================================== */
.scaling-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  opacity: 1 !important;
}

.scaling-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Page Vignette Effects
   ========================================================================== */
.page-vignette-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}

.page-vignette-extreme {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 18%,
    transparent 35%,
    transparent 75%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .header,
  .footer {
    padding: 1.25rem;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
  }

  .nav-section {
    grid-column: 1 / span 3;
  }

  .values-section {
    grid-column: 4 / span 2;
  }

  .location-section {
    grid-column: 6 / span 2;
  }

  .contact-section {
    grid-column: 8 / span 2;
  }

  .social-section {
    grid-column: 10 / span 3;
  }

  .image-title-overlay {
    bottom: 30px;
    left: 30px;
    max-width: calc(50vw - 50px);
  }

  .image-slide-title h1 {
    font-size: 36px;
  }
}

/* Tablet portrait & Mobile (max-width: 900px) */
@media (max-width: 900px) {
  /* Header converts to compact mobile bar */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
  }

  .nav-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-container {
    margin-bottom: 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .values-section,
  .location-section,
  .contact-section,
  .social-section {
    display: none;
  }


  /* Split screen on mobile: full screen centered picture, no black card, no text */
  .split-screen-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .split-left {
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    padding: 1.5rem 1.5rem calc(4.5rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
  }

  .split-right {
    display: none !important;
  }

  .zoom-target {
    width: min(88vw, 62vh);
    height: min(88vw, 62vh);
    max-width: 420px;
    max-height: 420px;
    margin: auto;
    transform: translateY(-28px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Title overlay and text: completely removed on mobile */
  .image-title-overlay {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  /* Close button on mobile: positioned top-right with safe area inset */
  .close-button {
    top: max(1.25rem, calc(0.75rem + env(safe-area-inset-top, 0px)));
    right: 1.25rem;
    width: 48px;
    height: 48px;
    transform: translate(0, 0);
    background: rgba(23, 22, 21, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 20;
  }

  .close-button svg {
    width: 28px;
    height: 28px;
  }

}


/* ==========================================================================
   Artist Identity, Commission Status & Modal Architecture
   Inspired by shiinori.carrd.co aesthetic & commission workflows
   ========================================================================== */

/* Live Commission Status Badge in Header */
.commission-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-top: 0.5rem;
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
}

.status-open-text {
  color: #34d399;
  font-weight: 700;
}

.drawer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-family: var(--font-mono);
  font-size: 11.5px;
  margin-top: 0.5rem;
}

.drawer-discord,
.discord-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-dim);
  margin-top: 0.25rem;
}

.discord-tag code,
.drawer-discord code {
  color: var(--color-accent-light);
  background: rgba(200, 97, 52, 0.12);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Nav CTA Highlight */
.nav-cta-highlight {
  color: var(--color-accent-light) !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-cta-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.8;
}

/* ==========================================================================
   Artist Modal System (Prices, TOS, Order, Queue)
   ========================================================================== */
.artist-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 50000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.artist-modal.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.artist-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.artist-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  background: rgba(15, 3, 8, 0.96);
  border: 1px solid rgba(255, 120, 145, 0.18);
  border-radius: 16px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.95), 0 0 1px rgba(255, 200, 215, 0.2) inset, inset 0 0 60px rgba(180, 20, 40, 0.08);
  margin: auto;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: min(92dvh, calc(100dvh - 2rem));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.artist-modal.open .artist-modal-container {
  transform: none;
}

/* Modal Header */
.artist-modal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.75rem 2rem 1.25rem;
  background: rgba(18, 5, 10, 0.96);
  border-bottom: 1px solid rgba(255, 120, 145, 0.14);
  flex-shrink: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--color-accent-light);
  margin-bottom: 0.35rem;
}

.modal-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.modal-subtitle {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.tos-sub-mobile {
  display: none;
}

.tos-sub-desktop {
  display: inline;
}

.artist-modal-close {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 120, 145, 0.08);
  border: 1px solid rgba(255, 120, 145, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  margin-left: 1rem;
}

.artist-modal-close:hover {
  background: rgba(225, 29, 72, 0.25);
  border-color: rgba(255, 160, 180, 0.5);
  transform: rotate(90deg);
}

.artist-modal-close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background-color: var(--color-text);
}

.artist-modal-close span:nth-child(1) { transform: rotate(45deg); }
.artist-modal-close span:nth-child(2) { transform: rotate(-45deg); }

/* Modal Body */
.artist-modal-body {
  padding: 2rem;
  max-height: calc(85dvh - 100px);
  overflow-y: auto;
}

/* Custom Scrollbar for Modal Body */
.artist-modal-body::-webkit-scrollbar {
  width: 6px;
}
.artist-modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.artist-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
}

/* ==========================================================================
   Editorial Specimen Lookbook System (Rates, Terms, Studio Ledger)
   Inspired by shiinori.carrd.co aesthetic architecture
   ========================================================================== */

/* Specimen Container Tweaks */
.artist-modal-container.editorial-lookbook {
  max-width: 1080px;
  width: 92vw;
  max-height: min(92dvh, calc(100dvh - 2rem));
  background: rgba(14, 3, 7, 0.94) !important;
  backdrop-filter: blur(36px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(36px) saturate(140%) !important;
  border: 1px solid rgba(255, 120, 145, 0.18) !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 200, 215, 0.16), inset 0 0 80px rgba(180, 20, 40, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.artist-modal-container.editorial-lookbook .artist-modal-header {
  padding: 1.25rem 2rem 1rem;
  background: rgba(18, 4, 10, 0.96) !important;
  border-bottom: 1px solid rgba(255, 120, 145, 0.14) !important;
  flex-shrink: 0;
}

.artist-modal-container.editorial-lookbook .artist-modal-body {
  padding: 1.5rem 2.25rem 3rem;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Mobile-only Segmented Switcher for Modals (hidden on desktop) */
.modal-mobile-switcher {
  display: none;
}

/* ==========================================================================
   Hirael-Style Two-Way Comparison Card Component (Prices & TOS)
   ========================================================================== */
.hirael-comparison-section {
  width: 100%;
  margin-bottom: 0.25rem;
}

.hirael-section-header {
  margin-bottom: 1.35rem;
}

.hirael-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 200, 215, 0.45);
  margin-bottom: 0.45rem;
}

.hirael-headline {
  font-family: "Newsreader", "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.16;
  color: #ffffff;
  letter-spacing: -0.015em;
  text-transform: none !important;
  margin: 0;
}

.hirael-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, rgba(28, 7, 15, 0.82) 0%, rgba(14, 3, 7, 0.92) 100%) !important;
  border: 1px solid rgba(255, 120, 145, 0.16) !important;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 200, 215, 0.12), inset 0 0 35px rgba(180, 20, 40, 0.06) !important;
  overflow: hidden;
}

.hirael-card + .hirael-card {
  margin-top: 1.25rem;
}

.hirael-col {
  padding: 1.5rem 2rem 1.65rem;
  display: flex;
  flex-direction: column;
}

.hirael-col.col-negative,
.hirael-col.col-pricing-left {
  border-right: 1px solid rgba(255, 120, 145, 0.12);
}

.hirael-col-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hirael-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.hirael-icon-circle.icon-warn {
  border: 1.5px solid rgba(255, 180, 200, 0.5);
  color: rgba(255, 200, 215, 0.85);
  background: rgba(225, 29, 72, 0.08);
}

.hirael-icon-circle.icon-check {
  border: 1.5px solid rgba(255, 200, 215, 0.9);
  color: #ffffff;
  background: rgba(225, 29, 72, 0.12);
}

.hirael-icon-circle.icon-star {
  border: 1.5px solid rgba(255, 200, 215, 0.85);
  color: #ffccd5;
  background: rgba(225, 29, 72, 0.14);
  font-size: 14px;
}

.hirael-icon-circle.icon-danger {
  border: 1.5px solid #fb7185;
  color: #fb7185;
  background: rgba(251, 113, 133, 0.12);
  font-size: 13px;
}

.hirael-col-title {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.col-negative .hirael-col-title {
  color: rgba(255, 255, 255, 0.6);
}

.col-positive .hirael-col-title,
.col-pricing-left .hirael-col-title,
.col-pricing-right .hirael-col-title {
  color: #ffffff;
}

.hirael-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hirael-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.44;
}

.col-negative .hirael-list li {
  color: rgba(255, 255, 255, 0.55);
}

.col-pricing-left .hirael-list li,
.col-pricing-right .hirael-list li,
.col-positive .hirael-list li {
  color: #f2f2f4;
}

.col-pricing-left .hirael-list li strong,
.col-pricing-right .hirael-list li strong {
  color: #ffffff;
  font-weight: 600;
}

.col-negative .hirael-bullet {
  color: rgba(255, 255, 255, 0.32);
  font-size: 1.15rem;
  text-align: center;
  line-height: 1.3;
}

.col-positive .hirael-list li {
  color: #f2f2f4;
}

.hirael-bullet.checkmark,
.col-positive .hirael-bullet.checkmark {
  color: #34d399;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
}

.hirael-bullet.crossmark,
.col-negative .hirael-bullet.crossmark {
  color: #f87171;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
}

/* Bottom Metric & CTA Strip */
.hirael-strip {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  background: linear-gradient(135deg, rgba(28, 7, 15, 0.72) 0%, rgba(14, 3, 7, 0.88) 100%) !important;
  border: 1px solid rgba(255, 120, 145, 0.14) !important;
  border-radius: 14px;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 200, 215, 0.10) !important;
}

/* Mode of Payment (MOP) Icons Section in Hirael Strip */
.hirael-mop-section {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hirael-mop-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 200, 215, 0.55);
  text-transform: uppercase;
  white-space: nowrap;
}

.hirael-mop-icons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.mop-svg-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 120, 145, 0.06);
  border: 1px solid rgba(255, 120, 145, 0.16);
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  user-select: none;
}

.mop-svg-card:hover {
  background: rgba(225, 29, 72, 0.18);
  border-color: rgba(255, 160, 180, 0.55);
  box-shadow: 0 0 18px rgba(225, 29, 72, 0.35);
  transform: translateY(-2px);
}

.mop-svg-card .mop-svg {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mop-svg-card:hover .mop-svg {
  transform: scale(1.08);
}

.mop-svg-card.mop-vgen {
  width: auto;
  min-width: 48px;
  height: 48px;
  padding: 0 0.95rem;
}

.mop-vgen-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.mop-vgen-mobile {
  display: none;
}

.mop-vgen-desktop {
  display: block;
}

.mop-svg-card.mop-vgen:hover {
  border-color: rgba(255, 160, 180, 0.65);
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
  transform: translateY(-2px);
}

.mop-svg-card.mop-vgen:hover .mop-vgen-img {
  transform: scale(1.08);
}

.hirael-metrics {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.hirael-metric {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 200, 215, 0.55);
  white-space: nowrap;
}

.hirael-metric strong {
  color: #ffffff;
  font-weight: 700;
  margin-right: 0.35rem;
}

.hirael-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 140, 165, 0.38) !important;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.25) 0%, rgba(160, 18, 38, 0.42) 100%) !important;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.24), inset 0 1px 0 rgba(255, 200, 215, 0.25) !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.hirael-cta-btn svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.hirael-cta-btn:hover {
  border-color: rgba(255, 180, 200, 0.65) !important;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.42) 0%, rgba(180, 20, 42, 0.62) 100%) !important;
  box-shadow: 0 6px 24px rgba(225, 29, 72, 0.45) !important;
  transform: translateY(-1px);
  color: #ffffff;
}

.hirael-cta-btn:hover svg {
  transform: translateX(3px);
}

/* 1. Specimen Tiers Grid */
.specimen-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.specimen-tier-card {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.specimen-tier-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.specimen-tier-card.featured {
  border-color: rgba(200, 97, 52, 0.6);
  background: linear-gradient(180deg, rgba(166, 75, 35, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.specimen-badge-corner {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
}

.specimen-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.specimen-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.specimen-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.specimen-price {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.specimen-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.specimen-crop-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-dim);
  margin-bottom: 0.75rem;
}

.specimen-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.specimen-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.specimen-features li {
  font-size: 12px;
  color: var(--color-text-dim);
  line-height: 1.35;
  position: relative;
  padding-left: 0.85rem;
}

.specimen-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.specimen-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.specimen-inquire-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.specimen-inquire-link:hover {
  color: #fff;
  transform: translateX(3px);
}

.specimen-inquire-link.highlight {
  color: var(--color-accent-light);
  font-weight: 700;
}

.specimen-inquire-link.highlight:hover {
  color: #fff;
}

/* 2. Modifiers & Parameters Ledger */
.specimen-section {
  margin-bottom: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.specimen-section-header {
  margin-bottom: 1.25rem;
}

.section-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: 0.25rem;
}

.specimen-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.modifiers-ledger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
}

.modifier-ledger-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.9rem 1.15rem;
  transition: border-color 0.2s ease;
}

.modifier-ledger-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.mod-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.mod-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
}

.mod-rate {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-accent-light);
  white-space: nowrap;
}

.mod-detail {
  font-size: 12px;
  color: var(--color-text-dim);
  line-height: 1.4;
}

/* 3. Scope Manifesto Grid */
.specimen-manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.manifesto-panel {
  padding: 1.15rem 1.35rem;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.5;
}

.manifesto-panel.accepting {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #d1fae5;
}

.manifesto-panel.restricted {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fecaca;
}

.manifesto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.manifesto-marker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.manifesto-panel.accepting .manifesto-marker { color: #34d399; }
.manifesto-panel.restricted .manifesto-marker { color: #f87171; }

.manifesto-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* 4. Remittance Strip */
.specimen-remittance-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}

.remittance-title {
  font-weight: 600;
  color: #fff;
}

.remittance-gateways {
  font-family: var(--font-mono);
  color: var(--color-accent-light);
  font-weight: 600;
}

.remittance-notice {
  color: var(--color-text-dim);
}

/* 5. Atelier Inquiry Callout Bar */
.specimen-inquiry-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(166, 75, 35, 0.15) 0%, rgba(20, 20, 24, 0.9) 100%);
  border: 1px solid rgba(200, 97, 52, 0.35);
  border-radius: 10px;
  margin-top: 1rem;
}

.inquiry-info {
  max-width: 520px;
}

.inquiry-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent-light);
  margin-bottom: 0.35rem;
}

.inquiry-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.lookbook-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #c86134 0%, #a64b23 100%);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.lookbook-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.lookbook-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease;
}

.lookbook-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* 6. Protocol Articles (Terms of Service) */
.protocol-articles-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.protocol-entry {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.protocol-entry:last-child {
  border-bottom: none;
}

.protocol-entry.highlight-border {
  border-left: 2px solid var(--color-accent);
  padding: 1.25rem 1rem;
  background: rgba(166, 75, 35, 0.04);
}

.protocol-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent-light);
  text-transform: uppercase;
}

.protocol-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.protocol-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.protocol-content li {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
  position: relative;
  padding-left: 1rem;
}

.protocol-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.warning-text {
  color: #f87171;
  font-weight: 700;
}

/* 7. Studio Production Ledger & Live Queue */
.telemetry-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.75rem;
}

.telemetry-stat {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 13px;
}

.telemetry-label {
  color: var(--color-text-dim);
  font-size: 12px;
}

.telemetry-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fff;
}

.text-emerald {
  color: #34d399 !important;
}

.ledger-table-container {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.015);
}

.ledger-table-header {
  display: grid;
  grid-template-columns: 130px 180px 1fr 220px;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-dim);
  text-transform: uppercase;
}

.ledger-entry {
  display: grid;
  grid-template-columns: 130px 180px 1fr 220px;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  font-size: 13px;
  transition: background 0.2s ease;
}

.ledger-entry:last-child {
  border-bottom: none;
}

.ledger-entry:hover {
  background: rgba(255, 255, 255, 0.025);
}

.slot-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.06em;
}

.slot-badge.open {
  color: #34d399;
}

.client-name {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
}

.client-channel {
  display: block;
  font-size: 11.5px;
  color: var(--color-text-dim);
  margin-top: 0.15rem;
}

.col-scope {
  color: var(--color-text-muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.ledger-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.ledger-status-pill.in-progress {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.ledger-status-pill.queued {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.ledger-status-pill .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.ledger-claim-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ledger-claim-link:hover {
  background: #10b981;
  color: #000;
  border-color: #10b981;
}

/* ==========================================================================
   Responsive Adaptations for Lookbook Modals
   ========================================================================== */
@media (max-width: 860px) {
  .ledger-table-header {
    display: none;
  }
  .ledger-entry {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.15rem 1rem;
  }
}

@media (max-width: 768px) {
  .artist-modal {
    padding: max(8px, env(safe-area-inset-top, 8px)) 0.4rem 0 !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }
  .artist-modal-container,
  .artist-modal-container.editorial-lookbook {
    width: calc(100% - 12px) !important;
    max-width: 410px !important;
    height: calc(100dvh - max(8px, env(safe-area-inset-top, 8px))) !important;
    max-height: calc(100dvh - max(8px, env(safe-area-inset-top, 8px))) !important;
    border-radius: 18px 18px 0 0 !important;
    border: 1px solid rgba(255, 120, 145, 0.16) !important;
    border-bottom: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .artist-modal-header,
  .artist-modal-container.editorial-lookbook .artist-modal-header {
    padding: 1rem 1.15rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d0d0f;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .modal-header-meta {
    flex: 1;
    min-width: 0;
  }
  .modal-badge {
    font-size: 9.5px;
    margin-bottom: 0.2rem;
  }
  .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #ffffff;
  }
  .modal-subtitle {
    font-size: 0.82rem;
    line-height: 1.4;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.72);
  }
  .artist-modal-close {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 8px;
    margin-left: 0.65rem;
  }
  .artist-modal-close span {
    width: 14px;
  }

  /* Mobile Quick Segment Switcher between Prices & TOS */
  .modal-mobile-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: rgba(20, 5, 11, 0.88);
    border-bottom: 1px solid rgba(255, 120, 145, 0.14);
  }
  .modal-switcher-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 200, 215, 0.65);
    background: rgba(255, 120, 145, 0.06);
    border: 1px solid rgba(255, 120, 145, 0.12);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-font-smoothing: antialiased;
  }
  .modal-switcher-btn.active {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.35) 0%, rgba(160, 18, 38, 0.48) 100%) !important;
    border-color: rgba(255, 140, 165, 0.45) !important;
    box-shadow: 0 2px 12px rgba(225, 29, 72, 0.35), inset 0 1px 0 rgba(255, 200, 215, 0.3) !important;
  }
  .modal-switcher-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 120, 145, 0.12);
  }
  .switcher-dot {
    display: none !important;
  }

  /* Subtitle Mobile Override */
  .tos-sub-desktop {
    display: none !important;
  }
  .tos-sub-mobile {
    display: inline !important;
  }

  .artist-modal-body,
  .artist-modal-container.editorial-lookbook .artist-modal-body {
    padding: 0.85rem 0.9rem calc(5.5rem + env(safe-area-inset-bottom, 24px)) !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  .artist-modal-body::-webkit-scrollbar,
  .artist-modal-container.editorial-lookbook .artist-modal-body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  .hirael-comparison-section {
    margin-bottom: 0.2rem;
  }
  .hirael-section-header {
    margin-bottom: 0.65rem;
  }
  .hirael-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.25rem;
  }
  .hirael-headline {
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
  }

  .specimen-manifesto-grid {
    grid-template-columns: 1fr;
  }
  .specimen-inquiry-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .inquiry-actions {
    flex-direction: column;
    width: 100%;
  }
  .lookbook-btn-primary,
  .lookbook-btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Hirael Comparison Mobile Responsive */
  .hirael-card {
    grid-template-columns: 1fr;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.08);
  }
  .hirael-card + .hirael-card {
    margin-top: 0.75rem;
  }
  .hirael-col.col-negative,
  .hirael-col.col-pricing-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hirael-col {
    padding: 0.8rem 0.85rem 0.85rem;
  }
  .hirael-col-header {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .hirael-icon-circle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    font-size: 10px;
    border-width: 1px;
  }
  .hirael-col-title {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #ffffff;
  }
  .hirael-list {
    gap: 0.52rem;
  }
  .hirael-list li {
    font-size: 0.84rem;
    line-height: 1.38;
    grid-template-columns: 16px 1fr;
    gap: 0.48rem;
    color: rgba(255, 255, 255, 0.88);
  }
  .hirael-bullet {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hirael-strip {
    margin-top: 0.85rem;
    margin-bottom: 0.85rem;
    padding: 0.8rem 0.9rem;
    background: linear-gradient(135deg, rgba(28, 7, 15, 0.85) 0%, rgba(14, 3, 7, 0.95) 100%) !important;
    border: 1px solid rgba(255, 120, 145, 0.16) !important;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 200, 215, 0.10) !important;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }
  .hirael-mop-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  .hirael-mop-label {
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 200, 215, 0.9);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hirael-mop-icons {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.45rem;
    flex-shrink: 0;
  }
  .mop-svg-card {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 9px;
    background: rgba(255, 120, 145, 0.07);
    border: 1px solid rgba(255, 120, 145, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
  }
  .mop-svg-card svg {
    width: 20px;
    height: 20px;
  }
  .mop-svg-card.mop-vgen {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mop-vgen-desktop {
    display: none !important;
  }
  .mop-vgen-mobile {
    display: block !important;
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
  .hirael-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    width: 100%;
    box-sizing: border-box;
  }
  .hirael-metric {
    min-width: 0;
    padding: 0.55rem 0.25rem;
    background: rgba(255, 120, 145, 0.05);
    border-radius: 9px;
    border: 1px solid rgba(255, 120, 145, 0.12);
    text-align: center;
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: break-word;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hirael-metric strong {
    font-size: clamp(0.66rem, 2.2vw, 0.73rem);
    display: block;
    line-height: 1.22;
    color: #ffffff;
    white-space: normal !important;
    word-break: normal;
  }
  .hirael-metric span {
    font-size: clamp(0.55rem, 1.8vw, 0.61rem);
    display: block;
    color: rgba(255, 200, 215, 0.65);
    line-height: 1.25;
    margin-top: 0.18rem;
    white-space: normal !important;
    word-break: normal;
  }
  .hirael-cta-btn {
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 10px;
    justify-content: center;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.3) 0%, rgba(160, 18, 38, 0.48) 100%) !important;
    border: 1px solid rgba(255, 140, 165, 0.45) !important;
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3) !important;
    margin-top: 0.25rem;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .artist-modal {
    padding: max(8px, env(safe-area-inset-top, 8px)) 0.35rem 0 !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }
  .artist-modal-container,
  .artist-modal-container.editorial-lookbook {
    width: calc(100% - 10px) !important;
    max-width: 410px !important;
    height: calc(100dvh - max(8px, env(safe-area-inset-top, 8px))) !important;
    max-height: calc(100dvh - max(8px, env(safe-area-inset-top, 8px))) !important;
    border-radius: 18px 18px 0 0 !important;
    border: 1px solid rgba(255, 120, 145, 0.16) !important;
    border-bottom: none !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 auto !important;
    transform: none !important;
    overflow: hidden !important;
  }
  .modal-title {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.2;
  }
  .modal-subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.2rem;
  }
  .modal-mobile-switcher {
    padding: 0.55rem 0.85rem !important;
  }
  .modal-switcher-btn {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    padding: 0.55rem 0.5rem;
  }
  .hirael-mop-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.95);
  }
  .hirael-headline {
    font-size: 1.1rem;
    color: #ffffff;
  }
  .hirael-col {
    padding: 0.75rem 0.8rem 0.85rem;
  }
  .hirael-col-title {
    font-family: var(--font-sans);
    font-size: 0.80rem;
    color: #ffffff;
  }
  .hirael-list {
    gap: 0.5rem;
  }
  .hirael-list li {
    font-size: 0.83rem;
    line-height: 1.38;
    grid-template-columns: 16px 1fr;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.88);
  }
  .commission-status-badge {
    display: none;
  }
  .modifiers-ledger-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Artist Identity Hub Card (Inspired by shiinori.carrd.co & TeamMemberCard)
   ========================================================================== */
.artist-hub-container {
  position: fixed;
  inset: 0;
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
  padding: 1.5rem;
  overflow: hidden;
}

.artist-hub-container.hidden-hub {
  opacity: 0;
  pointer-events: none !important;
  visibility: hidden !important;
  transform: scale(0.96) translateY(14px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.35s;
}

.artist-hub-container.hidden-hub * {
  pointer-events: none !important;
}

.artist-hub-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: radial-gradient(circle at center, rgba(16, 14, 28, 0.65) 0%, rgba(8, 7, 16, 0.92) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}

/* Transparent Outer Glass Card Frame (Surrounding the Main Card) */
.editorial-outer-glass-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  padding: 54px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 120px -10px rgba(0, 0, 0, 0.96), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* WebGL2 Animated Fluid Shader Backgrounds */
.card-animated-gradient-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
}

.outer-gradient-bg {
  opacity: 0.72;
  mix-blend-mode: screen;
}

.animated-gradient-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.gradient-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAElBMVEUAAAAAAAAAAAAAAAAAAAAAAADgKxmiAAAABnRSTlMCCgkGBAVJOAVJAAAASklEQVQ4y2NgGAWjYBSMglEwCgY/YGRgZBQUYmJiZGQEkYwMjIyMgoKCjIyMIJKBgRFIMjIyAklGRkYGRkFBYEcwMDIyMjAOUQAA1I4HwVwZAkYAAAAASUVORK5CYII=");
  background-size: 160px;
  background-repeat: repeat;
  opacity: 0.045;
  pointer-events: none;
}

/* Main Inner Card - Faceted Obsidian Glass */
.editorial-card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  background: rgba(14, 4, 8, 0.68) !important;
  backdrop-filter: blur(28px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.94), 
              inset 0 1px 0 rgba(255, 255, 255, 0.22), 
              inset 0 0 50px rgba(180, 20, 35, 0.12);
  padding: 2.4rem 2.8rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Faceted Origami Mesh Background */
.card-faceted-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0.94;
  transition: opacity 0.5s ease;
}

.faceted-mesh-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.editorial-card-wrapper:hover .card-faceted-mesh {
  opacity: 1;
}

/* Subtle background accent glow */
.editorial-card-wrapper::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(220, 30, 48, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}


/* Editorial Top Job Label */
.editorial-job-row {
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.editorial-job-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin: 0;
}

/* Main Layout: 2-Column Balanced Grid */
.editorial-main-content {
  display: grid;
  grid-template-columns: 375px 385px;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* Portrait Column (Left Column with Overlapping Name) */
.editorial-portrait-col {
  position: relative;
  width: 375px;
  flex-shrink: 0;
}

/* Portrait Frame */
.editorial-portrait-frame {
  position: relative;
  width: 100%;
  height: 490px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.88), 0 0 35px rgba(220, 38, 38, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #141418;
}

.editorial-grain-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.05) 45%, transparent 70%);
}

.editorial-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-portrait-frame:hover .editorial-portrait-img {
  transform: scale(1.04);
}

/* Overlapping Name on Top of Portrait (as shown in reference) */
.editorial-name-overlay {
  position: absolute;
  top: -18px;
  left: 28px;
  right: 10px;
  z-index: 10;
  pointer-events: none;
}

.editorial-display-name {
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  line-height: 0.84;
  letter-spacing: -0.025em;
  color: #ffffff;
  user-select: none;
  position: relative;
}

.editorial-display-name .name-syr {
  display: block;
  font-family: 'Archivo', var(--font-sans);
  font-stretch: 62%;
  font-variation-settings: "wdth" 62, "wght" 800;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 3.6rem;
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.editorial-display-name .name-syrupy {
  display: block;
  font-family: 'Photograph Signature', cursive;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-top: -1.55rem;
  margin-left: 0.5rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
}

/* Info Column (Right Column, Balanced & Unified Alignment) */
.editorial-info-block {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 490px;
  width: 100%;
  max-width: 385px;
  margin: 0 auto;
  padding: 0.5rem 0 0.75rem;
  align-items: stretch;
}

/* Actions Section & Vertical Pill Stack (Aligned with column) */
.hub-pill-stack {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  width: 100%;
  max-width: 385px;
  margin: 0;
}

/* ==========================================================================
   Metallic Shader Button Architecture (Inspired by MetallicButton WebGL2)
   Liquid metallic chrome rim, chromatic dispersion, 3D pill layers
   ========================================================================== */
.metallic-btn-shell {
  width: 100%;
  position: relative;
  user-select: none;
  isolation: isolate;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(225, 29, 72, 0.75) 15%,
    rgba(255, 215, 230, 0.95) 30%,
    rgba(159, 18, 57, 0.85) 45%,
    rgba(255, 255, 255, 0.98) 60%,
    rgba(244, 63, 94, 0.75) 75%,
    rgba(255, 215, 230, 0.95) 90%,
    rgba(255, 255, 255, 0.98) 100%
  );
  background-size: 250% 250%;
  animation: metallicRimFlow 3.6s ease infinite;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 10px 18px rgba(0, 0, 0, 0.38), 0 0 14px rgba(225, 29, 72, 0.22);
  padding: 1.5px;
  box-sizing: border-box;
  display: block;
  cursor: pointer;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.metallic-btn-shell:hover,
.metallic-btn-shell.is-hovered {
  animation-duration: 1.6s;
  box-shadow: 0px 0px 0px 1px rgba(255, 200, 220, 0.85), 
              0 0 24px 3px rgba(225, 29, 72, 0.55), 
              0 0 40px 6px rgba(244, 63, 94, 0.35),
              0px 12px 24px 0px rgba(0, 0, 0, 0.55);
  transform: translateY(-1.5px);
}

.metallic-btn-shell:active,
.metallic-btn-shell.is-pressed {
  transform: translateY(1px) scale(0.985);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.65), 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
}

.metallic-btn-perspective {
  width: 100%;
  position: relative;
  border-radius: 9999px;
  pointer-events: auto;
}

.metallic-btn-layers {
  position: relative;
  width: 100%;
  min-height: 52px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #240812 0%, #0d0206 100%);
  box-shadow: inset 0 1px 1.5px rgba(255, 180, 200, 0.28), inset 0 -1px 2px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.22s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.metallic-btn-shell:hover .metallic-btn-layers,
.metallic-btn-shell.is-hovered .metallic-btn-layers {
  background: linear-gradient(180deg, #360c1b 0%, #15030a 100%);
  box-shadow: inset 0 1px 2px rgba(255, 200, 215, 0.45), inset 0 -1px 2px rgba(0, 0, 0, 0.9);
}

.metallic-btn-shell:active .metallic-btn-layers,
.metallic-btn-shell.is-pressed .metallic-btn-layers {
  background: linear-gradient(180deg, #18050c 0%, #070104 100%);
  box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.85), inset 0px 1px 2px rgba(0, 0, 0, 0.6);
  transform: translateY(1px) scale(0.985);
}

/* Specular Reflection Sweep across button face */
.metallic-btn-layers::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.04) 38%,
    rgba(255, 215, 230, 0.18) 46%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 215, 230, 0.18) 54%,
    rgba(255, 255, 255, 0.04) 62%,
    transparent 75%
  );
  transform: rotate(25deg);
  will-change: transform;
  animation: metallicFaceShine 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.metallic-btn-shell:hover .metallic-btn-layers::after,
.metallic-btn-shell.is-hovered .metallic-btn-layers::after {
  animation: metallicFaceShineFast 1.4s ease-in-out infinite;
}

@keyframes metallicRimFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes metallicFaceShine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  35%, 100% {
    transform: translateX(125%) rotate(25deg);
  }
}

@keyframes metallicFaceShineFast {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(125%) rotate(25deg);
  }
}

/* Redundant sublayers disabled in favor of GPU-accelerated CSS flow */
.metallic-rim-layer,
.metallic-face-layer {
  display: none !important;
  pointer-events: none !important;
}

/* Layer 3: Label Typography */
.metallic-label-layer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.5rem;
  pointer-events: none;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.85);
  transition: transform 0.2s ease, letter-spacing 0.25s ease, text-shadow 0.25s ease;
}

.metallic-label-layer,
.metallic-label-layer * {
  pointer-events: none !important;
}

.metallic-btn-shell:hover .metallic-label-layer,
.metallic-btn-shell.is-hovered .metallic-label-layer {
  letter-spacing: 0.22em;
  text-shadow: 0 0 12px rgba(255, 200, 220, 0.85), 0 0 24px rgba(225, 29, 72, 0.65);
}

/* Layer 4: Transparent Interactive Button overlay */
.metallic-interactive-btn.hub-pill-btn {
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 52px !important;
  background: rgba(0, 0, 0, 0.001) !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer !important;
  border-radius: 9999px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  touch-action: manipulation;
}

/* Click Ripple Effect */
.metallic-button-ripple {
  pointer-events: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: metallic-button-ripple 0.6s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

@keyframes metallic-button-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(6);
    opacity: 0;
  }
}

.hub-cta-wrapper {
  width: 100%;
  max-width: 365px;
  margin: 0;
}

.hub-commission-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  min-height: 50px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ffffff 0%, #fff1f3 48%, #fecdd3 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.28), 0 0 24px rgba(225, 29, 72, 0.15), inset 0 1px 1px #ffffff;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #1a0409;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.hub-commission-cta:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffe4e8 100%);
  box-shadow: 0 8px 28px rgba(225, 29, 72, 0.45), 0 0 35px rgba(225, 29, 72, 0.25), inset 0 1px 1px #ffffff;
  transform: translateY(-2px);
}

/* Contact block (Permanently removed) */
.hub-contact-block {
  display: none !important;
}

.hub-contact-block .contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.hub-contact-title {
  font-weight: 700;
  color: #a1a1aa;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.hub-contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.hub-contact-link:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.hub-contact-note {
  color: #a1a1aa;
  font-weight: 600;
  letter-spacing: 0.14em;
}

/* Floating Dock (Aceternity UI Magnification Dock) */
.floating-dock-wrapper {
  width: 100%;
  max-width: 365px;
  margin: 0;
  display: flex;
  justify-content: center;
}

.floating-dock-pill {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0.95rem;
  padding: 0.45rem 1rem;
  width: 100%;
  min-height: 52px;
  border-radius: 20px;
  background: rgba(20, 5, 11, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 120, 145, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 200, 215, 0.12), inset 0 0 24px rgba(180, 20, 40, 0.08);
}

.dock-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #280914 0%, #0f0207 100%);
  border: 1px solid rgba(255, 120, 145, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 180, 200, 0.2);
  color: #f3cbd3;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  transform-origin: center bottom;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  user-select: none;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent !important;
}

.dock-item::after {
  display: none !important;
  content: none !important;
}

.dock-item:hover {
  background: linear-gradient(180deg, #3d0d1e 0%, #1a030b 100%);
  border-color: rgba(255, 160, 180, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7), 0 0 16px rgba(225, 29, 72, 0.35), inset 0 1px 2px rgba(255, 200, 215, 0.35);
  color: #ffffff;
  mix-blend-mode: normal !important;
}

.dock-item:active {
  background: linear-gradient(180deg, #18050c 0%, #070104 100%);
  box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.85), inset 0px 1px 2px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
}

.dock-item-brand {
  background: transparent;
}

.dock-brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #ffffff;
  color: #09090b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.dock-item:hover .dock-brand-icon {
  transform: scale(1.05);
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.dock-vgen-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  opacity: 0.88;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), opacity 0.2s ease;
}

.dock-item:hover .dock-vgen-img {
  opacity: 1;
  transform: scale(1.08);
}

/* Tooltip on Hover */
.dock-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: #141418;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 50;
}

.dock-item:hover .dock-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hub-contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.hub-contact-link:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.hub-contact-note {
  color: #a1a1aa;
  font-weight: 600;
  letter-spacing: 0.16em;
}

/* Floating Hub Toggle Button (Metallic Chrome / Liquid Dispersion Architecture) */
.floating-hub-toggle {
  position: fixed;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  z-index: 10010;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.floating-hub-toggle.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-hub-shell.metallic-btn-shell {
  width: auto !important;
  min-width: 204px;
  display: inline-block;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.65), 0px 14px 32px rgba(0, 0, 0, 0.82), 0 0 18px rgba(225, 29, 72, 0.32);
}

.floating-hub-shell.metallic-btn-shell:hover,
.floating-hub-shell.metallic-btn-shell.is-hovered {
  box-shadow: 0px 0px 0px 1px rgba(255, 200, 220, 0.95), 
              0 0 30px 4px rgba(225, 29, 72, 0.65), 
              0 0 48px 8px rgba(244, 63, 94, 0.45),
              0px 16px 36px 0px rgba(0, 0, 0, 0.85);
  transform: translateY(-2px);
}

.floating-hub-shell.metallic-btn-shell:active,
.floating-hub-shell.metallic-btn-shell.is-pressed {
  transform: translateY(1px) scale(0.985);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.75), 0px 4px 10px 0px rgba(0, 0, 0, 0.6);
}

.floating-hub-shell .metallic-btn-layers {
  min-height: 48px;
  padding: 0 0.4rem;
}

.floating-hub-shell .metallic-label-layer {
  min-height: 48px;
  padding: 0.65rem 1.9rem;
  font-family: 'Syne', var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.floating-hub-shell.metallic-btn-shell:hover .metallic-label-layer,
.floating-hub-shell.metallic-btn-shell.is-hovered .metallic-label-layer {
  letter-spacing: 0.22em;
  text-shadow: 0 0 12px rgba(255, 200, 220, 0.9), 0 0 24px rgba(225, 29, 72, 0.7);
}

.floating-hub-shell .metallic-interactive-btn {
  min-height: 48px !important;
}

.floating-hub-text {
  display: inline-block;
  color: #ffffff;
}



@media (max-width: 860px) {
  .artist-hub-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding: max(8px, env(safe-area-inset-top, 8px)) 0.5rem max(8px, env(safe-area-inset-bottom, 8px));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  /* Completely remove preloader on mobile devices only */
  #preloader-overlay,
  .preloader-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .artist-hub-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .editorial-outer-glass-card {
    max-width: 410px;
    width: calc(100% - 8px);
    padding: 10px 10px 12px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    margin: auto;
  }

  .editorial-card-wrapper {
    padding: 0.9rem 1rem 1rem;
    max-width: 100%;
    width: 100%;
    background: rgba(14, 4, 8, 0.88) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2), 
                inset 0 0 35px rgba(180, 20, 35, 0.10);
    border-radius: 18px;
    overflow: visible !important;
    -webkit-overflow-scrolling: auto;
  }

  .editorial-job-row {
    text-align: center;
    padding-left: 0;
    margin-bottom: 0.4rem;
  }

  .editorial-job-label {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    color: #a1a1aa;
    line-height: 1.1;
  }

  .editorial-main-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-items: center;
    text-align: center;
  }

  .editorial-portrait-col {
    width: clamp(280px, 78vw, 328px);
    margin: 0 auto;
    position: relative;
  }

  .editorial-portrait-frame {
    width: 100%;
    height: clamp(296px, 36.5vh, 338px);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.88);
  }

  .editorial-portrait-img {
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  /* On mobile: name overlaps lower portrait edge with font pairing */
  .editorial-name-overlay {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: -2.15rem;
    z-index: 10;
    text-align: center;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .editorial-display-name {
    text-align: center;
    width: 100%;
    position: relative;
  }

  .editorial-display-name .name-syr {
    display: block;
    font-family: 'Archivo', var(--font-sans);
    font-stretch: 62%;
    font-variation-settings: "wdth" 62, "wght" 800;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.3rem;
    line-height: 0.85;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.95);
    text-align: center;
    margin: 0 auto;
  }

  .editorial-display-name .name-syrupy {
    display: block;
    font-family: 'Photograph Signature', cursive;
    font-weight: 400;
    font-size: 2.75rem;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
    text-align: center;
    margin: -1.05rem auto 0;
    white-space: nowrap;
  }

  .editorial-info-block {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 0;
    margin-top: 0.25rem;
    gap: 0.5rem;
    width: 100%;
  }

  .hub-pill-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
  }

  .metallic-btn-shell {
    width: 100%;
    border-radius: 9999px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(225, 29, 72, 0.75) 15%,
      rgba(255, 215, 230, 0.95) 30%,
      rgba(159, 18, 57, 0.85) 45%,
      rgba(255, 255, 255, 0.98) 60%,
      rgba(244, 63, 94, 0.75) 75%,
      rgba(255, 215, 230, 0.95) 90%,
      rgba(255, 255, 255, 0.98) 100%
    );
    background-size: 250% 250%;
    animation: metallicRimFlow 3.6s ease infinite;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 5px 12px rgba(0, 0, 0, 0.35);
    padding: 1.25px;
    box-sizing: border-box;
    display: block;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .metallic-btn-perspective {
    width: 100%;
    border-radius: 9999px;
    pointer-events: auto;
  }

  .metallic-btn-layers {
    width: 100%;
    min-height: 44px;
    border-radius: 9999px;
    background: linear-gradient(180deg, #240812 0%, #0d0206 100%);
    box-shadow: inset 0 1px 1px rgba(255, 180, 200, 0.24), inset 0 -1px 2px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .metallic-btn-layers::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      110deg,
      transparent 25%,
      rgba(255, 255, 255, 0.04) 38%,
      rgba(255, 215, 230, 0.18) 46%,
      rgba(255, 255, 255, 0.32) 50%,
      rgba(255, 215, 230, 0.18) 54%,
      rgba(255, 255, 255, 0.04) 62%,
      transparent 75%
    );
    transform: rotate(25deg);
    animation: metallicFaceShine 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
  }

  .metallic-btn-shell:active .metallic-btn-layers {
    background: linear-gradient(180deg, #16040b 0%, #060103 100%);
    transform: translateY(1px) scale(0.98);
  }

  .metallic-rim-layer {
    display: none;
    pointer-events: none !important;
  }

  .metallic-face-layer {
    display: none;
    pointer-events: none !important;
  }

  .metallic-label-layer,
  .metallic-label-layer * {
    pointer-events: none !important;
  }

  .metallic-label-layer {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0.45rem 0.65rem;
    font-family: 'Syne', var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    white-space: nowrap;
    color: #ffffff;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.85);
  }

  .metallic-interactive-btn.hub-pill-btn {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 44px !important;
    z-index: 10 !important;
    background: rgba(0, 0, 0, 0.001) !important;
    border: none !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
  }

  .hub-cta-wrapper {
    width: 100%;
    max-width: 328px;
    margin: 0.45rem auto 0;
  }

  .hub-commission-cta {
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-family: 'Syne', var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #ffffff 0%, #fff1f3 48%, #fecdd3 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 18px rgba(225, 29, 72, 0.28), inset 0 1px 1px #ffffff;
    color: #1a0409;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
  }

  .hub-contact-block {
    display: none !important;
  }

  .floating-dock-wrapper {
    width: 100%;
    max-width: 328px;
    margin: 0.65rem auto 0;
  }

  .floating-dock-pill {
    padding: 0.35rem 0.85rem;
    gap: 0.75rem;
    justify-content: space-evenly;
    min-height: 44px;
    border-radius: 20px;
    background: rgba(20, 5, 11, 0.92);
    border: 1px solid rgba(255, 120, 145, 0.16);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 200, 215, 0.12);
  }

  .dock-item {
    width: 34px;
    height: 34px;
  }

  .dock-brand-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .dock-vgen-img {
    width: 18px;
    height: 18px;
  }

  .floating-hub-toggle {
    bottom: calc(2.2rem + env(safe-area-inset-bottom, 16px));
    padding: 0;
    min-height: unset;
    font-size: unset;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .floating-hub-shell.metallic-btn-shell {
    width: auto !important;
    min-width: 176px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.65), 0px 8px 20px rgba(0, 0, 0, 0.65), 0 0 14px rgba(225, 29, 72, 0.28);
  }

  .floating-hub-shell .metallic-btn-layers {
    min-height: 44px;
  }

  .floating-hub-shell .metallic-label-layer {
    min-height: 44px;
    padding: 0.5rem 1.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .floating-hub-shell .metallic-interactive-btn {
    min-height: 44px !important;
  }
}



