@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500&display=swap");
:root {
  color-scheme: dark;
  --bg: #0e0e0d;
  --bg2: #161614;
  --bg3: #1e1e1b;
  --card: #1a1a18;
  --border: #2a2a26;
  --border2: #363630;
  --text: #e8e6df;
  --muted: #7a7870;
  --faint: #3a3a35;
  --accent: #c8a96e;
  --accent2: #8fbe8f;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --accent-border: rgba(200, 169, 110, 0.3);
  --accent-hover: rgba(200, 169, 110, 0.2);
  --nav-bg: rgba(14, 14, 13, 0.88);
  --text-72: rgba(232, 230, 223, 0.72);
  --text-80: rgba(232, 230, 223, 0.80);
  --text-82: rgba(232, 230, 223, 0.82);
}

[data-theme=light] {
  color-scheme: light;
  --bg: #f8f7f3;
  --bg2: #f0eee9;
  --bg3: #e8e5df;
  --card: #f2f0eb;
  --border: #d8d4cc;
  --border2: #c8c3ba;
  --text: #1c1a17;
  --muted: #6e6a62;
  --faint: #afa9a0;
  --accent: #9a7a3e;
  --accent2: #3d7a3d;
  --accent-dim: rgba(154, 122, 62, 0.1);
  --accent-border: rgba(154, 122, 62, 0.3);
  --accent-hover: rgba(154, 122, 62, 0.15);
  --nav-bg: rgba(248, 247, 243, 0.88);
  --text-72: rgba(28, 26, 23, 0.72);
  --text-80: rgba(28, 26, 23, 0.80);
  --text-82: rgba(28, 26, 23, 0.82);
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(154, 122, 62, 0.662745098);
}

body {
  font-family: "Geist", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
}

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

.theme-transitioning,
.theme-transitioning *,
.theme-transitioning *::before,
.theme-transitioning *::after {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.2s ease !important;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-header {
  padding: calc(56px + 3.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.page-header h1 {
  font-family: "Instrument Serif", serif;
  font-size: 2.8rem;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 14px;
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-title {
  font-family: "Instrument Serif", serif;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.see-all {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.see-all svg {
  width: 12px;
  height: 12px;
}
.see-all:hover {
  color: var(--accent);
}

.filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border2);
  color: var(--muted);
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  font-family: "Geist", sans-serif;
}
.filter-btn:hover {
  color: var(--text);
}
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.interests {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.pill {
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border2);
  color: var(--muted);
  background: var(--card);
}

.stack-chip {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--muted);
  font-family: monospace;
}

.about-strip {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.about-strip h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.about-strip p,
.about-strip li {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
}
.about-strip ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-strip li::before {
  content: "→ ";
  color: var(--faint);
}
.about-strip a {
  color: var(--accent);
}

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.footer-clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.75rem;
}

.footer-time {
  font-family: "Instrument Serif", serif;
  font-size: 3.2rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.footer-tz {
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.footer-meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  padding: 5px 11px;
  border: 1px solid var(--border2);
  border-radius: 6px;
  background: var(--bg3);
  transition: border-color 0.15s, color 0.15s;
}
.footer-cv-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.footer-cv-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  animation: fadeUp 0.45s ease both;
}

.anim-1 {
  animation-delay: 0.05s;
}

.anim-2 {
  animation-delay: 0.1s;
}

.anim-3 {
  animation-delay: 0.15s;
}

.anim-4 {
  animation-delay: 0.2s;
}

.anim-5 {
  animation-delay: 0.25s;
}

@media (max-width: 720px) {
  .about-strip {
    grid-template-columns: 1fr;
  }
}
.empty-state {
  padding: 5rem 0 4rem;
  text-align: center;
}
.empty-state svg {
  width: 32px;
  height: 32px;
  color: var(--faint);
  margin-bottom: 1.25rem;
}
.empty-state h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.empty-state p {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.75;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pg-pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border-radius: 7px;
  border: 1px solid var(--border2);
  background: var(--card);
  color: var(--muted);
  font-family: "Geist", sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.pg-btn svg {
  width: 15px;
  height: 15px;
}
.pg-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.pg-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.pg-btn.active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 500;
  cursor: default;
}
.pg-btn.pg-prev, .pg-btn.pg-next {
  padding: 0 8px;
}

.pg-ellipsis {
  font-size: 13px;
  color: var(--faint);
  padding: 0 2px;
  user-select: none;
}

:root {
  color-scheme: dark;
  --bg: #0e0e0d;
  --bg2: #161614;
  --bg3: #1e1e1b;
  --card: #1a1a18;
  --border: #2a2a26;
  --border2: #363630;
  --text: #e8e6df;
  --muted: #7a7870;
  --faint: #3a3a35;
  --accent: #c8a96e;
  --accent2: #8fbe8f;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --accent-border: rgba(200, 169, 110, 0.3);
  --accent-hover: rgba(200, 169, 110, 0.2);
  --nav-bg: rgba(14, 14, 13, 0.88);
  --text-72: rgba(232, 230, 223, 0.72);
  --text-80: rgba(232, 230, 223, 0.80);
  --text-82: rgba(232, 230, 223, 0.82);
}

[data-theme=light] {
  color-scheme: light;
  --bg: #f8f7f3;
  --bg2: #f0eee9;
  --bg3: #e8e5df;
  --card: #f2f0eb;
  --border: #d8d4cc;
  --border2: #c8c3ba;
  --text: #1c1a17;
  --muted: #6e6a62;
  --faint: #afa9a0;
  --accent: #9a7a3e;
  --accent2: #3d7a3d;
  --accent-dim: rgba(154, 122, 62, 0.1);
  --accent-border: rgba(154, 122, 62, 0.3);
  --accent-hover: rgba(154, 122, 62, 0.15);
  --nav-bg: rgba(248, 247, 243, 0.88);
  --text-72: rgba(28, 26, 23, 0.72);
  --text-80: rgba(28, 26, 23, 0.80);
  --text-82: rgba(28, 26, 23, 0.82);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-name {
  font-family: "Instrument Serif", serif;
  font-size: 1.05rem;
  color: var(--text);
  margin-right: auto;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg3);
}
.nav-links a.active {
  color: var(--accent);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 0.6rem;
  border-radius: 7px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.theme-toggle svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--text);
  background: var(--bg3);
  border-color: var(--border2);
}
.theme-toggle .icon-moon {
  display: none;
}
.theme-toggle .icon-sun {
  display: block;
}

[data-theme=light] .theme-toggle .icon-sun {
  display: none;
}
[data-theme=light] .theme-toggle .icon-moon {
  display: block;
}

@media (max-width: 600px) {
  .nav-links a {
    padding: 5px 8px;
    font-size: 12px;
  }
}
:root {
  color-scheme: dark;
  --bg: #0e0e0d;
  --bg2: #161614;
  --bg3: #1e1e1b;
  --card: #1a1a18;
  --border: #2a2a26;
  --border2: #363630;
  --text: #e8e6df;
  --muted: #7a7870;
  --faint: #3a3a35;
  --accent: #c8a96e;
  --accent2: #8fbe8f;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --accent-border: rgba(200, 169, 110, 0.3);
  --accent-hover: rgba(200, 169, 110, 0.2);
  --nav-bg: rgba(14, 14, 13, 0.88);
  --text-72: rgba(232, 230, 223, 0.72);
  --text-80: rgba(232, 230, 223, 0.80);
  --text-82: rgba(232, 230, 223, 0.82);
}

[data-theme=light] {
  color-scheme: light;
  --bg: #f8f7f3;
  --bg2: #f0eee9;
  --bg3: #e8e5df;
  --card: #f2f0eb;
  --border: #d8d4cc;
  --border2: #c8c3ba;
  --text: #1c1a17;
  --muted: #6e6a62;
  --faint: #afa9a0;
  --accent: #9a7a3e;
  --accent2: #3d7a3d;
  --accent-dim: rgba(154, 122, 62, 0.1);
  --accent-border: rgba(154, 122, 62, 0.3);
  --accent-hover: rgba(154, 122, 62, 0.15);
  --nav-bg: rgba(248, 247, 243, 0.88);
  --text-72: rgba(28, 26, 23, 0.72);
  --text-80: rgba(28, 26, 23, 0.80);
  --text-82: rgba(28, 26, 23, 0.82);
}

.hero {
  padding: calc(56px + 5rem) 0 5rem;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 3rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-family: "Instrument Serif", serif;
  font-size: 3.6rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero .role {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .role-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--faint);
}
.hero .hero-time {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.hero .hero-time-clock {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.hero .hero-bio {
  font-size: 15px;
  color: var(--text-72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--border2);
  border-right-width: 3px;
  border-radius: 8px;
  background: var(--card);
  transition: border-color 0.15s, color 0.15s;
}
.hero-link svg {
  width: 14px;
  height: 14px;
}
.hero-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-link.primary {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--accent);
}
.hero-link.primary:hover {
  background: var(--accent-hover);
}

.avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.avatar {
  width: 180px;
  height: 180px;
  border-radius: 5%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-bottom: 6px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Instrument Serif", serif;
  font-size: 3.5rem;
  color: var(--muted);
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5%;
}
.avatar::after {
  content: "";
  width: 180px;
  height: 185px;
  background-color: var(--border);
  opacity: 0.9;
  position: absolute;
  border: 4px solid var(--border);
  border-bottom: 6px solid var(--border);
}
.avatar:hover::after {
  background-color: transparent;
}
.avatar:hover {
  cursor: pointer;
}

.avatar-status {
  font-size: 12px;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(56px + 3rem);
  }
  .avatar-wrap {
    display: none;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}
:root {
  color-scheme: dark;
  --bg: #0e0e0d;
  --bg2: #161614;
  --bg3: #1e1e1b;
  --card: #1a1a18;
  --border: #2a2a26;
  --border2: #363630;
  --text: #e8e6df;
  --muted: #7a7870;
  --faint: #3a3a35;
  --accent: #c8a96e;
  --accent2: #8fbe8f;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --accent-border: rgba(200, 169, 110, 0.3);
  --accent-hover: rgba(200, 169, 110, 0.2);
  --nav-bg: rgba(14, 14, 13, 0.88);
  --text-72: rgba(232, 230, 223, 0.72);
  --text-80: rgba(232, 230, 223, 0.80);
  --text-82: rgba(232, 230, 223, 0.82);
}

[data-theme=light] {
  color-scheme: light;
  --bg: #f8f7f3;
  --bg2: #f0eee9;
  --bg3: #e8e5df;
  --card: #f2f0eb;
  --border: #d8d4cc;
  --border2: #c8c3ba;
  --text: #1c1a17;
  --muted: #6e6a62;
  --faint: #afa9a0;
  --accent: #9a7a3e;
  --accent2: #3d7a3d;
  --accent-dim: rgba(154, 122, 62, 0.1);
  --accent-border: rgba(154, 122, 62, 0.3);
  --accent-hover: rgba(154, 122, 62, 0.15);
  --nav-bg: rgba(248, 247, 243, 0.88);
  --text-72: rgba(28, 26, 23, 0.72);
  --text-80: rgba(28, 26, 23, 0.80);
  --text-82: rgba(28, 26, 23, 0.82);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.2s, box-shadow 0.2s;
}
.project-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}
.project-card.featured {
  grid-column: span 2;
}

.test-proj-image-wrap {
  display: block;
  width: 120px;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}
.test-proj-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.2s;
}
.project-card:hover .test-proj-image-wrap img {
  transform: scale(1.04);
  opacity: 0.88;
}

.proj-image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 10/8;
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}
.proj-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.2s;
}
.project-card:hover .proj-image-wrap img {
  transform: scale(1.04);
  opacity: 0.88;
}

.proj-image-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  background-image: linear-gradient(to right, var(--border) 1px, transparent 1px), linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
}

.proj-body {
  padding: 1.3rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.proj-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}

.proj-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.proj-icon-link {
  color: var(--muted);
  display: flex;
  transition: color 0.15s, transform 0.15s;
}
.proj-icon-link svg {
  width: 18px;
  height: 18px;
}
.proj-icon-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.project-tag {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.project-tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--faint);
}

.project-name {
  font-family: "Instrument Serif", serif;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.project-name a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.project-name a:hover {
  color: var(--accent);
}
.project-card.featured .project-name {
  font-size: 1.5rem;
}

.project-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.project-stack {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
}

.project-links {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--border2);
  border-radius: 6px;
  background: var(--bg3);
  transition: border-color 0.15s, color 0.15s;
}
.proj-link svg {
  width: 12px;
  height: 12px;
}
.proj-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.project-single {
  padding: calc(56px + 4rem) 0 5rem;
  max-width: 680px;
}
.project-single .project-single-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.project-single h1 {
  font-family: "Instrument Serif", serif;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.project-single .project-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  font-size: 13px;
  color: var(--muted);
}
.project-single .project-content {
  font-size: 15px;
  color: var(--text-80);
  line-height: 1.8;
}
.project-single .project-content h2 {
  font-family: "Instrument Serif", serif;
  font-size: 1.4rem;
  color: var(--text);
  margin: 2rem 0 0.8rem;
}
.project-single .project-content p {
  margin-bottom: 1.2rem;
}
.project-single .project-content code {
  font-size: 13px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--accent);
}
.project-single .project-content pre {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 1.2rem;
  overflow-x: auto;
  margin-bottom: 1.2rem;
}
.project-single .project-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text);
}
.project-single .project-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.project-single .project-content ul,
.project-single .project-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.project-single .project-content li {
  margin-bottom: 0.3rem;
}

@media (max-width: 720px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card.featured {
    grid-column: 1;
  }
}
.projects-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.projects-table thead tr {
  border-bottom: 1px solid var(--border);
}
.projects-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 12px 12px 0;
}
.projects-table th:last-child {
  padding-right: 0;
}
.projects-table .proj-row {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.projects-table .proj-row:hover {
  background: var(--bg3);
}
.projects-table .proj-row td {
  padding: 14px 12px 14px 0;
  vertical-align: middle;
}
.projects-table .proj-row td:last-child {
  padding-right: 0;
}

.proj-year {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  width: 52px;
}

.proj-name {
  font-weight: 500;
  color: var(--text);
  min-width: 160px;
}
.proj-name a {
  color: var(--text);
  transition: color 0.15s;
}
.proj-name a:hover {
  color: var(--accent);
}

.featured-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  padding: 1px 6px;
  vertical-align: middle;
}

.proj-cat {
  color: var(--muted);
  white-space: nowrap;
  padding-right: 16px !important;
}

.proj-stack-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.proj-link-cell {
  white-space: nowrap;
  text-align: right;
}

.proj-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: var(--muted);
  transition: color 0.15s;
}
.proj-ext-link:hover {
  color: var(--accent);
}

.gh-heatmap-section {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.gh-heatmap-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 0.85rem;
}

.gh-heatmap-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.gh-heatmap-total {
  font-size: 12px;
  color: var(--muted);
}

.gh-heatmap-scroll {
  overflow-x: auto;
  padding-bottom: 2px;
}

.gh-month-bar {
  display: flex;
  margin-bottom: 4px;
}
.gh-month-bar span {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.gh-grid {
  display: grid;
  grid-template-rows: repeat(7, 11px);
  grid-auto-flow: column;
  gap: 2px;
}

.gh-cell {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: var(--faint);
  cursor: default;
}
.gh-cell--future {
  background: transparent;
}
.gh-cell[data-level="0"] {
  background: var(--faint);
}
.gh-cell[data-level="1"] {
  background: rgba(200, 169, 110, 0.22);
}
.gh-cell[data-level="2"] {
  background: rgba(200, 169, 110, 0.47);
}
.gh-cell[data-level="3"] {
  background: rgba(200, 169, 110, 0.72);
}
.gh-cell[data-level="4"] {
  background: var(--accent);
}

[data-theme=light] .gh-cell[data-level="1"] {
  background: rgba(154, 122, 62, 0.22);
}
[data-theme=light] .gh-cell[data-level="2"] {
  background: rgba(154, 122, 62, 0.47);
}
[data-theme=light] .gh-cell[data-level="3"] {
  background: rgba(154, 122, 62, 0.72);
}

.gh-legend {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
  justify-content: flex-end;
}
.gh-legend span {
  font-size: 10px;
  color: var(--muted);
}
.gh-legend span.gh-cell {
  cursor: default;
}
.gh-legend .gh-legend-word {
  margin: 0 3px;
}

@media (max-width: 720px) {
  .projects-table th:nth-child(n+3),
  .projects-table .proj-row td:nth-child(n+3) {
    display: none;
  }
  .projects-table .proj-name {
    min-width: unset;
  }
}
:root {
  color-scheme: dark;
  --bg: #0e0e0d;
  --bg2: #161614;
  --bg3: #1e1e1b;
  --card: #1a1a18;
  --border: #2a2a26;
  --border2: #363630;
  --text: #e8e6df;
  --muted: #7a7870;
  --faint: #3a3a35;
  --accent: #c8a96e;
  --accent2: #8fbe8f;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --accent-border: rgba(200, 169, 110, 0.3);
  --accent-hover: rgba(200, 169, 110, 0.2);
  --nav-bg: rgba(14, 14, 13, 0.88);
  --text-72: rgba(232, 230, 223, 0.72);
  --text-80: rgba(232, 230, 223, 0.80);
  --text-82: rgba(232, 230, 223, 0.82);
}

[data-theme=light] {
  color-scheme: light;
  --bg: #f8f7f3;
  --bg2: #f0eee9;
  --bg3: #e8e5df;
  --card: #f2f0eb;
  --border: #d8d4cc;
  --border2: #c8c3ba;
  --text: #1c1a17;
  --muted: #6e6a62;
  --faint: #afa9a0;
  --accent: #9a7a3e;
  --accent2: #3d7a3d;
  --accent-dim: rgba(154, 122, 62, 0.1);
  --accent-border: rgba(154, 122, 62, 0.3);
  --accent-hover: rgba(154, 122, 62, 0.15);
  --nav-bg: rgba(248, 247, 243, 0.88);
  --text-72: rgba(28, 26, 23, 0.72);
  --text-80: rgba(28, 26, 23, 0.80);
  --text-82: rgba(28, 26, 23, 0.82);
}

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

.blog-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.blog-item:first-child {
  border-top: 1px solid var(--border);
}
.blog-item:hover {
  padding-left: 6px;
}

.blog-title {
  font-size: 14.5px;
  color: var(--text);
  transition: color 0.15s;
  line-height: 1.4;
}
.blog-item:hover .blog-title {
  color: var(--accent);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-date {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.blog-category {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border2);
  color: var(--muted);
  white-space: nowrap;
}

.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.blog-card {
  background: var(--card);
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s;
}
.blog-card:hover {
  background: var(--bg3);
}

.blog-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.blog-card-cat {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border2);
  background: var(--bg3);
}

.blog-card-date {
  font-size: 12px;
  color: var(--muted);
}

.blog-card-title {
  font-family: "Instrument Serif", serif;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: color 0.15s;
}
.blog-card:hover .blog-card-title {
  color: var(--accent);
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.blog-card-readtime {
  font-size: 12px;
  color: var(--faint);
}

.blog-card-arrow {
  color: var(--faint);
  transition: color 0.15s, transform 0.15s;
}
.blog-card-arrow svg {
  width: 14px;
  height: 14px;
}
.blog-card:hover .blog-card-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.post-single {
  padding: calc(56px + 4rem) 0 5rem;
  max-width: 680px;
}
.post-single .post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.post-single h1 {
  font-family: "Instrument Serif", serif;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.post-single .post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.post-single .post-content {
  font-size: 15.5px;
  color: var(--text-82);
  line-height: 1.82;
}
.post-single .post-content h2 {
  font-family: "Instrument Serif", serif;
  font-size: 1.5rem;
  color: var(--text);
  margin: 2.5rem 0 0.8rem;
  letter-spacing: -0.02em;
}
.post-single .post-content h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin: 1.8rem 0 0.5rem;
}
.post-single .post-content p {
  margin-bottom: 1.3rem;
}
.post-single .post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-single .post-content blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
}
.post-single .post-content code {
  font-size: 13.5px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--accent);
}
.post-single .post-content pre {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1.4rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.post-single .post-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text);
  font-size: 13px;
}
.post-single .post-content ul,
.post-single .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.3rem;
}
.post-single .post-content li {
  margin-bottom: 0.4rem;
}
.post-single .post-content img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
  display: block;
}
.post-single .post-content img.img-sm {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}
.post-single .post-content img.img-md {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.post-single .post-content img.img-lg {
  width: 100%;
}
.post-single .post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

:root {
  color-scheme: dark;
  --bg: #0e0e0d;
  --bg2: #161614;
  --bg3: #1e1e1b;
  --card: #1a1a18;
  --border: #2a2a26;
  --border2: #363630;
  --text: #e8e6df;
  --muted: #7a7870;
  --faint: #3a3a35;
  --accent: #c8a96e;
  --accent2: #8fbe8f;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --accent-border: rgba(200, 169, 110, 0.3);
  --accent-hover: rgba(200, 169, 110, 0.2);
  --nav-bg: rgba(14, 14, 13, 0.88);
  --text-72: rgba(232, 230, 223, 0.72);
  --text-80: rgba(232, 230, 223, 0.80);
  --text-82: rgba(232, 230, 223, 0.82);
}

[data-theme=light] {
  color-scheme: light;
  --bg: #f8f7f3;
  --bg2: #f0eee9;
  --bg3: #e8e5df;
  --card: #f2f0eb;
  --border: #d8d4cc;
  --border2: #c8c3ba;
  --text: #1c1a17;
  --muted: #6e6a62;
  --faint: #afa9a0;
  --accent: #9a7a3e;
  --accent2: #3d7a3d;
  --accent-dim: rgba(154, 122, 62, 0.1);
  --accent-border: rgba(154, 122, 62, 0.3);
  --accent-hover: rgba(154, 122, 62, 0.15);
  --nav-bg: rgba(248, 247, 243, 0.88);
  --text-72: rgba(28, 26, 23, 0.72);
  --text-80: rgba(28, 26, 23, 0.80);
  --text-82: rgba(28, 26, 23, 0.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s, background 0.15s;
}
.contact-card:hover {
  border-color: var(--accent);
  background: var(--bg3);
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.contact-card-icon svg {
  width: 17px;
  height: 17px;
}

.contact-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.contact-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-card .contact-handle {
  font-size: 13px;
  color: var(--accent);
}

.contact-form-section {
  margin-top: 1rem;
}
.contact-form-section h2 {
  font-family: "Instrument Serif", serif;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.contact-form-section > p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 12.5px;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: var(--faint);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  color: var(--accent);
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.form-submit svg {
  width: 14px;
  height: 14px;
}
.form-submit:hover {
  background: var(--accent-hover);
}

@media (max-width: 720px) {
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */