/* ===== Tokens ===== */
:root {
  --bg: #FFF8E7;
  --bg-cream: #FFFAEC;
  --ink: #1F1F1F;
  --muted: #5A5A5A;
  --rule: #E8DFC4;
  --coral: #E85D5D;
  --mustard: #E8B83A;
  --teal: #4A8E8B;
  --teal-light: #7BD0CE;
  --teal-deep: #2D5C5C;
  --plum: #6B4E8E;
  --olive: #5C6F48;
  --max: 1200px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--coral); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .85; }
.serif { font-family: 'Instrument Serif', serif; }

/* ===== Header / Nav ===== */
header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 40px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.brand {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.005em;
  justify-self: start;
  border: none;
}
.brand:hover { opacity: 1; color: var(--coral); }
.nav-pill {
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.nav-pill a { color: var(--bg); opacity: .75; border: none; }
.nav-pill a:hover, .nav-pill a.active { opacity: 1; }
.nav-pill a.active { color: var(--mustard); }
.connect-cta {
  justify-self: end;
  background: var(--coral);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  box-shadow: 0 6px 16px rgba(232, 93, 93, .3);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.connect-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(232, 93, 93, .35);
}
.connect-cta.active { background: var(--ink); color: var(--mustard); box-shadow: 0 6px 16px rgba(0,0,0,.15); }

/* ===== Containers ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Hero (Home) ===== */
.hero {
  max-width: var(--max);
  margin: 48px auto 80px;
  padding: 0 40px;
  position: relative;
}
.hero-decoration {
  position: absolute;
  top: -20px;
  right: 60px;
  width: 280px;
  height: 280px;
  background: var(--mustard);
  border-radius: 50%;
  opacity: .55;
  filter: blur(2px);
  z-index: 0;
}
.hero-decoration-2 {
  position: absolute;
  bottom: 60px;
  left: 280px;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: 50%;
  opacity: .35;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}
h1.tagline {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 84px;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
h1.tagline .highlight {
  font-style: italic;
  color: var(--coral);
}
h1.tagline .underline {
  display: inline-block;
  padding: 0 8px;
  background: var(--mustard);
  transform: rotate(-1deg);
  color: var(--ink);
}
.pitch {
  font-size: 18px;
  line-height: 1.7;
  color: #2A2A2A;
  max-width: 640px;
}
.pitch p { margin-bottom: 14px; }
.pitch a { font-weight: 500; border-bottom: 2px solid var(--mustard); color: var(--ink); }
.see-more {
  margin-top: 12px;
  display: inline-block;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
  font-size: 16px;
}

/* Headshot circle with spinning ring (greenish blue) */
.headshot-wrap {
  position: relative;
  display: grid;
  place-items: center;
}
.headshot-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--teal-deep), var(--teal-light), var(--teal), #56A8A4, var(--teal-deep));
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .headshot-ring { animation: none; }
}
.headshot {
  position: relative;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8DFC4 0%, #B8AB85 100%) center/cover;
  display: grid;
  place-items: center;
  color: var(--bg);
  font-family: 'Instrument Serif', serif;
  font-size: 96px;
  font-weight: 500;
  border: 6px solid var(--bg);
  overflow: hidden;
}
.headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* ===== Foundation Spotlight ===== */
.foundation {
  max-width: var(--max);
  margin: 0 auto 96px;
  padding: 0 40px;
}
.foundation-card {
  background: var(--coral);
  color: white;
  border-radius: 24px;
  padding: 40px 48px;
  transform: rotate(-.5deg);
  position: relative;
  box-shadow: 0 12px 32px rgba(232, 93, 93, .25);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}
.foundation-image {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
  position: relative;
}
.foundation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.foundation-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}
.foundation h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.foundation p {
  font-size: 17px;
  line-height: 1.65;
  max-width: 720px;
  opacity: .95;
  margin-bottom: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s, opacity .2s;
}
.btn:hover { opacity: 1; transform: translateY(-1px); }
.foundation .btn { background: var(--ink); color: white; }
.foundation .btn:hover { background: var(--bg); color: var(--ink); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: #d54848; }

/* ===== Sections (generic) ===== */
.section {
  max-width: var(--max);
  margin: 0 auto 96px;
  padding: 0 40px;
}
.section-header { margin-bottom: 48px; text-align: center; }
.section-header.left { text-align: left; }
.section-eyebrow {
  display: inline-block;
  background: var(--mustard);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-eyebrow.coral { background: var(--coral); color: white; }
.section-eyebrow.teal { background: var(--teal); color: white; }
.section-eyebrow.plum { background: var(--plum); color: white; }
.section-title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 760px;
  margin: 0 auto;
}
.section-title em { font-style: italic; color: var(--coral); }
.section-title.left { margin-left: 0; margin-right: 0; }

/* ===== Page header (inner pages) ===== */
.page-header {
  max-width: var(--max);
  margin: 24px auto 64px;
  padding: 32px 40px 0;
}
.page-header .section-eyebrow { margin-bottom: 20px; }
h1.page-title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  max-width: 920px;
}
h1.page-title em { font-style: italic; color: var(--coral); }
.page-header .lede {
  font-size: 19px;
  line-height: 1.6;
  color: #2A2A2A;
  max-width: 720px;
}

/* ===== Capabilities (Home — What I Do) ===== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.capability {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .25s, box-shadow .25s;
}
.capability:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.capability-header {
  padding: 22px 28px;
  border-bottom: 2px solid var(--ink);
  color: white;
}
.capability-header.coral { background: var(--coral); }
.capability-header.teal { background: var(--teal); }
.capability-header.plum { background: var(--plum); }
.capability-header.mustard { background: var(--mustard); color: var(--ink); }
.capability-header h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.005em;
}
.capability ul { list-style: none; padding: 16px 28px 24px; }
.capability li {
  padding: 14px 0;
  font-size: 15px;
  line-height: 1.55;
  color: #2A2A2A;
  border-bottom: 1px dashed var(--rule);
}
.capability li:last-child { border-bottom: none; }
.capability li strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 15.5px;
}

/* ===== Timeline (About) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px 96px;
}
.philosophy { position: sticky; top: 120px; align-self: start; }
.philosophy h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.philosophy h2 em { font-style: italic; color: var(--coral); }
.philosophy p { font-size: 16px; line-height: 1.7; color: #2A2A2A; }
.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--rule);
}
.timeline-node {
  position: relative;
  padding-left: 56px;
  padding-bottom: 56px;
}
.timeline-node:last-child { padding-bottom: 0; }
.timeline-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
  border: 4px solid var(--coral);
}
.timeline-node:nth-child(2)::before { border-color: var(--teal); }
.timeline-node:nth-child(3)::before { border-color: var(--plum); }
.timeline-node:nth-child(4)::before { border-color: var(--mustard); }
.timeline-node h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.timeline-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
  display: block;
}
.timeline-node:nth-child(2) .timeline-role { color: var(--teal); }
.timeline-node:nth-child(3) .timeline-role { color: var(--plum); }
.timeline-node:nth-child(4) .timeline-role { color: #B89020; }
.timeline-node p {
  font-size: 16px;
  line-height: 1.65;
  color: #2A2A2A;
  margin-bottom: 12px;
}

/* ===== Side Projects ===== */
.projects { max-width: 1240px; margin: 0 auto; padding: 0 40px 96px; }
.project {
  background: var(--bg-cream);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 6px 6px 0 var(--ink);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}
.project.coral-bg { background: #FCEFE0; }
.project.teal-bg { background: #E1ECE7; }
.project.plum-bg { background: #ECE3F2; }
.project-content { min-width: 0; }
.project-image {
  width: 440px;
  height: 440px;
  border-radius: 16px;
  background: white;
  border: 2px solid var(--ink);
  overflow: hidden;
  position: relative;
  padding: 18px;
  box-sizing: border-box;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-image .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}
.project-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.project h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.project .role {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 500;
}
.project p { font-size: 16px; line-height: 1.7; color: #2A2A2A; margin-bottom: 14px; }
.project-cta {
  margin-top: 16px;
  display: inline-block;
  font-weight: 500;
  border-bottom: 2px solid var(--coral);
  color: var(--ink);
  padding-bottom: 2px;
}

/* ===== Reads page ===== */
.reads-section { max-width: var(--max); margin: 0 auto 80px; padding: 0 40px; }
.reads-section h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -.01em;
}
.reads-section h2 em { font-style: italic; color: var(--coral); }
.books-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.book {
  background: var(--bg-cream);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px;
  transition: all .25s;
}
.book:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,.06); }
.book h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -.005em;
}
.book .author {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
}
.book p { font-size: 14px; line-height: 1.55; color: #2A2A2A; }
.articles-list { display: grid; gap: 12px; }
.article-card {
  background: var(--bg-cream);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all .2s;
}
.article-card:hover { background: white; border-color: var(--coral); }
.article-pub {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.article-title {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
}
.article-title a { color: var(--ink); border-bottom: 1px solid transparent; }
.article-title a:hover { border-bottom-color: var(--coral); opacity: 1; }
.article-blurb {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.article-arrow { color: var(--coral); font-size: 20px; }

/* ===== Spreadsheets ===== */
.spreadsheets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto 96px;
  padding: 0 40px;
}
.spreadsheet-card {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
}
.spreadsheet-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
  color: white;
}
.spreadsheet-card:nth-child(7n+1) .spreadsheet-icon { background: var(--coral); }
.spreadsheet-card:nth-child(7n+2) .spreadsheet-icon { background: var(--teal); }
.spreadsheet-card:nth-child(7n+3) .spreadsheet-icon { background: var(--plum); }
.spreadsheet-card:nth-child(7n+4) .spreadsheet-icon { background: var(--mustard); color: var(--ink); }
.spreadsheet-card:nth-child(7n+5) .spreadsheet-icon { background: var(--olive); }
.spreadsheet-card:nth-child(7n+6) .spreadsheet-icon { background: var(--coral); }
.spreadsheet-card:nth-child(7n) .spreadsheet-icon { background: var(--teal); }
.spreadsheet-card h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.005em;
}
.spreadsheet-card p { font-size: 14px; line-height: 1.55; color: #2A2A2A; flex-grow: 1; margin-bottom: 18px; }
.spreadsheet-status {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--mustard);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #B89020;
  align-self: flex-start;
}
.spreadsheet-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
  transition: background .2s, transform .2s;
}
.spreadsheet-download:hover {
  background: var(--coral);
  opacity: 1;
  transform: translateY(-1px);
}

/* ===== Connect (Contact) ===== */
.connect-wrap {
  max-width: 720px;
  margin: 0 auto 96px;
  padding: 0 40px;
}
.contact-form {
  background: var(--bg-cream);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 6px 6px 0 var(--ink);
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  background: white;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 24px;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { font-size: 16px; padding: 16px 32px; }
.alt-contact {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
}
.alt-contact a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 2px solid var(--coral);
  margin: 0 12px;
}

/* ===== Footer ===== */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 64px 40px;
  border-radius: 32px 32px 0 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
footer .logo {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--mustard);
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: flex-end; }
footer a {
  color: var(--bg);
  font-size: 15px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
footer a:hover { border-bottom-color: var(--mustard); opacity: 1; }
.footer-meta {
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 64px; }
  .philosophy { position: static; }
  .capabilities-grid, .spreadsheets-grid, .books-grid { grid-template-columns: 1fr; }
  h1.tagline { font-size: 64px; }
  h1.page-title { font-size: 56px; }
  .section-title { font-size: 44px; }
  .foundation-card { grid-template-columns: 180px 1fr; gap: 28px; padding: 32px; }
  .foundation-image { width: 180px; height: 180px; }
  .project { grid-template-columns: 1fr 300px; gap: 28px; padding: 32px; }
  .project-image { width: 300px; height: 300px; padding: 14px; }
}
@media (max-width: 720px) {
  header {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
    padding: 14px 16px;
  }
  .nav-pill {
    grid-column: 1 / -1;
    justify-self: center;
    gap: 14px;
    padding: 10px 16px;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand { font-size: 22px; }
  .connect-cta { padding: 10px 18px; font-size: 13px; }
  .hero, .foundation, .section, .page-header { padding-left: 20px; padding-right: 20px; }
  .hero { margin-bottom: 56px; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-decoration { right: -40px; width: 200px; height: 200px; }
  .hero-decoration-2 { display: none; }
  h1.tagline { font-size: 48px; }
  h1.page-title { font-size: 44px; }
  .pitch { margin: 0 auto; text-align: left; }
  .headshot, .headshot-ring { width: 220px; height: 220px; }
  .headshot { font-size: 72px; }
  .headshot-ring { width: 240px; height: 240px; }
  .foundation-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .foundation-image { width: 100%; height: 200px; }
  .foundation h2 { font-size: 30px; }
  .section-title { font-size: 36px; }
  .capabilities-grid, .spreadsheets-grid, .books-grid { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; gap: 8px; padding: 20px 24px; }
  .article-arrow { display: none; }
  .project { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .project-image { width: 100%; height: 200px; }
  .project h2 { font-size: 30px; }
  .timeline-node h3 { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .contact-form { padding: 28px 20px; }
  .reads-section h2 { font-size: 32px; }
}
