/* ============================================================
   Anderson Rodrigues — style.css
   Concert-hall-at-night palette. Brass gold + velvet burgundy
   accents. Fraunces (display) / Inter (body) / IBM Plex Mono
   (tempo-marking eyebrows, dates, utility labels).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  --bg: #14171F;
  --panel: #1B1F2A;
  --panel-2: #20263380;
  --text: #ECE8DE;
  --muted: #9AA0AE;
  --gold: #C9A227;
  --gold-soft: #C9A22733;
  --burgundy: #7A2E2E;
  --hairline: #32384A;
  --maxw: 920px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: var(--gold); text-decoration: none; }
a:hover{ text-decoration: underline; }
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 500; }
h2{ font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3{ font-size: 1.3rem; font-weight: 600; }

p{ margin: 0 0 1.1em; color: var(--text); }
p.lede{ color: var(--muted); font-size: 1.1rem; max-width: 62ch; }

.eyebrow{
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--gold);
  text-transform: none;
  margin-bottom: .9em;
  display: inline-block;
}

.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
header.site{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20,23,31,0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.navbar{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}
.brand span{ color: var(--gold); }
.brand:hover{ text-decoration: none; }

nav.links{ display: flex; gap: 22px; flex-wrap: wrap; }
nav.links a{
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}
nav.links a:hover, nav.links a.active{ color: var(--gold); text-decoration: none; }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--text);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: .9rem;
  font-family: 'IBM Plex Mono', monospace;
}

.lang-switch{
  font-family: 'IBM Plex Mono', monospace;
  font-size: .8rem;
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-switch a{
  color: var(--muted);
  padding: 3px 7px;
  border: 1px solid var(--hairline);
  border-radius: 3px;
}
.lang-switch a.active{
  color: var(--gold);
  border-color: var(--gold);
}
.lang-switch a:hover{ text-decoration: none; color: var(--gold); }

@media (max-width: 680px){
  nav.links{
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding-top: 14px;
  }
  nav.links.open{ display: flex; }
  .nav-toggle{ display: inline-block; }
  .navbar{ flex-wrap: wrap; }
}

/* ---------- Hero ---------- */
.hero{
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--hairline);
}
.hero .role-tag{
  font-family: 'IBM Plex Mono', monospace;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.hero .role-tag strong{ color: var(--gold); font-weight: 500; }

.video-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 28px;
}
.video-frame iframe{
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

.cta-row{ display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn{
  font-family: 'IBM Plex Mono', monospace;
  font-size: .85rem;
  padding: 12px 20px;
  border-radius: 3px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-block;
}
.btn:hover{ background: var(--gold-soft); text-decoration: none; }
.btn.solid{ background: var(--gold); color: #14171F; font-weight: 500; }
.btn.solid:hover{ background: #dcb640; }

/* ---------- Sections ---------- */
section{ padding: 56px 0; border-bottom: 1px solid var(--hairline); }
section:last-of-type{ border-bottom: none; }

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 680px){ .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 22px;
}

/* ---------- Program / engagements list ---------- */
.program-list{ margin-top: 8px; }
.program-item{
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
}
.program-item:last-child{ border-bottom: 1px solid var(--hairline); }
.program-date{
  font-family: 'IBM Plex Mono', monospace;
  font-size: .82rem;
  color: var(--gold);
  padding-top: 2px;
}
.program-body h3{ margin-bottom: 4px; font-size: 1.05rem; }
.program-body p{ margin: 0; color: var(--muted); font-size: .95rem; }

@media (max-width: 560px){
  .program-item{ grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Reel grid (secondary videos) ---------- */
.reel-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 680px){ .reel-grid{ grid-template-columns: 1fr; } }
.reel-item .video-frame{ margin-top: 10px; }
.reel-item h3{ font-size: 1rem; margin-bottom: 2px; }
.reel-item .tag{
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
footer{
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: .9rem;
}
footer a{ color: var(--muted); }
footer a:hover{ color: var(--gold); }

/* ---------- Utility ---------- */
.list-plain{ list-style: none; padding: 0; margin: 0; }
.list-plain li{
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
}
.list-plain li:last-child{ border-bottom: 1px solid var(--hairline); }
.muted{ color: var(--muted); }
.mt-0{ margin-top: 0; }
