@charset "UTF-8";
/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --ink: oklch(0.9491 0 0);
  --ink-soft: oklch(0.1776 0 0);
  --surface: oklch(0.1776 0 0);
  --surface-2: oklch(0.2520 0 0);
  --card: oklch(0.2134 0 0);
  --border: oklch(0.2351 0.0115 91.7467);
  --text: oklch(0.9491 0 0);
  --muted: oklch(0.7699 0 0);
  --accent: oklch(0.9247 0.0524 66.1732);
  --accent-2: oklch(0.3163 0.0190 63.6992);
  --accent-ink: oklch(0.2029 0.0240 200.1962);
  --serif: "Georgia", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  --r: 10px;
}

/* ── Base ────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 17px;
  color-scheme: dark;
}

body {
  font-family: var(--sans);
  background: var(--surface);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Shell ───────────────────────────────────────────────── */
.site-shell {
  width: min(1080px, 100% - 3rem);
  margin: 0 auto;
  padding: 2rem 0 6rem;
}

body:has(.hero:first-child) .site-shell {
  padding-top: 1.25rem;
}

@media (min-width: 761px) {
  body:has(.hero:first-child) .site-shell {
    width: min(960px, 100% - 3rem);
    padding-top: 2rem;
  }
}
/* ── Header ──────────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 4rem;
}

.site-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--border);
}

.hero-left {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  column-gap: 2rem;
  width: 100%;
}

.hero-photo {
  width: clamp(72px, 9vw, 96px);
  aspect-ratio: 1;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-name {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.45rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
}

.hero-bio {
  margin-top: 0.65rem;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.55;
}

.hero-social {
  grid-column: 2;
  grid-row: 1/4;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-self: start;
  justify-self: end;
  margin-top: 0.2rem;
  color: var(--accent);
  font-size: 0.9rem;
}

.hero-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.hero-social-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  background: currentColor;
  mask: center/contain no-repeat;
  -webkit-mask: center/contain no-repeat;
}

.hero-social-icon-github {
  mask-image: url("../icons/github.svg");
  -webkit-mask-image: url("../icons/github.svg");
}

.hero-social-icon-x {
  mask-image: url("../icons/twitter-x.svg");
  -webkit-mask-image: url("../icons/twitter-x.svg");
}

.hero-social-icon-linkedin {
  mask-image: url("../icons/linkedin.svg");
  -webkit-mask-image: url("../icons/linkedin.svg");
}

.hero-social a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-bio {
  grid-row: 2;
  grid-column: 1/-1;
}

.hero-actions {
  grid-row: 3;
  grid-column: 1/-1;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0.85rem;
  border-radius: 8px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 20%, var(--border));
  font-size: 0.82rem;
  letter-spacing: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn:hover {
  background: var(--surface-2);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}

.btn-primary:hover {
  background: oklch(93.67% 0.0523 75.5009deg);
  border-color: oklch(93.67% 0.0523 75.5009deg);
  color: var(--accent-ink);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.site-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* ── Section chrome ──────────────────────────────────────── */
.home-work-notes {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.section-label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

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

.section-heading-row .section-label {
  margin-bottom: 0;
}

.section-link {
  font-size: 0.86rem;
  color: var(--accent);
  white-space: nowrap;
}

.section-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Project cards ───────────────────────────────────────── */
.projects-section {
  margin-bottom: 3rem;
}

.home-project-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.home-project-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  touch-action: manipulation;
}

.home-project-row:hover .home-project-title {
  color: var(--accent);
}

.home-project-main {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.home-project-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.home-project-summary {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.home-project-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.4;
  max-width: 14rem;
  text-align: right;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.project-card {
  background: var(--card);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  height: 180px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 24%, var(--border));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  cursor: pointer;
  pointer-events: auto !important;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: transform 0.12s ease, border-color 0.12s ease;
  will-change: transform;
}

.home-work-notes .project-card {
  width: 100%;
  max-width: 460px;
}

@media (min-width: 1180px) {
  .home-work-notes .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.project-card:hover {
  transform: translateY(-2px) translateZ(0);
  border-color: color-mix(in srgb, var(--accent) 48%, var(--border));
}

.project-card:active {
  transform: translateY(0) translateZ(0);
}

.project-card-service {
  grid-template-columns: 1fr;
}

.project-card-img {
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
  background: var(--surface-2);
}

.project-card-service .project-card-img {
  border-right: none;
}

.project-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 16%, transparent), transparent 45%), linear-gradient(315deg, color-mix(in srgb, var(--accent-2) 38%, transparent), transparent 48%), var(--surface-2);
}

.github-project-placeholder, .rubygems-project-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
  padding: 1.35rem;
  color: var(--ink);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, transparent), transparent 48%), var(--surface-2);
}

.github-project-placeholder p, .rubygems-project-placeholder p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.project-service-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  width: 100%;
}

.project-service-name {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  gap: 0.65rem;
}

.github-project-icon {
  flex: 0 0 auto;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background: currentColor;
  mask: url("../icons/github.svg") center/contain no-repeat;
  -webkit-mask: url("../icons/github.svg") center/contain no-repeat;
}

.rubygems-project-icon {
  flex: 0 0 auto;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background: currentColor;
  mask: url("../icons/ruby.svg") center/contain no-repeat;
  -webkit-mask: url("../icons/ruby.svg") center/contain no-repeat;
}

.github-project-repo {
  font-family: var(--mono);
  font-size: 0.95rem;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 0.4s ease;
  will-change: transform;
}

.project-card:hover .project-card-img img {
  transform: scale(1.03) translateZ(0);
}

.project-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
}

.project-card-copy {
  display: block;
}

.project-card-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}

.project-card:hover .project-card-title {
  color: var(--accent);
}

.project-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.github-badge {
  display: block;
  width: auto;
  max-width: 100%;
  height: 20px;
}

.project-service-heading .github-badge {
  box-sizing: content-box;
  height: 23px;
  flex: 0 0 auto;
  padding: 2px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--border));
  border-radius: 5px;
  background: color-mix(in srgb, var(--surface-2) 82%, var(--ink));
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}

.tag-list li {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.project-catalog {
  margin-bottom: 5rem;
}

.project-catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-catalog-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.project-catalog-header .section-label {
  margin-bottom: 1.25rem;
}

.project-catalog-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.project-catalog-header p {
  color: var(--muted);
  max-width: 56ch;
}

.project-detail {
  max-width: 840px;
  margin-bottom: 5rem;
}

.project-detail-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--border);
}

.project-detail-header .section-label {
  margin-bottom: 1.25rem;
}

.project-detail-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.project-detail-header p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.prototype-notice {
  max-width: 62ch;
  margin-top: 1.35rem;
  padding: 0.95rem 1rem;
  border: 1.5px solid color-mix(in srgb, var(--accent) 48%, var(--border));
  border-left-width: 5px;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%), color-mix(in srgb, var(--accent-2) 22%, var(--card));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.prototype-notice strong {
  color: var(--accent);
  font-weight: 700;
}

.project-detail-header .tag-list {
  margin-top: 1.25rem;
}

.project-detail-image {
  overflow: hidden;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  margin-bottom: 1.5rem;
  background: var(--surface-2);
}

.project-detail-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* ── Notes section (homepage) ────────────────────────────── */
.notes-section {
  margin-bottom: 3rem;
}

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

.note-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}

.note-row:hover {
  background: transparent;
}

.note-date {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.note-title {
  font-size: 0.97rem;
  font-weight: 500;
}

.home-work-notes .note-row {
  grid-template-columns: 1fr;
  gap: 0.2rem;
}

.home-work-notes .note-title {
  order: 1;
}

.home-work-notes .note-date {
  order: 2;
}

.note-title a:hover {
  color: var(--accent);
}

.notes-more, .projects-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.86rem;
  color: var(--accent);
  margin-top: 0.9rem;
}

.projects-more {
  justify-content: center;
  width: 100%;
}

.notes-more:hover, .projects-more:hover {
  text-decoration: underline;
}

.projects-more:hover {
  text-decoration: underline;
}

/* ── Notes archive / writing page ───────────────────────── */
.notes-archive {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}

/* ── Content pages (notes/posts) ─────────────────────────── */
.content-page {
  max-width: 680px;
}

.content-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--border);
}

.content-header h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.content-meta {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.content-meta p {
  margin: 0;
}

.content-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.content-body h2,
.content-body h3,
.content-body h4 {
  font-family: var(--serif);
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
}

.content-body h2 {
  font-size: 1.5rem;
}

.content-body h3 {
  font-size: 1.2rem;
}

.content-body p,
.content-body li {
  margin-bottom: 1rem;
}

.content-body ul,
.content-body ol {
  padding-left: 1.5rem;
}

.content-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.content-body th,
.content-body td {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.content-body th {
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-2));
  color: var(--ink);
  font-weight: 600;
}

.content-body tbody tr:nth-child(odd) {
  background: color-mix(in srgb, var(--surface-2) 55%, transparent);
}

.content-body img {
  border-radius: 8px;
  margin: 1.5rem 0;
}

.content-body video {
  display: block;
  max-width: 100%;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content-body code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--surface-2);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--border));
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

.content-body pre {
  background: var(--ink-soft);
  color: var(--text);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-family: var(--mono);
  font-size: 0.88em;
  line-height: 1.65;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--border));
}

.content-body pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
}

.content-body .highlight {
  color: var(--text);
}

.content-body .highlight .c,
.content-body .highlight .c1,
.content-body .highlight .cm,
.content-body .highlight .cp,
.content-body .highlight .cs {
  color: oklch(69.02% 0.032 152.2deg);
  font-style: italic;
}

.content-body .highlight .k,
.content-body .highlight .kc,
.content-body .highlight .kd,
.content-body .highlight .kn,
.content-body .highlight .kp,
.content-body .highlight .kr,
.content-body .highlight .kt,
.content-body .highlight .ow {
  color: oklch(78.5% 0.107 333.2deg);
  font-weight: 600;
}

.content-body .highlight .s,
.content-body .highlight .s1,
.content-body .highlight .s2,
.content-body .highlight .sa,
.content-body .highlight .sb,
.content-body .highlight .sc,
.content-body .highlight .sd,
.content-body .highlight .se,
.content-body .highlight .sh,
.content-body .highlight .si,
.content-body .highlight .sx {
  color: oklch(82.1% 0.118 73.8deg);
}

.content-body .highlight .m,
.content-body .highlight .mb,
.content-body .highlight .mf,
.content-body .highlight .mh,
.content-body .highlight .mi,
.content-body .highlight .mo,
.content-body .highlight .il {
  color: oklch(78.9% 0.098 214.4deg);
}

.content-body .highlight .na,
.content-body .highlight .nb,
.content-body .highlight .nc,
.content-body .highlight .nd,
.content-body .highlight .ne,
.content-body .highlight .nf,
.content-body .highlight .nl,
.content-body .highlight .nn,
.content-body .highlight .nt,
.content-body .highlight .nv,
.content-body .highlight .vc,
.content-body .highlight .vg,
.content-body .highlight .vi,
.content-body .highlight .vm {
  color: oklch(85.8% 0.099 183.7deg);
}

.content-body .highlight .o,
.content-body .highlight .p {
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
}

.content-body .highlight .gd {
  color: oklch(70.4% 0.17 24.6deg);
}

.content-body .highlight .gi {
  color: oklch(78.6% 0.132 145.9deg);
}

.content-body .highlight .err {
  color: oklch(70.4% 0.17 24.6deg);
  background: color-mix(in srgb, oklch(70.4% 0.17 24.6deg) 14%, transparent);
}

.content-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: var(--muted);
  font-style: italic;
}

/* ── About page ──────────────────────────────────────────── */
.page-header {
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 2rem);
  }
  body:has(.hero:first-child) .site-shell {
    padding-top: 1rem;
  }
  .hero {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
  }
  .hero-left {
    display: contents;
  }
  .hero-photo {
    width: 72px;
    border-radius: 18px;
  }
  .site-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-work-notes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-name {
    grid-column: auto;
    grid-row: auto;
    align-self: center;
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    white-space: normal;
  }
  .hero-bio,
  .hero-social,
  .hero-actions {
    grid-column: 1/-1;
  }
  .hero-bio {
    grid-row: 2;
    margin-top: 0;
    font-size: 0.94rem;
  }
  .hero-social {
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-self: start;
    margin-top: -0.25rem;
  }
  .hero-social-label {
    display: none;
  }
  .hero-actions {
    grid-row: 4;
    margin-top: 0.5rem;
  }
  .home-project-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.78rem 0;
  }
  .home-project-meta {
    align-items: flex-start;
    max-width: none;
    text-align: left;
  }
  .project-card {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 360px;
  }
  .home-work-notes .project-card {
    max-width: 100%;
    height: 320px;
  }
  .project-card-service {
    grid-template-rows: 1fr;
    height: 180px;
  }
  .home-work-notes .project-card-service {
    height: 180px;
  }
  .project-catalog-grid {
    grid-template-columns: 1fr;
  }
  .project-card-img {
    aspect-ratio: 16/10;
    min-height: 0;
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
  }
  .project-card-service .project-card-img {
    aspect-ratio: auto;
    border-bottom: none;
  }
  .project-card-placeholder {
    min-height: 100%;
  }
  .project-card-body {
    justify-content: space-between;
  }
  .note-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

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