/* ============================================
   MICKEY ROBERTS ART
   mickeyrobertsart.com
   Bold & Expressive — Custom Build
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #121212;
  --bg2: #1a1a1a;
  --bg3: #0e0e0e;
  --border: #2a2a2a;
  --text: #e8ddd0;
  --muted: #666666;
  --faint: #444444;
  --accent: #e8ddd0;
  --font: 'Raleway', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}

.nav-logo {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cart {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 0.5px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-cart:hover { color: var(--text); border-color: var(--muted); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }

/* ─────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────── */
.page { padding-top: 64px; }

/* ─────────────────────────────────────────
   HERO — HOMEPAGE
───────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 64px);
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18,18,18,0.82) 0%,
    rgba(18,18,18,0.5) 50%,
    rgba(18,18,18,0.2) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 64px;
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 15px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 400px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  background: transparent;
  color: var(--muted);
  border: 0.5px solid var(--border);
}
.btn-outline:hover { color: var(--text); border-color: var(--muted); }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 64px;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 20px;
  height: 2px;
  background: var(--faint);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active {
  background: var(--text);
  width: 36px;
}

/* ─────────────────────────────────────────
   ANNOUNCEMENT STRIP
───────────────────────────────────────── */
.strip {
  background: var(--bg3);
  border-bottom: 0.5px solid var(--border);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.strip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4a9a7a;
  flex-shrink: 0;
}
.strip-text {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.strip-link {
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.strip-link:hover { opacity: 0.7; }

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section {
  padding: 80px 48px;
  border-bottom: 0.5px solid var(--border);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-action {
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.section-action:hover { opacity: 0.7; }

/* ─────────────────────────────────────────
   WORK GRID
───────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-item {
  cursor: pointer;
  position: relative;
}

.work-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
  margin-bottom: 12px;
  position: relative;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
}
.work-item:hover .work-thumb img {
  transform: scale(1.03);
  opacity: 0.88;
}

.work-sold-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(18,18,18,0.9);
  border: 0.5px solid var(--border);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 8px;
}

.work-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-price {
  font-size: 12px;
  color: var(--muted);
}
.work-price.sold { text-decoration: line-through; }

.work-commission {
  font-size: 10px;
  color: #4a9a7a;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.work-commission:hover { opacity: 0.7; }

/* Sold CTA banner */
.sold-cta {
  margin-top: 48px;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sold-cta-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.sold-cta-text strong { color: var(--text); font-weight: 500; }

/* ─────────────────────────────────────────
   EMAIL CAPTURE
───────────────────────────────────────── */
.email-section {
  background: var(--bg3);
  padding: 80px 48px;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}

.email-headline {
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.email-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.email-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--muted); }
.email-input::placeholder { color: var(--faint); }

/* ─────────────────────────────────────────
   ABOUT SECTION (homepage strip)
───────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.about-meta-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.about-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.about-loc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.about-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-social-link {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.about-social-link:hover { color: var(--text); }
.about-social-link::before { content: '→'; }

.about-bio-text {
  font-size: 14px;
  color: #888;
  line-height: 1.85;
}
.about-bio-text strong { color: var(--text); font-weight: 500; }
.about-bio-text em { font-style: italic; }

/* ─────────────────────────────────────────
   CONTACT SECTION (homepage)
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-headline {
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-type {
  padding: 18px 20px;
  border: 0.5px solid var(--border);
}

.contact-type-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-type-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--bg3);
  border-top: 0.5px solid var(--border);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  padding: 80px 48px 48px;
  border-bottom: 0.5px solid var(--border);
}

.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-page-bio {
  font-size: 15px;
  color: #888;
  line-height: 1.85;
}
.about-page-bio strong { color: var(--text); font-weight: 500; }
.about-page-bio p + p { margin-top: 20px; }

.about-page-sidebar {}

.sidebar-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid var(--border);
}
.sidebar-block:last-child { border-bottom: none; }

.sidebar-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-link {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.sidebar-link:hover { color: var(--text); }
.sidebar-link::before { content: '→'; color: var(--muted); }

/* ─────────────────────────────────────────
   COLLECT PAGE
───────────────────────────────────────── */
.collect-content {
  max-width: 680px;
}

.collect-content h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.collect-content p {
  font-size: 15px;
  color: #888;
  line-height: 1.85;
  margin-bottom: 16px;
}

.collect-content p + p { margin-top: 0; }

/* ─────────────────────────────────────────
   WRITING PAGE
───────────────────────────────────────── */
.writing-content {
  max-width: 600px;
}

.writing-content p {
  font-size: 15px;
  color: #888;
  line-height: 1.85;
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--muted); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--faint); }

.form-textarea { min-height: 140px; }

.form-submit {
  align-self: flex-start;
  font-family: var(--font);
}

.form-success {
  display: none;
  padding: 16px;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  font-size: 14px;
  color: #4a9a7a;
}

/* ─────────────────────────────────────────
   WORK PAGE (full gallery)
───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.82;
}

.gallery-item-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(12,12,12,0.95));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item-info { transform: translateY(0); }

.gallery-item-title {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}

.gallery-item-price {
  font-size: 12px;
  color: var(--muted);
}

.gallery-sold-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(12,12,12,0.9);
  border: 0.5px solid var(--border);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 8px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,8,8,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  gap: 40px;
  align-items: center;
}

.lightbox-img {
  max-height: 85vh;
  max-width: 60vw;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-info {
  min-width: 220px;
  max-width: 280px;
}

.lightbox-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.lightbox-price {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--text); }

/* Enhanced lightbox info */
.lightbox-materials {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 6px;
  font-style: italic;
}
.lightbox-dimensions {
  font-size: 12px;
  color: var(--faint);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.lightbox-price-tag {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}
.lightbox-price-tag.sold-tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.lightbox-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 16px 0;
}

/* ─────────────────────────────────────────
   PRICE FILTER TABS
───────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 48px;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg3);
}
.filter-btn {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 0.5px solid var(--border);
  padding: 7px 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}
.filter-btn:hover { color: var(--text); border-color: var(--muted); }
.filter-btn.active { color: var(--bg); background: var(--text); border-color: var(--text); }
.gallery-item.hidden { display: none; }

/* ─────────────────────────────────────────
   PRESS PAGE
───────────────────────────────────────── */
.press-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 64px 48px;
  border-bottom: 0.5px solid var(--border);
}
.press-entry:nth-child(even) { direction: rtl; }
.press-entry:nth-child(even) > * { direction: ltr; }

.press-meta {}
.press-date {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.press-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.press-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
}
.press-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 0.5px solid var(--border);
  padding: 4px 10px;
  margin-top: 20px;
}
.press-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.press-images.single { grid-template-columns: 1fr; }
.press-images.triple { grid-template-columns: 1fr 1fr; }
.press-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
}
.press-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.press-img:first-child:nth-last-child(3),
.press-img:first-child:nth-last-child(3) ~ .press-img {
  /* 3 images: first spans full width */
}
.press-img.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ─────────────────────────────────────────
   PRINTS PAGE
───────────────────────────────────────── */
.prints-intro {
  max-width: 600px;
  margin-bottom: 48px;
}
.prints-intro p {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  margin-bottom: 12px;
}
.prints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.print-item {
  display: flex;
  flex-direction: column;
}
.print-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
  margin-bottom: 16px;
}
.print-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.print-thumb:hover img { opacity: 0.85; }
.print-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.print-edition {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.print-price-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}
.print-size-price {
  font-size: 12px;
  color: #888;
  display: flex;
  justify-content: space-between;
}
.print-size-price span:last-child { color: var(--text); }

/* About page photo */
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg2);
  margin-bottom: 24px;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ─────────────────────────────────────────
   RESPONSIVE — additions
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .press-entry { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
  .press-entry > * { direction: ltr !important; }
  .prints-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { padding: 16px 24px; }
}
@media (max-width: 768px) {
  .prints-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .press-entry { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .prints-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .work-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip,
  .about-page-grid,
  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { left: 24px; right: 24px; bottom: 60px; }
  .hero-dots { left: 24px; }

  .section { padding: 56px 24px; }
  .strip { padding: 12px 24px; }
  .page-hero { padding: 56px 24px 40px; }

  .work-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .sold-cta { flex-direction: column; align-items: flex-start; }

  .email-form { flex-direction: column; }
  .email-input { width: 100%; }

  footer { padding: 20px 24px; flex-direction: column; gap: 16px; text-align: center; }

  .lightbox-inner { flex-direction: column; max-width: 95vw; }
  .lightbox-img { max-width: 90vw; max-height: 60vh; }
  .lightbox-info { min-width: unset; }
}

@media (max-width: 480px) {
  .work-grid,
  .gallery-grid { grid-template-columns: 1fr; }
}
.hero-slide:nth-child(1) img {
  object-position: center;
}

.hero-slide:nth-child(2) img {
  object-position: center top;
}

.hero-slide:nth-child(3) img {
  object-position: 100% 20%;
}