
:root{
  --accent:#be3504;
  --accent-dark:#391001;
  --bg:#050505;
  --panel:#111;
  --text:#f3f0eb;
  --muted:#c8c1b9;
  --max:1080px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.55;
}
a{color:#e7a58d;text-decoration:none}
a:hover{text-decoration:underline}
.site-shell{
  width:min(calc(100% - 32px),var(--max));
  margin:18px auto 40px;
  border:2px solid var(--accent);
  padding:0;
}
header{
  padding:24px 28px 18px;
  border-bottom:2px solid var(--accent);
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
}
.brand{font-family:Georgia,serif;font-style:italic}
.brand .name{font-size:clamp(1.8rem,4vw,2.4rem)}
.brand .role{font-size:1.35rem}
nav{
  display:flex;flex-wrap:wrap;justify-content:flex-end;gap:6px;
}
nav a{
  color:#fff;background:var(--accent-dark);
  border:1px solid var(--accent);
  padding:9px 12px;font-family:Georgia,serif;font-size:.92rem;
}
nav a:hover,nav a.active{background:var(--accent);text-decoration:none}
main{padding:28px}
.home-grid{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(220px,.52fr);
  gap:28px;align-items:start;
}
.home-photo{
  width:100%;max-width:330px;justify-self:end;
}
.home-photo img{width:100%;height:auto;display:block}
.home-left .quotes{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
  margin-top:8px;
}
.home-left .quote{
  border-left:2px solid var(--accent);
  padding:7px 9px;
  background:#0c0c0c;
  color:#d6d0ca;
  font-size:.74rem;
  line-height:1.28;
}
.home-left .quote cite{
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-style:normal;
  font-size:.7rem;
}
.videos-heading{margin-top:22px}
h1,h2,h3{font-family:Georgia,serif;font-weight:normal}
h1{font-size:2.1rem;margin:.1rem 0 1rem}
h2{font-size:1.38rem;border-bottom:1px solid var(--accent);padding-bottom:7px;margin-top:2.2rem}
h3{font-size:1.05rem}
.intro{font-size:1.05rem}
.quotes{margin-top:8px}
.video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.video{background:#0d0d0d;padding:12px;border:1px solid #332019}
.video iframe{width:100%;aspect-ratio:16/9;border:0;display:block}
.video-title{margin-top:9px;font-family:Georgia,serif}
.bio-layout{display:block}
.bio-layout > div{display:block}
.bio-layout aside{display:block}
.bio-photo{width:33%;max-width:330px;height:auto;display:block;float:right;margin:0 0 18px 28px}
.appearances{width:100%;border-collapse:collapse;font-size:.78rem;line-height:1.3}
.appearances th,.appearances td{padding:7px 9px;border-bottom:1px solid #332019;text-align:left;vertical-align:top}
.appearances th{font-family:Georgia,serif;color:#fff;background:var(--accent-dark)}
.appearances td:last-child{color:var(--muted);white-space:nowrap}
.album{
  display:grid;grid-template-columns:150px minmax(0,1fr);gap:25px;
  padding:20px 0;border-bottom:1px solid #332019;
  font-size:.78rem;line-height:1.32;
}
.album:last-child{border-bottom:0}
.cover{width:150px;height:150px;object-fit:cover}
.actions{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0}
.button{
  display:inline-block;padding:8px 12px;background:var(--accent-dark);
  border:1px solid var(--accent);color:#fff
}
.button:hover{background:var(--accent);text-decoration:none}
.tracklist{columns:2;column-gap:24px;margin:8px 0 0;padding-left:18px;font-size:.68rem;line-height:1.2}
.tracklist li{break-inside:avoid;margin-bottom:3px;color:#ddd}
.book{
  background:#0c0c0c;border:1px solid #332019;padding:18px;font-size:.78rem;line-height:1.32;
  display:grid;grid-template-columns:130px minmax(0,1fr);gap:22px;margin:20px 0
}
.book img{width:130px;height:160px;object-fit:contain;background:white}
footer{border-top:2px solid var(--accent);padding:14px 28px;color:#9e9892;font-size:.85rem}
@media(max-width:800px){
  header{align-items:flex-start;flex-direction:column}
  nav{justify-content:flex-start}
  .home-grid,.bio-layout{grid-template-columns:1fr}
  .home-photo{justify-self:start;max-width:300px}
  .bio-photo{float:none;width:min(100%,330px);margin:0 0 20px}
  .home-left .quotes{grid-template-columns:repeat(2,minmax(0,1fr))}
  .video-grid{grid-template-columns:1fr}
  .album{grid-template-columns:110px 1fr}
  .cover{width:110px;height:110px}
  .tracklist{columns:1}
}
@media(max-width:520px){
  .site-shell{width:100%;margin:0;border-left:0;border-right:0}
  main{padding:20px 16px}
  header{padding:20px 16px 16px}
  nav a{flex:1 1 auto;text-align:center}
  .book{grid-template-columns:1fr}
}

/* Compact video thumbnails */
.video-thumb{
  position:relative;
  display:block;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111;
}
.video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.play-badge{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(0,0,0,.72);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}
.video-thumb:hover .play-badge{background:rgba(0,0,0,.88)}

/* Final compact sizing for recordings/publications */
.recordings-page, .recordings-page p {font-size:.78rem}
.recordings-page h2{font-size:1.15rem}
.recordings-page h3{font-size:.78rem}
.recordings-page .tracklist{font-size:.68rem;line-height:1.25}

.presenters-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start}
.presenters-grid .appearances{font-size:.74rem}
.presenters-grid .appearances td{padding:6px 8px}
@media(max-width:800px){.presenters-grid{grid-template-columns:1fr;gap:0}}
