/*
 * HASLUN STUDIO REGISTRY
 * Design System v1.0
 * 
 * Typography: Cormorant Garamond (display) + DM Sans (body)
 * Palette: Warm paper, vermillion accents, ink blacks
 * Philosophy: Gallery-quality, warm, crafted
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */

:root {
  /* Paper & Ground */
  --paper: #faf9f7;
  --paper-warm: #f5f3ef;
  --paper-cream: #fffef9;
  --parchment: #e8e4dc;
  
  /* Ink & Text */
  --ink: #1a1816;
  --ink-light: #3d3a36;
  --ink-faded: #6b6560;
  --ink-ghost: #9a958e;
  
  /* Vermillion (from peacock painting) */
  --vermillion: #e94a1b;
  --vermillion-deep: #c43d15;
  --vermillion-glow: #ff6b3d;
  --vermillion-wash: rgba(233, 74, 27, 0.08);
  
  /* Peacock Blue */
  --peacock: #2b5a7c;
  --peacock-deep: #1e4560;
  --peacock-light: #4a7a9c;
  
  /* Seal Red (印章) */
  --seal-red: #c23a2e;
  --seal-red-light: #e85a4e;
  
  /* Forest Green (from 哈史林 meaning) */
  --forest: #2d5a27;
  --forest-light: #4a7a44;
  
  /* Status Colors */
  --status-available: var(--forest);
  --status-sold: var(--ink-faded);
  --status-pending: #b45309;
  --status-artist: var(--peacock);
  
  /* Shadows & Depth */
  --shadow-soft: 0 2px 8px rgba(26, 24, 22, 0.06);
  --shadow-medium: 0 4px 20px rgba(26, 24, 22, 0.08);
  --shadow-lifted: 0 8px 30px rgba(26, 24, 22, 0.12);
  
  /* Borders */
  --border-light: rgba(26, 24, 22, 0.08);
  --border-medium: rgba(26, 24, 22, 0.12);
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  
  /* Timing */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  
  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 680px;
  --max-width-prose: 540px;
}


/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: var(--vermillion-wash);
  color: var(--ink);
}


/* ============================================
   TYPOGRAPHY
   ============================================ */

.font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

h1, .h1 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h2, .h2 { font-size: var(--text-4xl); letter-spacing: -0.01em; }
h3, .h3 { font-size: var(--text-3xl); }
h4, .h4 { font-size: var(--text-2xl); }
h5, .h5 { font-size: var(--text-xl); }
h6, .h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-md);
}

.lead {
  font-size: var(--text-xl);
  color: var(--ink-light);
  line-height: 1.5;
}

.small, small {
  font-size: var(--text-sm);
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faded);
}

.mono {
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

a {
  color: var(--vermillion);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--vermillion-deep);
}


/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.container-prose {
  max-width: var(--max-width-prose);
}

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

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


/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-lg) 0;
  background: rgba(250, 249, 247, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand:hover {
  color: var(--vermillion);
}

.brand-seal {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.nav-cta {
  padding: var(--space-sm) var(--space-lg);
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--vermillion);
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--vermillion);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--paper-warm);
}

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

.btn-vermillion:hover {
  background: var(--vermillion-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-light);
}

.btn-ghost:hover {
  color: var(--ink);
  background: var(--paper-warm);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-xs);
}


/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--paper-cream);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-soft);
}

.card-elevated {
  background: white;
  box-shadow: var(--shadow-soft);
  border: none;
}

.card-elevated:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}


/* ============================================
   FORMS
   ============================================ */

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

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: var(--space-sm);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--ink);
  background: white;
  border: 1px solid var(--border-medium);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--vermillion);
  box-shadow: 0 0 0 3px var(--vermillion-wash);
}

.form-input::placeholder {
  color: var(--ink-ghost);
}

.form-hint {
  font-size: var(--text-sm);
  color: var(--ink-faded);
  margin-top: var(--space-xs);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}


/* ============================================
   STATUS BADGES
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.badge-available {
  background: rgba(45, 90, 39, 0.1);
  color: var(--forest);
}

.badge-sold {
  background: var(--parchment);
  color: var(--ink-faded);
}

.badge-pending {
  background: rgba(180, 83, 9, 0.1);
  color: #92400e;
}

.badge-artist {
  background: rgba(43, 90, 124, 0.1);
  color: var(--peacock);
}

.badge-vermillion {
  background: var(--vermillion-wash);
  color: var(--vermillion-deep);
}


/* ============================================
   TABLES
   ============================================ */

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

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

.table th,
.table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.table th {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faded);
  background: var(--paper-warm);
}

.table tbody tr {
  transition: background var(--transition-fast);
}

.table tbody tr:hover {
  background: var(--paper-warm);
}

.table .mono {
  font-size: var(--text-xs);
  color: var(--ink-faded);
  background: var(--parchment);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}


/* ============================================
   EDITION HERO
   ============================================ */

.edition-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.edition-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.edition-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(1.2);
}

.edition-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 249, 247, 0) 0%,
    rgba(250, 249, 247, 0.8) 70%,
    rgba(250, 249, 247, 1) 100%
  );
}

.edition-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  max-width: 800px;
}

.edition-hero-eyebrow {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--vermillion);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: var(--space-xl);
}

.edition-hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: var(--space-md);
}

.edition-hero-subtitle {
  font-size: var(--text-xl);
  color: var(--ink-light);
  margin-bottom: var(--space-2xl);
}

.edition-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.edition-meta-item {
  text-align: center;
}

.edition-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--ink);
}

.edition-meta-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faded);
}

.edition-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}


/* ============================================
   PRICING DISPLAY
   ============================================ */

.price-range {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.price-range-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--ink);
}

.price-range-separator {
  font-size: var(--text-xl);
  color: var(--ink-faded);
}

.price-note {
  font-size: var(--text-sm);
  color: var(--ink-faded);
  font-style: italic;
}


/* ============================================
   PURCHASE FORM
   ============================================ */

.purchase-section {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lifted);
  padding: var(--space-2xl);
  margin: var(--space-3xl) auto;
  max-width: 560px;
}

.purchase-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.print-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.print-option {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-lg);
  font-weight: 600;
  border: 2px solid var(--border-medium);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.print-option:hover:not(.sold):not(.selected) {
  border-color: var(--ink);
  background: var(--paper-warm);
}

.print-option.selected {
  border-color: var(--vermillion);
  background: var(--vermillion);
  color: white;
}

.print-option.sold {
  background: var(--parchment);
  color: var(--ink-ghost);
  cursor: not-allowed;
  text-decoration: line-through;
}

.price-slider-container {
  margin: var(--space-xl) 0;
}

.price-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.price-slider-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-3xl);
  font-weight: 600;
}

.price-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--parchment);
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vermillion);
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-fast);
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.price-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vermillion);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-medium);
}


/* ============================================
   LEDGER
   ============================================ */

.ledger-header {
  text-align: center;
  padding: calc(80px + var(--space-4xl)) 0 var(--space-2xl);
}

.ledger-title {
  margin-bottom: var(--space-sm);
}

.ledger-subtitle {
  color: var(--ink-faded);
  font-size: var(--text-lg);
}

.ledger-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}

.ledger-stat {
  background: white;
  border-radius: 8px;
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.ledger-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--vermillion);
}

.ledger-stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faded);
  margin-top: var(--space-xs);
}


/* ============================================
   TERMS BOX
   ============================================ */

.terms-box {
  background: var(--paper-warm);
  border-left: 3px solid var(--vermillion);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  border-radius: 0 6px 6px 0;
}

.terms-box-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.terms-box p {
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin: 0;
}


/* ============================================
   COLLECTOR PORTAL
   ============================================ */

.portal-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.portal-login-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lifted);
  padding: var(--space-2xl);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.portal-login-title {
  margin-bottom: var(--space-sm);
}

.portal-login-subtitle {
  color: var(--ink-faded);
  margin-bottom: var(--space-xl);
}


/* ============================================
   SEAL MOTIF
   ============================================ */

.seal-decoration {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-lg);
  opacity: 0.8;
}

.seal-watermark {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 60px;
  height: 60px;
  opacity: 0.1;
  pointer-events: none;
}


/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--paper-warm);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.footer-brand-tagline {
  font-size: var(--text-sm);
  color: var(--ink-faded);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--ink-light);
}

.footer-legal {
  width: 100%;
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
}

.footer-legal-text {
  font-size: var(--text-xs);
  color: var(--ink-ghost);
  max-width: 600px;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--ink-ghost);
  margin-top: var(--space-md);
}


/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease forwards;
}

.animate-slide-up {
  animation: slideUp var(--transition-slow) ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-ink { color: var(--ink); }
.text-faded { color: var(--ink-faded); }
.text-vermillion { color: var(--vermillion); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

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


/* ============================================
   COLOPHON
   ============================================ */

.colophon {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--border-light);
}

.colophon-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.colophon-mark {
  font-size: var(--text-2xl);
  color: var(--vermillion);
  margin-bottom: var(--space-lg);
  opacity: 0.8;
}

.colophon h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-lg);
  color: var(--ink);
}

.colophon p {
  font-size: var(--text-base);
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.colophon-cta {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  background: var(--ink);
  color: var(--paper);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.colophon-cta:hover {
  background: var(--vermillion);
  color: white;
  transform: translateY(-1px);
}

.colophon-credit {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
  font-size: var(--text-sm);
  color: var(--ink-ghost);
}

.colophon-credit a {
  color: var(--ink-faded);
}

.colophon-credit a:hover {
  color: var(--vermillion);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .edition-hero-meta {
    gap: var(--space-lg);
  }
  
  .print-selector {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .nav {
    display: none;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .print-selector {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xs);
  }
  
  .print-option {
    font-size: var(--text-base);
  }
}
