:root{
  --bg:#f6f6f6;
  --fg:#0b0b0b;
  --muted:#6a6a6a;
  --line:#e8e8e8;
  --soft:#f6f6f6;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius:18px;
  --max: 1040px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  color:var(--fg);
  background:var(--bg);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
a:hover{ text-decoration:underline }

.wrap{max-width:var(--max); margin:0 auto; padding:14px 18px}
main.wrap{ padding-top:0; padding-bottom:0; }
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(0,0,0,.92);
  color:#fff;
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{
  max-width:var(--max); margin:0 auto; padding: 12px 18px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:18px;
}
.brand{
  display:block;
  min-width: 1px;
  height: 1px;
  overflow:hidden;
}
.brand img{display:none}
.brand .word{display:none}

.menu{
  display:flex;
  gap:12px;
  row-gap:6px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}
.menu a{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:10px 10px;
  border-radius:12px;
  color: rgba(255,255,255,.86);
}
.menu a:hover{ text-decoration:none; color:#fff }
.menu a.active{ background: rgba(255,255,255,.10); color:#fff; text-decoration:none }

.hero{ padding:24px 0 0; }
.hero-logo{
  width:min(560px, 100%);
  display:block;
  margin:0 auto 10px;
}
.subhead{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-align:center;
  max-width: 820px;
  margin:0 auto 0;
  color: var(--fg);
  font-size: 16px;
}
.subhead .muted{color:var(--muted)}
.kicker{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-align:center;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-top:0;
  margin-bottom:10px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
  margin: 18px 0 34px;
}

/* ABOUT: ensure the top two cards (Overview/Transparency) match in height */
.about-top{ align-items: stretch; }
.about-top .card{ height: 100%; display:flex; flex-direction:column; }
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h2, .card h3{
  margin:0 0 10px;
  font-weight:600;
}
.card p{margin:0 0 10px; color:var(--fg)}
.small{font-size:14px; color:var(--muted); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;}
.btn{
  display:inline-block;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--soft);
  text-decoration:none !important;
}
.btn:hover{filter:brightness(.98)}
hr.sep{border:none; border-top:1px solid var(--line); margin: 14px 0}

.col-8{grid-column: span 8}
.col-6{grid-column: span 6}
.col-4{grid-column: span 4}
.col-12{grid-column: span 12}

@media (max-width: 860px){
  .col-8,.col-6,.col-4{grid-column: span 12}
  .menu a{padding:0}
}

.section-title{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin: 0 0 10px;
}

.artist-card{
  display:flex; gap:14px; align-items:flex-start;
}
.thumb{
  width:92px; height:92px; flex:0 0 92px;
  border-radius:16px;
  border:1px solid var(--line);
  background:var(--soft);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.thumb img{width:100%; height:100%; object-fit:cover; display:block}
.artist-meta{flex:1}
.artist-meta h3{margin:2px 0 8px}
.badge{
  display:inline-block;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  background: var(--bg);
}
.ghosted{opacity:.55}
.tracklist{
  margin:10px 0 0;
  padding-left: 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--muted);
  font-size: 13px;
}
.tracklist li{margin:6px 0}
.note{
  margin-top:10px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.footer{
  border-top:1px solid var(--line);
  margin-top:36px;
  padding: 20px 0 34px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
}
.footer .row{
  display:flex; gap:12px; justify-content:space-between; flex-wrap:wrap;
}
.footer a{color:var(--muted)}
.footer .tiny{max-width: 760px}

/* V2 refinements */
.nav-links{ gap: 18px; }
.nav-links a{ letter-spacing: 0.06em; font-size: 13px; color: var(--muted); }
.nav-links a.active{ color: var(--fg); }

/* Header: social logo links + Connect */
.header-actions{ display:flex; align-items:center; gap:14px; justify-content:flex-end; }

/* CONNECT should match other nav links (same font/size), not a pill */
.connect-link{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:0;
  border-radius:12px;
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:400;
}
.connect-link:hover{ color:#fff; text-decoration:none; }
.connect-link.active{ background: rgba(255,255,255,.10); color:#fff; }

.socials{ display:flex; align-items:center; gap:10px; }
.social-link{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px;
  text-decoration:none;
  background:transparent;
  border:none;
}
.social-link svg{ width:18px; height:18px; fill: currentColor; }
.social-link.x{ color:#ffffff; }
.social-link.youtube{ color:#ff0000; }
.social-link.instagram{ color:#e4405f; }
.social-link.facebook{ color:#1877f2; }
.social-link:hover{ filter:brightness(1.05); }

@media (max-width: 980px){
  .nav-inner{ grid-template-columns: 1fr; row-gap:10px; }
  .menu{ justify-content:center; }
  .header-actions{ justify-content:center; }
}

/* Footer: keep the workflow statement on a single line on wider screens */
@media (min-width: 900px){
  .footer .tiny > div:first-child{ white-space:nowrap; }
}

/* ABOUT page: ensure stacked sections span full width (prevents narrow vertical column) */
.page-wrap{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
  padding-top: 14px;
}
.card{ background: var(--card); border:1px solid var(--line); box-shadow:none; }
.artist-row{ padding: 18px 18px; }
.artist-row + .artist-row{ border-top: 1px solid var(--line); }
.artist-logo{ width: 96px; height: 96px; border-radius: 18px; object-fit: cover; }
.artist-name{ font-size: 22px; margin: 0 0 8px 0; }
.artist-desc{ font-size: 16px; color: var(--muted); margin:0; line-height:1.5; }
@media (max-width: 640px){ .artist-logo{ width: 84px; height:84px; } .artist-name{ font-size:20px; } .artist-desc{ font-size:15px; } }

.values{ margin: 0; padding-left: 20px; color: var(--muted); }
.values li{ margin: 10px 0; line-height:1.5; }
.values strong{ color: var(--fg); }

/* ABOUT: Core Values should read in full black (no muted body text) */
.values-card .values,
.values-card .values li{ color: var(--fg); }

/* =========================
   Catalog (V2 CANON)
   Desktop (≥1200px): 3 columns
   Tablet (768–1199px): 2 columns
   Mobile (<768px): 1 column
   ========================= */

.catalog-hero{ padding-top:18px; padding-bottom:10px; }
.catalog-brand{ display:flex; flex-direction:column; align-items:center; gap:0; margin:0 auto; padding:0; }
.catalog-brand img{ width:min(560px, 100%); height:auto; display:block; margin:0 auto; }
.catalog-brandline{ font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; text-align:center; color:var(--muted); font-size:12px; letter-spacing:.12em; text-transform:uppercase; margin:0; }
.catalog-title{ text-align:center; margin:10px 0 0; }

.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:10px;
  margin-bottom:16px;
}

@media (max-width:1199px){
  .catalog-grid{ grid-template-columns:repeat(2,1fr); }
}

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

.catalog-card{ padding:0; overflow:hidden; }
.catalog-cover{ width:100%; height:auto; display:block; }
.catalog-body{ padding:16px 16px 14px; }
.catalog-kicker{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.catalog-act a{ font-weight:700; text-decoration:none; }
.catalog-meta{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.catalog-meta .sep{ color:#b0b0b0; }

.catalog-album{ margin:10px 0 8px; }

.tracklist .tn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid #e5e5e5;
  margin-right:10px;
  font-size:12px;
  color:#666;
}

.micro{ font-size:11px; color:#7a7a7a; margin-top:10px; }

.catalog-footnote{ max-width:860px; margin:10px auto 28px; text-align:center; font-size:12px; color:#6f6f6f; }

/* Show the muted placeholder card only on tablet/mobile */
.future-card{ display:none; }
@media (max-width:1199px){ .future-card{ display:block; } }

.page-title{ text-align:center; margin:0; font-weight:800; }

.privacy-hero{ display:flex; flex-direction:column; align-items:center; gap:12px; }
.privacy-hero .subhead{ text-align:center; margin:0 auto 0; max-width: 60ch; }

.connect-card{ display:inline-flex; align-items:center; justify-content:center; padding:10px 14px; border:1px solid var(--line); border-radius:12px; text-decoration:none; color:var(--fg); background: #fff; font-weight:700; }
.connect-card:hover{ box-shadow: 0 6px 18px rgba(0,0,0,0.08); }


/* --- HOME refinements (V2.2.5) --- */
@media (min-width: 900px){
  .footer .tiny{ max-width: 980px; }
}

/* HOME: artist cards - logo centered under name, description fills card */
.home-artist{ display:block; }
.home-artist .artist-meta{ text-align:center; }
.home-artist .thumb{ margin: 10px auto 0; width:160px; height:160px; flex:0 0 160px; }
.home-artist .thumb img{ object-fit:contain; }

.home-artist .artist-meta p.small{ text-align:left; margin-top: 10px; }


/* --- PATCH: tagline color (site-wide) --- */
.pp-tagline{
  color: #1f1f1f !important;
}
/* --- END PATCH --- */


/* --- PATCH: HOME artist logos (no crop, no dim, large) --- */
.home-artist .thumb{
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 18px;
}
.home-artist .thumb img{
  max-height: 270px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1 !important;
  filter: none !important;
  background: transparent !important;
}
/* Give Light BOURNE a touch more fill (visual weight) */
.home-artist .thumb img[src*="light-bourne-logo-home"]{
  max-height: 285px;
}
/* --- END PATCH --- */






/* =========================
   ARTISTS – ROSTER GRID (V2.3)
========================= */
.roster-grid{ gap:40px; }

.roster-card{
  text-decoration:none;
  color:#000;
  display:block;
  padding:0;
}

.roster-image{
  overflow:hidden;
  aspect-ratio: 3 / 2;
  background:#fff;
  border-radius: calc(var(--radius) - 2px);
}

.roster-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .30s ease;
}

.roster-card:hover .roster-image img{
  transform: scale(1.03);
}

.roster-info{ padding:22px 22px 24px; }

.roster-name{ margin:0 0 8px 0; }

.roster-desc{ margin:0 0 14px 0; color:#1f1f1f; }

.roster-cta{
  display:inline-block;
  border-bottom:1px solid transparent;
  transition:border-color .30s ease;
}

.roster-card:hover .roster-cta{ border-color:#000; }

/* Responsive: collapse to one column */
@media (max-width: 860px){
  .roster-grid .col-4{ grid-column: span 12; }
}


/* Leadership name emphasis */
.grid .card .section-title { color: #222222; }
