/* --- 北歐人文好奇心工作室風格設定 --- */
:root {
  --bg-color: #f7f4eb;       /* 溫暖的燕麥奶、輕柔紙張色，大幅降低冰冷感 */
  --text-main: #2b2927;      /* 柔和的深可可黑，比純黑更有親和力 */
  --text-muted: #8c857b;     /* 溫潤的暮煙灰 */
  --accent-color: #df7a5e;   /* 靈魂點綴：莫蘭迪暖焦糖色，帶出溫暖的探索感 */
  --line-color: #e6e0d4;     /* 細緻的暖調線條 */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  padding: 60px 24px;
}

.wrapper {
  max-width: 640px;
  margin: 0 auto;
}

/* --- Header --- */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 16px;
  margin-bottom: 60px;
}

.logo {
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.date-badge {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--accent-color); /* 頂部標籤換上暖色，注入活力 */
  font-weight: 600;
}

/* --- Hero 區塊 --- */
.hero-section {
  margin-bottom: 60px;
}

.hero-section h1 {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-section h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color); /* 讓最靈魂的斜體字染上溫暖的焦糖色 */
}

.subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 540px;
}

/* --- 專案列表 (加入更柔和的互動與色彩) --- */
.projects-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-color);
}

.project-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-color);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-color); /* 用暖焦糖色凸顯編號 */
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.project-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.project-item h2 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.3px;
  transition: transform 0.35s ease;
}

.arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.35s ease, color 0.35s ease;
}

.project-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
}

/* --- 高級且溫暖的微互動 --- */
@media (hover: hover) {
  .project-item:hover {
    border-bottom-color: var(--text-main);
    background-color: rgba(223, 122, 94, 0.03); /* 滑鼠懸停時，背後泛起一層極淡的溫暖紅暈 */
    padding-left: 8px; /* 溫和的向右延展 */
  }
  .project-item:hover h2 {
    color: var(--text-main);
  }
  .project-item:hover .arrow {
    transform: translateX(6px);
    color: var(--accent-color);
  }
}

/* --- Footer --- */
.main-footer {
  margin-top: 80px;
  padding-top: 16px;
  border-top: 1px solid var(--line-color);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}