:root {
  --navy: #1a2744;
  --slate: #4a5568;
  --slate-light: #718096;
  --cream: #faf9f7;
  --white: #ffffff;
  --border: #e2e0dc;
  --accent: #2d4a3e;
  --text: #2d3748;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 17px; scroll-behavior: smooth; }
body { font-family: 'EB Garamond', Georgia, serif; color: var(--text); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
.container { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
header { border-bottom: 1px solid var(--border); padding: 1.8rem 0; background: var(--white); }
header .container-wide { display: flex; justify-content: space-between; align-items: center; }
.site-title { font-size: 1.15rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy); text-decoration: none; font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; text-transform: uppercase; }
.site-title:hover { color: var(--accent); }
nav { display: flex; gap: 2rem; }
nav a { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.03em; color: var(--slate); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--navy); }
.hero { padding: 5rem 0 4rem; border-bottom: 1px solid var(--border); background: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('athens-crop.jpg') center/cover no-repeat; opacity: 0.22; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero .tagline { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 1.5rem; }
.hero h1 { font-size: 2.2rem; font-weight: 400; line-height: 1.35; color: var(--navy); max-width: 640px; margin-bottom: 1.8rem; }
.hero p { font-size: 1.05rem; color: var(--slate); max-width: 600px; line-height: 1.75; }
.section { padding: 3.5rem 0; }
.section + .section { border-top: 1px solid var(--border); }
.section-label { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 2rem; }
h2 { font-size: 1.55rem; font-weight: 400; color: var(--navy); margin-bottom: 1.2rem; line-height: 1.35; }
h3 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
.pub-category { margin-bottom: 2.5rem; }
.pub-category h3 { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }
.pub-item { margin-bottom: 1.8rem; }
.pub-item h4 { font-size: 1.08rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.pub-item h4 a { color: var(--navy); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.pub-item h4 a:hover { border-bottom-color: var(--navy); }
.pub-meta { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.75rem; color: var(--slate-light); margin-bottom: 0.4rem; }
.pub-item p { font-size: 0.95rem; color: var(--slate); line-height: 1.65; }
.pub-status { display: inline-block; font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.15em 0.6em; border-radius: 3px; background: var(--border); color: var(--slate); }
.pub-status.published { background: #e6f0eb; color: var(--accent); }
.prose { font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.prose p + p { margin-top: 1.2rem; }
.team-member { margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.team-member:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.team-member h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 0.15rem; }
.team-role { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 0.8rem; }
.team-member p { font-size: 0.98rem; color: var(--slate); line-height: 1.7; }
.contact-block { margin-bottom: 2rem; }
.contact-block h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.contact-block p { font-size: 0.98rem; color: var(--slate); }
.contact-block a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--border); transition: border-color 0.2s; }
.contact-block a:hover { border-bottom-color: var(--navy); }
.agenda-item { margin-bottom: 1.8rem; }
.agenda-item h4 { font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.agenda-item p { font-size: 0.95rem; color: var(--slate); line-height: 1.65; }
footer { border-top: 1px solid var(--border); padding: 2.5rem 0; background: var(--white); margin-top: 3rem; }
footer .container-wide { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.footer-left { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.72rem; color: var(--slate-light); text-align: center; }
.footer-left a { color: var(--slate-light); text-decoration: none; border-bottom: 1px solid var(--border); transition: border-color 0.2s; }
.footer-left a:hover { border-bottom-color: var(--slate-light); }
.footer-right { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 0.68rem; color: var(--slate-light); max-width: 600px; line-height: 1.5; text-align: center; }
footer nav { gap: 1.5rem; }
footer nav a { font-size: 0.72rem; }
@media (max-width: 700px) {
  html { font-size: 16px; }
  header .container-wide { flex-direction: column; gap: 1rem; align-items: flex-start; }
  nav { gap: 1.2rem; flex-wrap: wrap; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 1.65rem; }
  footer .container-wide { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}
