:root {
  --bg: #f9f8f5;
  --bg-surface: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-darker: #111111;
  --text: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #999999;
  --gold: #c9a84c;
  --gold-light: rgba(201, 168, 76, 0.12);
  --gold-hover: #b8953e;
  --blue: #2563eb;
  --blue-light: rgba(37, 99, 235, 0.08);
  --dark-gray: #2d2d2d;
  --border: #e5e3dc;
  --border-light: #f0eee8;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ===== Animated SVG Background ===== */
.blob-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.blob { transition: d 1.2s cubic-bezier(0.4, 0, 0.2, 1); }
.blob-1 { fill: url(#blobGrad1); }
.blob-2 { fill: url(#blobGrad2); }
.blob-3 { fill: url(#blobGrad3); }
.blob-4 { fill: url(#blobGrad4); }

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== Layout ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== Site Nav ===== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 0 0;
  position: relative;
  z-index: 10;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.site-nav a:hover { color: var(--gold); background: var(--gold-light); }

/* ===== Header ===== */
.site-header {
  padding: 60px 0 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-logo {
  max-height: 100px;
  max-width: 300px;
  margin-bottom: 12px;
  object-fit: contain;
}

.site-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--bg-dark);
}

.site-subtitle {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-description {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 32px auto;
  font-size: 1rem;
  line-height: 1.8;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--gold); }

.album-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
}

.album-description {
  color: var(--text-secondary);
  margin-top: 10px;
  font-size: 1rem;
}

.album-meta {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.album-meta .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.album-lifetime-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--gold-hover);
  font-weight: 500;
  margin-top: 10px;
}

.tier-pricing {
  max-width: 600px;
  margin: 16px auto 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.tier-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  background: var(--blue-light);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--blue);
  font-weight: 500;
}

/* ===== Token Input Section ===== */
.token-section {
  max-width: 540px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.token-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.token-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.token-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--bg-dark);
}

.token-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.token-form {
  display: flex;
  gap: 10px;
}

.token-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  transition: border-color var(--transition);
}

.token-form input:focus { border-color: var(--gold); }

.token-form input::placeholder {
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--text-muted);
}

.token-form button {
  padding: 12px 24px;
  background: var(--bg-dark);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.token-form button:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.token-error {
  color: #c62828;
  font-size: 0.85rem;
  margin-top: 10px;
  min-height: 1.3em;
}

.token-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.token-divider::before,
.token-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.token-divider span {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== Album Grid ===== */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  padding: 20px 0 80px;
}

.album-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.album-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.album-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
  position: relative;
}

.album-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.album-card:hover .album-card-image img { transform: scale(1.06); }

.album-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
  background: linear-gradient(135deg, #f0ede4, #e8e5dc);
}

.album-card-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.album-card-badge {
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-protected {
  background: rgba(201, 168, 76, 0.25);
  color: #8b7530;
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.badge-free {
  background: rgba(255,255,255,0.85);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.badge-paid {
  background: rgba(255,255,255,0.85);
  color: var(--gold-hover);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.badge-donation {
  background: rgba(255,255,255,0.85);
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.album-card-body { padding: 18px 20px 6px; }

.album-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--bg-dark);
}

.album-card-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.album-card-footer {
  padding: 8px 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.album-card-creator { font-style: italic; color: var(--text-secondary); }

/* ===== Photo Grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 20px 0 120px;
}

.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.photo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.photo-card.selected { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }

.photo-card-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo-card-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.photo-card:hover .photo-card-img-wrap img { transform: scale(1.04); }
.photo-card-img-wrap::after { content: ''; position: absolute; inset: 0; z-index: 2; }

.raw-indicator {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 3;
  background: rgba(201,168,76,0.9);
  color: #000;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.photo-select-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: all var(--transition);
  color: transparent;
}
.photo-select-btn:hover { background: rgba(255,255,255,0.8); border-color: var(--gold); }
.photo-select-btn.active { background: var(--gold); border-color: var(--gold); color: white; font-size: 13px; }

.photo-card-info { padding: 10px 12px; }
.photo-card-title { font-size: 0.88rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.photo-card-price { font-size: 0.78rem; color: var(--gold); margin-top: 3px; }

/* ===== Cart FAB ===== */
.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: all var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-fab:hover { transform: scale(1.08); background: var(--dark-gray); }
.cart-fab.visible { display: flex; }

.cart-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ===== Cart Panel ===== */
.cart-panel {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 200;
  width: 420px;
  max-width: 100vw;
  max-height: 80vh;
  background: var(--bg-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.cart-panel.open { transform: translateY(0); }

.cart-panel-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-panel-header h3 { font-family: var(--font-display); font-size: 1.15rem; }

.cart-panel-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.cart-panel-close:hover { background: var(--border-light); }

.cart-panel-body { flex: 1; overflow-y: auto; padding: 14px 22px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-item img { width: 52px; height: 52px; object-fit: cover; border-radius: 6px; pointer-events: none; -webkit-user-drag: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: 0.83rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.78rem; color: var(--gold); }
.cart-item-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.2rem; padding: 4px; border-radius: 50%; transition: all var(--transition); }
.cart-item-remove:hover { color: #c62828; background: rgba(198,40,40,0.06); }

.cart-panel-footer { padding: 18px 22px; border-top: 1px solid var(--border); overflow-y: auto; flex-shrink: 1; }
.cart-total { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 600; margin-bottom: 14px; }
.cart-total-price { color: var(--gold); font-size: 1.15rem; }
.cart-discount-info { font-size: 0.82rem; color: #2e7d32; margin-bottom: 10px; font-weight: 500; }

.select-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  margin-bottom: 6px;
}
.select-bar label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-secondary); cursor: pointer; user-select: none; }
.select-bar label input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--gold); }
.select-bar .select-info { font-size: 0.83rem; color: var(--text-muted); }

/* ===== Redeem Code in Cart ===== */
.redeem-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.redeem-row input {
  flex: 1;
  padding: 9px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color var(--transition);
}

.redeem-row input:focus { border-color: var(--gold); }

.redeem-row button {
  padding: 9px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--transition);
}

.redeem-row button:hover { border-color: var(--gold); color: var(--gold); }

.redeem-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(46, 125, 50, 0.06);
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 0.83rem;
  color: #2e7d32;
}

.redeem-applied button {
  background: none;
  border: none;
  color: #c62828;
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
}

/* ===== Access Code & Token Form ===== */
.access-code-form {
  max-width: 440px;
  margin: 50px auto;
  text-align: center;
  padding: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.access-code-form h2 { font-family: var(--font-display); margin-bottom: 10px; }
.access-code-form p { color: var(--text-secondary); margin-bottom: 22px; font-size: 0.95rem; }
.access-code-form form { display: flex; gap: 10px; }

.access-code-form input, .token-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
}
.access-code-form input:focus, .token-input:focus { border-color: var(--gold); }

.token-input {
  text-align: center;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.error-message { color: #c62828; margin-top: 10px; font-size: 0.88rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary { background: var(--bg-dark); color: var(--gold); }
.btn-primary:hover { background: var(--dark-gray); }

.btn-gold { background: var(--gold); color: var(--bg-dark); font-weight: 600; }
.btn-gold:hover { background: var(--gold-hover); }

.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

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

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}
.lightbox.active { display: flex; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 2.2rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(201, 168, 76, 0.2); border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-content { max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; position: relative; }

.lightbox-img-wrap { position: relative; user-select: none; }
.lightbox-img-wrap img { max-width: 100%; max-height: 75vh; object-fit: contain; border-radius: 6px; -webkit-user-drag: none; pointer-events: none; user-select: none; }
.lightbox-img-wrap::after { content: ''; position: absolute; inset: 0; z-index: 2; }

.lightbox-info { margin-top: 14px; text-align: center; max-width: 600px; color: white; }
.lightbox-info h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 3px; color: var(--gold); }
.lightbox-info p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

.lightbox-actions { margin-top: 14px; display: flex; gap: 10px; justify-content: center; }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal h2 { font-family: var(--font-display); margin-bottom: 16px; }

.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }

.modal input[type="email"],
.modal input[type="number"],
.modal input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.93rem;
  font-family: var(--font-body);
  margin-bottom: 12px;
  outline: none;
}
.modal input:focus { border-color: var(--gold); }
.modal label { display: block; color: var(--text-secondary); font-size: 0.83rem; margin-bottom: 5px; }
.modal .price-display { font-size: 1.5rem; font-weight: 600; color: var(--gold); margin: 16px 0; text-align: center; }

/* ===== Footer ===== */
.site-footer {
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
  background: rgba(249, 248, 245, 0.9);
}
.site-footer a { color: var(--text-secondary); text-decoration: none; margin-left: 16px; }
.site-footer a:hover { color: var(--gold); }

/* ===== Loading & Empty States ===== */
.loading { text-align: center; padding: 60px; color: var(--text-muted); font-size: 1rem; grid-column: 1 / -1; }

.empty-state { text-align: center; padding: 80px 20px; color: var(--text-muted); grid-column: 1 / -1; }
.empty-state h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; color: var(--text-secondary); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-header { padding: 36px 0 20px; }
  .site-nav { gap: 8px; flex-wrap: wrap; }
  .site-nav a { font-size: 0.82rem; padding: 6px 12px; }
  .album-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
  .container { padding: 0 16px; }
  .access-code-form form { flex-direction: column; }
  .lightbox-nav { display: none; }
  .cart-panel { width: 100%; }
  .cart-fab { bottom: 18px; right: 18px; }
  .token-form { flex-direction: column; }
  .token-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .album-grid { grid-template-columns: 1fr; }
}
