:root {
	color-scheme: light;
	--paper: #f6f1e5;
	--paper-2: #fffdf7;
	--ink: #141414;
	--muted: #5e5a55;
	--line: rgba(20, 20, 20, 0.16);
	--panel: #fbf7ef;
	--accent: #c9ddb9;
	--accent-strong: #54704d;
	--button-surface: rgba(252, 248, 240, 0.94);
	--button-surface-strong: rgba(238, 231, 214, 0.98);
	--button-text: #2d2218;
	--button-border: rgba(58, 44, 28, 0.2);
	--button-shadow: 0 8px 24px rgba(34, 25, 16, 0.08);
	--button-shadow-hover: 0 12px 30px rgba(34, 25, 16, 0.12);
	--tag-surface: rgba(20, 20, 20, 0.05);
	--surface: rgba(252, 248, 240, 0.92);
	--card-paper: #f6f1e7;
	--card-ink: #241b15;
	--card-muted: #6d6154;
	--card-line: rgba(44, 34, 24, 0.16);
	--card-shadow: 0 16px 30px rgba(40, 30, 22, 0.08);
	--backdrop-start: #faf7f1;
	--backdrop-end: #f6f1e5;
	--shadow: none;
	--radius: 0;
}

:root[data-theme='night'] {
	color-scheme: dark;
	--paper: #161a17;
	--paper-2: #1d231f;
	--ink: #f2efe7;
	--muted: #b7b0a3;
	--line: rgba(242, 239, 231, 0.16);
	--panel: #1b211d;
	--accent: #5e7a60;
	--accent-strong: #dce6bf;
	--button-surface: rgba(29, 35, 31, 0.94);
	--button-surface-strong: rgba(39, 47, 41, 0.98);
	--button-text: #f2efe7;
	--button-border: rgba(242, 239, 231, 0.14);
	--button-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
	--button-shadow-hover: 0 14px 30px rgba(0, 0, 0, 0.3);
	--tag-surface: rgba(242, 239, 231, 0.08);
	--surface: rgba(24, 29, 26, 0.96);
	--card-paper: #20251f;
	--card-ink: #fff7e8;
	--card-muted: #d8cdbb;
	--card-line: rgba(255, 247, 232, 0.2);
	--card-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
	--backdrop-start: #101310;
	--backdrop-end: #161a17;
	--shadow: none;
}

:root[data-theme='dark'] {
	color-scheme: dark;
	--paper: #292524;
	--paper-2: #363231;
	--ink: #ffffff;
	--muted: #a9a8a7;
	--line: rgba(255, 255, 255, 0.12);
	--panel: #363231;
	--accent: #9333ea;
	--accent-strong: #c084fc;
	--button-surface: rgba(54, 50, 49, 0.96);
	--button-surface-strong: rgba(70, 66, 66, 0.98);
	--button-text: #ffffff;
	--button-border: rgba(255, 255, 255, 0.12);
	--button-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
	--button-shadow-hover: 0 14px 30px rgba(0, 0, 0, 0.28);
	--tag-surface: rgba(255, 255, 255, 0.08);
	--surface: transparent;
	--card-paper: #1f1c1b;
	--card-ink: #fffaf0;
	--card-muted: #d7d0c6;
	--card-line: rgba(255, 255, 255, 0.18);
	--card-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
	--backdrop-start: #292524;
	--backdrop-end: #292524;
	--shadow: none;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: clip;
}

body {
	min-width: 320px;
	font-family: 'Inter', system-ui, sans-serif;
	color: var(--ink);
	background: linear-gradient(180deg, var(--backdrop-start) 0%, var(--backdrop-end) 100%);
	overflow-wrap: break-word;
}

a {
	color: inherit;
	text-decoration: none;
	overflow-wrap: anywhere;
}

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

button,
a,
input {
	font: inherit;
}

.site-shell {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 24px 0 48px;
}

.home-body .site-shell {
	width: 100%;
	margin: 0;
	padding: 0;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0 0 18px;
}

.header-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.home-link {
	background: none !important;
	color: var(--ink);
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.site-nav a,
.tag-pill,
.latest-button,
.note-link a,
.theme-toggle {
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	transition:
		transform 140ms ease,
		opacity 140ms ease,
		color 140ms ease;
}

.site-nav a,
.tag-pill,
.note-link a,
.theme-toggle {
	padding: 0;
}

.site-nav a,
.tag-pill,
.note-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.1;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--ink) 84%, var(--paper) 16%);
}

.site-nav a:hover,
.tag-pill:hover,
.latest-button:hover,
.note-link a:hover,
.theme-toggle:hover,
.list-card:hover {
	transform: translateY(-1px);
	opacity: 0.72;
}

.site-nav a:focus-visible,
.tag-pill:focus-visible,
.latest-button:focus-visible,
.note-link a:focus-visible,
.theme-toggle:focus-visible {
	outline: 2px solid var(--accent-strong);
	outline-offset: 2px;
}

.site-nav {
	align-items: center;
	gap: 18px;
}

.site-nav a,
.tag-pill,
.note-link a {
	position: relative;
}

.site-nav a::after,
.tag-pill::after,
.note-link a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 140ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.tag-pill:hover::after,
.tag-pill:focus-visible::after,
.note-link a:hover::after,
.note-link a:focus-visible::after {
	transform: scaleX(1);
}

.theme-toggle {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: color-mix(in srgb, var(--paper-2) 86%, transparent 14%);
	border: 1px solid var(--button-border);
	border-radius: 999px;
	box-shadow: var(--button-shadow);
}

.home-body {
	overflow: hidden;
}

.home-screen {
	position: relative;
	min-height: 100vh;
}

.mobile-home {
	display: none;
}

.image-home {
	min-height: 100vh;
}

.image-stage,
.list-card,
.business-card .card-surface,
.post-header {
	background: var(--surface);
	border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent 84%);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.image-stage {
	position: relative;
	min-height: 100vh;
	height: 100vh;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
}

.home-illustration {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
}

.hotspot {
	position: absolute;
	display: block;
	z-index: 2;
	background: transparent;
	border: 0;
	box-shadow: none;
	outline: none;
	border-radius: 999px;
}

.hotspot:hover,
.hotspot:focus-visible {
	background: transparent;
	box-shadow: none;
	transform: none;
}

.hotspot-label {
	position: absolute;
	left: var(--tooltip-x, 50%);
	top: var(--tooltip-y, 50%);
	transform: translate(-50%, 18px);
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: rgba(18, 16, 14, 0.82);
	color: #fffdf8;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 120ms ease,
		transform 120ms ease;
	white-space: nowrap;
}

.hotspot:hover .hotspot-label,
.hotspot:focus-visible .hotspot-label {
	opacity: 1;
	transform: translate(-50%, 18px);
}

.hotspot-left-whiteboard {
	left: 0.4%;
	top: 1.2%;
	width: 25.2%;
	height: 32.8%;
	border-radius: 4%;
}

.hotspot-camera-main {
	left: 49.2%;
	top: 55.6%;
	width: 8.4%;
	height: 12.4%;
	border-radius: 34%;
}

.hotspot-notebook {
	left: 73.5%;
	top: 62.8%;
	width: 18.2%;
	height: 15.4%;
	border-radius: 16%;
}

.hotspot-monitor {
	left: 64.1%;
	top: 45.8%;
	width: 16.7%;
	height: 26.8%;
	border-radius: 12%;
}

.hotspot-right-whiteboard {
	left: 73.6%;
	top: 14.5%;
	width: 25.9%;
	height: 38.0%;
	border-radius: 3%;
}

.hotspot-person {
	left: 30.4%;
	top: 27.8%;
	width: 20.2%;
	height: 68.0%;
	z-index: 1;
	border-radius: 28%;
}

.home-latest {
	position: absolute;
	left: max(16px, calc((100vw - 1120px) / 2 + 16px));
	right: max(16px, calc((100vw - 1120px) / 2 + 16px));
	bottom: 24px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	z-index: 3;
}

.mobile-home {
	position: relative;
	z-index: 3;
	width: min(520px, calc(100% - 24px));
	max-width: 100%;
	min-width: 0;
	margin: 0 auto;
	padding: 96px 0 28px;
	gap: 20px;
}

.mobile-home-intro {
	display: grid;
	gap: 12px;
	min-width: 0;
	padding: 20px 0 18px;
	border-top: 2px solid var(--ink);
	border-bottom: 1px solid var(--line);
}

.mobile-home-intro h1 {
	margin: 0;
	font-family: 'Spectral', Georgia, serif;
	font-size: clamp(3rem, 15vw, 4.9rem);
	line-height: 0.9;
	letter-spacing: -0.07em;
	overflow-wrap: anywhere;
}

.mobile-home-intro p:last-child {
	margin: 0;
	max-width: 34ch;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.76rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--ink) 82%, var(--muted) 18%);
}

.mobile-home-links,
.mobile-home-latest {
	display: grid;
	gap: 10px;
}

.mobile-home-links {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-home-links a,
.mobile-home-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	padding: 14px;
	background: color-mix(in srgb, var(--paper-2) 92%, transparent 8%);
	border: 1px solid var(--line);
	color: var(--ink);
	box-shadow: none;
}

.mobile-home-links a {
	min-height: 64px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 1;
	text-transform: uppercase;
}

.mobile-home-links a::after {
	content: '↗';
	font-size: 0.88rem;
	color: var(--muted);
}

.mobile-home-card {
	align-items: flex-start;
	flex-direction: column;
	padding: 16px 14px;
	border-left: 3px solid var(--ink);
}

.mobile-home-card span {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.mobile-home-card strong {
	font-family: 'Spectral', Georgia, serif;
	font-size: 1.12rem;
	line-height: 1.25;
	font-weight: 600;
	overflow-wrap: anywhere;
}

.mobile-home-card small {
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--muted);
}

.latest-button {
	display: grid;
	gap: 4px;
	padding: 12px 0;
	color: #fffdf8;
	text-align: left;
	align-content: end;
}

.latest-button span,
.tag-row span,
.tag-pill,
.post-header time,
.list-card time,
.note-entry time {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.latest-button strong {
	font-size: 1.04rem;
	line-height: 1.3;
}

.latest-button span,
.latest-button strong,
.latest-button small {
	text-shadow:
		0 2px 10px rgba(0, 0, 0, 0.7),
		0 0 26px rgba(0, 0, 0, 0.38);
}

.latest-button strong {
	color: #ffffff;
}

.latest-button span,
.latest-button small {
	color: rgba(255, 250, 242, 0.97);
}

.content-page,
.post-page,
.contact-page {
	display: grid;
	gap: 28px;
	padding-top: 28px;
	width: min(720px, calc(100% - 32px));
	max-width: 100%;
	min-width: 0;
	margin: 0 auto;
}

.back-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0 0 8px;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	color: var(--muted);
}

.back-link::before {
	content: '←';
	font-size: 0.9rem;
	line-height: 1;
}

.page-top {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 10px;
	min-width: 0;
	padding-bottom: 22px;
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
}

.page-top h1,
.post-header h1,
.business-card h1 {
	margin: 0;
	font-family: 'Spectral', Georgia, serif;
	font-size: clamp(2.5rem, 5vw, 3.9rem);
	line-height: 1.04;
	font-weight: 600;
	letter-spacing: -0.04em;
	overflow-wrap: anywhere;
}

.page-top p,
.list-card p,
.note-entry-summary,
.post-header time,
.prose,
.note-link {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.page-top p,
.list-card p,
.note-entry-summary,
.post-header time,
.prose,
.note-link {
	max-width: 70ch;
	overflow-wrap: anywhere;
}

.tag-filter,
.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	min-width: 0;
}

.tag-pill {
	cursor: pointer;
	color: color-mix(in srgb, var(--ink) 70%, var(--muted) 30%);
}

.tag-pill.is-active {
	color: var(--ink);
	opacity: 1;
}

.blog-listing,
.project-list {
	display: grid;
	gap: 0;
}

.notes-page {
	width: min(920px, calc(100% - 32px));
	max-width: 100%;
	min-width: 0;
}

.notes-page-header {
	margin-bottom: 2px;
}

.notes-layout {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: clamp(32px, 6vw, 72px);
	align-items: start;
	min-width: 0;
}

.notes-sidebar {
	position: sticky;
	top: 32px;
	display: grid;
	gap: 14px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.notes-sidebar-label {
	margin: 0;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.notes-filter {
	display: grid;
	gap: 3px;
}

.notes-filter-button {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 8px 0;
	border: 0;
	border-radius: 0;
	background: none;
	color: var(--muted);
	text-align: left;
	cursor: pointer;
}

.notes-filter-button span {
	font-family: 'Spectral', Georgia, serif;
	font-size: 1rem;
}

.notes-filter-button small {
	font-size: 0.68rem;
	font-variant-numeric: tabular-nums;
}

.notes-filter-button:hover,
.notes-filter-button.is-active {
	color: var(--ink);
}

.notes-filter-button.is-active span {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.notes-stream {
	display: grid;
	min-width: 0;
}

.note-entry {
	display: grid;
	gap: 14px;
	min-width: 0;
	padding: 0 0 18px;
	border-top: 1px solid var(--line);
}

.note-entry[hidden] {
	display: none;
}

.note-entry:last-child {
	border-bottom: 1px solid var(--line);
}

.note-disclosure {
	min-width: 0;
}

.note-disclosure-summary {
	display: block;
	padding: 28px 0 18px;
	cursor: pointer;
	list-style: none;
}

.note-disclosure-summary::-webkit-details-marker {
	display: none;
}

.note-disclosure-summary:focus-visible {
	outline: 1px solid var(--ink);
	outline-offset: 6px;
}

.note-entry-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	align-items: start;
	min-width: 0;
}

.note-entry-heading {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.note-entry-kind {
	display: block;
	margin: 0;
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.note-entry-title {
	display: block;
	margin: 0;
	font-family: 'Spectral', Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.025em;
	overflow-wrap: anywhere;
}

.note-entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	padding-top: 3px;
	min-width: 0;
}

.note-entry-meta time {
	white-space: nowrap;
	color: var(--muted);
}

.note-entry-summary {
	display: block;
	margin: 0;
	max-width: 58ch;
	padding-top: 5px;
	font-size: 0.98rem;
	line-height: 1.7;
	color: var(--muted);
}

.note-disclosure-arrow {
	width: 9px;
	height: 9px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	color: var(--muted);
	transform: rotate(45deg) translateY(-2px);
	transition: transform 160ms ease, color 160ms ease;
}

.note-disclosure-summary:hover .note-disclosure-arrow {
	color: var(--ink);
}

.note-disclosure[open] .note-disclosure-arrow {
	transform: rotate(225deg) translate(-2px, -2px);
}

.note-disclosure-content {
	display: grid;
	gap: 16px;
	min-width: 0;
	padding: 0 0 12px;
}

.note-entry-cover-preview {
	display: block;
	margin: 0;
	margin-top: 18px;
	height: clamp(72px, 10vw, 110px);
	overflow: hidden;
}

.note-entry-cover-preview img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border: 1px solid var(--line);
}

.note-disclosure[open] .note-entry-cover-preview {
	display: none;
}

.note-entry-cover {
	margin: 0;
	max-width: 100%;
}

.note-entry-cover img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 620px;
	object-fit: contain;
	border: 1px solid var(--line);
}

.note-entry-body {
	font-size: 1.08rem;
	line-height: 1.75;
	min-width: 0;
	overflow-wrap: anywhere;
}

.note-entry-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	min-width: 0;
}

.note-entry-gallery figure {
	display: grid;
	gap: 7px;
	margin: 0;
}

.note-entry-gallery img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 680px;
	object-fit: cover;
	border: 1px solid var(--line);
}

.note-entry-gallery figcaption {
	font-family: 'Spectral', Georgia, serif;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--muted);
}

.note-entry-link {
	margin: 0;
}

.note-entry-link a {
	display: inline-block;
	max-width: 100%;
	padding-bottom: 2px;
	border-bottom: 1px solid currentColor;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.note-entry-tags {
	padding-top: 2px;
}

.notes-empty {
	margin: 0;
	padding: 32px 0;
	border-top: 1px solid var(--line);
	color: var(--muted);
}

.search-strip {
	display: grid;
	gap: 8px;
	max-width: 520px;
	min-width: 0;
}

.search-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.search-input {
	width: 100%;
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 20%, transparent 80%);
	background: transparent;
	color: var(--ink);
	font: inherit;
	font-size: 1.02rem;
	line-height: 1.4;
	border-radius: 0;
	outline: none;
}

.search-input::placeholder {
	color: color-mix(in srgb, var(--muted) 82%, transparent 18%);
}

.search-input:focus {
	border-bottom-color: var(--ink);
}


.list-card {
	display: grid;
	gap: 12px;
	min-width: 0;
	max-width: 100%;
	padding: 32px 0;
	background: none;
	border: 0;
	border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
	box-shadow: none;
}

.list-card-cover {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
	background: var(--paper-2);
	margin-bottom: 8px;
}

.blog-list-card {
	grid-template-columns: minmax(0, 1fr) 176px;
	gap: 28px;
	align-items: center;
}

.blog-list-card-copy {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.blog-list-card .list-card-cover {
	width: 176px;
	height: 118px;
	aspect-ratio: auto;
	margin: 0;
	object-fit: cover;
}

.list-card h2,
.note-entry h2 {
	margin: 0;
	font-family: 'Spectral', Georgia, serif;
	font-size: clamp(1.7rem, 3vw, 2.15rem);
	line-height: 1.16;
	font-weight: 600;
	letter-spacing: -0.02em;
	overflow-wrap: anywhere;
}

.tag-row span {
	padding: 0;
	border-radius: 0;
	background: none;
	border: 0;
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post-header {
	display: grid;
	gap: 14px;
	min-width: 0;
	padding: 0 0 24px;
	background: none;
	border: 0;
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
	box-shadow: none;
}

.post-meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-width: 0;
}

.post-meta-row .like-control {
	margin: 0;
}

.post-meta-row .like-button {
	gap: 7px;
	min-height: 32px;
	padding: 6px 2px;
	color: color-mix(in srgb, var(--ink) 58%, var(--muted) 42%);
}

.post-meta-row .like-button svg {
	width: 17px;
	height: 17px;
	stroke-width: 1.75;
}

.post-meta-row .like-button span {
	font-size: 0.76rem;
}

.post-dek {
	margin: 0;
	max-width: 34ch;
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--muted);
	overflow-wrap: anywhere;
}

.post-cover {
	margin: 8px 0 12px;
	max-width: 100%;
}

.post-cover img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.prose {
	max-width: 680px;
	min-width: 0;
	font-family: 'Spectral', Georgia, serif;
	font-size: 1.27rem;
	line-height: 1.88;
	color: color-mix(in srgb, var(--ink) 92%, var(--paper) 8%);
}

.prose > :first-child {
	margin-top: 0;
}

.prose > :last-child {
	margin-bottom: 0;
}

.prose h2,
.prose h3,
.prose h4 {
	font-family: 'Spectral', Georgia, serif;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--ink);
	font-weight: 600;
}

.prose h2 {
	font-size: 2rem;
	margin-top: 2.2em;
}

.prose h3 {
	font-size: 1.55rem;
	margin-top: 2em;
}

.prose p,
.prose li,
.prose blockquote {
	max-width: 65ch;
	overflow-wrap: anywhere;
}

.prose blockquote {
	margin: 2em 0;
	padding-left: 1.1em;
	border-left: 2px solid color-mix(in srgb, var(--ink) 28%, transparent 72%);
	color: color-mix(in srgb, var(--ink) 84%, var(--muted) 16%);
}

.prose img {
	max-width: 100%;
	height: auto;
	margin: 28px 0;
	border-radius: 0;
	border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
}

.prose a {
	text-decoration: underline;
	text-underline-offset: 3px;
	overflow-wrap: anywhere;
}

.prose pre,
.prose code {
	white-space: pre-wrap;
	overflow-wrap: anywhere;
}

.prose sup {
	font-size: 0.72em;
	line-height: 0;
	vertical-align: super;
}

.prose .footnote-ref {
	margin-left: 0.12em;
	font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
	font-size: 0.68em;
	font-weight: 700;
	line-height: 0;
}

.prose .footnote-ref a {
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.prose .references {
	margin-top: 3.25rem;
	padding-top: 1.35rem;
	border-top: 1px solid color-mix(in srgb, var(--ink) 18%, transparent 82%);
	font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--muted);
}

.prose .references h3 {
	margin: 0 0 1rem;
	font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
}

.prose .references ol {
	display: grid;
	gap: 0.72rem;
	margin: 0;
	padding-left: 1.35rem;
}

.prose .references li {
	max-width: 100%;
	padding-left: 0.2rem;
	overflow-wrap: anywhere;
}

.prose .references a {
	color: color-mix(in srgb, var(--ink) 82%, var(--muted) 18%);
	text-decoration-thickness: 1px;
}

.prose .references .footnote-back {
	margin-left: 0.35rem;
	color: var(--muted);
	text-decoration: none;
}

.prose .notion-table-block {
	width: min(100%, 900px);
	max-width: calc(100vw - 32px);
	margin: 2.4rem 0;
	font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--ink);
}

.prose .notion-table-title {
	margin: 0 0 0.8rem;
	font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.prose .notion-table-tools {
	margin: 0 0 0.8rem;
}

.prose .notion-table-tools label {
	display: grid;
	gap: 0.35rem;
	max-width: 320px;
	margin: 0;
}

.prose .notion-table-tools span {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.prose .notion-table-tools input {
	width: 100%;
	border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent 78%);
	border-radius: 0;
	background: color-mix(in srgb, var(--paper) 88%, white 12%);
	color: var(--ink);
	font: inherit;
	padding: 0.65rem 0.75rem;
}

.prose .notion-table-scroll {
	max-width: 100%;
	overflow-x: auto;
	border-top: 1px solid color-mix(in srgb, var(--ink) 18%, transparent 82%);
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent 82%);
}

.prose .notion-table-block table {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
	margin: 0;
}

.prose .notion-table-block th,
.prose .notion-table-block td {
	padding: 0.72rem 0.8rem;
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent 90%);
	text-align: left;
	vertical-align: top;
	overflow-wrap: anywhere;
}

.prose .notion-table-block th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: color-mix(in srgb, var(--paper) 94%, white 6%);
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.prose .notion-table-block th button {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	padding: 0;
	cursor: pointer;
}

.prose .notion-table-block th button::after {
	content: "↕";
	font-size: 0.8em;
	opacity: 0.55;
}

.prose .notion-table-block th button[aria-sort="asc"]::after {
	content: "↑";
	opacity: 1;
}

.prose .notion-table-block th button[aria-sort="desc"]::after {
	content: "↓";
	opacity: 1;
}

.prose .notion-table-block tr:last-child td {
	border-bottom: 0;
}

.prose figure {
	margin: 2rem 0;
	max-width: 100%;
}

.prose figure img {
	margin: 0;
}

.prose figcaption {
	margin-top: 0.55rem;
	font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
	font-size: 0.85rem;
	line-height: 1.45;
	color: var(--muted);
}

.prose .notion-callout {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	margin: 2rem 0;
	padding: 1rem 1.05rem;
	border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
	background: color-mix(in srgb, var(--paper) 92%, var(--ink) 8%);
	font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
	font-size: 0.98rem;
	line-height: 1.55;
}

.prose .notion-callout p {
	margin: 0;
}

.prose .notion-todos {
	list-style: none;
	padding-left: 0;
}

.prose .notion-todos li {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
}

.prose .notion-todos input {
	margin-top: 0.48em;
	accent-color: var(--ink);
}

.prose .notion-toggle {
	margin: 1.4rem 0;
	border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent 88%);
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent 88%);
	padding: 0.8rem 0;
}

.prose .notion-toggle summary {
	cursor: pointer;
	font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
	font-weight: 700;
	color: var(--ink);
}

.prose .notion-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	gap: 1.2rem;
	margin: 2rem 0;
}

.prose .notion-column > :first-child {
	margin-top: 0;
}

.prose .notion-column > :last-child {
	margin-bottom: 0;
}

.prose hr {
	margin: 2.8rem 0;
	border: 0;
	border-top: 1px solid color-mix(in srgb, var(--ink) 16%, transparent 84%);
}

.author-note {
	display: grid;
	gap: 8px;
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
	max-width: 680px;
}

.author-note-label {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	color: var(--muted);
}

.author-note p:last-child {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: color-mix(in srgb, var(--ink) 86%, var(--paper) 14%);
}

.like-control {
	display: flex;
	align-items: center;
	width: fit-content;
	margin-top: 8px;
}

.like-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 0;
	border: 0;
	border-radius: 0;
	background: none;
	color: color-mix(in srgb, var(--muted) 82%, transparent 18%);
	cursor: pointer;
	transition:
		color 140ms ease,
		opacity 140ms ease;
}

.like-button svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.like-button span {
	min-width: 1ch;
	font-size: 0.72rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.like-button:hover,
.like-button:focus-visible {
	color: var(--ink);
}

.like-button:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 4px;
}

.like-button.is-liked {
	color: color-mix(in srgb, var(--ink) 55%, var(--muted) 45%);
}

.like-button.is-liked svg {
	fill: currentColor;
}

.like-button:disabled {
	cursor: default;
	opacity: 0.72;
}

.contact-page {
	align-items: start;
}

.project-list .list-card:last-child,
.blog-listing .list-card:last-child {
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
}

.business-card {
	max-width: 980px;
}

.card-surface {
	display: grid;
	grid-template-rows: auto 1fr auto auto;
	gap: 0;
	min-height: 520px;
	padding: 52px 62px 36px;
	background: var(--card-paper);
	border: 1px solid var(--card-line);
	color: var(--card-ink);
	box-shadow:
		var(--card-shadow),
		inset 0 0 0 1px color-mix(in srgb, var(--card-ink) 10%, transparent 90%);
}

.card-corner-row {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 24px;
}

.static-card .card-surface {
	box-shadow:
		var(--card-shadow),
		inset 0 0 0 1px color-mix(in srgb, var(--card-ink) 10%, transparent 90%);
}

.static-card h1,
.card-role {
	font-family: 'Spectral', Georgia, serif;
}

.card-small-line,
.card-bottom-line {
	font-family: 'Inter', sans-serif;
}

.static-card h1 {
	font-size: clamp(2.15rem, 3.8vw, 3rem);
	letter-spacing: -0.025em;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 600;
}

.card-role {
	margin: 0;
	font-size: 1.02rem;
	font-style: italic;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.5;
	text-transform: lowercase;
	color: var(--card-ink);
}

.card-small-line {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.025em;
	line-height: 1;
	text-transform: none;
	color: var(--card-ink);
}

.card-center-block {
	align-self: center;
	text-align: center;
	display: grid;
	gap: 14px;
	padding: 18px 0 68px;
}

.card-center-block h1 {
	margin: 0;
}

.card-bottom-block {
	display: grid;
	gap: 10px;
	text-align: center;
}

.card-bottom-line {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--card-ink);
}

.card-availability {
	margin: -4px 0 4px;
	font-family: 'Inter', sans-serif;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1.2;
	color: var(--card-muted);
}

.card-bottom-line:last-child {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.card-bottom-line a {
	color: inherit;
}

.card-bottom-line span {
	display: inline-block;
	padding: 0 0.2rem;
}

.admin-row {
	margin: 20px 0 0;
	text-align: right;
}

.contact-about {
	margin-top: 10px;
	padding-top: 18px;
	border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent 86%);
	color: var(--ink);
}

.contact-about p {
	margin: 0;
	max-width: none;
	width: 100%;
	font-size: 1.02rem;
	line-height: 1.8;
	color: color-mix(in srgb, var(--ink) 88%, var(--muted) 12%);
}

.admin-link {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--muted) 82%, transparent 18%);
}

.home-body .site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 24px 0 0;
}

.home-body .site-header::before {
	content: '';
	position: absolute;
	left: -28px;
	right: -28px;
	top: -10px;
	height: 104px;
	background: linear-gradient(
		180deg,
		rgba(10, 9, 8, 0.56) 0%,
		rgba(10, 9, 8, 0.28) 58%,
		rgba(10, 9, 8, 0) 100%
	);
	pointer-events: none;
	z-index: -1;
}

.home-body .header-actions {
	position: relative;
	z-index: 1;
}

.home-body .site-nav a {
	color: rgba(255, 250, 242, 0.98);
	text-shadow:
		0 2px 12px rgba(0, 0, 0, 0.72),
		0 0 22px rgba(0, 0, 0, 0.28);
}

.home-body .site-nav a::after {
	bottom: -5px;
	height: 1.5px;
	background: rgba(255, 248, 238, 0.92);
}

.home-body .site-nav a:hover,
.home-body .site-nav a:focus-visible {
	opacity: 0.88;
}

.theme-toggle {
	position: fixed;
	right: 20px;
	top: 20px;
	z-index: 5;
}

.home-body .theme-toggle {
	display: none;
}

.theme-toggle-sun,
.theme-toggle-moon {
	position: absolute;
	display: block;
	transition:
		opacity 120ms ease,
		transform 120ms ease;
}

.theme-toggle-sun {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #f2c14f;
	box-shadow: 0 0 0 4px rgba(242, 193, 79, 0.22);
	opacity: 1;
	transform: scale(1);
}

.theme-toggle-moon {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #243246;
	box-shadow: -5px 0 0 0 #e8e2d7 inset;
	opacity: 0;
	transform: scale(0.8);
}

:root[data-theme='dark'] .theme-toggle {
	background: var(--button-surface);
}

:root[data-theme='dark'] .theme-toggle-sun {
	opacity: 0;
	transform: scale(0.8);
}

:root[data-theme='dark'] .theme-toggle-moon {
	opacity: 1;
	transform: scale(1);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 980px) {
	.home-body {
		overflow-x: clip;
		overflow-y: auto;
	}

	.home-screen {
		min-height: 100vh;
	}

	.home-latest {
		grid-template-columns: 1fr;
	}

	.home-latest {
		left: 16px;
		right: 16px;
	}

}

@media (max-width: 720px) {
	.image-home,
	.home-latest {
		display: none;
	}

	.mobile-home {
		display: grid;
	}

	.site-header,
	.page-top {
		grid-template-columns: 1fr;
		display: grid;
	}

	.site-header {
		justify-content: center;
	}

	.header-actions {
		justify-content: center;
	}

	.page-top {
		align-items: start;
	}

	.site-shell {
		width: min(100% - 20px, 1120px);
	}

	.content-page,
	.post-page,
	.contact-page {
		width: min(100% - 20px, 720px);
	}

	.home-illustration {
		height: 100vh;
	}

	.home-body .site-header {
		width: calc(100% - 20px);
		padding-top: 20px;
	}

	.home-body .site-header::before {
		left: -12px;
		right: -12px;
		top: -8px;
		height: 92px;
	}

	.home-screen {
		min-height: auto;
		padding-bottom: 18px;
	}

	.home-body .site-shell {
		min-height: 100vh;
	}

	.theme-toggle {
		top: 16px;
		right: 16px;
	}

	.card-surface {
		min-height: auto;
		padding: 28px 22px 24px;
	}

	.card-corner-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.card-bottom-block,
	.admin-row {
		text-align: left;
	}

	.card-center-block {
		padding: 56px 0 64px;
		text-align: left;
	}

	.notes-page {
		width: min(100% - 20px, 920px);
	}

	.notes-layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.notes-sidebar {
		position: static;
		padding-top: 14px;
	}

	.notes-filter {
		display: flex;
		flex-wrap: wrap;
		gap: 14px;
	}

	.notes-filter-button {
		width: auto;
		gap: 7px;
		min-width: 0;
	}

	.note-entry-header {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.note-entry-meta {
		justify-content: space-between;
		padding: 0;
	}

	.note-entry-gallery {
		grid-template-columns: 1fr;
	}

	.blog-list-card {
		grid-template-columns: minmax(0, 1fr) 96px;
		gap: 14px;
	}

	.blog-list-card .list-card-cover {
		width: 96px;
		height: 96px;
	}

	.blog-list-card-copy {
		gap: 8px;
	}

	.post-cover {
		margin-top: 0;
	}

	.mobile-home {
		width: min(100% - 20px, 520px);
		padding-top: 92px;
	}

	.mobile-home-intro h1 {
		font-size: clamp(2.8rem, 13vw, 4.2rem);
	}

	.mobile-home-links a,
	.mobile-home-card {
		padding: 14px;
	}
}

@media (max-width: 430px) {
	.blog-list-card {
		grid-template-columns: 1fr;
	}

	.blog-list-card .list-card-cover {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.post-meta-row,
	.note-entry-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.note-entry-meta time {
		white-space: normal;
	}

	.mobile-home-links {
		grid-template-columns: 1fr;
	}

	.mobile-home {
		gap: 14px;
		padding-top: 82px;
		padding-bottom: 20px;
	}

	.mobile-home-intro {
		padding: 16px 0 14px;
	}

	.mobile-home-intro h1 {
		font-size: clamp(2.55rem, 15vw, 3.65rem);
		letter-spacing: -0.06em;
	}

	.mobile-home-card strong {
		font-size: 1.04rem;
	}
}
