/* What I've been up to lately — Skadi Oy slide deck.
   Horizontal slide deck. One file. Per-slide brand styling. */

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

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #0a0a0a;
  color: #0a0a0a;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ----- Deck container: horizontal slide rail ----- */
.deck {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100dvh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  outline: none;
  -webkit-overflow-scrolling: touch;
}
.deck::-webkit-scrollbar { display: none; }
.deck { scrollbar-width: none; }

@media (prefers-reduced-motion: reduce) {
  .deck { scroll-behavior: auto; }
}

.slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: clamp(28px, 5vw, 80px);
  display: grid;
  align-content: center;
  position: relative;
  overflow: hidden;
}

.kicker {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 clamp(18px, 3vw, 36px);
  opacity: 0.7;
}

.lede { font-size: clamp(18px, 2vw, 22px); line-height: 1.45; }
p { margin: 0 0 0.9em; }
p:last-child { margin-bottom: 0; }
.small { font-size: 14px; opacity: 0.72; }

/* ----- HUD with prev/next + counter ----- */
.hud {
  position: fixed;
  right: max(env(safe-area-inset-right), 18px);
  bottom: max(env(safe-area-inset-bottom), 18px);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.95);
  background: rgba(10,10,10,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 4px 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hud-counter { padding: 0 4px; }
.hud-btn {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: inherit;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.hud-btn:hover { background: rgba(255,255,255,0.08); }
.hud-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ----- QR cards ----- */
.qr-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: 1.2rem;
  transition: transform 120ms ease;
}
.qr-card:hover, .qr-card:focus-visible { transform: translateY(-1px); }
.qr-card img { width: 64px; height: 64px; }
.qr-card span { white-space: nowrap; }
.qr-card--big img { width: 180px; height: 180px; }
.qr-card--big { padding: 14px 18px 14px 14px; font-size: 13px; }
.qr-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}
.qr-card--dark img { background: #fff; padding: 4px; border-radius: 4px; }
.qr-card--seal { background: #fff; border-color: #b24a2c; color: #16110f; }
.qr-card--linden {
  background: rgba(255,255,255,0.04);
  border-color: rgba(229,169,19,0.4);
  color: #FAFAF9;
}
.qr-card--linden img { background: #FAFAF9; padding: 4px; border-radius: 4px; }
.qr-card--chord {
  background: rgba(255,255,255,0.06);
  border-color: rgba(134,239,172,0.45);
  color: #f8fafc;
}
.qr-card--chord img { background: #f8fafc; padding: 4px; border-radius: 4px; }

/* ----- Screenshot slots & "missing" placeholder ----- */
.shot {
  margin: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.shot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.45);
}
.shot--full img { border-radius: 0; box-shadow: none; }

/* iPhone frame: dark bezel + rounded corners around a phone screenshot. */
.shot--phone,
.shot--phone-sm {
  display: block;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0 auto;
  background: #0d0d0d;
  border-radius: 46px;
  padding: 9px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 30px 60px -22px rgba(0,0,0,0.55);
  max-width: min(320px, 78vw);
}
.shot--phone img,
.shot--phone-sm img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78dvh;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: none;
}
.shot--phone-sm {
  max-width: 180px;
  border-radius: 36px;
  padding: 6px;
}
.shot--phone-sm img { border-radius: 30px; max-height: none; }

/* Placeholder fallback styled to fit inside the bezel. */
.shot--phone .shot-placeholder,
.shot--phone-sm .shot-placeholder {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
  border-radius: 38px;
  aspect-ratio: 9 / 19.5;
  min-height: 0;
  width: 100%;
  height: auto;
}
.shot--phone-sm .shot-placeholder { border-radius: 30px; }

.shot-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed currentColor;
  border-radius: 10px;
  padding: 24px;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.shot-placeholder-label { font-weight: 600; }
.shot-placeholder-file { opacity: 0.8; text-transform: none; letter-spacing: 0.04em; font-size: 12px; }

/* ============================================================
   1. COVER — Skadi-Oy
   ============================================================ */
.slide--cover {
  background:
    radial-gradient(circle at 22% 18%, rgba(184,134,46,0.18), transparent 50%),
    linear-gradient(180deg, #faf8f5 0%, #f0ebe3 100%);
  color: #0a0a0a;
}
.cover-frame { max-width: 880px; margin: 0 auto; }
.cover-frame h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 0.2em;
}
.cover-frame .lede {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  max-width: 38ch;
  margin-bottom: 2.4em;
  color: #1f1f1f;
}
.cover-frame .byline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8862e;
}

/* ============================================================
   2. WHAT I DO — Skadi-Oy
   ============================================================ */
.slide--what { background: #faf8f5; color: #0a0a0a; }
.what-frame { max-width: 1180px; margin: 0 auto; width: 100%; }
.what-frame h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(28px, 4vw, 56px);
  max-width: 22ch;
}
.what-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
  counter-reset: col;
}
.what-cols li {
  position: relative;
  border-top: 2px solid #0a0a0a;
  padding-top: 14px;
  counter-increment: col;
}
.what-cols li::before {
  content: counter(col, decimal-leading-zero);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #b8862e;
  position: absolute;
  top: -18px;
  left: 0;
}
.what-cols h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
.what-cols p { font-size: 16px; line-height: 1.55; max-width: 38ch; }
@media (max-width: 760px) {
  .what-cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   3 + 4. STROLLCRAFT — paper / coral / Fraunces
   ============================================================ */
.slide--stroll-1, .slide--stroll-2 {
  background: #f3ece0;
  color: #1a1511;
  font-family: 'Fraunces', Georgia, serif;
}
.slide--stroll-1 .kicker, .slide--stroll-2 .kicker { color: #b83828; }

.stroll-copy {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.stroll-copy h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.stroll-copy .lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  margin-bottom: 1em;
  max-width: 50ch;
}
.stroll-copy p { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; max-width: 50ch; }

/* Slide 4 — full app screen */
.slide--stroll-2 {
  padding: 0;
  align-content: stretch;
  display: grid;
  grid-template-rows: auto 1fr;
}
.stroll2-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px clamp(20px, 4vw, 48px);
  border-bottom: 1.5px solid #1a1511;
  background: #f8f2e6;
}
.stroll2-bar .brand {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.stroll2-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: #ff6b5b; }
.stroll2-bar .city {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e6357;
}
.shot--full {
  width: 100%;
  height: 100%;
  background: #f3ece0;
  padding: clamp(20px, 3vw, 40px);
}
.shot--full img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.shot--full .shot-placeholder { color: #1a1511; }

/* ============================================================
   5 + 6. EITHER.FM — black / Fraunces / Space Mono
   ============================================================ */
.slide--either-1, .slide--either-2 {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Fraunces', serif;
}
.slide--either-1 .kicker, .slide--either-2 .kicker {
  color: rgba(255,255,255,0.6);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.slash {
  display: inline-block;
  transform: skewX(-22deg) translateY(-1px);
  font-style: normal;
  margin: 0 0.06em;
  color: #fff;
}

.either-frame { max-width: 720px; margin: 0 auto; }
.either-frame h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
}
.either-frame .lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.1em;
}
.either-frame p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 50ch;
}
.either-frame .aside {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  border-left: 2px solid rgba(255,255,255,0.3);
  padding-left: 12px;
  margin-top: 1.4em;
  max-width: 56ch;
}

/* Phone-stage layout (slides 6 and 8) */
.phone-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
@media (max-width: 880px) {
  .phone-stage { grid-template-columns: 1fr; align-content: center; }
}

.phone-aside .kicker { font-family: 'Fraunces', serif; font-style: italic; font-size: 22px; }
.phone-aside .aside-line {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0.2em 0 0.8em;
  max-width: 18ch;
}
.phone-aside p { color: rgba(255,255,255,0.8); max-width: 38ch; }

.slide--either-2 .shot-placeholder { color: rgba(255,255,255,0.7); }

/* ============================================================
   7 + 8. CARDCARD — paper / seal / Iowan Old Style
   ============================================================ */
.slide--card-1, .slide--card-2 {
  background: #f5f0e6;
  color: #16110f;
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
}
.slide--card-1 .kicker, .slide--card-2 .kicker {
  color: #b24a2c;
  letter-spacing: 0.22em;
}
.card-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 880px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card-copy h2 {
  font-family: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 0.55em;
}
.card-copy .lede {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 1em;
  color: #2a221e;
}
.card-copy p { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.6; max-width: 44ch; color: #2a221e; }

.shot--card { min-height: 320px; }
.shot--card img { max-height: 70dvh; border-radius: 14px; }

.phone-stage--card { color: #16110f; }
.phone-aside--card h2 {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0.3em 0 0.6em;
  color: #16110f;
}
.phone-aside--card p { color: #2a221e; max-width: 30ch; }
.slide--card-2 .shot-placeholder { color: #16110f; }

/* ============================================================
   9. LINDEN + CHORDFROG — split, two iOS apps
   ============================================================ */
.slide--two-up {
  background: linear-gradient(90deg, #0C0A09 0%, #0C0A09 50%, #060d12 50%, #060d12 100%);
  color: #FAFAF9;
  font-family: 'DM Sans', system-ui, sans-serif;
  padding: clamp(32px, 5vw, 80px);
}
@media (max-width: 880px) {
  .slide--two-up { background: linear-gradient(180deg, #0C0A09 0%, #0C0A09 50%, #060d12 50%, #060d12 100%); }
}
.slide--two-up .twoup-kicker { color: rgba(250,250,249,0.6); }
.twoup-frame { max-width: 1200px; margin: 0 auto; width: 100%; }
.twoup-h {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(20px, 3vw, 40px);
  max-width: 22ch;
}
.twoup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 880px) {
  .twoup-grid { grid-template-columns: 1fr; }
}
.twoup-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: clamp(18px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}
@media (max-width: 1100px) {
  .twoup-card { grid-template-columns: 140px 1fr; }
}
@media (max-width: 880px) {
  .twoup-card { grid-template-columns: 1fr; }
  .shot--phone-sm img { max-height: 280px; }
}
.twoup-card .brand {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 0;
  letter-spacing: -0.01em;
}
.twoup-card .tag {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  margin: 0 0 0.6em;
}
.twoup-card p { font-size: 15px; line-height: 1.5; max-width: 42ch; }
.twoup-card .status {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 4px 0 0;
}
.shot--phone-sm img { max-width: 100%; }
.shot--phone-sm .shot-placeholder { min-height: 280px; }

/* Linden card */
.twoup-card--linden {
  background:
    radial-gradient(circle at 80% 0%, rgba(229,169,19,0.18), transparent 55%),
    linear-gradient(180deg, #2A2523, #1A1715);
  color: #FAFAF9;
}
.twoup-card--linden .brand { color: #E5A913; }
.twoup-card--linden .tag { color: rgba(250,250,249,0.85); }
.twoup-card--linden .status { color: #E5A913; }
.twoup-card--linden .shot-placeholder { color: rgba(250,250,249,0.6); }

/* ChordFrog card */
.twoup-card--chord {
  background:
    radial-gradient(circle at 20% 100%, rgba(34,197,94,0.22), transparent 55%),
    linear-gradient(180deg, #0f2233, #060d12);
  color: #f8fafc;
  font-family: 'Inter', system-ui, sans-serif;
}
.twoup-card--chord .brand {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  color: #facc15;
}
.twoup-card--chord .tag {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #cbd5e1;
}
.twoup-card--chord .status { color: #86efac; font-family: 'Inter', system-ui, sans-serif; }
.twoup-card--chord .shot-placeholder { color: rgba(248,250,252,0.55); }

/* ============================================================
   10. PACKAGED CONSULTING — Skadi-Oy
   ============================================================ */
.slide--consult { background: #faf8f5; color: #0a0a0a; }
.consult-frame { max-width: 1200px; margin: 0 auto; width: 100%; }
.slide--consult h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(24px, 4vw, 48px);
  max-width: 22ch;
}
.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}
@media (max-width: 880px) {
  .consult-grid { grid-template-columns: 1fr; }
}
.consult-card {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.1);
  border-top: 3px solid #b8862e;
  border-radius: 6px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consult-card .qr-card {
  margin-top: auto;
  align-self: flex-start;
}
.consult-card .brand {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.consult-card .soon {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #b8862e;
  color: #faf8f5;
  padding: 3px 7px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}
.consult-card p { font-size: 15px; line-height: 1.55; color: #1f1f1f; }
.consult-card .price {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8862e;
  margin-top: 4px;
}

/* ============================================================
   11. CONTACT — Skadi-Oy + tilted faded mikumiku
   ============================================================ */
.slide--contact {
  background: #faf8f5;
  color: #0a0a0a;
  position: relative;
  isolation: isolate;
}
.mikumiku {
  position: absolute;
  right: 0;
  top: 6%;
  width: min(46vw, 560px);
  height: auto;
  transform: translateX(72%) rotate(7deg);
  transform-origin: center center;
  opacity: 0.32;
  filter: saturate(0.75);
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}
@media (max-width: 720px) {
  .mikumiku { width: 80vw; transform: translateX(78%) rotate(7deg); top: 2%; opacity: 0.22; }
}
.contact-frame {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}
.contact-frame h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
}
.contact-list {
  display: grid;
  gap: 10px;
  margin: 0 0 1.5em;
  font-size: clamp(16px, 1.4vw, 19px);
}
.contact-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10,10,10,0.1);
}
.contact-list .label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8862e;
}
.contact-list a { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-weight: 500; }
