@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --bg: #f6f2ea;
  --surface: #fcfaf5;
  --ink: #2f2a24;
  --muted: #6e6253;
  --line: #d8ccbb;
  --accent: #8a6a3f;
  --accent-deep: #5f4526;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, #fff8ef 0%, transparent 42%),
    radial-gradient(circle at 90% 20%, #f0e9de 0%, transparent 40%),
    var(--bg);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 245, 0.92);
  backdrop-filter: blur(6px);
}

.site-nav {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--accent-deep);
}

.main-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 28px 56px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero {
  text-align: center;
  padding: 52px 0 36px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--muted);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 600;
  color: #1e1a16;
  margin-bottom: 12px;
}

.anna-highlight {
  color: #da2153;
}

.hero-subtitle {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 10px 0 42px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
  color: #1f1b17;
}

.highlight-item p {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.post-list {
  border-top: 1px solid var(--line);
}

.post-row {
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}

.post-row h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  margin: 6px 0;
}

.post-date {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.topic-section {
  padding: 30px 0 8px;
  border-top: 1px solid var(--line);
}

.about-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.about-section:last-of-type {
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.about-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0 0 10px;
}

.about-section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.about-lead {
  color: var(--ink) !important;
  font-weight: 600;
}

.about-more-link {
  display: inline-block;
  margin-top: 6px;
  padding: 7px 14px;
  border: 1px dashed var(--accent);
  border-radius: 999px;
  background: #fffaf2;
}

.about-story {
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.timeline-section {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.doodle-title {
  font-family: "Caveat", cursive;
  font-size: 2.7rem !important;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 14px !important;
}

.timeline-track {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 10px 0;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 121px;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 2px;
  background: #b6d5df;
}

.timeline-event {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
  padding: 6px 0;
  z-index: 1;
}

.timeline-year {
  position: relative;
  min-width: 90px;
  padding: 8px 10px;
  text-align: center;
  font-weight: 600;
  color: #284753;
  background: #c7e0e7;
  border: 1px dashed #8fb8c4;
  border-radius: 4px;
}

.timeline-year::after {
  content: "";
  position: absolute;
  right: -19px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-right: -5px;
  margin-top: -5px;
  border-radius: 50%;
  background: #9ec3ce;
  border: 2px solid #f6f2ea;
}

.timeline-note {
  padding: 2px 0 2px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.timeline-note h3 {
  margin: 0 0 8px;
  color: #1d3f4b;
  font-family: "Caveat", cursive;
  font-size: 1.7rem;
}

.timeline-note p {
  margin: 0;
  color: #2f4f59;
  line-height: 1.55;
}

.reading-list {
  margin: 0;
  padding-left: 20px;
}

.reading-list li {
  color: var(--muted);
  line-height: 1.75;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}

.book-thumb {
  width: 128px;
  height: 190px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 14px rgba(31, 27, 23, 0.12);
  background: var(--surface);
}

.book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.book-title {
  margin: 10px 0 2px;
  color: #1f1b17 !important;
  font-weight: 600;
  line-height: 1.4;
}

.book-author {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.95rem;
}

.goodreads-section p {
  margin-bottom: 16px;
}

.goodreads-button {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--accent);
  color: #fdf8ef;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.goodreads-button:hover {
  color: #fdf8ef;
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.post-entry {
  max-width: 760px;
  margin: 0 auto;
}

.post-entry p,
.post-entry li {
  color: var(--muted);
  line-height: 1.75;
}

.article-page-shell {
  padding: 22px 0 8px;
}

.article-page-card {
  width: min(960px, 100%);
  box-sizing: border-box;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px);
  background: #fbfaf8;
  border: 1px solid #ddd2c3;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(29, 24, 18, 0.12);
  overflow-wrap: anywhere;
}

.article-page-card .hero {
  text-align: left;
  padding: 0 0 16px;
}

.article-page-card .hero-kicker {
  margin-bottom: 12px;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: #6f665c;
  font-style: italic;
}

.article-page-card .hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: #171410;
}

.article-page-card .hero-subtitle {
  margin: 0;
  max-width: 780px;
  color: #2a241d;
  font-size: 1.12rem;
  line-height: 1.7;
}

.article-page-card .about-section {
  max-width: none;
  margin: 0;
  padding: 8px 0 0;
  border: 0;
}

.article-page-card .about-section h2 {
  color: #171410;
}

.article-page-card .about-section p,
.article-page-card .about-section li,
.article-page-card p {
  color: #221d17;
  font-size: 1.06rem;
  line-height: 1.9;
}

.article-page-card .about-section b,
.article-page-card .about-section strong {
  color: #171410;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.travel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(31, 27, 23, 0.08);
}

.travel-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: #1f1b17;
}

.travel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.write-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.write-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(31, 27, 23, 0.08);
}

.write-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.write-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: #1f1b17;
}

.write-card-link span {
  color: var(--accent-deep);
}

.write-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.write-quote {
  margin: 0 auto 6px;
  max-width: 580px;
  color: #3f3429;
  font-style: italic;
  line-height: 1.8;
}

.write-quote-credit {
  margin: 0 0 10px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.archive-list {
  margin: 0;
  padding-left: 24px;
}

.archive-list li {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.archive-list a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #1f1b17;
}

.archive-date {
  margin-left: 8px;
  color: var(--muted);
}

.clicks-flow {
  column-count: 3;
  column-gap: 14px;
}

.click-item {
  margin: 0 0 14px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(31, 27, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.click-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #efe6d8;
  transition: filter 0.25s ease;
}

.click-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 12px;
  background: linear-gradient(to top, rgba(20, 17, 13, 0.86), rgba(20, 17, 13, 0.15));
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.click-overlay h3 {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.click-overlay p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.click-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(31, 27, 23, 0.2);
}

.click-item:hover .click-photo {
  filter: brightness(0.75);
}

.click-item:hover .click-overlay {
  transform: translateY(0);
}

.work-intro {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-chip {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
  background: #fffdf9;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.work-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.work-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(31, 27, 23, 0.08);
}

.work-card h3,
.work-card h4 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 8px;
  color: #1f1b17;
}

.work-card h3 {
  font-size: 1.45rem;
}

.work-card h4 {
  font-size: 1.2rem;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.work-meta {
  margin-bottom: 8px !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.subheading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  margin: 0 0 12px;
}

a {
  color: var(--accent-deep);
  text-decoration: none;
}

a:hover {
  color: #3f2c15;
}

@media (max-width: 700px) {
  .main-content {
    padding: 24px 18px 44px;
  }

  .site-nav {
    gap: 14px;
    padding: 12px 16px;
  }

  .hero {
    padding-top: 30px;
  }

  .highlights {
    gap: 10px;
    padding: 16px 0;
  }

  .post-row h3 {
    font-size: 1.45rem;
  }

  .article-page-shell {
    padding-top: 8px;
  }

  .article-page-card {
    border-radius: 6px;
    padding: 20px 16px;
  }

  .article-page-card .hero h1 {
    margin-bottom: 10px;
  }

  .article-page-card .about-section p,
  .article-page-card p {
    font-size: 1rem;
    line-height: 1.82;
  }

  .about-section h2 {
    font-size: 1.75rem;
  }

  .book-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

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

  .clicks-flow {
    column-count: 2;
  }

  .timeline-event {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .timeline-track::before {
    left: 101px;
  }
}

@media (max-width: 540px) {
  .clicks-flow {
    column-count: 1;
  }
}
