/* styles.css — elegant editorial, white background, smaller section titles */

:root{
  --bg: #ffffff;
  --fg: #111111;
  --muted: #6a6a6a;
  --light: #eceae6;
  --rule: #dcd8d2;
  --accent: #111111;

  --max: 920px;

  --serif-display: ui-serif, Georgia, "Times New Roman", Times, serif;
  --serif-body: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 18px/1.72 var(--serif-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Links */
a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding-bottom: 2px;
}
a:hover{ border-bottom-color: var(--accent); }

/* Header */
.site-header{
  border-bottom: 1px solid var(--light);
  background: var(--bg);
}

.mast{
  text-align: center;
  padding-top: 10px;
}

.kicker{
  font: 12px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.mast-title{
  font-family: var(--serif-display);
  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 auto;
}

.mast-subtitle{
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
}

.nav{
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 22px 0 8px;
  flex-wrap: wrap;
}

.nav-link{
  font: 12px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}
.nav-link:hover{ border-bottom-color: var(--fg); }
.nav-link.is-active{ border-bottom-color: var(--fg); }

/* Sections */
.section{ margin-top: 48px; }

/* Smaller section titles */
.section-title{
  font: 10.5px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--accent);
}

/* Home specifics */
.event-line{
  margin: 10px 0 0;
  font-size: 20px;
}
.event-note{
  margin: 10px 0 0;
  color: var(--muted);
}

.two-col{
  column-count: 2;
  column-gap: 48px;
}
@media (max-width: 880px){
  .two-col{ column-count: 1; }
  .mast-title{ font-size: 34px; }
}

/* Buttons / links row */
.links{
  margin-top: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.btn{
  font: 12px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 4px;
  border-bottom: none;
}
.btn:hover{ opacity: .9; }

.text-link{
  font: 12px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--fg);
}

/* Schedule page */
.page-title{
  font-family: var(--serif-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 30px 0 8px;
}

.page-subtitle{
  color: var(--muted);
  margin-bottom: 30px;
}

.table{
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--rule);
}

.table th{
  text-align: left;
  font: 10.5px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 6px;
  border-bottom: 1px solid var(--rule);
}

.table td{
  padding: 20px 6px;
  border-bottom: 1px solid var(--light);
  vertical-align: top;
}

.time{
  width: 170px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.item-title{ font-weight: 700; }
.item-note{ color: var(--muted); margin-top: 6px; }
.note{ margin-top: 18px; color: var(--muted); font-size: 15px; }

/* Footer */
.site-footer{
  margin-top: 70px;
  padding-bottom: 40px;
}

.footer-rule{
  height: 1px;
  background: var(--light);
}

.footer-row{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  font: 12px/1.6 var(--sans);
  letter-spacing: .06em;
  color: var(--muted);
}

.footer-links a{
  border-bottom: none;
  color: var(--muted);
}
.footer-links a:hover{ text-decoration: underline; }