/* input(501,15): Scanner error CSS1002: Unterminated string: ";
input(501,14): run-time error CSS1062: Expected semicolon or closing curly-brace, found '";
' */
:root {
  /* Surfaces & ink */
  --stone:        #f5f4f1;
  --surface:      #ffffff;
  --ink:          #1a1a1a;
  --ink-muted:    #555555;
  --ink-soft:     #888888;
  --hairline:     #e0dfd8;

  /* Brand */
  --nordic:       #185FA5;
  --nordic-deep:  #0C447C;
  --sky:          #E6F1FB;
  --sky-edge:     #B5D4F4;

  /* Warm accent */
  --terracotta:   #C97B5C;
  --terracotta-deep: #A85F40;
  --sand:         #EFE6D6;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale (8px) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 5rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans), sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--nordic); text-decoration: none; }
a:hover { color: var(--terracotta-deep); }

.prose p {
  margin-bottom: 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.4vw, 34px); }
h3 { font-size: clamp(18px, 1.6vw, 22px); }

p { color: var(--ink-muted); }

.lede {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--terracotta);
  margin-bottom: var(--s-4);
}

.eyebrow-muted {
  color: var(--ink-soft);
  border-bottom-color: var(--hairline);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.section {
  padding: var(--s-7) 0;
  border-bottom: 0.5px solid var(--hairline);
  background: var(--surface);
}

.section-stone { background: var(--stone); }
.section-sand  { background: var(--sand); }
.section-sky   { background: var(--sky); }

@media (min-width: 769px) {
  .section { padding: var(--s-8) 0; }
}

.section-head {
  margin-bottom: var(--s-6);
}

.grid-2 { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: var(--s-4); grid-template-columns: 1fr 1fr; }

@media (min-width: 769px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-4) var(--s-6);
  background: var(--surface);
  border-bottom: 0.5px solid var(--hairline);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--ink);
  width: 100px;
}
.nav-logo:hover { color: var(--ink); }

.nav-links {
  display: none;
  gap: var(--s-5);
  font-size: 13px;
}
.nav-links a {
  color: var(--ink-muted);
}
.nav-links a:hover {
  color: var(--terracotta-deep);
}
.nav-links a.active {
  color: var(--ink);
}

@media (min-width: 769px) {
  .nav-links { display: flex; }
  .nav-logo { width: 200px; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.lang-switch {
  display: flex;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  gap: var(--s-2);
}
.lang-switch a { color: var(--ink-soft); }
.lang-switch a.active { color: var(--ink); font-weight: 500; }
.lang-switch span { color: var(--hairline); }

.certs-bar {
  background: var(--sky);
  border-bottom: 0.5px solid var(--sky-edge);
  padding: var(--s-3) var(--s-6);
  display: none;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 769px) { .certs-bar { display: flex; }}

.certs-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nordic);
}

.cert-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--nordic-deep);
  background: var(--sky-edge);
  padding: 4px 10px;
  border-radius: 99px;
}

.certs-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 769px) { .certs-grid { grid-template-columns: repeat(4, 1fr); } }
.cert-tile {
  border: 0.5px solid var(--hairline);
  background: var(--surface);
  border-radius: var(--r-md);
  padding: var(--s-4);
  text-align: left;
}
.cert-tile-code { font-family: var(--serif); font-size: 18px; color: var(--nordic); margin-bottom: 2px; }
.cert-tile-name { font-size: 11px; color: var(--ink-muted); line-height: 1.4; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--nordic);
  color: var(--sky);
}
.btn-primary:hover {
  background: var(--nordic-deep);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: #bbb;
}
.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-muted);
  padding: 6px 14px;
  border-color: var(--hairline);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-muted); }

.hero {
  background: var(--surface);
  padding: var(--s-7) 0;
  border-bottom: 0.5px solid var(--hairline);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 769px) {
  .hero { padding: var(--s-8) 0; }
  .hero-inner { grid-template-columns: 1.2fr 1fr; }
}

.hero h1 { margin-bottom: var(--s-5); }
.hero p { font-size: 15px; line-height: 1.7; margin-bottom: var(--s-5); max-width: 52ch; }
.hero-btns { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.hero-right { display: flex; flex-direction: column; gap: var(--s-3); }

/* Hero variant for non-home pages — narrower, no right column */
.hero-narrow {
  background: var(--surface);
  padding: var(--s-7) 0 var(--s-6);
  border-bottom: 0.5px solid var(--hairline);
}
.hero-narrow .container-narrow { text-align: left; }
.hero-narrow h1 { margin-bottom: var(--s-4); }

/* Page hero with metric (case detail) */
.case-hero {
  background: var(--surface);
  padding: var(--s-7) 0;
  border-bottom: 0.5px solid var(--hairline);
}
.case-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 769px) {
  .case-hero { padding: var(--s-8) 0; }
  .case-hero-inner { grid-template-columns: 1.4fr 1fr; }
}
.case-hero-metric {
  background: var(--sand);
  border-radius: var(--r-md);
  padding: var(--s-6);
  text-align: center;
}
.case-hero-metric-num {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 120px);
  color: var(--nordic);
  line-height: 0.9;
  margin-bottom: var(--s-3);
}
.case-hero-metric-label { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

/* Stat card */
.stat-card {
  background: var(--stone);
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--s-5);
  position: relative;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: var(--s-5);
  left: 0;
  width: 3px;
  height: 32px;
  background: var(--terracotta);
  border-radius: 0 2px 2px 0;
}
.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--nordic);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.stat-label { font-size: 12px; color: var(--ink-muted); }

/* Service / generic card */
.card {
  background: var(--stone);
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--s-5);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  display: block;
  color: inherit;
}
.card:hover {
  border-color: #cfcdc4;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
a.card:hover { color: inherit; }

.card-on-surface { background: var(--surface); }

.card h3 { font-family: var(--sans); font-size: 16px; font-weight: 500; margin-bottom: var(--s-2); color: var(--ink); }
.card p  { font-size: 13px; line-height: 1.6; color: var(--ink-muted); }

.card-icon {
  width: 36px;
  height: 36px;
  background: var(--sky);
  border-radius: var(--r-sm);
  margin-bottom: var(--s-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 18px; height: 18px; stroke: var(--nordic); fill: none; stroke-width: 1.5; }
.card-icon .icon { width: 18px; height: 18px; background-color: var(--nordic); fill: none; stroke-width: 1.5; }

.card-link {
  display: inline-block;
  margin-top: var(--s-3);
  font-size: 12px;
  font-weight: 500;
  color: var(--nordic);
}
.card-link::after {
  content: " →";
  transition: transform 0.15s ease;
  display: inline-block;
}
.card:hover .card-link { color: var(--terracotta-deep); }
.card:hover .card-link::after { transform: translateX(2px); }

/* Blog card */
.blog-card { background: var(--stone); border: 0.5px solid var(--hairline); border-radius: var(--r-md); padding: var(--s-5); display: block; color: inherit; transition: border-color 0.15s ease; }
.blog-card:hover { border-color: #cfcdc4; color: inherit; }
.blog-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: var(--s-2); line-height: 1.3; }
.blog-card p  { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }
.blog-meta { display: flex; gap: var(--s-3); margin-top: var(--s-4); font-size: 11px; color: var(--ink-soft); }

/* Case card */
.case-card {
  background: var(--surface);
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--s-6);
  display: block;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}
.case-card:hover { border-color: #cfcdc4; box-shadow: 0 1px 2px rgba(0,0,0,0.04); color: inherit; }
.case-metric {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--nordic);
  line-height: 1;
  margin-bottom: var(--s-3);
}
.case-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: var(--s-2); }
.case-card p  { font-size: 13px; color: var(--ink-muted); }
.case-card .case-client { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); margin-bottom: var(--s-3); }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--nordic);
  background: var(--sky);
  padding: 3px 8px;
  border-radius: 99px;
}

.tag-warm { color: var(--terracotta-deep); background: var(--sand); }

.tag-row { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-bottom: var(--s-3); }

/* Tech badges (service detail) */
.tech-badges { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.tech-badge {
  font-size: 12px;
  color: var(--ink);
  background: var(--surface);
  border: 0.5px solid var(--hairline);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-family: var(--sans);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 0.5px solid var(--hairline);
  padding: var(--s-6);
  position: relative;
}
.testimonial::before {
  content: """;
  position: absolute;
  top: -10px;
  left: var(--s-5);
  font-family: var(--serif);
  font-size: 64px;
  color: var(--terracotta);
  line-height: 1;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: var(--s-4);
  color: var(--ink);
  font-weight: 300;
}
.testimonial-author {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
}

.cta-band {
  background: var(--nordic);
  color: var(--sky);
  padding: var(--s-7) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: var(--s-4); }
.cta-band p  { color: var(--sky); margin: 0 auto var(--s-5); max-width: 52ch; }
.cta-band .btn-primary { background: var(--terracotta); color: #fff; }
.cta-band .btn-primary:hover { background: var(--terracotta-deep); }
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-band .btn-secondary:hover { border-color: #fff; color: #fff; }

.form { display: flex; flex-direction: column; gap: var(--s-3); }
.form label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.form input, .form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--sans);
  border-radius: var(--r-sm);
  border: 0.5px solid #ccc;
  background: var(--stone);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form input:focus, .form textarea:focus {
  border-color: var(--nordic);
  background: var(--surface);
}
.form textarea { resize: vertical; min-height: 96px; }
.form .submit {
  width: 100%;
  padding: 12px;
  background: var(--nordic);
  color: var(--sky);
  border: none;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  margin-top: var(--s-2);
}
.form .submit:hover { background: var(--nordic-deep); color: #fff; }

.form-field { display: flex; flex-direction: column; }

.alert-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 8px;
  color: #166534;
  padding: 1rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer {
  background: var(--surface);
  border-top: 0.5px solid var(--hairline);
  padding: var(--s-6) 0 var(--s-5);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 769px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s-6); }
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
  margin-bottom: var(--s-3);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a { font-size: 13px; color: var(--ink-muted); }
.footer-col a:hover { color: var(--terracotta-deep); }

.footer-brand { font-family: var(--serif); font-size: 18px; color: var(--ink); display: block; margin-bottom: var(--s-3); }
.footer-brand-meta { font-size: 12px; color: var(--ink-soft); line-height: 1.6; max-width: 28ch; }

.footer-base {
  max-width: var(--container);
  margin: var(--s-5) auto 0;
  padding: var(--s-4) var(--s-6) 0;
  border-top: 0.5px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 11px;
  color: var(--ink-soft);
}

/* Process / step list */
.steps { display: grid; gap: var(--s-5); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 769px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: var(--s-4) 0; border-top: 1px solid var(--hairline); position: relative; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 13px;
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--s-2);
  letter-spacing: 1px;
}
.step h3 { font-family: var(--sans); font-size: 15px; font-weight: 500; margin-bottom: var(--s-2); }
.step p { font-size: 13px; line-height: 1.6; }

/* Bullet list (service "what I do") */
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: var(--s-4); }
.bullet-list li { padding-left: var(--s-5); position: relative; font-size: 14px; line-height: 1.7; color: var(--ink-muted); }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1px;
  background: var(--terracotta);
}
.bullet-list strong { color: var(--ink); font-weight: 500; }

.faq { display: flex; flex-direction: column; }
.faq-item { border-top: 0.5px solid var(--hairline); padding: var(--s-5) 0; }
.faq-item:last-child { border-bottom: 0.5px solid var(--hairline); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq-item summary::after { content: "+"; color: var(--terracotta); font-size: 22px; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: var(--s-3); font-size: 14px; line-height: 1.7; }

.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-top: 0.5px solid var(--hairline);
}
.timeline-item:last-child { border-bottom: 0.5px solid var(--hairline); }
.timeline-year { font-family: var(--serif); font-size: 18px; color: var(--terracotta); }
.timeline-role { font-size: 14px; font-weight: 500; margin-bottom: 2px; color: var(--ink); }
.timeline-org  { font-size: 13px; color: var(--ink-muted); margin-bottom: var(--s-2); }
.timeline-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

/* Article (blog post) */
.article { padding: var(--s-7) 0; background: var(--surface); }
.article-head { max-width: var(--container-narrow); margin: 0 auto var(--s-6); padding: 0 var(--s-6); }
.article-head h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: var(--s-4); }
.article-meta { display: flex; gap: var(--s-3); font-size: 12px; color: var(--ink-soft); }
.article-body { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-6); }
.article-body p { font-size: 16px; line-height: 1.8; color: var(--ink); margin-bottom: var(--s-5); }
.article-body h2 { margin-top: var(--s-7); margin-bottom: var(--s-4); font-size: 28px; }
.article-body h3 { margin-top: var(--s-6); margin-bottom: var(--s-3); font-size: 20px; font-family: var(--sans); font-weight: 500; }
.article-body ul, .article-body ol { margin: 0 0 var(--s-5) var(--s-5); }
.article-body li { font-size: 16px; line-height: 1.8; margin-bottom: var(--s-2); color: var(--ink); }
.article-body pre {
  background: #0e1726;
  color: #e6f1fb;
  padding: var(--s-4);
  border-radius: var(--r-sm);
  overflow-x: auto;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
  margin: var(--s-5) 0;
}
.article-body code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--sand);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--terracotta-deep);
}
.article-body pre code { background: transparent; padding: 0; color: inherit; }
.article-body blockquote {
  border-left: 2px solid var(--terracotta);
  padding-left: var(--s-5);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin: var(--s-6) 0;
}

/* Pull quote (case detail) */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  font-weight: 300;
  border-top: 1px solid var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding: var(--s-6) 0;
  margin: var(--s-7) 0;
  text-align: center;
}
.pull-quote-cite {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  color: var(--ink-soft);
  letter-spacing: 0.5px;
  margin-top: var(--s-3);
}

/* Filter chips (blog) */
.filter-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-6); }
.filter-chip {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 99px;
  border: 0.5px solid var(--hairline);
  background: var(--surface);
  color: var(--ink-muted);
  cursor: pointer;
}
.filter-chip:hover { border-color: var(--ink-muted); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--stone); border-color: var(--ink); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: var(--s-3); margin-top: var(--s-6); font-size: 13px; }
.pagination a, .pagination span { padding: 6px 12px; border-radius: var(--r-sm); color: var(--ink-muted); }
.pagination a:hover { color: var(--terracotta-deep); }
.pagination .current { background: var(--ink); color: var(--stone); }

.notfound {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-8) var(--s-6);
  background: var(--surface);
}
.notfound-code {
  font-family: var(--serif);
  font-size: clamp(96px, 16vw, 180px);
  color: var(--terracotta);
  line-height: 0.9;
  margin-bottom: var(--s-4);
  font-weight: 300;
}
.notfound h1 { margin-bottom: var(--s-4); }
.notfound p  { max-width: 48ch; margin: 0 auto var(--s-5); }

.text-muted { color: var(--ink-muted); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.center { text-align: center; }
.row-flex { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }

.lucide--layers {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z'/%3E%3Cpath d='M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12'/%3E%3Cpath d='M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.lucide--monitor {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='20' height='14' x='2' y='3' rx='2'/%3E%3Cpath d='M8 21h8m-4-4v4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.lucide--sun-medium {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 3v1m0 16v1m-9-9h1m16 0h1m-2.636-6.364l-.707.707M6.343 17.657l-.707.707m0-12.728l.707.707m11.314 11.314l.707.707'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
