:root {
  --bg: #fcfaf7;
  --surface: #ffffff;
  --line: #d7dee3;
  --line-strong: #bcc8cf;
  --text: #1f2b33;
  --muted: #5f6d76;
  --brand: #2a4759;
  --accent: #f89a72;
  --accent-soft: #fff1ea;
  --accent-strong: #d97f59;
  --success-soft: #eef5f4;
  --success: #6f8d8a;
  --shell: 74rem;
  --shell-wide: 74rem;
  --radius: 14px;
  --transition: 140ms ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #10171b;
    --surface: #152027;
    --line: #31424c;
    --line-strong: #45606f;
    --text: #f4f8fa;
    --muted: #c5d1d8;
    --brand: #bfd9e7;
    --accent: #f89a72;
    --accent-soft: rgba(248, 154, 114, 0.18);
    --accent-strong: #ffc0a0;
    --success-soft: rgba(111, 141, 138, 0.14);
    --success: #bfd3cf;
  }

  .site-menu-toggle,
  .site-menu-panel {
    background: rgba(21, 32, 39, 0.92);
  }

  .home-project-card-link {
    background: rgba(21, 32, 39, 0.72);
    border-color: rgba(69, 96, 111, 0.28);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }

  .home-project-card-link:hover,
  .home-project-card-link:focus-visible {
    border-color: rgba(248, 154, 114, 0.32);
  }

  .home-project-thumb,
  .home-writing-band {
    background: rgba(21, 32, 39, 0.54);
  }
}

@media (prefers-color-scheme: dark) and (max-width: 760px) {
  .site-header {
    background: rgba(16, 23, 27, 0.92);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a:hover,
a:focus-visible {
  color: var(--accent-strong);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
  max-width: 100%;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 600;
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #1c252b;
}

.button-secondary {
  background: transparent;
  color: var(--brand);
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin: 0 auto;
}

.shell-wide {
  width: min(100% - 2rem, var(--shell-wide));
}

.site-main {
  padding: 0 0 4rem;
}

.site-header {
  padding-top: 1.5rem;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

.site-brand {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.site-menu {
  display: none;
  position: relative;
}

.site-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 250, 247, 0.92);
  color: var(--text);
  cursor: pointer;
  list-style: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-menu-toggle::-webkit-details-marker {
  display: none;
}

.site-menu-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.site-menu[open] .site-menu-toggle span:nth-child(1) {
  transform: translateY(0.36rem) rotate(45deg);
}

.site-menu[open] .site-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-menu[open] .site-menu-toggle span:nth-child(3) {
  transform: translateY(-0.36rem) rotate(-45deg);
}

.site-menu-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0.1rem;
  min-width: 13rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(252, 250, 247, 0.96);
  box-shadow: 0 18px 48px rgba(31, 43, 51, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-menu-panel .site-nav-link {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
}

.site-menu-panel .site-nav-link:hover,
.site-menu-panel .site-nav-link:focus-visible,
.site-menu-panel .site-nav-link.is-active {
  background: var(--accent-soft);
}

.site-nav-link {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav-link.is-active,
.site-nav-link:hover,
.site-nav-link:focus-visible {
  color: var(--brand);
}

.intro-section,
.page-shell,
.post-shell {
  padding-top: 1.5rem;
}

.intro-layout,
.project-showcase {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.page-hero-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 11rem;
  gap: 1.5rem;
  align-items: start;
}

.intro-avatar img,
.profile-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.intro-copy h1,
.page-hero h1,
.article-title,
.prose h1 {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.intro-copy p,
.page-hero p,
.article-summary,
.post-list-item p,
.project-list-copy p,
.project-showcase-copy p,
.page-content p,
.timeline-item p,
.article-body p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.intro-meta,
.item-meta,
.article-meta,
.timeline-period,
.site-footer-title,
.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-links,
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.intro-links a,
.site-footer-links a {
  font-weight: 500;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.post-related {
  padding-top: 0;
  border-top: 0;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading h2,
.page-content h2,
.prose h2 {
  margin: 0.2rem 0 0;
  color: var(--text);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.eyebrow {
  color: var(--accent-strong);
}

.text-link {
  font-weight: 600;
}

.project-list,
.post-list,
.timeline-list,
.portfolio-stack {
  display: grid;
  gap: 1.5rem;
}

.project-list-item,
.post-list-item,
.timeline-item,
.project-showcase,
.article-hero,
.article-body,
.site-footer-inner {
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--line);
}

.project-list-item:last-child,
.post-list-item:last-child,
.timeline-item:last-child,
.project-showcase:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.project-list-item {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.prose picture {
  width: 100%;
  max-width: 100%;
}

.project-list-media img,
.project-showcase-media img,
.prose img,
.prose picture img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.project-list-copy h3,
.project-showcase-copy h2,
.post-list-title,
.timeline-item h3,
.prose h3 {
  margin: 0.25rem 0 0.5rem;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
}

.post-list-title a,
.timeline-item h3 a,
.page-content h2 a,
.prose h2 a,
.prose h3 a {
  color: var(--text);
}

.post-list-title a:hover,
.timeline-item h3 a:hover,
.page-content h2 a:hover,
.prose h2 a:hover,
.prose h3 a:hover,
.post-list-title a:focus-visible,
.timeline-item h3 a:focus-visible,
.page-content h2 a:focus-visible,
.prose h2 a:focus-visible,
.prose h3 a:focus-visible {
  color: var(--accent-strong);
}

.item-tags,
.meta-row {
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 600;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-top: 2.5rem;
  margin-bottom: 6rem;
}

.home-hero-copy {
  min-width: 0;
  text-align: left;
}

.home-hero-avatar {
  width: clamp(18.75rem, 36vw, 25.5rem);
  justify-self: end;
}

.home-hero-avatar picture {
  display: block;
}

.home-hero-avatar img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(225, 191, 178, 0.22);
  box-shadow: 0 10px 32px rgba(31, 43, 51, 0.06);
}

.home-hero-copy h1 {
  margin: 0 0 1rem;
  max-width: none;
  font-size: clamp(3rem, 7vw, 4.4rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: normal;
}

.home-hero-copy p {
  max-width: 44rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.home-hero-meta {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.4rem;
}

.home-hero-links a {
  color: var(--muted);
  font-weight: 600;
}

.home-hero-links a:hover,
.home-hero-links a:focus-visible {
  color: var(--accent-strong);
}

.home-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.home-primary-link::after {
  content: "→";
  transition: transform var(--transition);
}

.home-primary-link:hover::after,
.home-primary-link:focus-visible::after {
  transform: translateX(0.2rem);
}

.home-work-section {
  margin-bottom: 6rem;
}

.home-section-topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.home-section-topline h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-section-rule {
  height: 1px;
  background: rgba(225, 191, 178, 0.35);
  margin-bottom: 0.45rem;
}

.home-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-project-card {
  min-width: 0;
}

.home-project-card-link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  height: 100%;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(225, 191, 178, 0.22);
  box-shadow: 0 14px 36px rgba(31, 43, 51, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-project-card-link:hover,
.home-project-card-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(31, 43, 51, 0.08);
  border-color: rgba(248, 154, 114, 0.36);
}

.home-project-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.home-project-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  aspect-ratio: 1;
  flex: 0 0 5rem;
  padding: 0.45rem;
  border-radius: 1.35rem;
  background: #f4f4f2;
  border: 1px solid rgba(225, 191, 178, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 28px rgba(31, 43, 51, 0.08);
  overflow: hidden;
}

.home-project-thumb img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border: 0;
  border-radius: 1rem;
}

.home-project-title-group {
  min-width: 0;
}

.home-project-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-project-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
}

.home-project-title-group h3,
.home-post-item h3 {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.home-project-meta span {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #e4e2e2;
  color: #646464;
  font-size: 0.72rem;
  font-weight: 700;
}

.home-project-copy p,
.home-post-item p,
.home-writing-intro p {
  margin: 0;
  color: var(--muted);
}

.home-project-copy p {
  line-height: 1.75;
}

.home-project-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-project-cta::after {
  content: "->";
  letter-spacing: normal;
}

.home-writing-band {
  padding: 5.5rem 0;
  background: #f4f4f2;
}

.page-home .site-footer {
  padding-top: 4.5rem;
}

.home-writing-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 1.5fr);
  gap: 4rem;
  align-items: start;
}

.home-writing-intro h2 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-writing-intro p {
  max-width: 20rem;
  margin-bottom: 1.4rem;
  line-height: 1.8;
}

.home-writing-list {
  display: grid;
  gap: 2.5rem;
}

.home-writing-bottom-cta {
  display: none;
}

.home-post-item {
  min-width: 0;
}

.home-post-item + .home-post-item {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(225, 191, 178, 0.22);
}

.home-post-date {
  margin-bottom: 0.45rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-post-item h3 a {
  color: var(--text);
}

.home-post-item h3 a:hover,
.home-post-item h3 a:focus-visible {
  color: var(--accent-strong);
}

.pagination {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  font-weight: 600;
}

.pagination span.pagination-item {
  color: var(--muted);
}

.page-content {
  display: grid;
  gap: 2.5rem;
  min-width: 0;
}

.page-content > *,
.article-body > * {
  min-width: 0;
  max-width: 100%;
}

.page-hero {
  display: grid;
  gap: 1rem;
}

.page-about .page-content {
  gap: 0;
}

.about-editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(16rem, 0.9fr);
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.about-editorial-hero h1 {
  max-width: 12ch;
  margin: 0 0 1.25rem;
  font-size: clamp(3rem, 6.2vw, 5.25rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.about-accent {
  color: var(--accent-strong);
}

.about-hero-copy p {
  max-width: 38rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.about-hero-note {
  max-width: 34rem;
}

.about-skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.about-hero-media {
  position: relative;
  justify-self: end;
}

.about-hero-media::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  background: #f1eeea;
  border-radius: 0.5rem;
  z-index: 0;
}

.about-hero-media picture,
.about-hero-media img {
  position: relative;
  z-index: 1;
}

.about-hero-media img {
  width: min(100%, 20rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.25rem;
  box-shadow: 0 10px 40px rgba(26, 28, 27, 0.06);
  border: 0;
}

.about-highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.about-highlight-card {
  padding: 1.8rem;
  background: #ffffff;
  border-radius: 0.75rem;
  outline: 1px solid rgba(225, 191, 178, 0.3);
}

.about-highlight-card h2 {
  margin: 0.5rem 0 0.35rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-editorial-section {
  display: grid;
  grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 2fr);
  gap: 3rem;
  margin-bottom: 5.5rem;
}

.about-section-intro {
  align-self: start;
}

.about-section-intro h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-section-intro p {
  margin: 0;
  max-width: 17rem;
  color: var(--muted);
}

.about-section-body {
  min-width: 0;
}

.about-consulting-body {
  max-width: 42rem;
}

.about-consulting-body > p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-consulting-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.about-consulting-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  line-height: 1.75;
}

.about-consulting-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1.75px solid rgba(248, 154, 114, 0.82);
}

.about-consulting-contact {
  margin-bottom: 0;
}

.about-experience-list {
  display: grid;
  gap: 4rem;
  position: relative;
}

.about-experience-list::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 12rem;
  width: 1px;
  background: rgba(225, 191, 178, 0.42);
}

.about-experience-item {
  display: flex;
  gap: 2rem;
  position: relative;
}

.about-experience-item::before {
  content: "";
  position: absolute;
  left: calc(12rem - 0.45rem);
  top: 0.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(248, 154, 114, 0.75);
}

.about-experience-meta {
  flex: 0 0 11rem;
}

.about-year {
  display: inline-block;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-experience-content h3,
.about-education-item h3,
.about-speaking-item h3,
.about-award-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-experience-content p,
.about-education-item p,
.about-speaking-item p,
.about-award-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-editorial-panel {
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw) 5.5rem;
  padding: 5rem 0;
  background: #f4f4f2;
}

.about-speaking-list {
  display: grid;
  gap: 2rem;
}

.about-speaking-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(141, 113, 102, 0.12);
}

.about-speaking-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-speaking-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.35rem 1rem;
  margin-bottom: 0.5rem;
}

.about-speaking-topline .about-year {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.about-editorial-panel > .about-editorial-section {
  width: min(100% - 2rem, var(--shell-wide));
  margin: 0 auto;
}

.about-editorial-section-panel {
  margin-bottom: 0;
}

.about-education-list {
  display: grid;
  gap: 2rem;
}

.about-education-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(141, 113, 102, 0.12);
}

.about-education-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-education-topline,
.about-speaking-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.35rem 1rem;
  margin-bottom: 0.35rem;
}

.about-education-topline .about-year,
.about-speaking-topline .about-year {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.about-education-degree {
  color: var(--accent-strong);
  font-size: 1.08rem;
  font-weight: 700;
}

.about-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
}

.about-award-item {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(248, 154, 114, 0.45);
}

.about-award-item .about-year {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.portfolio-editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.8fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 5.75rem;
}

.portfolio-hero-title h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.portfolio-hero-copy {
  padding-bottom: 0.6rem;
}

.portfolio-hero-copy p {
  margin: 0;
  max-width: 23rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.portfolio-editorial-list {
  display: grid;
  gap: 10rem;
  min-width: 0;
}

.portfolio-editorial-item {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: start;
  min-width: 0;
  scroll-margin-top: 7rem;
}

.portfolio-editorial-item.image-right {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
}

.portfolio-editorial-item.image-right .portfolio-editorial-media {
  order: 2;
}

.portfolio-editorial-item.image-right .portfolio-editorial-copy {
  order: 1;
}

@media (min-width: 901px) {
  .portfolio-editorial-hero {
    margin-block: 5.75rem;
  }

  .portfolio-hero-copy {
    padding-bottom: 0;
  }
}

@media (min-width: 1276px) {
  .portfolio-hero-copy {
    padding-bottom: 0.3rem;
  }
}

.portfolio-editorial-media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #f4f4f2;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), filter var(--transition);
}

.portfolio-editorial-media picture {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: clamp(16rem, 30vw, 24rem);
  align-items: center;
  justify-content: center;
}

.portfolio-editorial-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
  padding: 2rem;
  border: 0;
  border-radius: 0;
  filter: grayscale(0.12);
}

.portfolio-editorial-item:hover .portfolio-editorial-media {
  box-shadow: 0 10px 40px rgba(26, 28, 27, 0.06);
}

.portfolio-editorial-item:hover .portfolio-editorial-media img {
  filter: grayscale(0);
}

.portfolio-editorial-copy {
  padding-top: 0.5rem;
}

.portfolio-role-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.portfolio-role-label {
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.portfolio-role-rule {
  height: 1px;
  flex: 1;
  background: rgba(225, 191, 178, 0.4);
}

.portfolio-editorial-copy h2 {
  margin: 0 0 1rem;
  font-size: 3rem;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.portfolio-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.portfolio-chip-row span {
  padding: 0.42rem 0.8rem;
  background: #e4e2e2;
  color: #646464;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.portfolio-editorial-description {
  margin: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.8;
}

.portfolio-editorial-points {
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.portfolio-editorial-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.portfolio-editorial-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1.75px solid rgba(248, 154, 114, 0.82);
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.portfolio-link::after {
  content: "→";
  transition: transform var(--transition);
}

.portfolio-link:hover::after {
  transform: translateX(0.2rem);
}

.two-column-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-list {
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.45rem;
}

.article-band {
  margin-bottom: 3rem;
  padding: 3.5rem 0 3rem;
  background: #f4f4f2;
}

.article-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(14rem, 0.7fr);
  gap: 3rem;
  align-items: end;
}

.article-band-copy {
  min-width: 0;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(225, 191, 178, 0.26);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-back-link::before {
  content: "←";
  font-size: 0.78rem;
  letter-spacing: 0;
}

.article-title {
  margin: 0 0 1rem;
  max-width: 13ch;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.article-summary {
  max-width: 42rem;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.85;
}

.article-band-meta {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  align-content: start;
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(225, 191, 178, 0.24);
}

.article-meta-group {
  display: grid;
  gap: 0.3rem;
}

.article-meta-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-meta-value {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.article-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-layout {
  display: grid;
  justify-content: center;
  margin-top: 0;
}

.article-keyword-list span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #e4e2e2;
  color: #646464;
  font-size: 0.74rem;
  font-weight: 700;
}

.article-body {
  width: min(100%, 46rem);
  padding: 0 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.prose {
  color: var(--text);
}

.article-body > p:first-child {
  margin-bottom: 2rem;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.8;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 2rem;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.15rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.article-body h3 {
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--muted);
}

.article-body ul {
  padding-left: 0;
  list-style: none;
}

.article-body ul li {
  position: relative;
  padding-left: 1.35rem;
}

.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1.75px solid rgba(248, 154, 114, 0.82);
}

.prose li + li {
  margin-top: 0.45rem;
}

.prose strong {
  color: var(--text);
}

.article-body a {
  text-decoration: underline;
  text-decoration-color: rgba(248, 154, 114, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-body a:hover,
.article-body a:focus-visible {
  text-decoration-color: currentColor;
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 3px solid var(--accent);
  color: var(--text);
}

.article-body blockquote {
  padding: 1.2rem 1.35rem;
  border-left: 0;
  border-radius: 16px;
  background: var(--accent-soft);
}

.prose code,
.prose pre,
.highlight pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.prose code {
  padding: 0.1rem 0.35rem;
  background: var(--accent-soft);
  color: var(--brand);
  border-radius: 6px;
}

.prose pre,
.highlight pre {
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #13202a;
  color: #f6f8f9;
  overflow-x: auto;
}

.prose pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.article-body > picture img,
.article-body > img,
.article-body p + picture img,
.article-body p + img {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(26, 28, 27, 0.08);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.post-card {
  min-width: 0;
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(225, 191, 178, 0.18);
  box-shadow: 0 10px 28px rgba(31, 43, 51, 0.05);
}

.post-card-meta {
  margin-bottom: 0.55rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.post-card h3 a {
  color: var(--text);
}

.post-card h3 a:hover,
.post-card h3 a:focus-visible {
  color: var(--accent-strong);
}

.post-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.writing-editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.7fr);
  gap: 3rem;
  align-items: end;
}

.writing-hero-copy h1 {
  margin: 0 0 1rem;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.writing-hero-accent {
  color: var(--accent-strong);
}

.writing-hero-copy p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.writing-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.writing-hero-stat,
.writing-feature-meta {
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(225, 191, 178, 0.18);
  box-shadow: 0 10px 28px rgba(31, 43, 51, 0.04);
}

.writing-hero-stat {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 6.5rem;
}

.writing-hero-value {
  display: block;
  align-self: end;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.writing-hero-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.writing-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(14rem, 0.75fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding: 3rem;
  border-radius: 24px;
  background: #f4f4f2;
}

.writing-feature-copy h2 {
  margin: 0.25rem 0 0.85rem;
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.writing-feature-copy h2 a {
  color: var(--text);
}

.writing-feature-copy h2 a:hover,
.writing-feature-copy h2 a:focus-visible {
  color: var(--accent-strong);
}

.writing-feature-copy p {
  max-width: 42rem;
  margin: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.85;
}

.writing-feature-date {
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.writing-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.writing-chip-row span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #e4e2e2;
  color: #646464;
  font-size: 0.74rem;
  font-weight: 700;
}

.writing-archive {
  display: grid;
  gap: 4.5rem;
  margin-top: 4rem;
}

.writing-year-group {
  display: grid;
  grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.8fr);
  gap: 2.5rem;
  align-items: start;
}

.writing-year-intro h2 {
  margin: 0.25rem 0 0.45rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.writing-year-intro p {
  margin: 0;
  color: var(--muted);
}

.writing-year-list {
  display: grid;
  gap: 1rem;
}

.writing-entry {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 0 1.45rem;
  border-top: 1px solid var(--line);
}

.writing-entry:first-child {
  padding-top: 0;
  border-top: 0;
}

.writing-entry-date {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.writing-entry-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.writing-entry-copy h3 a {
  color: var(--text);
}

.writing-entry-copy h3 a:hover,
.writing-entry-copy h3 a:focus-visible {
  color: var(--accent-strong);
}

.writing-entry-copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer-inner {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.site-footer-title,
.site-footer-copy {
  margin: 0 0 0.5rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 40;
    padding-top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
    background: rgba(252, 250, 247, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-main {
    padding-top: 5.5rem;
  }

  .site-header-inner,
  .section-heading,
  .project-list-item,
  .intro-layout,
  .page-hero-profile,
  .project-showcase,
  .two-column-section,
  .pagination {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-header-inner {
    flex-direction: row;
    align-items: center;
  }

  .site-nav-desktop {
    display: none;
  }

  .site-menu {
    display: block;
  }

  .site-nav {
    gap: 0.4rem 0.9rem;
  }

  .intro-avatar,
  .profile-portrait {
    max-width: 7rem;
  }

  .profile-portrait {
    width: 7rem;
    justify-self: start;
  }

  .project-list-item,
  .intro-layout,
  .page-hero-profile,
  .project-showcase {
    display: grid;
  }

  .pagination-item {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .writing-editorial-hero,
  .writing-feature-band,
  .writing-year-group,
  .writing-hero-meta {
    grid-template-columns: 1fr;
  }

  .writing-editorial-hero,
  .writing-feature-band,
  .writing-year-group {
    gap: 1.5rem;
  }

  .article-band-inner,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .article-band-inner {
    gap: 1.5rem;
  }

  .article-band-meta {
    max-width: 26rem;
  }

  .about-editorial-hero,
  .about-editorial-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero-media {
    width: min(100%, 21.875rem);
    justify-self: center;
  }

  .about-hero-media::before {
    inset: 0.75rem -0.75rem -0.75rem 0.75rem;
  }

  .about-highlight-cards,
  .about-awards-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-editorial-hero,
  .portfolio-editorial-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .portfolio-editorial-item.image-right {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-editorial-item.image-right .portfolio-editorial-media,
  .portfolio-editorial-item.image-right .portfolio-editorial-copy {
    order: initial;
  }

  .portfolio-editorial-item {
    gap: 1.15rem;
  }

  .portfolio-editorial-copy {
    display: contents;
  }

  .portfolio-editorial-item > * {
    min-width: 0;
  }

  .portfolio-editorial-item .portfolio-editorial-copy h2 {
    order: 1;
    margin-bottom: 0;
  }

  .portfolio-editorial-item .portfolio-editorial-media {
    order: 2;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .portfolio-editorial-item.image-right .portfolio-editorial-media {
    order: 2;
  }

  .portfolio-editorial-item .portfolio-editorial-media picture {
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .portfolio-editorial-item .portfolio-editorial-media img {
    height: 100%;
    padding: 0;
    object-fit: cover;
  }

  .portfolio-editorial-item .portfolio-editorial-points {
    order: 3;
    margin: 0 0 0.5rem;
  }

  .portfolio-editorial-item .portfolio-role-line {
    order: 4;
    margin-bottom: 0;
  }

  .portfolio-editorial-item .portfolio-role-label {
    white-space: normal;
  }

  .portfolio-editorial-item .portfolio-chip-row {
    order: 5;
    margin-bottom: 0;
  }

  .portfolio-editorial-item .portfolio-editorial-description {
    order: 6;
    margin-bottom: 0;
  }

  .portfolio-editorial-item .portfolio-link {
    order: 7;
  }

  .portfolio-hero-copy {
    padding-bottom: 0;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }

  .home-hero-avatar {
    width: 16.5rem;
    justify-self: center;
  }

  .home-project-grid,
  .home-writing-layout,
  .home-section-topline {
    grid-template-columns: 1fr;
  }

  .home-section-topline {
    gap: 0.75rem;
    align-items: start;
  }

  .home-section-rule {
    display: none;
  }

  .home-section-count {
    margin-bottom: 0;
  }

  .home-writing-layout {
    gap: 2.75rem;
  }

  .about-experience-list::before {
    display: none;
  }

  .about-experience-item::before {
    display: none;
  }

  .about-experience-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .about-editorial-panel {
    max-width: none;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .shell,
  .shell-wide,
  .page-shell,
  .page-content,
  .site-main {
    min-width: 0;
  }

  .home-hero {
    padding-top: 1.75rem;
    margin-bottom: 3.5rem;
  }

  .home-hero-avatar {
    width: 14.25rem;
    justify-self: center;
  }

  .home-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.7rem, 13vw, 4rem);
    white-space: normal;
  }

  .home-hero-copy p {
    font-size: 1rem;
  }

  .home-hero-links {
    display: none;
  }

  .home-work-section {
    margin-bottom: 4rem;
  }

  .home-project-grid {
    gap: 1rem;
  }

  .home-project-card-link {
    padding: 1rem;
    gap: 0.85rem;
  }

  .home-project-head {
    gap: 0.85rem;
  }

  .home-project-thumb {
    width: 4.35rem;
    flex-basis: 4.35rem;
    padding: 0.35rem;
  }

  .home-project-title-group h3,
  .home-post-item h3 {
    font-size: 1.35rem;
  }

  .home-project-subtitle {
    font-size: 0.9rem;
  }

  .home-writing-band {
    padding: 4rem 0;
  }

  .home-writing-layout {
    gap: 2rem;
  }

  .home-post-item + .home-post-item {
    padding-top: 1.75rem;
  }

  .home-writing-bottom-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    background: var(--accent-strong);
    color: #fff;
    font-weight: 700;
    border: 0;
  }

  .home-writing-bottom-cta::after {
    display: none;
  }

  .home-writing-bottom-cta:hover,
  .home-writing-bottom-cta:focus-visible {
    color: #fff;
    background: var(--accent);
  }

  @media (prefers-color-scheme: dark) {
    .home-writing-bottom-cta {
      background: var(--brand);
      color: #000 !important;
    }
  }

  .article-band {
    margin-bottom: 2rem;
    padding: 2.35rem 0 2rem;
  }

  .article-title {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .article-summary {
    font-size: 1rem;
  }

  .article-band-meta {
    padding: 1.15rem;
  }

  .article-body {
    width: 100%;
    padding-bottom: 2rem;
  }

  .article-body > p:first-child {
    font-size: 1.1rem;
  }

  .article-body h2 {
    font-size: 1.7rem;
  }

  .writing-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10vw, 3.6rem);
  }

  .writing-feature-band {
    margin-top: 2.5rem;
    padding: 1.35rem;
    border-radius: 18px;
  }

  .writing-feature-copy h2,
  .writing-year-intro h2 {
    font-size: 1.65rem;
  }

  .writing-archive {
    gap: 3rem;
    margin-top: 3rem;
  }

  .writing-entry {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .writing-entry-copy h3 {
    font-size: 1.25rem;
  }

  .article-body h3,
  .post-card h3 {
    font-size: 1.25rem;
  }

  .post-card {
    padding: 1.1rem;
  }

  .about-editorial-hero {
    margin-bottom: 3rem;
  }

  .about-hero-media {
    order: -1;
    width: 100%;
  }

  .about-editorial-hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .about-hero-copy p {
    font-size: 1rem;
  }

  .about-hero-media img {
    width: 100%;
    max-width: none;
  }

  .about-highlight-cards {
    gap: 1rem;
    margin-bottom: 4rem;
  }

  .about-highlight-card {
    padding: 1.4rem;
  }

  .about-highlight-card h2 {
    font-size: 1.7rem;
  }

  .about-editorial-section {
    gap: 1.25rem;
    margin-bottom: 4rem;
  }

  .about-consulting-list {
    gap: 0.7rem;
    margin-bottom: 1.25rem;
  }

  .about-experience-list {
    gap: 2rem;
  }

  .about-experience-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.35rem 0.75rem;
  }

  .about-experience-meta {
    grid-column: 2;
    grid-row: 1;
    flex: none;
  }

  .about-experience-content {
    display: contents;
  }

  .about-experience-content h3 {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0.35rem;
  }

  .about-experience-content p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .about-experience-content h3,
  .about-education-item h3,
  .about-speaking-item h3,
  .about-award-item h3 {
    font-size: 1.35rem;
  }

  .about-year {
    font-size: 1rem;
  }

  .about-experience-meta .about-year {
    white-space: nowrap;
  }

  .about-education-topline {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.35rem 0.75rem;
  }

  .about-speaking-topline {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.35rem 0.75rem;
  }

  .about-editorial-panel {
    padding: 3rem 0;
  }

  .portfolio-editorial-hero {
    margin-bottom: 3rem;
  }

  .portfolio-hero-title h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .portfolio-editorial-list {
    gap: 4rem;
  }

  .portfolio-editorial-copy h2 {
    font-size: 2.35rem;
  }

  .portfolio-editorial-media img {
    padding: 0.9rem;
    max-inline-size: 100%;
  }

  .portfolio-editorial-item {
    gap: 1rem;
  }
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(16, 23, 27, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-header-inner {
    border-bottom-color: rgba(69, 96, 111, 0.34);
  }

  .site-menu-toggle {
    background: rgba(21, 32, 39, 0.92);
    border-color: rgba(69, 96, 111, 0.34);
    color: var(--text);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }

  .site-menu-toggle:hover,
  .site-menu-toggle:focus-visible {
    border-color: rgba(248, 154, 114, 0.34);
    color: var(--brand);
  }

  .site-menu-panel {
    background: rgba(21, 32, 39, 0.96);
    border-color: rgba(69, 96, 111, 0.34);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }

  .site-menu-panel .site-nav-link {
    color: #d5dee4;
  }

  .site-menu-panel .site-nav-link:hover,
  .site-menu-panel .site-nav-link:focus-visible,
  .site-menu-panel .site-nav-link.is-active {
    color: var(--text);
    background: rgba(248, 154, 114, 0.18);
  }

  .writing-feature-band {
    background: #152027;
  }

  .writing-hero-stat,
  .writing-feature-meta {
    background: rgba(21, 32, 39, 0.9);
    border-color: rgba(69, 96, 111, 0.34);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }

  .writing-chip-row span {
    background: #2a3943;
    color: #eef4f7;
  }

  .writing-hero-copy p,
  .writing-feature-copy p,
  .writing-year-intro p,
  .writing-entry-copy p {
    color: #d5dee4;
  }

  .writing-entry {
    border-color: rgba(69, 96, 111, 0.34);
  }

  .article-band {
    background: #152027;
  }

  .article-back-link {
    background: rgba(21, 32, 39, 0.9);
    border-color: rgba(69, 96, 111, 0.34);
  }

  .article-band-meta,
  .post-card {
    background: rgba(21, 32, 39, 0.9);
    border-color: rgba(69, 96, 111, 0.34);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }

  .article-keyword-list span {
    background: #2a3943;
    color: #eef4f7;
  }

  .article-body > picture img,
  .article-body > img,
  .article-body p + picture img,
  .article-body p + img {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  }

  .article-body blockquote {
    background: rgba(248, 154, 114, 0.12);
  }

  .article-body a {
    text-decoration-color: rgba(248, 154, 114, 0.58);
  }

  .home-project-card-link {
    background: rgba(21, 32, 39, 0.86);
    border-color: rgba(69, 96, 111, 0.34);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }

  .home-project-card-link:hover,
  .home-project-card-link:focus-visible {
    border-color: rgba(248, 154, 114, 0.34);
  }

  .home-project-thumb,
  .home-writing-band,
  .about-editorial-panel {
    background: #152027;
  }

  .home-project-thumb {
    border-color: rgba(69, 96, 111, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 28px rgba(0, 0, 0, 0.18);
  }

  .portfolio-editorial-media {
    background: #152027;
  }

  .home-project-meta span,
  .portfolio-chip-row span {
    background: #2a3943;
    color: #eef4f7;
  }

  .home-project-copy p,
  .home-project-subtitle,
  .home-writing-intro p,
  .home-post-item p,
  .post-list-item p,
  .project-list-copy p,
  .project-showcase-copy p,
  .article-summary,
  .article-body p,
  .prose ul,
  .prose ol,
  .portfolio-editorial-description,
  .portfolio-editorial-points li,
  .about-hero-copy p,
  .about-section-intro p,
  .about-consulting-body > p,
  .about-experience-content p,
  .about-education-item p,
  .about-speaking-item p,
  .about-award-item p,
  .site-footer-copy {
    color: #d5dee4;
  }

  .home-post-date,
  .about-highlight-card p {
    color: #ffd0bb;
  }

  .home-post-item + .home-post-item,
  .about-education-item,
  .about-speaking-item {
    border-color: rgba(69, 96, 111, 0.34);
  }

  .about-hero-media::before {
    background: #1c2a33;
  }

  .about-highlight-card {
    background: rgba(21, 32, 39, 0.9);
    outline-color: rgba(69, 96, 111, 0.3);
  }

  .about-editorial-panel .about-year,
  .about-education-topline .about-year,
  .about-award-item .about-year {
    color: #d5dee4;
  }

  .about-award-item {
    border-left-color: rgba(248, 154, 114, 0.72);
  }

  .about-editorial-panel a,
  .home-writing-band a {
    color: var(--brand);
  }

  .about-editorial-panel a:hover,
  .about-editorial-panel a:focus-visible,
  .home-writing-band a:hover,
  .home-writing-band a:focus-visible {
    color: var(--accent-strong);
  }
}
