@font-face { font-family: "Baloo 2"; src: url("./assets/fonts/baloo-2-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Baloo 2"; src: url("./assets/fonts/baloo-2-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }

:root {
  --ink: #141111;
  --cream: #fffaef;
  --card: #fffdf8;
  --muted: #f3efe5;
  --muted-ink: #756f64;
  --orange: #ff5c2b;
  --yellow: #ffd440;
  --yellow-hover: #ffdc5a;
  --blue: #a9d9f7;
  --green: #a9d877;
  --pink: #fe7da8;
  --shadow-xs: 1px 1px 0 var(--ink);
  --shadow-sm: 2px 2px 0 var(--ink);
  --shadow: 4px 4px 0 var(--ink);
  --shadow-lg: 6px 6px 0 var(--ink);
  color-scheme: light;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

:root[data-theme="dark"] {
  --ink: #fffaef;
  --cream: #141111;
  --card: #211d1d;
  --muted: #2b2622;
  --muted-ink: #c9bfae;
  --orange: #f2794e;
  --yellow: #f7dc70;
  --yellow-hover: #ffe98e;
  --blue: #b3d5ec;
  --green: #bcdb8a;
  --pink: #f7a5bc;
  --shadow-xs: 1px 1px 0 #000;
  --shadow-sm: 2px 2px 0 #000;
  --shadow: 4px 4px 0 #000;
  --shadow-lg: 6px 6px 0 #000;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body { margin: 0; background: var(--cream); color: var(--ink); }
body, button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, video { max-width: 100%; }
h1, h2, h3, p { overflow-wrap: anywhere; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 200; left: 16px; top: 12px; padding: 10px 14px; border: 2px solid var(--ink); background: var(--yellow); color: #141111; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.page-loader { position: fixed; z-index: 100; inset: 0; display: grid; place-content: center; gap: 16px; background: #090807; color: #fffaef; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, visibility .22s ease; }
.page-loader.is-visible { opacity: 1; visibility: visible; }
.page-loader > span { font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.loader-mark { display: flex; justify-content: center; gap: 7px; }
.loader-mark i { width: 12px; height: 12px; border: 2px solid #000; background: #ffd440; box-shadow: 2px 2px 0 #000; animation: loader-step .9s ease-in-out infinite; }
.loader-mark i:nth-child(2) { animation-delay: .12s; background: #ff5c2b; }
.loader-mark i:nth-child(3) { animation-delay: .24s; background: #a9d9f7; }
@keyframes loader-step { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.site-header {
  position: absolute;
  z-index: 20;
  top: 20px;
  left: max(24px, calc((100vw - 1344px) / 2));
  right: max(24px, calc((100vw - 1344px) / 2));
  height: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fffaef;
}
.brand { display: flex; align-items: center; gap: 12px; justify-self: start; font-size: 18px; font-weight: 800; }
.brand span { width: 38px; height: 38px; display: grid; place-items: center; border: 2px solid #141111; background: #ffd440; color: #141111; box-shadow: 2px 2px 0 #000; font-family: "Baloo 2", sans-serif; font-weight: 800; }
.site-header nav { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 800; }
.site-header nav a { padding: 9px 0 7px; border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease; }
.site-header nav a:hover { color: #ffd440; border-color: #ffd440; }
.utilities { display: flex; gap: 10px; justify-self: end; }
.utilities button, .utilities a { height: 36px; border: 2px solid #141111; background: #fffdf8; color: #141111; box-shadow: 2px 2px 0 #000; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; transition: transform .12s ease, box-shadow .12s ease, background .12s ease; }
.utilities button { width: 36px; padding: 0; border-radius: 18px; cursor: pointer; }
.utilities button:hover { background: #a9d9f7; transform: translateY(-1px); box-shadow: 4px 4px 0 #000; }
.utilities a { gap: 7px; padding: 0 15px; border-radius: 18px; background: #ffd440; font-family: "Baloo 2", sans-serif; }
.github-mark { font-size: 10px; font-weight: 800; }
.utilities button:active, .utilities a:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 #000; }

.section-dock {
  position: fixed;
  z-index: 40;
  top: 50%;
  left: 16px;
  width: 48px;
  display: grid;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-72px, -50%);
  transition: opacity .22s ease, visibility .22s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
}
.section-dock.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(0, -50%); }
.dock-bar { display: none; }
.dock-menu { display: grid; }
.dock-menu a { position: relative; height: 44px; display: grid; place-items: center; border-bottom: 2px solid var(--ink); background: var(--card); transition: background .15s ease, color .15s ease, transform .12s ease; }
.dock-menu a:last-child { border-bottom: 0; }
.dock-menu a:hover { background: var(--blue); }
.dock-menu a:active { transform: translate(1px, 1px); }
.dock-menu a[aria-current="location"] { background: var(--yellow); color: #141111; }
.dock-menu a span { font-family: "Baloo 2", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.dock-menu a b {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  min-width: max-content;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-5px, -50%);
  transition: opacity .14s ease, visibility .14s ease, transform .14s ease;
}
.dock-menu a:hover b, .dock-menu a:focus-visible b { opacity: 1; visibility: visible; transform: translate(0, -50%); }

.hero { position: relative; min-height: max(720px, 100svh); overflow: hidden; background: #090807; color: #fffaef; border-bottom: 2px solid #141111; }
.hero-media-stage, .hero-poster, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-poster, .hero-video { object-fit: cover; object-position: 44% center; pointer-events: none; }
.hero-video { opacity: 0; transition: opacity .9s ease; }
.hero.is-video-ready .hero-video { opacity: 1; }
.hero-mask { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 6, 5, .80) 0%, rgba(7, 6, 5, .56) 35%, rgba(7, 6, 5, .06) 76%); pointer-events: none; }
.hero-inner { position: relative; width: min(1280px, calc(100% - 56px)); min-height: max(720px, 100svh); margin-inline: auto; display: flex; align-items: center; }
.hero-copy { width: min(680px, 54vw); padding-top: 44px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.status-dot { width: 10px; height: 10px; background: #a9d877; border: 2px solid #000; box-shadow: 2px 2px 0 #000; }
.hero h1 { margin: 0; color: #ffd440; font-size: clamp(82px, 8vw, 104px); line-height: .9; letter-spacing: -.045em; }
.hero h2 { margin: 20px 0 0; font-size: clamp(44px, 4.7vw, 68px); line-height: 1; letter-spacing: -.035em; }
.hero-lead { margin: 32px 0 0; color: #ddd4c8; font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 38px; }
.button { min-height: 46px; padding: 0 19px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 2px solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-sm); font-weight: 800; transition: transform .12s ease, box-shadow .12s ease, background .12s ease; }
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.button:active { transform: translate(1px, 1px); box-shadow: var(--shadow-xs); }
.button-primary { border-color: #141111; background: #ffd440; color: #141111; box-shadow: 2px 2px 0 #000; }
.button-primary:hover { background: #ffdc5a; box-shadow: 4px 4px 0 #000; }
.text-link { display: inline-flex; gap: 8px; padding: 10px 0; border-bottom: 2px solid rgba(255, 250, 239, .58); font-weight: 800; }
.text-link:hover { color: #ffd440; border-color: #ffd440; }

.section { scroll-margin-top: 0; }
.section-inner { width: min(1280px, calc(100% - 56px)); margin-inline: auto; }
.section-label { color: var(--orange); font-size: 12px; line-height: 1.4; letter-spacing: .13em; font-weight: 800; }
.section-heading-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 420px); gap: 70px; align-items: end; margin-bottom: 44px; }
.section-heading-row > * { min-width: 0; }
.section-heading-row h2, .profile-heading h2, .experience-intro h2, .contact h2 { margin: 12px 0 0; font-size: clamp(42px, 4.1vw, 60px); line-height: 1.08; letter-spacing: -.032em; text-wrap: balance; }
.section-heading-row > p, .experience-intro > p { margin: 0; color: var(--muted-ink); font-size: 16px; line-height: 1.8; }

.profile { padding: 100px 0; background: var(--cream); }
.profile-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .82fr) 260px; gap: 60px; align-items: start; }
.profile-grid > * { min-width: 0; }
.profile-body { padding-top: 32px; }
.profile-body > p { margin: 0 0 20px; color: var(--muted-ink); font-size: 16px; line-height: 1.9; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.profile-tags span { padding: 7px 10px; border: 2px solid var(--ink); background: var(--card); box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 800; }
.portrait { margin: 0; border: 2px solid var(--ink); background: var(--yellow); box-shadow: var(--shadow-lg); }
.portrait img { width: 100%; aspect-ratio: 1 / 1.12; display: block; object-fit: cover; object-position: center 28%; }
.portrait figcaption { display: flex; justify-content: space-between; gap: 12px; padding: 13px 15px; border-top: 2px solid var(--ink); }
.portrait figcaption span { color: #4f493f; font-size: 11px; }
:root[data-theme="dark"] .portrait figcaption { color: #141111; }

.capabilities { padding: 92px 0 98px; background: var(--yellow); color: #141111; border-block: 2px solid #141111; }
.capabilities .section-label { color: #d63e15; }
.capabilities .section-heading-row > p { color: #514a3d; }
.capability-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 2px solid #141111; box-shadow: 6px 6px 0 #141111; }
.capability-item { min-width: 0; min-height: 330px; padding: 27px; background: #fffdf8; border-right: 2px solid #141111; }
.capability-item:nth-child(2) { background: #a9d9f7; }
.capability-item:nth-child(3) { background: #a9d877; border-right: 0; }
.capability-item summary, .capability-content { display: contents; }
.capability-item summary { list-style: none; pointer-events: none; }
.capability-item summary::-webkit-details-marker { display: none; }
.capability-item summary > b { display: none; }
.capability-index { font-family: "Baloo 2", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.capability-list h3 { margin: 48px 0 14px; font-size: 27px; line-height: 1.2; }
.capability-list p { margin: 0; min-height: 82px; color: #49443d; font-size: 14px; line-height: 1.75; }
.capability-list ul { margin: 24px 0 0; padding: 18px 0 0; border-top: 2px solid #141111; list-style: none; }
.capability-list li { position: relative; padding: 5px 0 5px 18px; font-size: 12px; font-weight: 700; }
.capability-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border: 2px solid #141111; background: #ffd440; }

.works { padding: 100px 0; background: var(--card); }
.works-heading > p { color: var(--muted-ink); }
.work-feature { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr); border: 2px solid var(--ink); box-shadow: var(--shadow-lg); }
.work-feature > * { min-width: 0; }
.work-visual { background: #171313; border-right: 2px solid var(--ink); }
.window-bar { height: 46px; padding: 0 14px; display: flex; align-items: center; gap: 9px; border-bottom: 2px solid #141111; background: #ffd440; color: #141111; }
.window-bar i { width: 11px; height: 11px; border: 2px solid #141111; background: #ff5c2b; }
.window-bar i:nth-child(2) { background: #a9d877; }
.window-bar i:nth-child(3) { background: #a9d9f7; }
.window-bar span { margin-left: auto; font-family: "Baloo 2", sans-serif; font-size: 10px; letter-spacing: .08em; font-weight: 800; }
.editing-ui { height: 410px; display: grid; grid-template-columns: 120px 1fr; grid-template-rows: 1fr 82px; gap: 2px; background: #141111; }
.media-bin { grid-row: 1 / 3; padding: 13px; background: #2a2424; color: #fffaef; }
.media-bin b { display: block; margin-bottom: 12px; font-size: 10px; }
.media-bin span { display: block; height: 64px; margin-bottom: 10px; background: #f3efe5; border: 2px solid #000; }
.preview-frame { display: grid; place-items: center; background: radial-gradient(circle at center, #252222 0, #0e0d0d 65%); color: #fffaef; }
.frame-content { display: grid; justify-items: center; gap: 13px; }
.frame-content b { width: 80px; height: 80px; display: grid; place-items: center; border: 2px solid #141111; background: #ffd440; color: #141111; box-shadow: 5px 5px 0 #000; font-family: "Baloo 2", sans-serif; font-size: 30px; }
.frame-content small { color: #bcb2a6; text-align: center; }
.timeline { padding: 18px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; background: #211d1d; }
.timeline i { background: #a9d9f7; border: 2px solid #000; }
.timeline i:nth-child(2), .timeline i:nth-child(5) { background: #ffd440; }
.timeline i:nth-child(4) { background: #ff5c2b; }
.work-copy { padding: 42px; background: var(--cream); }
.work-copy > span { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.work-copy h3 { margin: 20px 0 22px; font-size: 34px; line-height: 1.16; }
.work-copy > p { margin: 0; color: var(--muted-ink); font-size: 15px; line-height: 1.85; }
.work-copy dl { margin: 34px 0 0; }
.work-copy dl div { padding: 17px 0; border-top: 2px solid var(--ink); }
.work-copy dt { margin-bottom: 7px; font-size: 10px; letter-spacing: .1em; font-weight: 800; }
.work-copy dd { margin: 0; color: var(--muted-ink); font-size: 13px; line-height: 1.65; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 58px; border: 2px solid var(--ink); box-shadow: var(--shadow); }
.project-card { min-width: 0; min-height: 270px; padding: 28px; display: flex; flex-direction: column; background: var(--cream); border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.project-grid > .project-card:nth-of-type(3) { border-right: 0; }
.more-projects { grid-column: 1 / -1; }
.more-project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.more-projects > summary { display: none; }
.more-project-grid .project-card { border-bottom: 0; }
.more-project-grid .project-card:nth-child(3) { border-right: 0; }
.project-card.project-orange { background: var(--orange); color: #141111; }
.project-card.project-blue { background: var(--blue); color: #141111; }
.project-card.project-green { background: var(--green); color: #141111; }
.project-card > span { font-family: "Baloo 2", sans-serif; font-size: 10px; letter-spacing: .1em; font-weight: 800; }
.project-card h3 { margin: 42px 0 15px; font-size: 22px; line-height: 1.25; }
.project-card p { margin: 0; color: var(--muted-ink); font-size: 13px; line-height: 1.75; }
.project-orange p, .project-blue p, .project-green p { color: #3e3932; }
.project-card footer { margin-top: auto; padding-top: 22px; border-top: 2px solid currentColor; }
.project-card footer b { font-size: 10px; letter-spacing: .04em; }

.experience { padding: 100px 0; background: var(--cream); }
.experience .section-inner { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: 80px; align-items: start; }
.experience-intro { position: sticky; top: 100px; min-width: 0; }
.experience-intro > p { margin-top: 30px; max-width: 500px; }
.experience-timeline { border: 2px solid var(--ink); box-shadow: var(--shadow-lg); }
.experience-timeline article { display: grid; grid-template-columns: 128px 1fr; min-height: 190px; border-bottom: 2px solid var(--ink); }
.experience-timeline article:last-child { border-bottom: 0; }
.experience-timeline article > span { padding: 26px 20px; border-right: 2px solid var(--ink); background: var(--yellow); color: #141111; font-family: "Baloo 2", sans-serif; font-size: 12px; letter-spacing: .08em; font-weight: 800; }
.experience-timeline article:nth-child(2) > span { background: var(--blue); }
.experience-timeline article:nth-child(3) > span { background: var(--green); }
.experience-timeline article div { padding: 25px 28px; background: var(--card); }
.experience-timeline h3 { margin: 0 0 14px; font-size: 23px; }
.experience-timeline p { margin: 0; color: var(--muted-ink); font-size: 14px; line-height: 1.75; }

.contact { padding: 84px 0; background: var(--yellow); color: #141111; border-block: 2px solid #141111; }
.contact .section-label { color: #d63e15; }
.contact-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 440px); gap: 80px; align-items: end; }
.contact-copy p { margin: 0 0 28px; color: #514a3d; font-size: 16px; line-height: 1.8; }
.button-invert { border-color: #000; background: #141111; color: #fffaef; box-shadow: 2px 2px 0 #000; }
.button-invert:hover { box-shadow: 4px 4px 0 #000; }

.site-footer { padding: 42px 0; background: #141111; color: #fffaef; }
.footer-inner { width: min(1280px, calc(100% - 56px)); margin-inline: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.footer-inner > div:first-child { display: flex; flex-direction: column; gap: 5px; }
.footer-inner > div:first-child span, .footer-inner p { color: #c9bfae; font-size: 11px; }
.footer-links { justify-self: end; display: flex; gap: 22px; font-size: 12px; font-weight: 800; }
.footer-links a:hover { color: #ffd440; }

@media (max-width: 1023px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-copy { width: min(600px, 68vw); }
  .profile-grid { grid-template-columns: minmax(0, 1fr) 230px; gap: 42px; }
  .profile-heading { grid-column: 1 / 3; }
  .work-feature { grid-template-columns: 1fr; }
  .work-visual { border-right: 0; border-bottom: 2px solid var(--ink); }
  .experience .section-inner { grid-template-columns: 1fr; gap: 48px; }
  .experience-intro { position: static; }
}

@media (max-width: 760px) {
  .section-inner, .footer-inner { width: min(100% - 32px, 1280px); }
  .site-header { left: 16px; right: 16px; }
  .brand strong, .github-link b { display: none; }
  .github-link { width: 36px; padding: 0 !important; }
  .hero { min-height: 660px; }
  .hero-media-stage { bottom: auto; height: 300px; }
  .hero-inner { width: calc(100% - 32px); min-height: 660px; align-items: flex-start; }
  .hero-poster, .hero-video { object-position: 54% center; }
  .hero-poster { opacity: 1; }
  .hero-video { opacity: 0; }
  .hero.is-video-ready .hero-video { opacity: 1; }
  .hero-mask { background: linear-gradient(180deg, rgba(7, 6, 5, .08) 0%, rgba(7, 6, 5, .16) 30%, #090807 49%, #090807 100%); }
  .hero-copy { width: 100%; padding: 276px 0 62px; }
  .hero-kicker { font-size: 10px; margin-bottom: 20px; }
  .hero h1 { font-size: 58px; }
  .hero h2 { margin-top: 14px; font-size: 32px; line-height: 1.12; }
  .hero-lead { margin-top: 28px; font-size: 15px; line-height: 1.9; letter-spacing: .01em; }
  .hero-actions { margin-top: 32px; gap: 18px; }
  .button { min-height: 44px; padding-inline: 16px; font-size: 14px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 20px; }
  .section-heading-row h2, .profile-heading h2, .experience-intro h2, .contact h2 { font-size: 35px; line-height: 1.06; }
  .profile { padding: 54px 0 58px; }
  .profile-grid { grid-template-columns: 1fr; gap: 25px; }
  .profile-heading { grid-column: 1; }
  .profile-body { padding-top: 0; }
  .profile-body > p { margin-bottom: 0; line-height: 1.75; }
  .profile-tags { margin-top: 22px; }
  .portrait { width: 150px; }
  .capabilities, .works, .experience { padding: 54px 0 60px; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-item { min-height: 0; padding: 0; border-right: 0; border-bottom: 2px solid #141111; }
  .capability-item:last-child { border-bottom: 0; }
  .capability-item summary { padding: 20px 22px; display: grid; grid-template-columns: 1fr auto; gap: 0 14px; align-items: center; cursor: pointer; pointer-events: auto; }
  .capability-item summary > .capability-index { grid-column: 1; }
  .capability-item summary > h3 { grid-column: 1; margin: 13px 0 0; }
  .capability-item summary > b { grid-column: 2; grid-row: 1 / 3; width: 36px; height: 36px; display: grid; place-items: center; border: 2px solid #141111; background: #ffd440; box-shadow: 2px 2px 0 #141111; font-size: 19px; transition: transform .2s ease; }
  .capability-item[open] summary > b { transform: rotate(45deg); }
  .capability-content { display: block; padding: 0 22px 22px; }
  .capability-list p { min-height: 0; }
  .editing-ui { height: 270px; grid-template-columns: 72px 1fr; grid-template-rows: 1fr 66px; }
  .media-bin { padding: 8px; }
  .media-bin b { display: none; }
  .media-bin span { height: 46px; }
  .timeline { padding: 13px; gap: 4px; }
  .frame-content b { width: 66px; height: 66px; }
  .frame-content small { max-width: 210px; font-size: 10px; }
  .work-copy { padding: 28px 22px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 205px; padding: 24px 22px; border-right: 0; border-bottom: 2px solid var(--ink) !important; }
  .project-card h3 { margin-top: 28px; }
  .more-projects { display: block; grid-column: auto; }
  .more-projects > summary { min-height: 56px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--muted); font-size: 14px; font-weight: 800; cursor: pointer; list-style: none; }
  .more-projects > summary::-webkit-details-marker { display: none; }
  .more-projects > summary b { width: 40px; height: 34px; display: grid; place-items: center; border: 2px solid var(--ink); background: var(--yellow); color: #141111; box-shadow: var(--shadow-sm); font-family: "Baloo 2", sans-serif; }
  .more-projects[open] > summary { border-bottom: 2px solid var(--ink); }
  .more-project-grid { display: block; }
  .more-projects:not([open]) > .more-project-grid { display: none; }
  .more-project-grid .project-card { min-height: 180px; }
  .more-project-grid .project-card:last-child { border-bottom: 0 !important; }
  .experience-timeline article { grid-template-columns: 1fr; min-height: 0; }
  .experience-timeline article > span { padding: 13px 18px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .experience-timeline article div { padding: 22px 20px; }
  .experience-timeline h3 { font-size: 20px; }
  .contact { padding: 54px 0 58px; }
  .contact-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr auto; gap: 24px; }
  .footer-inner p { display: none; }
  .footer-links a:first-child { display: none; }
  .section-dock {
    top: 12px;
    left: 16px;
    right: 16px;
    bottom: auto;
    width: auto;
    display: block;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(-80px);
  }
  .section-dock.is-visible { transform: translateY(0); }
  .dock-bar { height: 48px; display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; align-items: stretch; border: 2px solid var(--ink); background: var(--card); box-shadow: var(--shadow); }
  .dock-home { display: grid; place-items: center; border-right: 2px solid var(--ink); background: var(--yellow); color: #141111; }
  .dock-home span { font-family: "Baloo 2", sans-serif; font-size: 14px; font-weight: 800; }
  .dock-current { min-width: 0; padding: 0 14px; display: flex; align-items: center; font-size: 13px; font-weight: 800; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .dock-toggle { min-width: 86px; padding: 0 12px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-left: 2px solid var(--ink); background: var(--yellow); color: #141111; font-weight: 800; cursor: pointer; }
  .dock-toggle b { font-size: 18px; transition: transform .2s ease; }
  .section-dock.is-open .dock-toggle b { transform: rotate(45deg); }
  .dock-menu { position: absolute; top: 56px; left: 0; right: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 2px solid var(--ink); background: var(--card); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px); transition: opacity .16s ease, visibility .16s ease, transform .16s ease; }
  .section-dock.is-open .dock-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .dock-menu a { height: 52px; padding: 0 14px; grid-template-columns: 38px 1fr; place-items: initial; align-items: center; border: 0; border-bottom: 2px solid var(--ink); text-align: left; }
  .dock-menu a:nth-child(odd) { border-right: 2px solid var(--ink); }
  .dock-menu a:nth-last-child(-n + 2) { border-bottom: 0; }
  .dock-menu a b { position: static; min-width: 0; padding: 0; border: 0; background: transparent; box-shadow: none; font-size: 13px; line-height: 1; opacity: 1; visibility: visible; transform: none; }
  .dock-menu a:hover b, .dock-menu a:focus-visible b { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .button:hover, .utilities button:hover, .section-dock a:active { transform: none; }
}
