/* ==========================================
   CHUCK ROELOFS PHOTOGRAPHY
   Stylesheet
   ========================================== */

:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-raised: #1a1a1a;
  --color-text: #f5f5f5;
  --color-text-secondary: #a3a3a3;
  --color-muted: #737373;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.15);
  --color-accent: #d97706;
  --color-accent-hover: #f59e0b;
  --color-accent-muted: rgba(217, 119, 6, 0.1);
  --color-danger: #dc2626;
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 2px;
  --radius-md: 4px;
  
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(217, 119, 6, 0.3);
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hidden {
  display: none !important;
}

/* ==========================================
   NAVIGATION
   ========================================== */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

#navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #fbbf24, #ea580c);
  border-radius: var(--radius-sm);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
  transform: rotate(6deg) scale(1.05);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
  font-family: inherit;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 0.5rem;
}

#mobile-menu {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
}

#mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
}

#mobile-menu .mobile-cta {
  color: var(--color-accent);
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  animation: slow-zoom 20s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3), transparent, var(--color-bg));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-label {
  color: var(--color-accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  animation: fade-in 1s ease-out forwards;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fade-in-up 0.8s ease-out forwards;
}

.hero-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  animation: fade-in-up 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  animation: fade-in-up 0.8s ease-out 0.3s forwards;
  opacity: 0;
  transition: color 0.2s ease;
}

.hero-cta:hover {
  color: var(--color-text);
}

.hero-cta svg {
  transition: transform 0.2s ease;
}

.hero-cta:hover svg {
  transform: translateY(2px);
}

@keyframes slow-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   FILTER BAR
   ========================================== */

.filter-bar {
  position: sticky;
  top: 4rem;
  z-index: 40;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.filter-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar {
  display: none;
}

.filters {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.filter-btn {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--color-border-hover);
  color: var(--color-text);
}

.filter-btn.active {
  border-color: rgba(217, 119, 6, 0.5);
  background: var(--color-accent-muted);
  color: var(--color-accent);
}

.photo-count {
  font-size: 0.625rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================
   GALLERY
   ========================================== */

.gallery-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.gallery-grid {
  columns: 1;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--color-surface);
  opacity: 0;
  animation: fade-in-up 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.4s; }
.gallery-item:nth-child(6) { animation-delay: 0.5s; }

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9), rgba(10,10,10,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .meta-category {
  color: var(--color-accent);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  transform: translateY(1rem);
  transition: transform 0.3s ease;
}

.gallery-overlay .meta-title {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
  transform: translateY(1rem);
  transition: transform 0.3s ease 0.05s;
}

.gallery-overlay .meta-location {
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transform: translateY(1rem);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay .meta-category,
.gallery-item:hover .gallery-overlay .meta-title,
.gallery-item:hover .gallery-overlay .meta-location {
  transform: translateY(0);
}

.empty-state {
  text-align: center;
  padding: 6rem 0;
}

.empty-state p {
  color: var(--color-muted);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.empty-state button {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.empty-state button:hover {
  color: var(--color-accent-hover);
}

/* ==========================================
   ABOUT
   ========================================== */

.about-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: grid;
  gap: 4rem;
}

.about-visual {
  position: relative;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.about-photo:hover img {
  filter: grayscale(0%);
}

.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-sm);
  z-index: -1;
}

.section-label {
  color: var(--color-accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-body {
  color: var(--color-text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-body p + p {
  margin-top: 1.25rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.625rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ==========================================
   CONTACT
   ========================================== */

.contact-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.contact-lead {
  color: var(--color-text-secondary);
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(217, 119, 6, 0.3);
}

.card-label {
  font-size: 0.625rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card p:last-child {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--color-accent);
}

/* ==========================================
   ADMIN
   ========================================== */

.admin-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.admin-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.admin-subtitle {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.admin-table-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table thead {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.admin-table th {
  padding: 1rem 1.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  text-align: left;
  white-space: nowrap;
}

.admin-table th.text-right {
  text-align: right;
}

.admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: background 0.15s ease;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.admin-table td:first-child img {
  width: 4rem;
  height: 3rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.admin-table .row-title {
  font-weight: 500;
  color: var(--color-text);
}

.admin-table .row-date {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.125rem;
}

.admin-table .row-badge {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}

.admin-table .row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.admin-table tbody tr:hover .row-actions {
  opacity: 1;
}

.row-actions button {
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.row-actions button:hover {
  color: var(--color-accent);
  background: var(--color-accent-muted);
}

.row-actions button:last-child:hover {
  color: var(--color-danger);
  background: rgba(220, 38, 38, 0.1);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: none;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

/* ==========================================
   LIGHTBOX
   ========================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(4px);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--color-text);
}

.lightbox-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 4rem 1.5rem 1.5rem;
  overflow-y: auto;
}

.lightbox-image-wrap {
  flex: 1;
  min-height: 0;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-meta {
  padding-top: 2rem;
  max-width: 32rem;
}

.meta-category {
  color: var(--color-accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.meta-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.meta-location {
  color: var(--color-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.meta-desc {
  color: var(--color-text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ==========================================
   MODAL
   ========================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 300;
}

.modal-close {
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-body {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 5rem;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.modal-actions .btn-outline,
.modal-actions .btn-primary {
  flex: 1;
  justify-content: center;
}

/* ==========================================
   URL PREVIEW
   ========================================== */

.url-preview {
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg);
}

.url-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  display: block;
}

.preview-status {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.preview-status.loading {
  color: var(--color-accent);
}

.preview-status.success {
  color: #22c55e;
}

.preview-status.error {
  color: var(--color-danger);
}

/* ==========================================
   TOAST
   ========================================== */

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 80;
  transform: translateY(5rem);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-surface);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.toast-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.toast span {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .gallery-grid {
    columns: 2;
  }
  
  .about-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .admin-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .lightbox-inner {
    flex-direction: row;
    padding: 3rem;
    gap: 2rem;
  }
  
  .lightbox-image-wrap {
    flex: 1;
  }
  
  .lightbox-meta {
    width: 20rem;
    flex-shrink: 0;
    padding-top: 0;
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}