/* Royal Magic Records - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold: #D4AF37;
  --bg: #0a0a0a;
  --card: #141414;
  --muted: #888;
  --white: #ffffff;
  --border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
.font-serif { font-family: 'Playfair Display', serif; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media(min-width:1024px){ .container { padding: 0 3rem; } }

/* ── NAVIGATION ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
nav.site-nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { cursor: pointer; }
.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  transition: color 0.2s;
  display: block;
}
.nav-logo:hover .logo-main { color: var(--gold); }
.nav-logo .logo-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white); cursor: pointer;
  font-size: 1.5rem; padding: 0.5rem;
}
@media(max-width:768px){
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0.15) 40%, transparent 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 1.5rem;
  margin-top: 5rem;
}
.hero-est {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: bounce 2s ease-in-out infinite 1.5s;
}
.scroll-line { width: 1px; height: 3rem; background: rgba(255,255,255,0.15); }
@keyframes bounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(10px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  height: 3.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { background: var(--white); color: #000; transform: scale(1.03); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn-white {
  background: var(--white);
  color: #000;
}
.btn-white:hover { background: var(--gold); }
.btn-spotify {
  background: #1DB954;
  color: var(--white);
  border-radius: 999px;
  height: 3rem;
}
.btn-spotify:hover { background: #17a349; }
.btn-youtube {
  background: #dc2626;
  color: var(--white);
  border-radius: 999px;
  height: 3rem;
}
.btn-youtube:hover { background: #b91c1c; }
.btn-social {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  height: 3rem;
}
.btn-social:hover { background: var(--white); color: #000; }
.btn-dark {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-dark:hover { background: var(--gold); color: #000; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin-top: 1.5rem;
}
.section-header.centered .section-divider { margin: 1.5rem auto 0; }

/* ── FEATURED ARTIST ── */
.featured-section {
  padding: 6rem 0 8rem;
  background: var(--bg);
  position: relative;
  z-index: 10;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media(max-width:768px){ .featured-grid { grid-template-columns:1fr; gap: 2rem; } }
.featured-img-wrap {
  position: relative;
}
.featured-img-border {
  position: absolute;
  inset: -1rem;
  border: 1px solid rgba(212,175,55,0.15);
  z-index: 0;
  transition: inset 0.5s;
}
.featured-img-wrap:hover .featured-img-border { inset: 0; }
.featured-img-inner {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.featured-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s, filter 0.5s;
  filter: grayscale(1);
}
.featured-img-wrap:hover .featured-img-inner img {
  transform: scale(1.1);
  filter: grayscale(0);
}
.featured-img-label {
  position: absolute;
  bottom: 2rem; left: 2rem;
  z-index: 2;
}
.featured-img-label span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.featured-img-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white);
}
.featured-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 50%);
  z-index: 1;
}
.featured-content {}
.featured-bio { color: var(--muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
.view-profile {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.view-profile:hover { color: var(--white); }
.view-profile svg { transition: transform 0.2s; }
.view-profile:hover svg { transform: translateX(4px); }
.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  transition: color 0.2s;
}
.spotify-link:hover { color: #1DB954; }
.spotify-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.spotify-link:hover .spotify-icon { border-color: #1DB954; }
.spotify-link span { font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── EVENTS SECTION (HOME) ── */
.events-section {
  padding: 8rem 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media(max-width:900px){ .events-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .events-grid { grid-template-columns: 1fr; } }
.event-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s;
}
.event-card:hover { border-color: rgba(212,175,55,0.4); }
.event-year {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(255,255,255,0.12);
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s;
}
.event-card:hover .event-year { color: rgba(212,175,55,0.6); }
.event-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 1rem 0;
}
.event-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s;
}
.event-card:hover .event-card-img img { filter: grayscale(0); }
.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.event-card:hover h3 { color: var(--gold); }
.event-location {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.event-location::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.event-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1.5rem; }
.event-card a.tickets, .event-card span.soldout {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.event-card a.tickets {
  color: var(--white);
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.event-card a.tickets:hover { color: var(--gold); border-color: var(--gold); }
.event-card span.soldout { color: rgba(255,255,255,0.3); }
.events-footer { text-align: center; margin-top: 3rem; }

/* ── MERCH TEASER ── */
.merch-teaser {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.merch-teaser-inner {
  text-align: center;
}
.merch-banner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 21/9;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media(max-width:600px){ .merch-banner { aspect-ratio: 16/9; } }
.merch-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.7s, opacity 0.5s;
}
.merch-banner:hover img { transform: scale(1.06); opacity: 0.7; }
.merch-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.5s;
}
.merch-banner:hover .merch-banner-overlay { background: rgba(0,0,0,0.15); }
.merch-banner-btn { position: relative; z-index: 2; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}
.page-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.page-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding-bottom: 5rem;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.page-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── BIO SECTION ── */
.bio-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.bio-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 3rem;
}
@media(max-width:768px){ .bio-grid { grid-template-columns:1fr; } }
.bio-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.bio-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.release-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.release-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.release-cover {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 0.4rem;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}
.release-cover img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.release-cover:hover img { transform: scale(1.08); }
.release-play {
  position: absolute;
  inset: 0;
  display: flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
.release-cover:hover .release-play { opacity: 1; }
.release-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.release-type { color: var(--muted); font-size: 0.8rem; }

/* ── ALBUMS (Playlist) ── */
.albums-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.albums-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 3rem; }
.albums-header svg { color: var(--gold); }
.albums-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
}
.playlist-embed {
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.playlist-embed iframe { width:100%; height:100%; border:none; display:block; }

/* ── VIDEO GALLERY ── */
.videos-section { padding: 5rem 0; }
.videos-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 3rem; }
.videos-header svg { color: var(--gold); }
.videos-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media(max-width:900px){ .videos-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .videos-grid { grid-template-columns: 1fr; } }
.video-item {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s;
}
.video-item:hover { border-color: rgba(212,175,55,0.4); }
.video-item iframe { width:100%; aspect-ratio:16/9; display:block; border:none; }

/* ── ARTISTS PAGE ── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media(max-width:900px){ .artists-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .artists-grid { grid-template-columns: 1fr; } }
.artist-card { cursor: pointer; }
.artist-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.05);
  position: relative;
}
.artist-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.7s, filter 0.5s;
}
.artist-card:hover .artist-card-img img { transform: scale(1.06); filter: grayscale(0); }
.artist-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  transition: background 0.3s;
}
.artist-card:hover .artist-card-img::after { background: transparent; }
.artist-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.artist-card:hover h3 { color: var(--gold); }
.artist-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── EVENTS PAGE ── */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 0.5rem;
  transition: background 0.3s, border-color 0.3s;
  gap: 2rem;
  flex-wrap: wrap;
}
.event-row:hover { background: rgba(255,255,255,0.05); border-color: rgba(212,175,55,0.15); }
.event-date-block { min-width: 5rem; }
.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.event-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  display: block;
}
.event-info { flex: 1; }
.event-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.event-row:hover .event-info h3 { color: var(--gold); }
.event-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; color: var(--muted); font-size: 0.85rem; }
.event-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* ── MERCH PAGE ── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media(max-width:1024px){ .merch-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media(max-width:700px){ .merch-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:420px){ .merch-grid { grid-template-columns: 1fr; } }
.merch-item { display: flex; flex-direction: column; }
.merch-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  position: relative;
  margin-bottom: 1rem;
}
.merch-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.merch-item:hover .merch-img img { transform: scale(1.06); }
.merch-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
}
.badge-gold { background: var(--gold); color: #000; }
.badge-grey { background: rgba(255,255,255,0.15); color: var(--white); }
.merch-name-row { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:0.5rem; }
.merch-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  transition: color 0.2s;
  flex:1; margin-right:0.5rem;
}
.merch-item:hover .merch-name { color: var(--gold); }
.merch-price { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-family: monospace; white-space: nowrap; }
.merch-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.5; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; flex:1; }

/* ── ABOUT PAGE ── */
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 5rem 0;
}
@media(max-width:768px){ .about-split { grid-template-columns:1fr; gap:2rem; } }
.about-img-wrap {
  aspect-ratio: 4/5;
  background: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-wrap img { width:100%; height:100%; object-fit:cover; filter:grayscale(0.7); opacity:0.8; }
.about-label { color: var(--gold); font-size: 1.8rem; font-family:'Playfair Display',serif; margin-bottom:1.5rem; font-weight:700; }
.about-text { color:var(--muted); font-size:1.05rem; line-height:1.8; margin-bottom:1.5rem; font-weight:300; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}
@media(max-width:700px){ .values-grid { grid-template-columns:1fr; } }
.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 0.5rem;
}
.value-card h4 { font-family:'Playfair Display',serif; font-size:1.3rem; color:var(--white); margin-bottom:1rem; }
.value-card p { color:var(--muted); font-size:0.9rem; line-height:1.7; }

/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 25%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media(max-width:768px){ .footer-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:500px){ .footer-grid { grid-template-columns:1fr; } }
.footer-brand p { color:var(--muted); font-size:0.9rem; line-height:1.8; max-width:320px; margin:1.5rem 0; font-weight:300; }
.footer-social { display:flex; gap:0.75rem; }
.social-icon {
  width: 2.5rem; height:2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  font-size: 0.85rem;
}
.social-icon:hover { color:var(--gold); border-color:var(--gold); background:rgba(212,175,55,0.06); }
.footer-col h4 {
  font-family:'Playfair Display',serif;
  font-size:1.1rem;
  color:var(--white);
  margin-bottom:1.5rem;
}
.footer-col ul { display:flex; flex-direction:column; gap:1rem; }
.footer-col a {
  color:var(--muted);
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  transition:color 0.2s;
}
.footer-col a:hover { color:var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display:flex; gap:1.5rem; }

/* ── UTILITIES ── */
.pt-page { padding-top: 8rem; }
.pb-section { padding-bottom: 5rem; }
.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }
.btn-disabled {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.3);
  border: 1px solid var(--border);
  cursor: not-allowed;
}

/* ── FADE IN ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
