/* =====================================================================
   James Will — IDE-themed résumé site
   ONE cohesive, centered editor window. No nested windows.

   FONT RULE (keep it consistent):
     • JetBrains Mono  -> the default for everything (it's an IDE).
     • Inter (.prose)  -> ONLY multi-sentence reading paragraphs.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------------- */
:root {
  /* Greys — editor chrome (intentionally NOT blue) */
  --bg-desktop:    #0b0b0c;   /* behind the window          */
  --bg-titlebar:   #161618;   /* window title bar           */
  --bg-activity:   #141416;   /* far-left activity rail     */
  --bg-tabs:       #121214;   /* tab strip                  */
  --bg-editor:     #151517;   /* main editor surface        */
  --bg-tab-active: #151517;
  --bg-status:     #161618;   /* bottom status bar          */
  --bg-elev:       #2e2e34;   /* cards / panels (sit on the surface) */
  --bg-elev-2:     #38383f;
  --bg-input:      #18181a;

  --line:          #34343a;   /* hairline borders           */
  --line-soft:     #2a2a2e;

  /* Text — tuned for contrast against the reading surface */
  --fg:            #e6e6ec;
  --fg-dim:        #c2c2cc;
  --fg-faint:      #7e7e88;
  --gutter:        #4a4a52;
  --surface:       #232327;   /* the reading card behind content */

  /* Syntax-palette accents */
  --red:    #ff6b81;
  --orange: #f7a072;
  --yellow: #ffcb6b;
  --green:  #b9e07d;
  --cyan:   #7fdbed;
  --blue:   #82aaff;
  --purple: #c792ea;
  --pink:   #f78fb3;
  --comment:#6a6a73;

  --accent: var(--green);

  --mono: "JetBrains Mono", "Fira Code", "SFMono-Regular", Consolas, monospace;
  --ui:   "Inter", "Segoe UI", system-ui, sans-serif;

  --activity-w: 56px;
  --titlebar-h: 38px;
  --tabs-h:     40px;
  --status-h:   28px;
  --radius:     6px;
  --ease:       cubic-bezier(.22, 1, .36, 1);
}

/* ---------------------------------------------------------------------
   2. Reset / base  (mono is the default)
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  background:
    radial-gradient(120% 120% at 50% 0%, #131315 0%, var(--bg-desktop) 60%),
    var(--bg-desktop);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
/* links read as a bright grey (cyan/blue is reserved for other accents) */
a { color: #a7a7b1; text-decoration: none; }
a:hover { color: var(--fg); text-decoration: underline; }
::selection { background: rgba(127, 219, 237, .25); }

/* Prose = the ONLY place Inter is used */
.prose, .prose p { font-family: var(--ui); }
.prose p { color: #cfcfd8; margin: 0 0 15px; font-size: 15px; line-height: 1.7; }
.prose p strong { color: #fff; font-weight: 600; }
.prose .lead { color: var(--fg); font-size: 17px; }

/* Scrollbar */
.editor::-webkit-scrollbar { width: 12px; height: 12px; }
.editor::-webkit-scrollbar-track { background: transparent; }
.editor::-webkit-scrollbar-thumb {
  background: #3a3a40; border-radius: 8px; border: 3px solid var(--bg-editor);
}
.editor::-webkit-scrollbar-thumb:hover { background: #4a4a52; }

/* ---------------------------------------------------------------------
   3. Boot loader
   --------------------------------------------------------------------- */
.boot {
  position: fixed; inset: 0; z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; background: var(--bg-desktop); color: var(--fg-dim);
  transition: opacity .5s ease, visibility .5s ease;
}
.boot.is-done { opacity: 0; visibility: hidden; }
.boot__logo { font-size: 28px; color: var(--fg); letter-spacing: 1px; }
.boot__logo .brace { color: var(--purple); }
.boot__logo .accent { color: var(--green); }
.boot__bar { width: 220px; height: 4px; border-radius: 4px; background: var(--bg-elev); overflow: hidden; }
.boot__bar i { display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--green)); border-radius: 4px;
  animation: boot-fill 1.1s var(--ease) forwards; }
.boot__msg { font-size: 12px; }
@keyframes boot-fill { from { width: 0 } to { width: 100% } }

/* ---------------------------------------------------------------------
   4. The single, centered IDE window
   --------------------------------------------------------------------- */
#app { height: 100%; display: grid; place-items: center; padding: 22px; }
.window {
  width: 100%; max-width: 1240px; height: 100%; max-height: 900px;
  display: flex; flex-direction: column;
  background: var(--bg-editor);
  border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 2px 0 rgba(255,255,255,.02) inset;
}

/* 4a. Title bar — the ONLY window chrome (mac dots live here and nowhere else) */
.titlebar {
  flex: 0 0 var(--titlebar-h);
  display: flex; align-items: center; gap: 14px; padding: 0 14px;
  background: var(--bg-titlebar); border-bottom: 1px solid var(--line-soft);
  font-size: 12px; color: var(--fg-faint); user-select: none;
}
.traffic { display: flex; gap: 8px; }
.traffic i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.traffic .r { background: #ff5f57; } .traffic .y { background: #febc2e; } .traffic .g { background: #28c840; }
.titlebar__title { color: var(--fg-dim); }
.titlebar__title .accent { color: var(--green); }
.titlebar__spacer { flex: 1; }
.titlebar__meta { display: flex; gap: 16px; }
.titlebar__meta span::before { content: "● "; color: var(--green); }

/* 4b. Workbench row */
.workbench { flex: 1 1 auto; display: flex; min-height: 0; }

/* Activity rail = nav */
.activity {
  flex: 0 0 var(--activity-w);
  background: var(--bg-activity); border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; align-items: center; padding: 10px 0; gap: 4px;
}
.activity__btn {
  position: relative; width: 44px; height: 44px;
  display: grid; place-items: center; color: var(--fg-faint);
  border: 0; background: none; border-radius: 8px; cursor: pointer;
  transition: color .18s, background .18s;
}
.activity__btn svg { width: 22px; height: 22px; }
.activity__btn:hover { color: var(--fg); background: rgba(255,255,255,.04); }
.activity__btn.is-active { color: var(--fg); }
.activity__btn.is-active::before {
  content: ""; position: absolute; left: -10px; top: 9px;
  width: 3px; height: 26px; border-radius: 3px; background: var(--accent);
}
.activity__btn::after {
  content: attr(data-label); position: absolute; left: 52px; top: 50%;
  transform: translateY(-50%) scale(.95);
  background: var(--bg-elev-2); color: var(--fg); font-size: 12px;
  padding: 4px 8px; border-radius: 5px; white-space: nowrap;
  border: 1px solid var(--line); opacity: 0; pointer-events: none;
  transition: opacity .15s, transform .15s; z-index: 30;
}
.activity__btn:hover::after { opacity: 1; transform: translateY(-50%) scale(1); }
.activity__spacer { flex: 1; }

/* 4c. Editor column */
.editor-col { flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0; min-height: 0; }

/* Tab strip */
.tabs {
  flex: 0 0 var(--tabs-h);
  display: flex; align-items: stretch; background: var(--bg-tabs);
  border-bottom: 1px solid var(--line-soft); overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  display: flex; align-items: center; gap: 8px; padding: 0 16px; height: 100%;
  font-family: var(--mono); font-size: 12.5px; color: var(--fg-faint);
  background: transparent; border: 0; border-right: 1px solid var(--line-soft);
  border-top: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: color .18s, background .18s;
}
.tab:hover { color: var(--fg-dim); }
.tab.is-active { color: var(--fg); background: var(--bg-tab-active); border-top-color: var(--accent); }
.tab .dot { width: 8px; height: 8px; border-radius: 50%; opacity: .75; transition: opacity .18s; }
.tab.is-active .dot { opacity: 1; }
.tab__ext { color: var(--fg-faint); }
.tab.is-active .tab__ext { color: var(--accent); }

/* Editor body = gutter + scroll area */
.editor {
  flex: 1 1 auto; min-height: 0; overflow-y: auto; overflow-x: hidden;
  scrollbar-gutter: stable;   /* always reserve scrollbar space → no width jump between pages */
  display: grid; grid-template-columns: 54px minmax(0, 1fr);
}
.content { min-width: 0; }
.gutter {
  font-size: 12.5px; color: var(--gutter); text-align: right;
  padding: 30px 12px 12px 0; user-select: none;
  border-right: 1px solid var(--line-soft); background: var(--bg-editor);
  position: sticky; left: 0;
}
/* 18px rows match the background bar rhythm (bar 9 + gap 9) */
.gutter span { display: block; height: 18px; line-height: 18px; }
.content { position: relative; padding: 30px 44px 90px; }
.content-inner { max-width: 880px; }

/* ---------------------------------------------------------------------
   5. Background "code lines" + reading surface
   The bars are an ambient motif that FRAMES a muted reading card so the
   text always sits on a clean, high-contrast surface.
   --------------------------------------------------------------------- */
.codebg {
  position: absolute; inset: 0 30px auto; z-index: 0;   /* top:0 aligns bars with the first line number */
  display: flex; flex-direction: column; gap: 9px; pointer-events: none;
}
.bgbar {
  height: 9px; border-radius: 5px; background: var(--c, var(--comment));
  opacity: .07; transform-origin: left center;
  animation: bar-in .55s var(--ease) both; animation-delay: var(--d, 0s);
}
@keyframes bar-in { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: .07; } }

.page { position: relative; display: flow-root; }  /* contain the canvas margin so it doesn't drag the bars down */
.page > *:not(.codebg) { position: relative; z-index: 1; }

/* The reading card: near-opaque + blur, so any bars behind it are muted
   to a faint texture while text keeps full contrast. Bars stay visible in
   the margins around it (the framing). */
.canvas {
  position: relative; width: 100%; max-width: 880px; margin: 36px auto 0;  /* starts ~line 3, with bars above */
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 30px 34px 36px;
  box-shadow: 0 12px 44px rgba(0,0,0,.32);
}

.c-red{--c:var(--red)} .c-orange{--c:var(--orange)} .c-yellow{--c:var(--yellow)}
.c-green{--c:var(--green)} .c-cyan{--c:var(--cyan)} .c-purple{--c:var(--purple)}
.c-pink{--c:var(--pink)} .c-grey{--c:var(--comment)}

/* ---------------------------------------------------------------------
   6. Shared pieces
   --------------------------------------------------------------------- */
.file-tag { font-size: 13px; color: var(--comment); margin: 0 0 6px; }
.page-h { font-family: var(--mono); font-size: 27px; font-weight: 700; margin: 0 0 22px; color: var(--fg); letter-spacing: -.3px; }
.page-h .hash { color: var(--comment); font-weight: 400; }
.page-h .accent { color: var(--accent); }

.kw{color:var(--purple)} .fn{color:var(--blue)} .str{color:var(--green)}
.var{color:var(--cyan)} .num{color:var(--orange)} .pun{color:var(--fg-faint)}
.cmt{color:var(--comment)}

.btn {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 13px;
  padding: 9px 16px; border-radius: var(--radius); background: var(--bg-elev);
  color: var(--fg); border: 1px solid var(--line); cursor: pointer;
  transition: border-color .18s, background .18s, transform .18s, color .18s;
}
.btn:hover { border-color: var(--accent); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }
.btn--accent { background: rgba(185,224,125,.12); border-color: rgba(185,224,125,.45); color: var(--green); }
.btn--accent:hover { background: rgba(185,224,125,.2); color: #fff; }

.social { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; }
.social a {
  width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center;
  background: var(--bg-elev); border: 1px solid var(--line); color: var(--fg-dim);
  transition: all .18s;
}
.social a:hover { color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; }

/* code block (used for the About object — replaces the old mini-window) */
.codeblock { margin: 0 0 22px; font-size: 13.5px; line-height: 1.9; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.codeblock .ln { white-space: pre; }
.codeblock .indent { padding-left: 2ch; }
.codeblock::-webkit-scrollbar { height: 6px; }
.codeblock::-webkit-scrollbar-thumb { background: #3a3a40; border-radius: 6px; }

/* ---------------------------------------------------------------------
   7. Landing
   --------------------------------------------------------------------- */
.hero { padding-top: 0; }   /* match the other pages' top spacing */
.hero__avatar {
  width: 110px; height: 110px; border-radius: 14px; background-size: cover; background-position: center;
  border: 1px solid var(--line); margin-bottom: 22px; box-shadow: 0 14px 40px rgba(0,0,0,.45);
}
.hero__prompt { font-size: 13px; color: var(--comment); margin-bottom: 10px; }
.hero__prompt .sigil { color: var(--green); }
.hero h1 { font-family: var(--mono); font-size: 46px; font-weight: 700; letter-spacing: -1px; margin: 0 0 8px; }
.hero h1 .accent { color: var(--accent); }
.hero__role { font-size: 18px; color: var(--cyan); margin: 0 0 14px; min-height: 1.4em; }
.cursor { display: inline-block; width: 9px; height: 1.05em; vertical-align: text-bottom; background: var(--cyan); margin-left: 3px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero__tag { max-width: 46ch; margin: 0 0 26px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

/* ---------------------------------------------------------------------
   8. About — flows in the editor, no window, no clipping
   --------------------------------------------------------------------- */
.about__social { margin-top: 24px; }

/* ---------------------------------------------------------------------
   9. Skills — compact, dense matrix
   --------------------------------------------------------------------- */
.skills__bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.skills__hint { font-size: 12px; color: var(--comment); }
.skills__clear { font-size: 12px; color: var(--fg-faint); background: none; border: 0; cursor: pointer; padding: 4px 6px; }
.skills__clear:hover { color: var(--red); }

.skills__legend { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 22px; }
.tagchip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px;
  padding: 4px 10px; border-radius: 20px; background: var(--bg-elev);
  border: 1px solid var(--line); color: var(--fg-dim); cursor: pointer; user-select: none;
  transition: all .16s;
}
.tagchip .swatch { width: 8px; height: 8px; border-radius: 50%; background: var(--tc, var(--comment)); }
.tagchip:hover { color: var(--fg); border-color: var(--tc); }
.tagchip.is-on { color: #fff; border-color: var(--tc); background: color-mix(in srgb, var(--tc) 16%, var(--bg-elev)); }
.tagchip .count { color: var(--fg-faint); }

.skill-group { margin-bottom: 22px; }
.skill-group__h { font-size: 12px; color: var(--comment); margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.skill-group__h::before { content: "▸"; color: var(--fg-faint); }
.skill-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(184px, 1fr)); gap: 8px; }
.skill {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 7px;
  padding: 9px 11px; transition: border-color .18s, transform .15s, opacity .2s, filter .2s;
}
.skill:hover { border-color: #44444c; transform: translateY(-1px); }
.skill.is-dim { opacity: .24; filter: grayscale(.6); }
.skill.is-hit { border-color: #fff; }
.skill__name { font-size: 13.5px; color: var(--fg); margin-bottom: 7px; display: flex; align-items: center; gap: 7px; }
.skill__name .lead { width: 6px; height: 14px; border-radius: 3px; background: var(--sc, var(--comment)); flex: none; }
.skill__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.badge {
  display: inline-flex; align-items: center; gap: 4px; font-size: 10px; line-height: 1;
  padding: 3px 6px; border-radius: 4px;
  background: color-mix(in srgb, var(--tc) 14%, transparent);
  color: var(--tc); border: 1px solid color-mix(in srgb, var(--tc) 32%, transparent);
}
.badge .swatch { width: 5px; height: 5px; border-radius: 50%; background: var(--tc); flex: none; }

/* ---------------------------------------------------------------------
   10. Résumé — git log
   --------------------------------------------------------------------- */
.resume__intro { margin-bottom: 24px; }
.resume__dl { margin-bottom: 28px; }
.gitlog { position: relative; margin-left: 6px; }
.gitlog::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.commit { position: relative; padding: 0 0 24px 34px; }
.commit__node { position: absolute; left: 0; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg-editor); border: 3px solid var(--node, var(--green)); z-index: 1; }
.branch-label { position: relative; padding: 0 0 16px 34px; margin-top: 6px; }
.branch-label::before { content: ""; position: absolute; left: -1px; top: 2px; width: 14px; height: 14px; border-radius: 4px; transform: rotate(45deg); background: var(--bl, var(--purple)); }
.branch-label .tag { font-size: 12px; color: var(--bl, var(--purple)); border: 1px solid color-mix(in srgb, var(--bl) 45%, transparent); background: color-mix(in srgb, var(--bl) 12%, transparent); padding: 3px 10px; border-radius: 20px; }
.commit__hash { font-size: 12px; color: var(--yellow); }
.commit__title { font-family: var(--mono); font-size: 16px; font-weight: 600; margin: 6px 0 3px; }
.commit__meta { font-size: 12px; color: var(--purple); margin-bottom: 8px; }
.commit__body { font-size: 14.5px; }   /* .prose handles font-family */

/* ---------------------------------------------------------------------
   11. Contact — fields on the editor surface + integrated terminal panel
   --------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 12px; color: var(--orange); margin-bottom: 6px; }
.field label .opt { color: var(--comment); }
.field input, .field textarea {
  width: 100%; font-family: var(--mono); font-size: 14px; color: var(--fg);
  background: var(--bg-input); border: 1px solid var(--line); border-radius: 6px;
  padding: 10px 12px; transition: border-color .18s, box-shadow .18s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(185,224,125,.12); }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-faint); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.honey { position: absolute; left: -9999px; opacity: 0; }

/* integrated terminal panel (part of the editor, no separate window chrome) */
.terminal { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--bg-input); display: flex; flex-direction: column; min-height: 280px; margin-top: -9px; /* lift so the header text lines up with the first/last-name labels */ }
.terminal__head { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--bg-titlebar); border-bottom: 1px solid var(--line-soft); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); }
.terminal__head svg { width: 13px; height: 13px; }
.terminal__body { padding: 14px; font-size: 13px; line-height: 1.75; flex: 1; overflow-y: auto; }
.terminal__body .ln { white-space: pre-wrap; word-break: break-word; }
.term-prompt{color:var(--green)} .term-ok{color:var(--green)} .term-err{color:var(--red)}
.term-info{color:var(--cyan)} .term-dim{color:var(--comment)}

/* ---------------------------------------------------------------------
   12. Status bar
   --------------------------------------------------------------------- */
.statusbar {
  flex: 0 0 var(--status-h);
  display: flex; align-items: center; gap: 16px; padding: 0 14px;
  background: var(--bg-status); border-top: 1px solid var(--line-soft);
  font-size: 11.5px; color: var(--fg-dim); user-select: none;
}
.statusbar .seg { display: inline-flex; align-items: center; gap: 6px; }
.statusbar .seg svg { width: 13px; height: 13px; }
.statusbar .branch { color: var(--green); }
.statusbar__spacer { flex: 1; }

/* ---------------------------------------------------------------------
   13. Page transitions
   --------------------------------------------------------------------- */
/* Clean cross-fade — no page-level movement (only the entering children rise).
   No position:absolute, so the scrollbar never blinks and the card never shifts. */
.page-enter-active { transition: opacity .24s ease; }
.page-leave-active { transition: opacity .13s ease; }
.page-enter-from, .page-leave-to { opacity: 0; }
.page-enter-active .stagger > * { animation: rise .5s var(--ease) both; }
.page-enter-active .stagger > *:nth-child(1){animation-delay:.04s}
.page-enter-active .stagger > *:nth-child(2){animation-delay:.10s}
.page-enter-active .stagger > *:nth-child(3){animation-delay:.16s}
.page-enter-active .stagger > *:nth-child(4){animation-delay:.22s}
.page-enter-active .stagger > *:nth-child(5){animation-delay:.28s}
.page-enter-active .stagger > *:nth-child(6){animation-delay:.34s}
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------------
   14. Responsive
   --------------------------------------------------------------------- */
@media (max-width: 860px) {
  body { font-size: 13.5px; }
  #app { padding: 0; }
  .window { max-width: none; max-height: none; height: 100dvh; border: 0; border-radius: 0; }

  /* stack: editor fills, activity rail becomes the bottom nav, status bar hidden */
  .workbench { flex-direction: column; }
  .editor-col { order: 1; flex: 1 1 auto; min-height: 0; }
  .activity {
    order: 2; flex: 0 0 auto; flex-direction: row; width: 100%;
    border-right: 0; border-top: 1px solid var(--line-soft); justify-content: space-around; padding: 6px 0;
  }
  .activity__spacer { display: none; }
  .activity__btn.is-active::before { left: 9px; top: -6px; width: 26px; height: 3px; }
  .activity__btn::after { display: none; }
  .statusbar { display: none; }

  /* hint that the tab strip scrolls horizontally */
  .editor-col { position: relative; }
  .editor-col::after {
    content: ""; position: absolute; top: 0; right: 0;
    width: 38px; height: var(--tabs-h);
    background: linear-gradient(90deg, transparent, var(--bg-tabs) 72%);
    pointer-events: none; z-index: 6;
  }

  .editor { grid-template-columns: 1fr; }
  .gutter { display: none; }
  .codebg { inset: 16px 12px auto; }
  .content { padding: 16px 12px 22px; }
  .canvas { padding: 22px 18px 26px; border-radius: 10px; }

  .hero h1 { font-size: 34px; }
  .contact { grid-template-columns: 1fr; }
  .titlebar__meta { display: none; }
}

@media (max-width: 480px) {
  .field--row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .skill-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .cursor { animation: none; }
}
