
:root{
  --paper:#f6f1e8;
  --paper-2:#fffdfa;
  --sand:#e5dccf;
  --sand-2:#d4c8b6;
  --ink:#2c2a27;
  --muted:#655c54;
  --blue:#284c7d;
  --blue-2:#1d3960;
  --brick:#a24a32;
  --brick-2:#843620;
  --accent:#f0e3d2;
  --shadow:0 12px 28px rgba(52,41,29,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top right, rgba(162,74,50,.10), transparent 24%),
    linear-gradient(180deg, #efe8dd 0, var(--paper) 220px, #faf7f1 100%);
}
img{max-width:100%;display:block}
a{color:var(--blue)}
a:hover{color:var(--brick-2)}

.site-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:18px 18px 40px;
}
.site-header{
  background:rgba(255,253,250,.95);
  border:1px solid var(--sand);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:12px 20px 10px;
}
.branding{
  text-align:center;
}
.branding img{
  width:min(100%, 360px);
  margin:0 auto 2px;
}
.branding .tagline{
  font-size:.98rem;
  color:var(--muted);
  letter-spacing:.04em;
  text-transform:uppercase;
  margin:0 0 2px;
}

.layout{
  display:grid;
  grid-template-columns:230px 1fr;
  gap:24px;
  margin-top:22px;
  align-items:start;
}
.sidebar{
  position:sticky;
  top:16px;
}
.menu-box, .note-box{
  background:var(--paper-2);
  border:1px solid var(--sand);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.box-title{
  margin:0;
  padding:11px 14px;
  background:linear-gradient(180deg, #f3ebdf, #e8dcc9);
  border-bottom:1px solid var(--sand);
  color:var(--blue-2);
  font-size:1.04rem;
}
.menu{
  padding:12px;
}
.menu a{
  display:block;
  text-decoration:none;
  background:linear-gradient(180deg,var(--blue),var(--blue-2));
  color:#fff;
  font-weight:bold;
  padding:11px 12px;
  margin:0 0 9px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 3px 8px rgba(25,46,76,.18);
}
.menu a:hover, .menu a:focus{
  background:linear-gradient(180deg,#345c91,#1f3c63);
}
.menu a.active{
  background:linear-gradient(180deg, var(--brick), var(--brick-2));
}
.note-box{
  margin-top:14px;
}
.note-box .inner{
  padding:14px;
  color:var(--muted);
  line-height:1.55;
  font-size:.96rem;
}
.content{
  background:rgba(255,253,250,.98);
  border:1px solid var(--sand);
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.content-inner{
  padding:24px 28px 32px;
}
.page-intro{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:center;
  padding-bottom:22px;
  border-bottom:1px solid #eadfce;
}
.page-intro--simple{
  grid-template-columns:1fr;
}
.page-intro h1{
  margin:0 0 8px;
  color:var(--blue-2);
  font-size:2.2rem;
  line-height:1.08;
}
.page-intro .standfirst{
  margin:0;
  font-size:1.08rem;
  line-height:1.75;
  color:var(--muted);
}
.intro-media img{
  width:100%;
  border-radius:14px;
  border:1px solid #d8c9b4;
}
.kicker{
  margin:0 0 8px;
  color:var(--brick-2);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  font-weight:bold;
}
.block{
  padding-top:22px;
}
.block + .block{
  margin-top:12px;
  border-top:1px solid #ece2d5;
}
.block h2{
  color:var(--blue-2);
  margin:0 0 8px;
  font-size:1.62rem;
}
.block h3{
  color:var(--blue-2);
  margin:0 0 8px;
  font-size:1.18rem;
}
p{
  margin:0 0 14px;
  line-height:1.76;
  font-size:1.02rem;
}
ul, ol{
  margin:0 0 14px 22px;
  line-height:1.72;
}
.small{
  color:var(--muted);
  font-size:.95rem;
}
.grid-2, .grid-3, .cards, .timeline, .facts, .gallery-grid{
  display:grid;
  gap:18px;
}
.grid-2{grid-template-columns:1fr 1fr}
.grid-3,.cards{grid-template-columns:repeat(3,minmax(0,1fr))}
.timeline{grid-template-columns:repeat(2,minmax(0,1fr))}
.cards article, .timeline article, .fact, .panel, .gallery-card{
  background:linear-gradient(180deg,#fffefb,#fbf6ee);
  border:1px solid #e3d8ca;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(58,43,24,.06);
}
.cards article, .timeline article, .fact, .panel{
  padding:16px;
}
.cards img{
  border-radius:10px;
  margin:10px 0 12px;
}
.facts{grid-template-columns:repeat(2,minmax(0,1fr))}
.fact strong{
  display:block;
  color:var(--brick-2);
  margin-bottom:6px;
}
.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.button{
  display:inline-block;
  padding:10px 14px;
  border-radius:8px;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  background:linear-gradient(180deg, var(--blue), var(--blue-2));
}
.button.alt{
  background:linear-gradient(180deg, var(--brick), var(--brick-2));
}
.quote{
  padding:16px 18px;
  background:#f7efe5;
  border-left:5px solid var(--brick);
  border-radius:10px;
  color:#4d453d;
  font-style:italic;
}
.timeline-year{
  display:inline-block;
  margin-bottom:8px;
  color:var(--brick-2);
  font-weight:bold;
}
.hero-band{
  height:230px;
  background:url('../images/hero.jpg') center center / cover no-repeat;
  position:relative;
}
.hero-band:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(25,31,43,.50), rgba(25,31,43,.18) 55%, rgba(25,31,43,.04));
}
.hero-band .overlay{
  position:relative;
  z-index:1;
  color:#fff;
  padding:32px 32px 20px;
  max-width:620px;
}
.hero-band h1{
  margin:0 0 8px;
  font-size:2.4rem;
}
.hero-band p{
  margin:0;
  color:#fff;
}
.gallery-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.gallery-card{
  overflow:hidden;
}
.gallery-card button{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
}
.gallery-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.gallery-card .caption{
  padding:12px 14px 14px;
}
.placeholder{
  aspect-ratio:4/3;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(135deg,#efe3d6,#f8f2ea);
  color:#7c6f62;
  text-align:center;
  padding:18px;
  font-size:1rem;
}
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(18,20,24,.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:9999;
}
.lightbox.open{display:flex}
.lightbox-content{
  max-width:min(1100px, 100%);
  width:100%;
  position:relative;
}
.lightbox-content img{
  width:100%;
  max-height:82vh;
  object-fit:contain;
  border-radius:12px;
  background:#111;
}
.lightbox-close{
  position:absolute;
  top:-14px;
  right:-6px;
  border:0;
  width:40px;
  height:40px;
  border-radius:999px;
  cursor:pointer;
  color:#fff;
  background:rgba(17,17,17,.82);
  font-size:1.4rem;
}
.lightbox-caption{
  color:#fff;
  margin-top:10px;
  text-align:center;
}
.footer{
  text-align:center;
  color:var(--muted);
  padding:18px 10px 4px;
  font-size:.95rem;
}
.source-list li{margin-bottom:8px}
.callout{
  padding:14px 16px;
  background:#fbf3e7;
  border:1px solid #ead7bf;
  border-radius:10px;
}
.hr{
  height:1px;
  background:#ebe1d4;
  margin:18px 0;
}
@media (max-width: 960px){
  .layout{grid-template-columns:1fr}
  .sidebar{position:static}
  .page-intro,.page-intro--simple,.grid-2,.grid-3,.cards,.timeline,.facts,.gallery-grid{
    grid-template-columns:1fr;
  }
  .content-inner{padding:20px}
  .hero-band{height:auto}
  .hero-band .overlay{padding:26px 22px}
}
