/* ============================================================
   Tad's Records — style.css
   Dark theme: #0A0A0A background, #D4A853 gold accent
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --fg: #FAFAFA;
  --surface: #141414;
  --border: #262626;
  --muted: #A3A3A3;
  --accent: #D4A853;
  --accent-hover: #E5BD6C;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Container ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
.font-display { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; }
.text-xl { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; letter-spacing: -0.02em; }
.text-lg { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
.text-md { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; }
.text-sm-display { font-size: 1.5rem; line-height: 1.3; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }

/* ---------- Buttons (class-scoped, never global) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-size: 0.875rem;
  font-weight: 500; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: all 0.2s; border: none; text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--fg); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ---------- Badge ---------- */
.badge {
  display: inline-block; padding: 6px 12px;
  background: rgba(212,168,83,0.1); border: 1px solid rgba(212,168,83,0.3);
  color: var(--accent); font-size: 0.75rem; font-weight: 500;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ========== HEADER — CENTERED NAV + CONNECT BUTTON ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; flex-shrink: 0; }
.logo span { color: var(--accent); }

/* Centered nav */
.nav-center {
  display: flex; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center > a, .nav-item > a {
  color: var(--muted); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; white-space: nowrap;
}
.nav-center > a:hover, .nav-item > a:hover { color: var(--fg); }
.nav-center > a.active, .nav-item > a.active { color: var(--fg); }

/* Connect button — right side */
.btn-connect {
  display: inline-flex; align-items: center; padding: 8px 20px;
  background: var(--accent); color: var(--bg); border-radius: 8px;
  font-size: 0.8rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s; flex-shrink: 0;
}
.btn-connect:hover { background: var(--accent-hover); }

/* Nav dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: -16px; min-width: 200px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 8px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 50;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 10px 20px; font-size: 0.875rem;
  color: var(--muted); transition: all 0.15s;
}
.nav-dropdown a:hover { color: var(--fg); background: rgba(212,168,83,0.05); }

/* Mobile menu button */
.menu-btn {
  display: none; background: none; border: none;
  color: var(--fg); cursor: pointer; padding: 8px;
}
@media (max-width: 960px) {
  .nav-center { display: none; }
  .btn-connect { display: none; }
  .menu-btn { display: block; }
}

/* Mobile menu panel */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 99; padding: 24px; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu > a, .mobile-acc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 1.125rem;
  border-bottom: 1px solid var(--border); color: var(--fg); text-decoration: none;
}
.mobile-menu > a:hover, .mobile-acc-toggle:hover { color: var(--accent); }
.mobile-connect {
  background: var(--accent); color: var(--bg) !important; text-align: center;
  border-radius: 8px; margin-top: 16px; justify-content: center; font-weight: 600;
}

/* Mobile accordion */
.mobile-accordion { border-bottom: 1px solid var(--border); }
.mobile-acc-toggle svg { transition: transform 0.2s; }
.mobile-accordion.open .mobile-acc-toggle svg { transform: rotate(180deg); }
.mobile-acc-panel { display: none; padding-bottom: 8px; }
.mobile-accordion.open .mobile-acc-panel { display: block; }
.mobile-acc-panel .sub-link {
  display: block; padding: 10px 0 10px 24px; font-size: 0.875rem;
  color: var(--muted); border-bottom: none;
}
.mobile-acc-panel .sub-link:hover { color: var(--accent); }

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
  position: relative; min-height: 85vh; overflow: hidden; padding-top: 72px;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }

/* Ken Burns zoom */
.hero-slide-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1); transition: none;
}
.hero-slide.active .hero-slide-bg img {
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }

/* Lighter overlay (client requested: less dark, show more imagery) */
.hero-slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.3) 100%);
}
.hero-slide-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 40%); z-index: 1;
}

.hero-slide-content {
  position: relative; z-index: 10; max-width: 640px; padding: 80px 24px;
}
.hero-slide-content h1 { margin-bottom: 8px; }
.hero-slide-content .artist-name { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.hero-slide-content .desc { color: rgba(250,250,250,0.75); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Carousel dots */
.carousel-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 12px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.3); transition: all 0.3s;
}
.carousel-dot.active { background: var(--accent); transform: scale(1.2); }

/* Carousel arrows */
.carousel-arrow {
  position: absolute; top: 50%; z-index: 20; background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: white; cursor: pointer; transition: all 0.2s;
}
.carousel-arrow:hover { background: rgba(212,168,83,0.3); border-color: var(--accent); }
.carousel-arrow.prev { left: 24px; transform: translateY(-50%); }
.carousel-arrow.next { right: 24px; transform: translateY(-50%); }
@media (max-width: 768px) { .carousel-arrow { display: none; } }

/* Legacy single hero fallback */
.hero {
  position: relative; min-height: 85vh; display: flex;
  align-items: center; padding-top: 72px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.7) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%); z-index: 1;
}
.hero-content { position: relative; z-index: 10; max-width: 640px; padding: 80px 0; }
.hero-content h1 { margin-bottom: 16px; }
.hero-content .artist-name { font-size: 1.125rem; color: var(--muted); margin-bottom: 8px; }
.hero-content .desc { color: rgba(250,250,250,0.8); margin-bottom: 32px; max-width: 480px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-surface { background: var(--surface); }
.page-header { padding-top: 120px; padding-bottom: 48px; }
@media (max-width: 768px) { .page-header { padding-top: 100px; padding-bottom: 32px; } }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.section-head p { color: var(--muted); }
.view-all {
  display: flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.875rem; font-weight: 500; transition: gap 0.2s;
}
.view-all:hover { gap: 12px; }

/* ---------- Album Grid ---------- */
.album-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px;
}
.album-card {
  display: block; border-radius: 16px; overflow: hidden;
  background: var(--surface); transition: transform 0.3s;
}
.album-card:hover { transform: translateY(-4px); }
.album-cover { position: relative; aspect-ratio: 1; overflow: hidden; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.album-card:hover .album-cover img { transform: scale(1.05); }
.album-info { padding: 16px; }
.album-info h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 600;
  margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.album-info .artist { font-size: 0.875rem; color: var(--muted); }
.album-info .meta { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.75rem; color: var(--muted); }

/* Play overlay — scoped to .album-overlay only */
.album-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.3s;
}
.album-card:hover .album-overlay { opacity: 1; }
.album-overlay .play-btn {
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--accent); color: var(--bg); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: transform 0.2s;
}
.album-overlay .play-btn:hover { transform: scale(1.1); }

/* --- Catalogue outbound card: "Listen / Buy" label --- */
.album-outbound-label {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 12px; background: rgba(212,168,83,0.1); border-top: 1px solid rgba(212,168,83,0.15);
  color: var(--accent); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
}
.album-outbound-label svg { flex-shrink: 0; }

/* --- Load More button --- */
.load-more-wrap { text-align: center; margin-top: 40px; }
.load-more-wrap .btn { min-width: 200px; }

/* --- Catalogue special views message --- */
.view-message {
  text-align: center; padding: 64px 24px; color: var(--muted);
}
.view-message h2 { color: var(--fg); margin-bottom: 12px; }

/* ---------- Collection Grid ---------- */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .collection-grid { grid-template-columns: 1fr; } }
.collection-card { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; display: block; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.collection-card:hover img { transform: scale(1.05); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent); }
.collection-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 1; }
.collection-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: white; margin-bottom: 4px; transition: color 0.2s; }
.collection-card:hover .collection-info h3 { color: var(--accent); }
.collection-info p { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

/* ---------- Studio section (homepage) ---------- */
.studio-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 1024px) { .studio-row { grid-template-columns: 1fr; } }
.studio-row .studio-img { position: relative; }
.studio-row .studio-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; }
.studio-stat-badge { position: absolute; bottom: -24px; left: -24px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.studio-stat-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--accent); }
.studio-stat-badge .lbl { font-size: 0.75rem; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-block { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-icon { width: 64px; height: 64px; color: var(--accent); margin: 0 auto 24px; }
.cta-block h2 { margin-bottom: 24px; }
.cta-block p { color: var(--muted); font-size: 1.125rem; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); padding: 64px 0 24px; margin-bottom: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--muted); font-size: 0.875rem; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.875rem; color: var(--fg); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--muted); }
.social-links { display: flex; gap: 16px; }
.social-links a { color: var(--muted); transition: color 0.2s; }
.social-links a:hover { color: var(--accent); }

/* ---------- Mini Player ---------- */
.mini-player {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(20,20,20,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: 12px 0; z-index: 100;
}
.mini-player.visible { display: block; }
.player-inner { display: flex; align-items: center; gap: 16px; }
.player-track { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.player-track img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.player-track-info { min-width: 0; }
.player-track-info h4 { font-size: 0.875rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-track-info p { font-size: 0.75rem; color: var(--muted); }
.player-controls { display: flex; align-items: center; gap: 16px; }
.player-controls .play-btn {
  width: 40px; height: 40px; background: var(--accent); color: var(--bg);
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.player-controls .play-btn:hover { background: var(--accent-hover); }
.player-controls .close-btn {
  background: none; border: none; color: var(--muted); cursor: pointer; padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.player-progress { flex: 2; display: flex; align-items: center; gap: 12px; }
.player-progress .time { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; color: var(--muted); min-width: 85px; }
.progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; cursor: pointer; }
.progress-fill { height: 100%; width: 0; background: var(--accent); border-radius: 2px; transition: width 0.1s linear; }
@media (max-width: 768px) { .player-progress { display: none; } }

/* ---------- Search + Filter (catalogue) ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; align-items: center; }
.search-wrap { position: relative; flex: 1; min-width: 240px; max-width: 400px; }
.search-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search-wrap input {
  width: 100%; padding: 12px 16px 12px 44px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--fg); font-size: 0.875rem; font-family: 'Outfit', sans-serif; outline: none; transition: border-color 0.2s;
}
.search-wrap input:focus { border-color: var(--accent); }
.search-wrap input::placeholder { color: var(--muted); }
.filter-select {
  padding: 12px 16px; min-width: 140px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--fg); font-size: 0.875rem; font-family: 'Outfit', sans-serif; outline: none; cursor: pointer;
}
.filter-select:focus { border-color: var(--accent); }
.results-count { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }
.no-results { text-align: center; padding: 80px 0; }
.no-results p { color: var(--muted); font-size: 1.125rem; margin-bottom: 16px; }
.no-results .clear-btn { color: var(--accent); background: none; border: none; cursor: pointer; font-size: 0.875rem; font-family: 'Outfit', sans-serif; }

/* ---------- Album Detail ---------- */
.album-hero { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .album-hero { grid-template-columns: 1fr; gap: 24px; } }
.album-art { aspect-ratio: 1; border-radius: 16px; overflow: hidden; }
.album-art img { width: 100%; height: 100%; object-fit: cover; }
.album-meta { display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0 24px; font-size: 0.875rem; color: var(--muted); }
.album-meta span { display: flex; align-items: center; gap: 6px; }
.back-link { color: var(--muted); font-size: 0.875rem; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.back-link:hover { color: var(--accent); }

/* Track list */
.track-list { margin-top: 32px; }
.track-row {
  display: grid; grid-template-columns: 40px 1fr 80px 48px; gap: 12px;
  align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; cursor: pointer; transition: background 0.15s;
}
.track-row:hover { background: rgba(212,168,83,0.05); }
.track-row.playing { color: var(--accent); }
.track-num { color: var(--muted); text-align: center; font-variant-numeric: tabular-nums; }
.track-title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-duration { color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; }
.track-play {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: transparent; color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.track-play:hover { background: var(--accent); color: var(--bg); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--fg); font-family: 'Outfit', sans-serif; font-size: 0.875rem; outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-select {
  width: 100%; padding: 12px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--fg); font-family: 'Outfit', sans-serif; font-size: 0.875rem; outline: none;
}

/* Filter pills */
.pill {
  padding: 8px 20px; border-radius: 100px; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; border: 1px solid var(--border);
  background: var(--surface); color: var(--muted); font-family: 'Outfit', sans-serif;
}
.pill:hover { color: var(--fg); border-color: var(--accent); }
.pill.active { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* ---------- Contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.contact-card .icon { color: var(--accent); flex-shrink: 0; }
.contact-card .lbl { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-card .val { font-size: 0.875rem; white-space: pre-line; }

/* ---------- Merch ---------- */
.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.merch-card { background: var(--surface); border-radius: 16px; overflow: hidden; transition: transform 0.3s; display: block; }
.merch-card:hover { transform: translateY(-4px); }
.merch-img { aspect-ratio: 1; overflow: hidden; }
.merch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.merch-card:hover .merch-img img { transform: scale(1.05); }
.merch-body { padding: 16px; }
.merch-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; margin-bottom: 4px; }
.merch-body .price { color: var(--accent); font-weight: 600; }
.merch-body .cat { font-size: 0.75rem; color: var(--muted); }

/* ---------- Service cards ---------- */
.service-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: border-color 0.2s; }
.service-card:hover { border-color: rgba(212,168,83,0.5); }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 8px; }
.service-card .price { color: var(--accent); font-size: 1rem; margin-bottom: 16px; }
.service-card ul { list-style: none; }
.service-card li { font-size: 0.875rem; color: var(--muted); padding: 4px 0 4px 20px; position: relative; }
.service-card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.testimonial blockquote { color: var(--muted); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial .author { font-weight: 500; }
.testimonial .role { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); font-size: 0.875rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .caption { opacity: 1; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item .stat-icon { color: var(--accent); margin-bottom: 12px; }
.stat-item .stat-val { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--accent); margin-bottom: 4px; }
.stat-item .stat-lbl { font-size: 0.875rem; color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 672px; margin: 0 auto; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-dot { position: absolute; left: -38px; top: 16px; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; border: 4px solid var(--bg); }
.tl-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.tl-card .year { font-family: 'Cormorant Garamond', serif; color: var(--accent); font-size: 1.125rem; margin-bottom: 4px; }
.tl-card .event { font-size: 0.875rem; color: var(--muted); }

/* ---------- Press ---------- */
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.press-card { background: var(--surface); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s; display: block; }
.press-card:hover { transform: translateY(-4px); }
.press-card .press-img { aspect-ratio: 16/9; overflow: hidden; }
.press-card .press-img img { width: 100%; height: 100%; object-fit: cover; }
.press-card .press-body { padding: 20px; }
.press-card .press-date { font-size: 0.75rem; color: var(--accent); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.press-card .press-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 8px; transition: color 0.2s; }
.press-card:hover .press-body h3 { color: var(--accent); }
.press-card .press-body p { font-size: 0.875rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Image placeholder fallback ---------- */
.img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a); color: var(--muted);
  font-size: 0.75rem; text-align: center; padding: 16px;
}

/* ---------- Animations ---------- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease-out forwards; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex-center { display: flex; justify-content: center; }
.flex-wrap { display: flex; flex-wrap: wrap; }
