:root {
  --gold: #c9a84c;
  --gold-light: #e8c87a;
  --dark: #0a0807;
  --dark-2: #141008;
  --dark-3: #1c1610;
  --cream: #fdf6e3;
  --text-light: #e8dfc8;
  --text-muted: #9a8a6a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: var(--text-light);
  font-family: "Lora", Georgia, serif;
  overflow-x: hidden;
}
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease;
}
#hero-video.loaded {
  opacity: 1;
}
#hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 7, 0.5) 0%,
    rgba(10, 8, 7, 0.25) 40%,
    rgba(10, 8, 7, 0.72) 100%
  );
  z-index: 2;
}
.hero-frame {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 3;
  pointer-events: none;
}
.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
}
.hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 24px;
}
.hero-label {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto;
  max-width: 280px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-div::before,
.hero-div::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hd-gem {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.hero-names {
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 11vw, 118px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  text-shadow:
    0 4px 40px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(201, 168, 76, 0.18);
  opacity: 0;
  animation: fadeUp 1.2s 0.9s forwards;
  margin: 8px 0;
}
.hero-amp {
  display: block;
  color: var(--gold);
  font-size: 0.65em;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.7);
}
.hero-date {
  font-family: "Cinzel", serif;
  font-size: clamp(13px, 2vw, 17px);
  letter-spacing: 8px;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.hero-loc {
  font-style: italic;
  font-size: 13px;
  color: rgba(232, 223, 200, 0.55);
  letter-spacing: 2px;
  margin-top: 6px;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 2.2s forwards;
}
.scroll-hint span {
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 5px;
  color: rgba(201, 168, 76, 0.55);
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: sbar 2s ease-in-out infinite;
}
@keyframes sbar {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
section {
  position: relative;
  z-index: 1;
}
.section-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 16px;
  text-align: center;
}
.section-tag {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px auto;
  max-width: 360px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.div-gem {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
#countdown {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.14);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
}
.cd-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  filter: grayscale(30%);
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 44px);
  margin-top: 40px;
  flex-wrap: wrap;
}
.cd-sep {
  font-family: "Cinzel", serif;
  font-size: 44px;
  color: var(--gold);
  opacity: 0.3;
  align-self: flex-start;
  padding-top: 8px;
  line-height: 1;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.cd-item.vis {
  opacity: 1;
  transform: translateY(0);
}
.cd-num {
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
  transition:
    transform 0.15s,
    opacity 0.15s;
}
.cd-lbl {
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
#invitation {
  background: var(--dark);
  overflow: hidden;
}
.inv-side-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}
.invite-card {
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 52px clamp(24px, 7vw, 72px);
  position: relative;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.03), transparent);
  max-width: 680px;
  margin: 44px auto 0;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.invite-card.vis {
  opacity: 1;
  transform: translateY(0);
}
.invite-card::before,
.invite-card::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
}
.invite-card::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}
.invite-card::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}
.invite-text {
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.95;
  color: var(--text-light);
  font-style: italic;
}
#photostrip {
  background: var(--dark-2);
  padding: 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  animation: stripScroll 44s linear infinite;
  width: max-content;
}
.strip-track:hover {
  animation-play-state: paused;
}
@keyframes stripScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.strip-img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(0.65) brightness(0.82);
  transition: filter 0.5s;
  border-right: 2px solid var(--dark-2);
}
.strip-img:hover {
  filter: saturate(1.1) brightness(1);
}
#program {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
  overflow: hidden;
}
.prog-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  filter: grayscale(50%);
}
.program-list {
  margin: 52px auto 0;
  max-width: 560px;
}
.prog-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  text-align: left;
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.prog-item.vis {
  opacity: 1;
  transform: translateX(0);
}
.prog-item:last-child {
  border-bottom: none;
}
.prog-time {
  font-family: "Cinzel", serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  padding-top: 3px;
}
.prog-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 4px;
}
.prog-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
#gallery {
  background: var(--dark);
  padding: 80px 0;
}
.gallery-head {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1100px;
  margin: 0 auto;
}
.g-item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.g-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.82);
  transition:
    filter 0.5s,
    transform 0.6s;
  display: block;
}
.g-item:hover img {
  filter: saturate(1.05) brightness(1);
  transform: scale(1.06);
}
.g-item.tall {
  grid-row: span 2;
}
.g-item.tall img {
  height: 100%;
  min-height: 400px;
}
.g-item.wide {
  grid-column: span 2;
}
.g-item.wide img {
  height: 260px;
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0);
  transition: background 0.4s;
}
.g-item:hover::after {
  background: rgba(201, 168, 76, 0.06);
}
#dresscode {
  background: var(--dark-2);
  overflow: hidden;
}
.dc-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    transparent
  );
}
.palette {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 36px auto;
  flex-wrap: wrap;
}
.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.swatch.vis {
  opacity: 1;
  transform: translateY(0);
}
.sw-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.sw-circle:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}
.sw-lbl {
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.dc-note {
  max-width: 500px;
  margin: 0 auto;
  font-style: italic;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  opacity: 0;
  transition: opacity 0.8s;
}
.dc-note.vis {
  opacity: 1;
}
#artists {
  background: var(--dark);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.artist-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.12);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.artist-card.vis {
  opacity: 1;
  transform: translateY(0);
}
.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.7);
  transition:
    filter 0.5s,
    transform 0.5s;
}
.artist-card:hover img {
  filter: saturate(0.9) brightness(0.85);
  transform: scale(1.05);
}
.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
}
.artist-role {
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 4px;
}
.artist-name {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
}
#location {
  background: var(--dark-3);
  border-top: 1px solid rgba(201, 168, 76, 0.14);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  overflow: hidden;
}
#loc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}
.venue-card {
  max-width: 520px;
  margin: 44px auto 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 48px clamp(24px, 6vw, 56px);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.8s,
    transform 0.8s;
  position: relative;
  z-index: 2;
  text-align: center;
}
.venue-card.vis {
  opacity: 1;
  transform: scale(1);
}
.venue-name {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.venue-addr {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.gold-btn {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.gold-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}
.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}
.gold-btn:hover::before {
  left: 100%;
}
#rsvp {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
}
.rsvp-wrap {
  max-width: 500px;
  margin: 44px auto 0;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.rsvp-wrap.vis {
  opacity: 1;
  transform: translateY(0);
}
.field {
  margin-bottom: 22px;
  text-align: left;
}
.field input[type="text"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--cream);
  font-family: "Lora", serif;
  font-size: 15px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
}
.field input[type="text"]:focus {
  border-color: var(--gold);
}
.field input[type="text"]::placeholder {
  color: var(--text-muted);
  font-style: italic;
}
.field-lbl {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.radio-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.rl {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.rl:hover {
  color: var(--gold-light);
}
.rl input {
  display: none;
}
.rc {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.rl input:checked ~ .rc {
  border-color: var(--gold);
}
.rl input:checked ~ .rc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.submit-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 12px;
}
.submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}
.submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.loading-text {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-top: 10px;
  display: none;
}
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 9999;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.popup-overlay.active {
  display: flex;
}
.popup-box {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 48px 40px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  animation: popIn 0.4s ease;
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.popup-icon {
  font-size: 44px;
  margin-bottom: 14px;
}
.popup-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.popup-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 26px;
}
.popup-close {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 3px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.3s;
}
.popup-close:hover {
  background: var(--gold);
  color: var(--dark);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 8888;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  animation: lbIn 0.3s ease;
}
@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
  font-family: "Cinzel", serif;
}
.audio-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  background: rgba(10, 8, 7, 0.9);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.audio-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}
.audio-btn svg {
  width: 18px;
  height: 18px;
}
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 48px 24px;
  text-align: center;
}
.footer-names {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.footer-date {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.footer-links a {
  color: var(--text-muted);
  transition:
    color 0.3s,
    transform 0.3s;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
}
.footer-copy {
  font-size: 11px;
  color: rgba(154, 138, 106, 0.45);
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-item.tall {
    grid-row: span 1;
  }
  .g-item.wide {
    grid-column: span 1;
  }
  .g-item img,
  .g-item.wide img,
  .g-item.tall img {
    height: 180px;
    min-height: 180px;
  }
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prog-item {
    grid-template-columns: 70px 1fr;
    gap: 0 14px;
  }
  .cd-sep {
    display: none;
  }
}
