/* ── SUPPLIERS PAGES (djs, makeup, videography) ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Rethink Sans', sans-serif; background: linear-gradient(160deg, #FDFAF5 0%, #EDE8DB 100%); color: #2a2015; overflow-x: hidden; min-height: 100vh; }

.ih-hero {
  min-height: 56vh;
  background: center/cover no-repeat;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding-top: 70px;
}
.ih-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.44); }
.ih-hero-text { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.ih-hero h1 {
  font-family: 'Quattrocento', serif;
  font-size: clamp(26px, 5vw, 60px); font-weight: 400; color: #fff;
  text-transform: uppercase; letter-spacing: 5px;
  text-shadow: 0 2px 22px rgba(0,0,0,0.5); line-height: 1.2;
}

.ih-wrap { max-width: 720px; margin: 0 auto; padding: 64px 24px 90px; }

/* Section head */
.ih-sec { margin-bottom: 42px; }
.ih-sec:last-child { margin-bottom: 0; }
.ih-sec-head {
  display: flex; align-items: center; gap: 18px; margin-bottom: 0;
}
.ih-rule { flex: 1; height: 1px; background: rgba(165,147,80,0.35); }
.ih-sec-head h2 {
  font-family: 'Quattrocento', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: #A59350;
  min-width: 0; text-align: center;
}

/* Price table (used by djs.html) */
.price-table {
  background: #fff; border: 1px solid rgba(165,147,80,0.2);
  border-radius: 6px; overflow: hidden; margin-top: 18px;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(165,147,80,0.1);
  font-family: 'Rethink Sans', sans-serif; font-size: 13px; color: #3a3020;
}
.price-row:last-child { border-bottom: none; }
.price-row .price-name { font-weight: 400; }
.price-row .price-val { font-weight: 600; color: #A59350; white-space: nowrap; margin-left: 16px; }

/* Artist rows */
.artists { margin-top: 18px; }
.artist-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(165,147,80,0.1);
}
.artist-row:first-child { border-top: 1px solid rgba(165,147,80,0.1); }
.artist-name {
  font-family: 'Quattrocento', serif; font-size: 15px; font-weight: 700; color: #2a2015;
  text-align: center;
}
.artist-tags { display: flex; gap: 5px; flex-wrap: wrap; justify-content: center; }
.atag {
  font-family: 'Rethink Sans', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: #A59350;
  border: 1px solid rgba(165,147,80,0.45); padding: 3px 8px; border-radius: 6px;
  text-decoration: none; transition: background .18s, color .18s;
}
.atag:hover { background: #A59350; color: #fff; }
