/* ============================================
   Baptiste Albertone — Personal Website
   Aesthetic: New Yorker-adjacent editorial
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  background-color: #F7F4EF;
  color: #1C1A17;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  line-height: 1.15;
  color: #1C1A17;
}

p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #2E2B26;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F7F4EF;
  border-bottom: 1px solid #D9D3C8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 56px;
}

.nav-brand {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1C1A17;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.6; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B6560;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1C1A17; }

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #D9D3C8;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 46%;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A7F72;
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #1C1A17;
  margin-bottom: 1.8rem;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: #1C1A17;
  margin-bottom: 1.8rem;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3D3A34;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-artwork {
  align-self: center;
}

.hero-artwork-img {
  display: block;
  width: 100%;
  height: auto;
  filter: sepia(8%) saturate(88%) brightness(96%);
}

.hero-artwork-caption {
  margin-top: 0.7rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #B0A89C;
  text-align: right;
  font-style: italic;
}

.btn-link {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1C1A17;
  border-bottom: 1px solid #1C1A17;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.btn-link:hover { opacity: 0.5; }

.dot-sep {
  color: #B0A89C;
  font-size: 1.2rem;
}

/* ---------- Section Base ---------- */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid #D9D3C8;
}

.section-alt {
  background: #F0EDE7;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-label {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A7F72;
  white-space: nowrap;
}

.section-rule {
  flex: 1;
  height: 1px;
  background: #D9D3C8;
}

.section-intro {
  max-width: 600px;
  font-size: 1rem;
  color: #5A5550;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* ---------- Editorial Image ---------- */
.editorial-image-panel {
  border-bottom: 1px solid #D9D3C8;
  background: #F0EDE7;
  padding: 3.5rem 0;
}

.editorial-figure {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.editorial-img {
  display: block;
  width: 100%;
  height: auto;
  filter: sepia(8%) saturate(90%) brightness(97%);
}

.editorial-caption {
  margin-top: 0.9rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #8A7F72;
  text-align: right;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1C1A17;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.about-text p:not(.about-lead) {
  margin-bottom: 1.2rem;
  color: #3D3A34;
}

.about-sidebar {
  border-left: 1px solid #D9D3C8;
  padding-left: 2rem;
}

.sidebar-block {
  margin-bottom: 2.5rem;
}

.sidebar-block h4 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A7F72;
  margin-bottom: 0.9rem;
  font-weight: 400;
}

.sidebar-block ul li {
  font-size: 0.95rem;
  color: #3D3A34;
  padding: 0.3rem 0;
  border-bottom: 1px solid #E8E3DC;
  line-height: 1.5;
}

.sidebar-block ul li:last-child {
  border-bottom: none;
}

/* ---------- Research / Papers ---------- */
.papers-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.paper-item {
  padding: 2.5rem 0;
  border-bottom: 1px solid #D9D3C8;
}

.paper-item:first-child {
  border-top: 1px solid #D9D3C8;
}

.paper-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.paper-status {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
}

.status-wp         { background: #E8E3DC; color: #5A5550; }
.status-progress   { background: #EDE8DF; color: #7A6A50; border: 1px solid #D4C8B5; }
.status-pub        { background: #1C1A17; color: #F7F4EF; }
.status-forthcoming { background: #E8E3DC; color: #5A5550; border: 1px solid #C8C0B4; font-style: italic; }

.paper-year {
  font-size: 0.85rem;
  color: #8A7F72;
  font-family: 'EB Garamond', Georgia, serif;
}

.paper-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: #1C1A17;
  line-height: 1.3;
}

.paper-authors {
  font-size: 0.88rem;
  color: #8A7F72;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.paper-abstract {
  max-width: 700px;
  font-size: 0.95rem;
  color: #3D3A34;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.paper-links {
  display: flex;
  gap: 1.5rem;
}

.paper-link {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1C1A17;
  border-bottom: 1px solid #1C1A17;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.paper-link:hover { opacity: 0.5; }

/* ---------- Policy Work ---------- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.policy-card {
  background: #F0EDE7;
  padding: 2rem;
  border: 1px solid #D9D3C8;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s;
}
.policy-card:hover { background: #E8E3DC; }

.policy-type {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A7F72;
}

.policy-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: #1C1A17;
}

.policy-desc {
  font-size: 0.92rem;
  color: #5A5550;
  line-height: 1.65;
  flex: 1;
}

.policy-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #D9D3C8;
  margin-top: 0.5rem;
}

.policy-audience {
  font-size: 0.8rem;
  color: #8A7F72;
}

.policy-read {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #1C1A17;
  border-bottom: 1px solid #1C1A17;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.policy-read:hover { opacity: 0.5; }

/* ---------- CV ---------- */
.cv-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 5rem;
  align-items: start;
}

.cv-block {
  margin-bottom: 3rem;
}

.cv-block-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A7F72;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #D9D3C8;
}

.cv-entry {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #E8E3DC;
}

.cv-entry:last-child { border-bottom: none; }

.cv-year {
  font-size: 0.82rem;
  color: #8A7F72;
  font-family: 'EB Garamond', Georgia, serif;
  padding-top: 0.15rem;
  white-space: nowrap;
}

.cv-entry-body strong {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.2rem;
}

.cv-entry-body p {
  font-size: 0.88rem;
  color: #6B6560;
  margin-top: 0.2rem;
}

.cv-download-block {
  background: #1C1A17;
  padding: 2rem;
  color: #F7F4EF;
  text-align: center;
}

.cv-download-block p {
  color: #B0A89C;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn-download {
  display: inline-block;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F7F4EF;
  border: 1px solid #6B6560;
  padding: 0.7rem 1.5rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-download:hover {
  border-color: #F7F4EF;
  color: #F7F4EF;
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-lead {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: #1C1A17;
  font-style: italic;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #D9D3C8;
  transition: opacity 0.2s;
}
.contact-item:first-child { border-top: 1px solid #D9D3C8; }
.contact-item:hover { opacity: 0.6; }

.contact-type {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A7F72;
}

.contact-value {
  font-size: 0.95rem;
  color: #1C1A17;
}

/* ---------- Writing & Policy ---------- */
.writing-subhead {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A7F72;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #D9D3C8;
}

.writing-list {
  display: flex;
  flex-direction: column;
}

.writing-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #D9D3C8;
}
.writing-item:first-child { border-top: 1px solid #D9D3C8; }

.writing-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.writing-outlet {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1C1A17;
  font-weight: 500;
}

.writing-year {
  font-size: 0.82rem;
  color: #8A7F72;
  font-family: 'EB Garamond', Georgia, serif;
}

.writing-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.35;
  color: #1C1A17;
  margin-bottom: 0.3rem;
  font-style: italic;
}

.writing-coauthor {
  font-size: 0.85rem;
  color: #8A7F72;
  margin-bottom: 0.6rem;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid #D9D3C8;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #8A7F72;
}

.footer-sep {
  color: #C0B8AD;
}

.footer-copy {
  font-size: 0.82rem;
  color: #B0A89C;
  font-family: 'EB Garamond', Georgia, serif;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  html { font-size: 16px; }

  .about-grid,
  .cv-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-sidebar {
    border-left: none;
    border-top: 1px solid #D9D3C8;
    padding-left: 0;
    padding-top: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-artwork {
    order: -1;
    max-width: 480px;
  }

  .hero-name {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
}

@media (max-width: 600px) {
  .container { padding: 0 1.5rem; }

  .nav { padding: 0 1.5rem; }

  .nav-links {
    display: none;
  }

  .section { padding: 3.5rem 0; }

  .hero { padding: 4rem 0 3rem; }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .cv-entry {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
