:root{
  --brand:#8a2f2a;
  --brand-dark:#1c2b3a;
  --accent:#c98a3e;
  --text:#2b2b2b;
  --muted:#666;
  --bg-alt:#f6f3ee;
  --border:#e4ded4;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Georgia', 'Times New Roman', serif;
  color:var(--text);
  line-height:1.6;
  background:#fff;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

h1,h2,h3{
  font-family:Georgia, 'Times New Roman', serif;
  color:var(--brand-dark);
  margin-top:0;
}

a{color:var(--brand)}
a:hover{color:var(--accent)}

.btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:4px;
  text-decoration:none;
  font-weight:bold;
  border:2px solid var(--brand-dark);
}
.btn-secondary{background:transparent;color:var(--brand-dark)}
.btn-secondary:hover{background:var(--brand-dark);color:#fff}

/* header */
.site-header{
  background:var(--brand-dark);
  position:sticky;
  top:0;
  z-index:10;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:24px;
  padding:14px 20px;
  flex-wrap:wrap;
}
.logo-block{display:flex;align-items:center}
.logo-img{height:52px;width:auto}

.mainnav ul{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin:0;
  padding:0;
}
.mainnav a{
  text-decoration:none;
  color:#f1ede5;
  font-size:0.95em;
}
.mainnav a:hover{color:var(--accent)}

/* hero */
.hero-banner{
  background:var(--bg-alt);
  padding:50px 0 60px;
  text-align:center;
  border-bottom:1px solid var(--border);
}
.hero-ship-badge{
  display:inline-block;
  background:var(--brand-dark);
  padding:14px 26px;
  border-radius:6px;
  margin-bottom:20px;
}
.hero-ship{height:56px;width:auto;display:block}
.hero-banner h1{font-size:1.8em;margin-bottom:10px;max-width:700px;margin-left:auto;margin-right:auto}
.hero-lead{color:var(--brand);font-weight:bold;margin-bottom:20px}
.hero-banner p{max-width:720px;margin-left:auto;margin-right:auto}

/* sections */
.section{padding:50px 0}
.section-alt{background:var(--bg-alt)}
.section h2{font-size:1.6em;margin-bottom:16px;border-bottom:3px solid var(--brand);display:inline-block;padding-bottom:6px}

.event-date{color:var(--brand);font-weight:bold;font-size:1.1em;margin-bottom:4px}

/* news */
.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  margin-top:20px;
}
.news-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:4px;
  padding:16px 18px;
}
.news-date{color:var(--brand);font-size:0.85em;font-weight:bold;margin-bottom:6px}
.news-card h3{font-size:1.05em;margin:0 0 8px}
.news-card p{font-size:0.9em;color:var(--muted);margin:0}

/* artifact / people cards */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:24px;
}
.info-card{
  background:#fff;
  border-left:3px solid var(--brand);
  padding:14px 18px;
}
.section-alt .info-card{background:#fff}
.info-card h3{font-size:1.05em;margin:0 0 4px;color:var(--brand-dark)}
.card-year, .card-role{
  display:inline-block;
  font-size:0.82em;
  color:var(--accent);
  font-weight:bold;
  margin-bottom:6px;
}
.info-card p{margin:6px 0 0;font-size:0.95em;color:var(--muted)}

/* young artists */
.artists-block{
  background:#fff;
  border:1px solid var(--border);
  border-radius:4px;
  padding:6px 22px 18px;
}
.artists-block summary{
  cursor:pointer;
  padding:16px 0;
  font-weight:bold;
  color:var(--brand-dark);
  font-size:1.1em;
}
.artists-list{
  columns:2;
  column-gap:30px;
  padding-left:20px;
  font-size:0.92em;
}
.artists-list li{margin-bottom:6px;break-inside:avoid}

/* about */
.partners-list, .partners-list li{list-style:none;padding:0;margin:0 0 16px}
.partners-list li{display:inline-block;margin-right:18px}

/* footer */
.site-footer{
  background:var(--brand-dark);
  color:#f1ede5;
  padding:30px 0;
}
.footer-inner{display:flex;flex-direction:column;gap:14px;align-items:center;text-align:center}
.footer-nav ul{list-style:none;display:flex;flex-wrap:wrap;gap:16px;justify-content:center;padding:0;margin:0}
.footer-nav a{color:#f1ede5;text-decoration:none;font-size:0.9em}
.footer-nav a:hover{color:var(--accent)}
.footer-copy{margin:0;font-size:0.85em;color:#cfc7b8}

@media (max-width:700px){
  .artists-list{columns:1}
  .header-inner{flex-direction:column;align-items:flex-start}
}
