/* adamgedney.art — Mobile-first stylesheet */

:root {
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #888888;
  --light-gray: #e8e8e8;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --nav-height: 100px;
}

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

html {
  font-size: 19px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--black);
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
  transition: opacity 0.2s;
}

/* ── NAVIGATION ─────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: letter-spacing 0.35s ease, opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.55;
  letter-spacing: 0.18em;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}

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

.mobile-menu a {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

/* ── PAGE WRAPPER ────────────────────────────────────────── */

.page-body {
  padding-top: var(--nav-height);
}

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

/* ── HMA CALLOUT ─────────────────────────────────────────── */

.hma-callout {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 20px 24px;
  border-bottom: 1px solid var(--light-gray);
}

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  padding: 0 40px;
  text-shadow: 0 1px 6px rgba(0,0,0,1), 0 4px 32px rgba(0,0,0,0.9);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.hero-text p:not(.hero-eyebrow) {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.8;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.hero-text p + p {
  margin-top: 24px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.40);
}

.hero-watermark {
  display: none;
  position: absolute;
  top: 32px;
  right: 32px;
  height: 56px;
  width: auto;
  opacity: 0.18;
  filter: invert(1);
  z-index: 2;
  pointer-events: none;
}

/* ── SECTIONS ────────────────────────────────────────────── */

section {
  padding: 80px 24px;
}

.section-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 48px;
}

/* ── COLLECTIONS GRID ────────────────────────────────────── */

.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.collection-item {
  display: block;
  cursor: pointer;
}

.collection-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.collection-item:hover img {
  opacity: 0.85;
}

.collection-item h2 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.collection-item p {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── EXHIBITIONS ─────────────────────────────────────────── */

.exhibitions {
  max-width: var(--max-width);
  margin: 0 auto;
}

.exhibition-list {
  list-style: none;
}

.exhibition-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  gap: 32px;
  align-items: baseline;
}

.exhibition-list li:first-child {
  border-top: 1px solid var(--light-gray);
}

.exhibition-year {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray);
  min-width: 40px;
}

.exhibition-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}

/* ── ABOUT ───────────────────────────────────────────────── */

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about-portrait {
  width: 100%;
  max-width: 380px;
  height: auto;
}

.about-text h2 {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.about-text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
}

.about-text p + p {
  margin-top: 20px;
}

/* ── FOOTER ──────────────────────────────────────────────── */

.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--light-gray);
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gray);
}

.site-footer a {
  color: var(--gray);
}

/* ── COLLECTION PAGES ────────────────────────────────────── */

.collection-header {
  padding: 60px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.collection-header h1 {
  font-size: clamp(23px, 4vw, 39px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.collection-header p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 0 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.photo-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.photo-item {
  cursor: pointer;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.photo-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.photo-item:hover img {
  opacity: 0.88;
}

/* ── LIGHTBOX ────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
}

.lightbox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 24px 80px;
  gap: 0;
  flex-direction: column;
}

.lightbox-image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.lightbox-image-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-info {
  padding-top: 20px;
  text-align: center;
  flex-shrink: 0;
}

.lightbox-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.lightbox-meta {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.lightbox-inquire {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  padding: 10px 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.32s ease;
}

.lightbox-inquire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
  z-index: -1;
}

.lightbox-inquire:hover {
  color: var(--white);
  opacity: 1;
}

.lightbox-inquire:hover::before {
  transform: scaleX(1);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 27px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  padding: 8px;
  z-index: 10;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 23px;
  color: var(--gray);
  padding: 16px 12px;
  z-index: 10;
  transition: color 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--black);
}

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ── INQUIRIES PAGE ──────────────────────────────────────── */

.inquiries-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.inquiries-page h1 {
  font-size: clamp(23px, 4vw, 35px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.inquiries-page .intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 48px;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  padding: 10px 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  outline: none;
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '↓';
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 15px;
  color: var(--gray);
  pointer-events: none;
}

.btn-submit {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--black);
  padding: 14px 40px;
  cursor: pointer;
  color: var(--black);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.32s ease;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
  z-index: -1;
}

.btn-submit:hover {
  color: var(--white);
}

.btn-submit:hover::before {
  transform: scaleX(1);
}

/* ── ADMIN PAGE ──────────────────────────────────────────── */

.admin-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.admin-page h1 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

.admin-login {
  max-width: 360px;
}

.admin-login input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  padding: 10px 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  background: transparent;
  outline: none;
  margin-bottom: 20px;
  color: var(--black);
}

.admin-builder {
  display: none;
}

.admin-builder.visible {
  display: block;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-field {
  margin-bottom: 24px;
}

.admin-field label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.admin-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  padding: 8px 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  background: transparent;
  outline: none;
  color: var(--black);
  transition: border-color 0.2s;
}

.admin-field input:focus {
  border-color: var(--black);
}

.fee-display {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  margin: -12px 0 24px;
  height: 20px;
}

.btn-generate {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 32px;
}

.btn-generate:hover {
  background: #333;
}

.generated-link {
  display: none;
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 40px;
}

.generated-link.visible {
  display: block;
}

.generated-link label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 8px;
}

.link-text {
  font-size: 15px;
  font-weight: 300;
  word-break: break-all;
  margin-bottom: 12px;
  color: var(--black);
}

.btn-copy {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--black);
  padding: 8px 20px;
  cursor: pointer;
  color: var(--black);
  transition: background 0.2s, color 0.2s;
}

.btn-copy:hover {
  background: var(--black);
  color: var(--white);
}

.recent-links h3 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.recent-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.recent-item-info {
  font-size: 16px;
  font-weight: 300;
}

.recent-item-meta {
  font-size: 14px;
  color: var(--gray);
  margin-top: 2px;
}

.recent-item-copy {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--light-gray);
  padding: 5px 12px;
  cursor: pointer;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── PAY PAGE ────────────────────────────────────────────── */

.pay-page {
  max-width: 520px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.pay-logo {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 60px;
  display: block;
}

.invoice-header {
  margin-bottom: 40px;
}

.invoice-header h1 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.invoice-num {
  font-size: 17px;
  font-weight: 300;
}

.invoice-section {
  margin-bottom: 32px;
}

.invoice-section-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.invoice-section-value {
  font-size: 18px;
  font-weight: 300;
}

.invoice-table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
}

.invoice-table tr {
  border-bottom: 1px solid var(--light-gray);
}

.invoice-table td {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 300;
}

.invoice-table td:last-child {
  text-align: right;
}

.invoice-table .total-row td {
  font-size: 18px;
  font-weight: 400;
  border-bottom: none;
  padding-top: 20px;
}

.invoice-table .fee-row td {
  font-size: 15px;
  color: var(--gray);
}

.btn-pay {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  padding: 18px 40px;
  cursor: pointer;
  margin-top: 32px;
  transition: background 0.2s;
  text-align: center;
}

.btn-pay:hover,
.btn-pay:disabled {
  background: #333;
}

.btn-pay:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.pay-error {
  display: none;
  font-size: 16px;
  color: #c0392b;
  margin-top: 16px;
  font-weight: 300;
}

.pay-error.visible {
  display: block;
}

/* ── PAGE HEADER (collection pages) ─────────────────────── */

.page-hero {
  height: 40vh;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (min-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  section {
    padding: 100px 40px;
  }

  .site-nav {
    padding: 0 40px;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .about-inner {
    grid-template-columns: 300px 1fr;
    padding: 0 40px;
    gap: 60px;
  }

  .photo-grid {
    padding: 0 40px 80px;
  }

  .photo-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 120px 60px;
  }

  .site-nav {
    padding: 0 60px;
  }

  .collections-grid {
    padding: 0 60px;
    gap: 60px;
  }

  .about-inner {
    padding: 0 60px;
    grid-template-columns: 360px 1fr;
  }

  .photo-grid {
    padding: 0 60px 100px;
    gap: 6px;
  }

  .collection-header {
    padding: 80px 60px 60px;
  }

  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }

  .hero-watermark {
    display: block;
  }
}

/* ── MAILING LIST ────────────────────────────────────────── */

.mailing-list-section {
  border-top: 1px solid var(--light-gray);
}

.mailing-list-inner {
  max-width: 480px;
  margin: 0 auto;
}

.mailing-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 32px;
  margin-top: 0;
}

.mailing-row {
  display: flex;
  gap: 0;
  align-items: flex-end;
  border-bottom: 1px solid var(--black);
  margin-bottom: 0;
}

.mailing-row + .mailing-row {
  margin-top: 16px;
}

.mailing-field {
  flex: 1;
}

.mailing-field input {
  width: 100%;
  border: none;
  padding: 10px 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  outline: none;
}

.mailing-field input::placeholder {
  color: #bbb;
  font-weight: 300;
}

.btn-mailing {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 10px 0 10px 20px;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-mailing:hover {
  color: var(--black);
}

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

/* ── ANIMATIONS & REVEALS ────────────────────────────────── */

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

/* Hero content loads in on page open */
.hero-text {
  animation: fadeUp 0.9s ease 0.15s both;
}

/* Scroll-reveal base state — applied via JS */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger child sections slightly */
.reveal:nth-of-type(2) { transition-delay: 0.05s; }
.reveal:nth-of-type(3) { transition-delay: 0.1s; }

/* ── PHOTO CAPTION OVERLAY ───────────────────────────────── */

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 13px;
  background: linear-gradient(transparent, rgba(0,0,0,0.52));
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.photo-item:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── LIGHTBOX IMAGE CROSSFADE ────────────────────────────── */

.lb-img {
  transition: opacity 0.22s ease;
}
