/* TigerMUN 2026 – Minimal, accessible theme */
:root{
  --bg:#0b0b0c;
  --fg:#0f1115;
  --text:#111318;
  --muted:#606770;
  --brand:#ea5a0c;
  --brand-dark:#c04b0b;
  --surface:#ffffff;
  --surface-2:#f5f7fa;
  --ring: rgba(234,90,12,.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:#111;
  background:#fff;
  line-height:1.6;
}
img{max-width:100%;height:auto;display:block}

.container{max-width:1100px;margin:0 auto;padding:0 20px}
.section{padding:56px 0}
.section.alt{background:var(--surface-2)}
h1,h2,h3{line-height:1.2;margin:0 0 12px}
h1{font-size:clamp(2rem,4vw,3rem)}
h2{font-size:clamp(1.5rem,3vw,2rem)}
h3{font-size:1.1rem}
p{margin:0 0 12px}
.lede{font-size:1.15rem}
.note{color:#555;font-size:.95rem}

.site-header{
  position:sticky;top:0;z-index:20;
  backdrop-filter:saturate(120%) blur(6px);
  background:rgba(255,255,255,.9);
  border-bottom:1px solid #eee;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:#111}
.brand img{width:44px;height:44px}
.brand-text{font-weight:700;font-size:1.1rem}

.nav-toggle{display:none}
.menu{list-style:none;display:flex;gap:18px;margin:0;padding:0}
.menu a{color:#111;text-decoration:none;font-weight:600}
.menu a:hover{color:var(--brand)}

@media (max-width:860px){
  .nav-toggle{display:inline-block;border:1px solid #ddd;padding:8px 10px;background:#fff;border-radius:8px}
  .menu{display:none;flex-direction:column;position:absolute;right:20px;top:64px;background:#fff;border:1px solid #eee;border-radius:12px;box-shadow:0 6px 24px rgba(0,0,0,.06);padding:10px 14px}
  .menu.open{display:flex}
}

.hero{padding:48px 0 24px;background:linear-gradient(180deg,#fff, #fdf5ef)}
.hero-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:center}
.hero-art img{max-width:360px;margin:0 auto}
.hero .btn{margin-right:10px}
.countdown{margin-top:10px;font-weight:600;color:#333}
@media (max-width:860px){.hero-inner{grid-template-columns:1fr} .hero-art{order:-1}}

.btn{display:inline-block;border:2px solid var(--brand);padding:10px 16px;border-radius:12px;text-decoration:none;font-weight:700;color:var(--brand);transition:.2s ease}
.btn:hover{transform:translateY(-1px);box-shadow:0 4px 14px rgba(234,90,12,.15)}
.btn.primary{background:var(--brand);color:#fff}
.btn.primary:hover{background:var(--brand-dark)}

.at-a-glance{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:10px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.grid3.minis .person h3{margin-bottom:4px}
.card{background:#fff;border:1px solid #eee;border-radius:16px;padding:16px;box-shadow:0 1px 0 rgba(0,0,0,.02)}
.table-wrap{overflow:auto;border:1px solid #eee;border-radius:12px;background:#fff}
table{width:100%;border-collapse:collapse}
th,td{padding:12px;border-bottom:1px solid #eee;text-align:left}
thead th{background:#fafafa}

.committee{border-left:4px solid var(--brand)}
.inline{font-weight:700;text-decoration:none;color:var(--brand)}

.checklist{list-style:none;margin:0;padding:0}
.checklist li{display:flex;align-items:flex-start;gap:10px;margin:8px 0}
.checklist li::before{content:"▢";font-weight:700;line-height:1.2;color:var(--brand)}

.resource-list{list-style:none;padding:0;margin:0}
.resource-list li{margin:8px 0}

.site-footer{padding:24px 0;border-top:1px solid #eee;background:#fafafa;font-size:.95rem;color:#444}

@media (max-width:860px){
  .grid3,.grid2,.at-a-glance{grid-template-columns:1fr}
}
