/* ==========================================================
   THE JOYA COLLECTION — Damien Hirst Showcase
   Dark Gallery Aesthetic
   ========================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colours */
  --color-bg: #0a0a0a;
  --color-bg-elevated: #111111;
  --color-bg-card: #161616;
  --color-surface: #1a1a1a;
  --color-border: #2a2a2a;
  --color-border-subtle: #1f1f1f;
  --color-text-primary: #f0ece4;
  --color-text-secondary: #9a9590;
  --color-text-muted: #5c5856;
  --color-gold: #c9a96e;
  --color-gold-light: #dfc08a;
  --color-gold-dark: #a08050;
  --color-gold-dim: rgba(201, 169, 110, 0.08);
  --color-glow: rgba(201, 169, 110, 0.15);
  --color-accent: #e8d5b7;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 72px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

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

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

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  display: flex;
  gap: 2px;
}

.preloader-letter {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderReveal 0.6s var(--ease-out-expo) forwards;
}

@keyframes preloaderReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-letter[data-index="3"],
.preloader-letter[data-index="8"] {
  width: 0.3em;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin-top: var(--space-sm);
  transform: scaleX(0);
  animation: preloaderLine 1s var(--ease-out-expo) 0.8s forwards;
}

@keyframes preloaderLine {
  to { transform: scaleX(1); }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border-subtle);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  transition: color 0.3s;
}

.nav-logo:hover {
  color: var(--color-gold);
}

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

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--color-text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text-primary);
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.nav-hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text-secondary);
  transition: color 0.3s, transform 0.4s var(--ease-out-expo);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.is-open .mobile-menu-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(3) { transition-delay: 0.3s; }

.mobile-menu-link:hover {
  color: var(--color-gold);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Placeholder: Replace with actual hero image */
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0) 0%, var(--color-bg) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.1) 40%,
    rgba(10, 10, 10, 0.6) 80%,
    var(--color-bg) 100%
  );
}

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

.hero-overline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeUp 1s var(--ease-out-expo) 1.8s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.hero-title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1.2s var(--ease-out-expo) 2s forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out-expo) 2.3s forwards;
}

.hero-subtitle em {
  font-style: italic;
  color: var(--color-text-primary);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-dark);
  padding: 16px 32px;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out-expo) 2.6s forwards;
}

.hero-cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

.hero-cta-arrow {
  transition: transform 0.3s var(--ease-out-expo);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 3s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  animation: scrollLineMove 2s var(--ease-in-out) infinite;
}

@keyframes scrollLineMove {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Quote Section --- */
.quote-section {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.quote {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary);
}

.quote cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-overline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.section-description {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Collection Section --- */
.collection {
  padding: var(--space-3xl) 0;
}

/* --- Work Card --- */
.work {
  margin-bottom: var(--space-3xl);
}

.work:last-of-type {
  margin-bottom: 0;
}

.work-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl) var(--space-2xl);
  align-items: start;
}

/* Reverse layout for alternate works */
.work-reverse .work-layout {
  direction: rtl;
}

.work-reverse .work-layout > * {
  direction: ltr;
}

.work-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.work-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  position: relative;
  overflow: hidden;
}

/* Placeholder patterns - Replace with actual <img> tags */
.work-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, var(--color-gold-dim) 0%, transparent 70%);
  opacity: 0.5;
}

.placeholder-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-muted);
  z-index: 1;
}

/* Gold border frame effect */
.work-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.5s;
}

.work-image-wrapper:hover::before {
  border-color: var(--color-gold-dark);
}

.work-edition-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border: 1px solid var(--color-border);
}

/* Work Details */
.work-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.work-work-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.work-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-subtle);
}

.meta-item {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-text-secondary);
}

.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-text-muted);
  flex-shrink: 0;
}

.work-description {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.work-description:last-of-type {
  margin-bottom: var(--space-lg);
}

/* Provenance callout inside work cards */
.work-provenance {
  background: var(--color-gold-dim);
  border: 1px solid var(--color-border-subtle);
  border-left: 2px solid var(--color-gold);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.provenance-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gold-light);
  margin-bottom: 6px;
}

.provenance-text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* Tags */
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-lg);
}

.tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  transition: all 0.3s;
}

.tag:hover {
  color: var(--color-gold);
  border-color: var(--color-gold-dark);
  background: var(--color-gold-dim);
}

/* Collection CTA */
.collection-cta {
  text-align: center;
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border-subtle);
}

.collection-cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.collection-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 18px 40px;
  transition: all 0.4s var(--ease-out-expo);
}

.collection-cta-btn:hover {
  background: transparent;
  color: var(--color-gold);
}

.collection-cta-btn svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.collection-cta-btn:hover svg {
  transform: translateX(4px);
}

/* --- Provenance Section --- */
.provenance {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.provenance-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.provenance-card {
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all 0.4s var(--ease-out-expo);
}

.provenance-card:hover {
  border-color: var(--color-gold-dark);
  transform: translateY(-4px);
}

.provenance-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.provenance-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.provenance-card-text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* --- Inquire Section --- */
.inquire {
  padding: var(--space-3xl) 0;
}

.inquire-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.inquire-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  width: 100%;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus {
  border-color: var(--color-gold-dark);
  box-shadow: 0 0 0 1px var(--color-gold-dark);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239a9590' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-submit {
  margin-top: var(--space-sm);
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 18px 40px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.form-submit-btn:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn-arrow {
  transition: transform 0.3s var(--ease-out-expo);
}

.form-submit-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.form-status {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  min-height: 1.5em;
}

.form-status.is-success {
  color: #4ade80;
}

.form-status.is-error {
  color: #f87171;
}

/* --- Footer --- */
.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border-subtle);
  text-align: center;
}

.footer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-primary);
}

.footer-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-muted);
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-text-secondary);
}

.footer-year {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.footer-disclaimer {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: var(--space-md) auto 0;
  line-height: 1.6;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .work-layout {
    gap: var(--space-lg);
  }

  .provenance-content {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .provenance-card:hover {
    transform: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav {
    padding: 0 var(--space-md);
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .work-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .work-reverse .work-layout {
    direction: ltr;
  }

  .work-image-wrapper {
    aspect-ratio: 3 / 4;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .collection-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-indicator {
    bottom: var(--space-lg);
  }

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

  .quote p {
    font-size: 1.15rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-overline {
    font-size: 0.6rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .work-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .meta-dot {
    display: none;
  }
}
